-
Notifications
You must be signed in to change notification settings - Fork 2
/
Session.xojo_code
183 lines (174 loc) · 4.64 KB
/
Session.xojo_code
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#tag Class
Protected Class Session
Inherits WebSession
#tag Constant, Name = ErrorDialogCancel, Type = String, Dynamic = True, Default = \"Do Not Send", Scope = Public
#tag EndConstant
#tag Constant, Name = ErrorDialogMessage, Type = String, Dynamic = True, Default = \"This application has encountered an error and cannot continue.", Scope = Public
#tag EndConstant
#tag Constant, Name = ErrorDialogQuestion, Type = String, Dynamic = True, Default = \"Please describe what you were doing right before the error occurred:", Scope = Public
#tag EndConstant
#tag Constant, Name = ErrorDialogSubmit, Type = String, Dynamic = True, Default = \"Send", Scope = Public
#tag EndConstant
#tag Constant, Name = ErrorThankYou, Type = String, Dynamic = True, Default = \"Thank You", Scope = Public
#tag EndConstant
#tag Constant, Name = ErrorThankYouMessage, Type = String, Dynamic = True, Default = \"Your feedback helps us make improvements.", Scope = Public
#tag EndConstant
#tag Constant, Name = NoJavascriptInstructions, Type = String, Dynamic = True, Default = \"To turn Javascript on\x2C please refer to your browser settings window.", Scope = Public
#tag EndConstant
#tag Constant, Name = NoJavascriptMessage, Type = String, Dynamic = True, Default = \"Javascript must be enabled to access this page.", Scope = Public
#tag EndConstant
#tag ViewBehavior
#tag ViewProperty
Name="ActiveConnectionCount"
Group="Behavior"
Type="Integer"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="BrowserVersion"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="ConfirmMessage"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="GMTOffset"
Group="Behavior"
Type="Double"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="HashTag"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="HeaderCount"
Group="Behavior"
Type="Integer"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Identifier"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
Type="Integer"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="LanguageCode"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="LanguageRightToLeft"
Group="Behavior"
Type="Boolean"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
Type="String"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="PageCount"
Group="Behavior"
Type="Integer"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Protocol"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="RemoteAddress"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="StatusMessage"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
Type="String"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Timeout"
Group="Behavior"
Type="Integer"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Title"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="URL"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag ViewProperty
Name="_Expiration"
Group="Behavior"
InitialValue="-1"
Type="Double"
InheritedFrom="WebSession"
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass