Develop and Download Open Source Software

Browse Subversion Repository

Contents of /WebModuleUnit1.dfm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations) (download)
Thu Sep 24 07:42:33 2015 UTC (8 years, 5 months ago) by yamat0jp
File size: 4999 byte(s)
メンテナンス画面が簡単に表示できます

英単語を間違えていました
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 end
51 item
52 MethodType = mtPost
53 Name = 'adminset'
54 PathInfo = '/adminset'
55 OnAction = WebModule1adminsetAction
56 end>
57 BeforeDispatch = WebModuleBeforeDispatch
58 Height = 230
59 Width = 415
60 object FDTable1: TFDTable
61 Connection = FDConnection1
62 UpdateOptions.UpdateTableName = 'pbbs'
63 TableName = 'pbbs'
64 Left = 56
65 Top = 144
66 object FDTable1name: TWideMemoField
67 FieldName = 'name'
68 Origin = 'name'
69 BlobType = ftWideMemo
70 end
71 object FDTable1no: TIntegerField
72 FieldName = 'no'
73 Origin = 'no'
74 end
75 object FDTable1date: TWideMemoField
76 FieldName = 'date'
77 Origin = 'date'
78 BlobType = ftWideMemo
79 end
80 object FDTable1sub: TWideMemoField
81 FieldName = 'sub'
82 Origin = 'sub'
83 BlobType = ftWideMemo
84 end
85 object FDTable1com: TWideMemoField
86 FieldName = 'com'
87 Origin = 'com'
88 BlobType = ftWideMemo
89 end
90 object FDTable1pass: TWideMemoField
91 FieldName = 'pass'
92 Origin = 'pass'
93 BlobType = ftWideMemo
94 end
95 object FDTable1line: TIntegerField
96 FieldName = 'line'
97 Origin = 'line'
98 end
99 end
100 object FDConnection1: TFDConnection
101 Params.Strings = (
102 'Database=E:\Program Files (x86)\xampp\cgi-bin\data.sdb'
103 'LockingMode=Normal'
104 'DriverID=SQLite')
105 Left = 56
106 Top = 80
107 end
108 object FDTable2: TFDTable
109 Connection = FDConnection1
110 UpdateOptions.UpdateTableName = 'information'
111 TableName = 'information'
112 Left = 120
113 Top = 144
114 object FDTable2home: TWideMemoField
115 FieldName = 'home'
116 Origin = 'home'
117 BlobType = ftWideMemo
118 end
119 object FDTable2title: TWideMemoField
120 FieldName = 'title'
121 Origin = 'title'
122 BlobType = ftWideMemo
123 end
124 object FDTable2title2: TWideMemoField
125 FieldName = 'title2'
126 Origin = 'title2'
127 BlobType = ftWideMemo
128 end
129 object FDTable2pass: TWideMemoField
130 FieldName = 'pass'
131 Origin = 'pass'
132 BlobType = ftWideMemo
133 end
134 object FDTable2ngwords: TWideMemoField
135 FieldName = 'ngwords'
136 Origin = 'ngwords'
137 BlobType = ftWideMemo
138 end
139 object FDTable2mente: TBooleanField
140 FieldName = 'mente'
141 end
142 end
143 object PageProducer1: TPageProducer
144 OnHTMLTag = PageProducer1HTMLTag
145 Left = 200
146 Top = 24
147 end
148 object DataSetPageProducer2: TDataSetPageProducer
149 HTMLDoc.Strings = (
150 '<hr size=1>[<#no>]'
151 '<font size="+1" color="#D01166"><b><#sub></b></font><br>'
152
153 ' Name:<font color="#007000"><b><#name></b></font><font size="-1' +
154 '"> Date:<#date></font>'
155 '<p><tt><#com><br></tt></p>')
156 DataSet = FDTable1
157 OnHTMLTag = DataSetPageProducer2HTMLTag
158 Left = 312
159 Top = 104
160 end
161 object adminDS: TDataSetPageProducer
162 HTMLDoc.Strings = (
163 '<tr>'
164 '<th><input type=checkbox name="<#no>" value="<#no>"></th>'
165 '<th><#no></th>'
166 '<th><font size="-1"><#date></font></th>'
167 '<th><font size="+1" color="#D01166"><b><#sub></b></font></th>'
168 '<th><font color="#007000"><b><#name></b></font></th>'
169 '</tr>')
170 DataSet = FDTable1
171 OnHTMLTag = DataSetPageProducer2HTMLTag
172 Left = 312
173 Top = 168
174 end
175 object FDTable3: TFDTable
176 Connection = FDConnection1
177 UpdateOptions.UpdateTableName = 'setting'
178 TableName = 'setting'
179 Left = 184
180 Top = 144
181 object FDTable3link: TIntegerField
182 FieldName = 'link'
183 Origin = 'link'
184 end
185 object FDTable3count: TIntegerField
186 FieldName = 'count'
187 Origin = 'count'
188 end
189 object FDTable3line: TIntegerField
190 FieldName = 'line'
191 Origin = 'line'
192 end
193 end
194 end

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