forked from ByteJuggler/Unigui.Layout.adv.tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerModule.dfm
More file actions
135 lines (131 loc) · 4.04 KB
/
ServerModule.dfm
File metadata and controls
135 lines (131 loc) · 4.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
object UniServerModule: TUniServerModule
OldCreateOrder = False
FilesFolder = 'files\'
TempFolder = 'temp\'
Title = 'New Application'
BGColor = 8404992
BGColorLogin = clWhite
CharSet = 'utf-8'
SuppressErrors = []
UnavailableErrMsg = 'Communication Error'
LoadingMessage = 'Loading...'
Bindings = <>
MainFormDisplayMode = mfPage
CustomCSS.Strings = (
'.menu_selected {'
' border: 1px solid #4a4a4a !important; '
'}'
'.red_borders {'
' border: 1px solid #ff8282 !important; '
' outline: 1px solid #ff2121;'
'}'
'.blue_borders {'
' border: 1px solid #90d2f4 !important; '
' outline: 1px solid #39afea;'
'}'
'.orange_borders {'
' border: 1px solid #facc70 !important; '
' outline: 1px solid #f9aa0b;'
'}'
'.green_borders {'
' border: 1px solid #9dd478 !important; '
' outline: 1px solid #61a434;'
'}'
'.gray_borders {'
' border: 1px solid #fdfdfd !important; '
' outline: 1px solid #d4d4d4;'
'}'
'.title {'
' font-size:2.0vw !important;'
' margin-top:0.5vw !important;'
'}'
'.subtitle {'
' font-size:0.90vw !important;'
' margin-top:1.1vw !important;'
'}'
'.info {'
' font-size:0.75vw !important;'
' margin-top:1.0vw !important; '
'}'
'.subtitlegray {'
' font-size:0.80vw !important; '
'}'
'.graphtitle {'
' font-size:0.80vw !important;'
' line-height: 180%;'
'}'
'.chrome {'
' font: 1.70vw Arial, Helvetica, sans-serif;'
' font-weight:bold;'
'}'
'.chrome35 {'
' font: 1.20vw Arial, Helvetica, sans-serif;'
' font-weight:normal;'
'}'
'#ext-sprite-1325 {'
' stroke:#d8d8d8;'
'}'
'#ext-sprite-1339 {'
' stroke:#d8d8d8;'
'}'
'.degree { '
' font: 1.50vw Arial, Helvetica, sans-serif !important;'
' font-weight:normal;'
'}'
'.subtitleweather { '
' font: 0.90vw Arial, Helvetica, sans-serif !important;'
' font-weight:normal;'
'}'
'.infoweather {'
' font: 0.70vw Arial, Helvetica, sans-serif !important;'
'}'
'.social {'
' font: bold 1.00vw Arial, Helvetica, sans-serif !important;'
'}'
'.social_img {'
' width: 100% !important;'
' text-align:center; '
' vertical-align: middle;'
'}')
ServerMessages.ExceptionTemplate.Strings = (
'<html>'
'<body bgcolor="#dfe8f6">'
'<p style="text-align:center;color:#A05050">An Exception has occu' +
'red in application:</p>'
'<p style="text-align:center;color:#0000A0">[###message###]</p>'
'<p style="text-align:center;color:#A05050"><a href="[###url###]"' +
'>Restart application</a></p>'
'</body>'
'</html>')
ServerMessages.InvalidSessionTemplate.Strings = (
'<html>'
'<body bgcolor="#dfe8f6">'
'<p style="text-align:center;color:#0000A0">[###message###]</p>'
'<p style="text-align:center;color:#A05050"><a href="[###url###]"' +
'>Restart application</a></p>'
'</body>'
'</html>')
ServerMessages.TerminateTemplate.Strings = (
'<html>'
'<body bgcolor="#dfe8f6">'
'<p style="text-align:center;color:#0000A0">[###message###]</p>'
'<p style="text-align:center;color:#A05050"><a href="[###url###]"' +
'>Restart application</a></p>'
'</body>'
'</html>')
ServerMessages.InvalidSessionMessage = 'Invalid session or session Timeout.'
ServerMessages.TerminateMessage = 'Web session terminated.'
Compression.MinTextSize = 512
SSL.SSLOptions.RootCertFile = 'root.pem'
SSL.SSLOptions.CertFile = 'cert.pem'
SSL.SSLOptions.KeyFile = 'key.pem'
SSL.SSLOptions.Method = sslvTLSv1_1
SSL.SSLOptions.SSLVersions = [sslvTLSv1_1]
SSL.SSLOptions.Mode = sslmUnassigned
SSL.SSLOptions.VerifyMode = []
SSL.SSLOptions.VerifyDepth = 0
ConnectionFailureRecovery.ErrorMessage = 'Connection Error'
ConnectionFailureRecovery.RetryMessage = 'Retrying...'
Height = 502
Width = 730
end