-
Notifications
You must be signed in to change notification settings - Fork 2
/
uwebCustListWebStencil.dfm
67 lines (67 loc) · 1.66 KB
/
uwebCustListWebStencil.dfm
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
object webCustListWebStencil: TwebCustListWebStencil
OnCreate = WebModuleCreate
Actions = <
item
Default = True
MethodType = mtGet
Name = 'DefaultHandler'
PathInfo = '/'
OnAction = webCustListWebStencilDefaultHandlerAction
end
item
MethodType = mtPost
Name = 'waLoginVerify'
PathInfo = '/login'
OnAction = webCustListWebStencilwaLoginVerifyAction
end
item
MethodType = mtGet
Name = 'waListCustomers'
PathInfo = '/custlist'
OnAction = webCustListWebStencilwaListCustomersAction
end
item
MethodType = mtGet
Name = 'waEditCustomer'
PathInfo = '/custedit'
OnAction = webCustListWebStencilwaEditCustomerAction
end>
Height = 331
Width = 415
object wspIndex: TWebStencilsProcessor
Engine = wsEngineCustList
InputFileName = 'index-wStencils.html'
Left = 104
Top = 104
end
object wsEngineCustList: TWebStencilsEngine
PathTemplates = <>
OnError = wsEngineCustListError
Left = 64
Top = 32
end
object wspLoginFailed: TWebStencilsProcessor
Engine = wsEngineCustList
InputFileName = 'loginfailed-wStencils.html'
Left = 104
Top = 168
end
object wspCustList: TWebStencilsProcessor
Engine = wsEngineCustList
InputFileName = 'custlist-wStencils.html'
Left = 208
Top = 128
end
object wspAccessDenied: TWebStencilsProcessor
Engine = wsEngineCustList
InputFileName = 'accessdenied-wStencils.html'
Left = 112
Top = 232
end
object wspCustEdit: TWebStencilsProcessor
Engine = wsEngineCustList
InputFileName = 'custedit-wStencils.html'
Left = 208
Top = 192
end
end