Develop and Download Open Source Software

Browse Subversion Repository

Contents of /WebModuleUnit1.dfm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9 - (show annotations) (download)
Sat Sep 17 04:45:16 2016 UTC (7 years, 5 months ago) by yamat0jp
File size: 4935 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 'LockingMode=Normal'
103 'DriverID=SQLite')
104 Left = 56
105 Top = 80
106 end
107 object FDTable2: TFDTable
108 Connection = FDConnection1
109 UpdateOptions.UpdateTableName = 'information'
110 TableName = 'information'
111 Left = 120
112 Top = 144
113 object FDTable2home: TWideMemoField
114 FieldName = 'home'
115 Origin = 'home'
116 BlobType = ftWideMemo
117 end
118 object FDTable2title: TWideMemoField
119 FieldName = 'title'
120 Origin = 'title'
121 BlobType = ftWideMemo
122 end
123 object FDTable2title2: TWideMemoField
124 FieldName = 'title2'
125 Origin = 'title2'
126 BlobType = ftWideMemo
127 end
128 object FDTable2pass: TWideMemoField
129 FieldName = 'pass'
130 Origin = 'pass'
131 BlobType = ftWideMemo
132 end
133 object FDTable2ngwords: TWideMemoField
134 FieldName = 'ngwords'
135 Origin = 'ngwords'
136 BlobType = ftWideMemo
137 end
138 object FDTable2mente: TBooleanField
139 FieldName = 'mente'
140 end
141 end
142 object PageProducer1: TPageProducer
143 OnHTMLTag = PageProducer1HTMLTag
144 Left = 200
145 Top = 24
146 end
147 object DataSetPageProducer2: TDataSetPageProducer
148 HTMLDoc.Strings = (
149 '<hr size=1>[<#no>]'
150 '<font size="+1" color="#D01166"><b><#sub></b></font><br>'
151
152 ' Name:<font color="#007000"><b><#name></b></font><font size="-1' +
153 '"> Date:<#date></font>'
154 '<p><tt><#com><br></tt></p>')
155 DataSet = FDTable1
156 OnHTMLTag = DataSetPageProducer2HTMLTag
157 Left = 312
158 Top = 104
159 end
160 object adminDS: TDataSetPageProducer
161 HTMLDoc.Strings = (
162 '<tr>'
163 '<th><input type=checkbox name="<#no>" value="<#no>"></th>'
164 '<th><#no></th>'
165 '<th><font size="-1"><#date></font></th>'
166 '<th><font size="+1" color="#D01166"><b><#sub></b></font></th>'
167 '<th><font color="#007000"><b><#name></b></font></th>'
168 '</tr>')
169 DataSet = FDTable1
170 OnHTMLTag = DataSetPageProducer2HTMLTag
171 Left = 312
172 Top = 168
173 end
174 object FDTable3: TFDTable
175 Connection = FDConnection1
176 UpdateOptions.UpdateTableName = 'setting'
177 TableName = 'setting'
178 Left = 184
179 Top = 144
180 object FDTable3link: TIntegerField
181 FieldName = 'link'
182 Origin = 'link'
183 end
184 object FDTable3count: TIntegerField
185 FieldName = 'count'
186 Origin = 'count'
187 end
188 object FDTable3line: TIntegerField
189 FieldName = 'line'
190 Origin = 'line'
191 end
192 end
193 end

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