Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /WebModuleUnit1.dfm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 20 - (hide annotations) (download)
Thu Sep 29 14:15:09 2016 UTC (7 years, 5 months ago) by yamat0jp
File size: 5242 byte(s)
アーカイブの問題をクリア
ユーザーがだれでも使えるようにした
1 yamat0jp 1 object WebModule1: TWebModule1
2     OldCreateOrder = False
3     OnCreate = WebModuleCreate
4     OnDestroy = WebModuleDestroy
5     Actions = <
6     item
7     Default = True
8     Enabled = False
9     Name = 'index'
10     PathInfo = '/index'
11     OnAction = WebModule1DefaultHandlerAction
12     end
13     item
14     MethodType = mtPost
15     Name = 'regist'
16     PathInfo = '/regist'
17     OnAction = WebModule1registAction
18     end
19     item
20     Name = 'admin'
21     PathInfo = '/admin'
22     OnAction = WebModule1adminAction
23     end
24     item
25     Name = 'userdel'
26     PathInfo = '/userdel'
27     OnAction = WebModule1userdelAction
28     end
29     item
30     MethodType = mtPost
31     Name = 'admindel'
32     PathInfo = '/admindel'
33     OnAction = WebModule1admindelAction
34     end
35     item
36     Name = 'login'
37     PathInfo = '/login'
38     OnAction = WebModule1loginAction
39     end
40     item
41     MethodType = mtPost
42     Name = 'setup'
43     PathInfo = '/setup'
44     OnAction = WebModule1setupAction
45     end
46     item
47     Name = 'search'
48     PathInfo = '/search'
49     OnAction = WebModule1searchAction
50 yamat0jp 3 end
51     item
52     MethodType = mtPost
53     Name = 'adminset'
54     PathInfo = '/adminset'
55     OnAction = WebModule1adminsetAction
56 yamat0jp 13 end
57     item
58 yamat0jp 18 MethodType = mtGet
59 yamat0jp 13 Name = 'css'
60     PathInfo = '/css'
61     OnAction = WebModule1cssAction
62 yamat0jp 19 end
63     item
64     MethodType = mtGet
65     Name = 'archives'
66     PathInfo = '/archives'
67     OnAction = WebModule1archivesAction
68 yamat0jp 1 end>
69     BeforeDispatch = WebModuleBeforeDispatch
70 yamat0jp 13 AfterDispatch = WebModuleAfterDispatch
71 yamat0jp 1 Height = 230
72     Width = 415
73     object FDTable2: TFDTable
74     Connection = FDConnection1
75     UpdateOptions.UpdateTableName = 'information'
76     TableName = 'information'
77     Left = 120
78     Top = 144
79     object FDTable2home: TWideMemoField
80     FieldName = 'home'
81     Origin = 'home'
82 yamat0jp 17 BlobType = ftWideString
83 yamat0jp 1 end
84     object FDTable2title: TWideMemoField
85     FieldName = 'title'
86     Origin = 'title'
87 yamat0jp 17 BlobType = ftWideString
88 yamat0jp 1 end
89     object FDTable2title2: TWideMemoField
90     FieldName = 'title2'
91     Origin = 'title2'
92     BlobType = ftWideMemo
93     end
94     object FDTable2pass: TWideMemoField
95     FieldName = 'pass'
96     Origin = 'pass'
97 yamat0jp 17 BlobType = ftWideString
98 yamat0jp 1 end
99     object FDTable2ngwords: TWideMemoField
100     FieldName = 'ngwords'
101     Origin = 'ngwords'
102     BlobType = ftWideMemo
103     end
104 yamat0jp 4 object FDTable2mente: TBooleanField
105     FieldName = 'mente'
106     end
107 yamat0jp 1 end
108     object PageProducer1: TPageProducer
109     OnHTMLTag = PageProducer1HTMLTag
110     Left = 200
111     Top = 24
112     end
113     object DataSetPageProducer2: TDataSetPageProducer
114     HTMLDoc.Strings = (
115 yamat0jp 13 '<hr size=1>'
116     '<section id=number>[<#no>]</section>'
117     '<section id=title><#sub></section>'
118     '<section id=name> Name:<h1><#name></h1></section>'
119     '<section id=date> Date:<h1><#date></h1></section>'
120 yamat0jp 18 '<section id=comment><#com></section>'
121 yamat0jp 13 '')
122 yamat0jp 1 OnHTMLTag = DataSetPageProducer2HTMLTag
123     Left = 312
124     Top = 104
125     end
126     object adminDS: TDataSetPageProducer
127     HTMLDoc.Strings = (
128     '<tr>'
129     '<th><input type=checkbox name="<#no>" value="<#no>"></th>'
130     '<th><#no></th>'
131     '<th><font size="-1"><#date></font></th>'
132     '<th><font size="+1" color="#D01166"><b><#sub></b></font></th>'
133     '<th><font color="#007000"><b><#name></b></font></th>'
134     '</tr>')
135     OnHTMLTag = DataSetPageProducer2HTMLTag
136     Left = 312
137     Top = 168
138     end
139     object FDTable3: TFDTable
140     Connection = FDConnection1
141     UpdateOptions.UpdateTableName = 'setting'
142     TableName = 'setting'
143     Left = 184
144     Top = 144
145     object FDTable3link: TIntegerField
146     FieldName = 'link'
147     Origin = 'link'
148     end
149     object FDTable3count: TIntegerField
150     FieldName = 'count'
151     Origin = 'count'
152     end
153     object FDTable3line: TIntegerField
154     FieldName = 'line'
155     Origin = 'line'
156     end
157     end
158 yamat0jp 19 object FDTable1: TFDTable
159     Connection = FDConnection1
160     UpdateOptions.UpdateTableName = 'pbbs'
161     TableName = 'pbbs'
162     Left = 56
163     Top = 144
164     object FDTable1name: TWideMemoField
165     FieldName = 'name'
166     Origin = 'name'
167     BlobType = ftWideMemo
168     end
169     object FDTable1no: TIntegerField
170     FieldName = 'no'
171     Origin = 'no'
172     end
173     object FDTable1date: TWideMemoField
174     FieldName = 'date'
175     Origin = 'date'
176     BlobType = ftWideMemo
177     end
178     object FDTable1sub: TWideMemoField
179     FieldName = 'sub'
180     Origin = 'sub'
181     BlobType = ftWideMemo
182     end
183     object FDTable1com: TWideMemoField
184     FieldName = 'com'
185     Origin = 'com'
186     BlobType = ftWideMemo
187     end
188     object FDTable1pass: TWideMemoField
189     FieldName = 'pass'
190     Origin = 'pass'
191     BlobType = ftWideMemo
192     end
193     object FDTable1line: TIntegerField
194     FieldName = 'line'
195     Origin = 'line'
196     end
197     end
198 yamat0jp 20 object FDConnection1: TFDConnection
199     Params.Strings = (
200     'LockingMode=Normal'
201     'DriverID=SQLite')
202     Left = 56
203     Top = 80
204     end
205 yamat0jp 1 end

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26