Select one of the symbols to view example projects that use it.
 
Outline
#include "fsdata.h"
data_index_html
data_reset_html
data_upload_html
data_uploaddone_html
file_index_html
file_reset_html
file_upload_html
file_uploaddone_html
Files
loading...
SourceVuSTM32 Libraries and SamplesLwIP_IAPSrc/fsdata.c
 
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/************************************************************************* fsdata.c generator for UIP0.9 Works with cc65 C compiler Based on the work of Adam Dunkels <adam@dunkels.com> The syntax has been left as-is, with respect to the perl version Supports for a maximum of 2 levels directory and 999 files in each directory For more information, please go to http://www.design4fpga.com ALL RIGHTS RESERVED, COPYRIGHT APRIL 2006, DESIGN4FPGA *************************************************************************//* ... */ /************************************************************************* REDISTRIBUTION OF THIS PIECE OF SOFTWARE IN SOURCE OR AS A BINARY FILE IS PERMITTED IF AND ONLY IF THE FOLLOWING RULES ARE OBSERVED: 1) THE REDISTRIBUTION FILE OR ARCHIVE SHOULD INCLUDE THIS README FILE AS WELL AS THE COPYRIGHT NOTICE. BY USING THIS SOFTWARE, YOU ARE ACKNOWLEDGING THAT YOU HAVE READ AND AGREED WITH THE FOLLOWING DISCLAIMER AND THE COPYRIGHT NOTICE ABOVE. DISCLAIMER: THIS PIECE OF SOFTWARE IS SUPPLIED ''AS IS'', WE (DESIGN4FPGA) SHALL NOT BE HELD RESPONSIBLE OR LIABLE FOR ANY RESULTING EVENTS THAT MIGHT HAPPEN DURING THE USE OF THIS PROGRAM IN PARTICULAR: 1) THE LOSS OF INFORMATION DUE TO THE USE OR MISUSE OF FS_GENERATOR.EXE 2) THE LOSS OF BUSINESS, STOCKS, MONEY, PEOPLE AND LIVES OR ANY UNFORTUNATE CIRCUMSTANCE THAT MAY PREVAIL AS A RESULT OF A SYSTEM FAILURE, DIRECTLY OR INDIRECTLY DUE TO THE USE OF FS_GENERATOR.EXE *************************************************************************//* ... */ #include "fsdata.h" static const char data_index_html[] = { 0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68, 0x74,0x6d,0x6c,0x00,0x48,0x54,0x54,0x50, 0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30, 0x20,0x4f,0x4b,0x0d,0x0a,0x53,0x65,0x72, 0x76,0x65,0x72,0x3a,0x20,0x75,0x49,0x50, 0x2f,0x30,0x2e,0x39,0x20,0x28,0x68,0x74, 0x74,0x70,0x3a,0x2f,0x2f,0x64,0x75,0x6e, 0x6b,0x65,0x6c,0x73,0x2e,0x63,0x6f,0x6d, 0x2f,0x61,0x64,0x61,0x6d,0x2f,0x75,0x69, 0x70,0x2f,0x29,0x0d,0x0a,0x43,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70, 0x65,0x3a,0x20,0x74,0x65,0x78,0x74,0x2f, 0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a, 0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50, 0x45,0x20,0x48,0x54,0x4d,0x4c,0x20,0x50, 0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d, 0x2f,0x2f,0x57,0x33,0x43,0x2f,0x44,0x54, 0x44,0x20,0x48,0x54,0x4d,0x4c,0x20,0x34, 0x2e,0x30,0x20,0x54,0x72,0x61,0x6e,0x73, 0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x2f, 0x2f,0x45,0x4e,0x22,0x3e,0x0d,0x0a,0x3c, 0x68,0x74,0x6d,0x6c,0x3e,0x0d,0x0a,0x3c, 0x4d,0x45,0x54,0x41,0x20,0x48,0x54,0x54, 0x50,0x2d,0x45,0x51,0x55,0x49,0x56,0x20, 0x3d,0x20,0x22,0x50,0x72,0x61,0x67,0x6d, 0x61,0x22,0x20,0x43,0x4f,0x4e,0x54,0x45, 0x4e,0x54,0x3d,0x22,0x6e,0x6f,0x2d,0x63, 0x61,0x63,0x68,0x65,0x22,0x3e,0x0d,0x0a, 0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0x20, 0x53,0x54,0x4d,0x33,0x32,0x46,0x34,0x78, 0x78,0x20,0x49,0x41,0x50,0x20,0x75,0x73, 0x69,0x6e,0x67,0x20,0x48,0x54,0x54,0x50, 0x20,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65, 0x3e,0x0d,0x0a,0x3c,0x62,0x6f,0x64,0x79, 0x3e,0x0d,0x0a,0x3c,0x68,0x32,0x3e,0x4c, 0x6f,0x67,0x69,0x6e,0x3c,0x2f,0x68,0x32, 0x3e,0x0d,0x0a,0x3c,0x46,0x4f,0x52,0x4d, 0x20,0x4d,0x45,0x54,0x48,0x4f,0x44,0x3d, 0x50,0x4f,0x53,0x54,0x20,0x41,0x43,0x54, 0x49,0x4f,0x4e,0x3d,0x22,0x2f,0x63,0x68, 0x65,0x63,0x6b,0x6c,0x6f,0x67,0x69,0x6e, 0x2e,0x63,0x67,0x69,0x22,0x3e,0x0d,0x0a, 0x3c,0x70,0x3e,0x0d,0x0a,0x3c,0x66,0x6f, 0x6e,0x74,0x20,0x73,0x69,0x7a,0x65,0x3d, 0x22,0x32,0x22,0x3e,0x20,0x3c,0x73,0x74, 0x72,0x6f,0x6e,0x67,0x3e,0x20,0x45,0x6e, 0x74,0x65,0x72,0x20,0x75,0x73,0x65,0x72, 0x20,0x49,0x44,0x20,0x61,0x6e,0x64,0x20, 0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64, 0x3a,0x20,0x3c,0x2f,0x73,0x74,0x72,0x6f, 0x6e,0x67,0x3e,0x3c,0x2f,0x66,0x6f,0x6e, 0x74,0x3e,0x0d,0x0a,0x3c,0x42,0x52,0x3e, 0x0d,0x0a,0x3c,0x73,0x74,0x72,0x6f,0x6e, 0x67,0x3e,0x20,0x55,0x73,0x65,0x72,0x20, 0x49,0x44,0x3c,0x2f,0x73,0x74,0x72,0x6f, 0x6e,0x67,0x3e,0x20,0x3c,0x69,0x6e,0x70, 0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d, 0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x73, 0x69,0x7a,0x65,0x3d,0x22,0x32,0x30,0x22, 0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x75, 0x73,0x65,0x72,0x6e,0x61,0x6d,0x65,0x22, 0x3e,0x0d,0x0a,0x3c,0x73,0x74,0x72,0x6f, 0x6e,0x67,0x3e,0x20,0x50,0x61,0x73,0x73, 0x77,0x6f,0x72,0x64,0x20,0x3c,0x2f,0x73, 0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x20, 0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74, 0x79,0x70,0x65,0x3d,0x22,0x70,0x61,0x73, 0x73,0x77,0x6f,0x72,0x64,0x22,0x20,0x73, 0x69,0x7a,0x65,0x3d,0x22,0x32,0x30,0x22, 0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x70, 0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22, 0x3e,0x0d,0x0a,0x3c,0x42,0x52,0x3e,0x0d, 0x0a,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20, 0x74,0x79,0x70,0x65,0x3d,0x22,0x73,0x75, 0x62,0x6d,0x69,0x74,0x22,0x20,0x6e,0x61, 0x6d,0x65,0x3d,0x22,0x6c,0x6f,0x67,0x69, 0x6e,0x22,0x20,0x76,0x61,0x6c,0x75,0x65, 0x3d,0x22,0x4c,0x6f,0x67,0x69,0x6e,0x22, 0x3e,0x0d,0x0a,0x3c,0x2f,0x70,0x3e,0x0d, 0x0a,0x0d,0x0a,0x3c,0x2f,0x66,0x6f,0x72, 0x6d,0x3e,0x0d,0x0a,0x3c,0x2f,0x62,0x6f, 0x64,0x79,0x3e,0x0d,0x0a,0x3c,0x2f,0x68, 0x74,0x6d,0x6c,0x3e,0x0d,0x0a,...}; static const char data_reset_html[] = { 0x2f,0x72,0x65,0x73,0x65,0x74,0x2e,0x68, 0x74,0x6d,0x6c,0x00,0x48,0x54,0x54,0x50, 0x2f,0x31,0x2e,0x30,0x20,0x32,0x30,0x30, 0x20,0x4f,0x4b,0x0d,0x0a,0x53,0x65,0x72, 0x76,0x65,0x72,0x3a,0x20,0x75,0x49,0x50, 0x2f,0x30,0x2e,0x39,0x20,0x28,0x68,0x74, 0x74,0x70,0x3a,0x2f,0x2f,0x64,0x75,0x6e, 0x6b,0x65,0x6c,0x73,0x2e,0x63,0x6f,0x6d, 0x2f,0x61,0x64,0x61,0x6d,0x2f,0x75,0x69, 0x70,0x2f,0x29,0x0d,0x0a,0x43,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70, 0x65,0x3a,0x20,0x74,0x65,0x78,0x74,0x2f, 0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d,0x0a, 0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50, 0x45,0x20,0x48,0x54,0x4d,0x4c,0x20,0x50, 0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d, 0x2f,0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44, 0x54,0x44,0x20,0x48,0x54,0x4d,0x4c,0x20, 0x34,0x2e,0x30,0x31,0x20,0x54,0x72,0x61, 0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x61, 0x6c,0x2f,0x2f,0x45,0x4e,0x22,0x3e,0x0d, 0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20, 0x20,0x20,0x20,0x20,0x0d,0x0a,0x20,0x20, 0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x20, 0x20,0x20,0x20,0x20,0x20,0x0d,0x0a,0x20, 0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61, 0x20,0x68,0x74,0x74,0x70,0x2d,0x65,0x71, 0x75,0x69,0x76,0x3d,0x22,0x63,0x6f,0x6e, 0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70, 0x65,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65, 0x6e,0x74,0x3d,0x22,0x74,0x65,0x78,0x74, 0x2f,0x68,0x74,0x6d,0x6c,0x3b,0x20,0x63, 0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x77, 0x69,0x6e,0x64,0x6f,0x77,0x73,0x2d,0x31, 0x32,0x35,0x30,0x22,0x3e,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x0d,0x0a,0x20,0x20, 0x20,0x20,0x3c,0x74,0x69,0x74,0x6c,0x65, 0x3e,0x53,0x54,0x4d,0x33,0x32,0x20,0x49, 0x41,0x50,0x20,0x75,0x73,0x69,0x6e,0x67, 0x20,0x48,0x54,0x54,0x50,0x20,0x20,0x20, 0x20,0x20,0x0d,0x0a,0x20,0x20,0x20,0x20, 0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e, 0x20,0x20,0x20,0x20,0x20,0x0d,0x0a,0x20, 0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e, 0x20,0x20,0x20,0x20,0x20,0x0d,0x0a,0x20, 0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20, 0x20,0x4d,0x43,0x55,0x20,0x52,0x65,0x73, 0x65,0x74,0x20,0x44,0x6f,0x6e,0x65,0x20, 0x21,0x20,0x20,0x20,0x20,0x20,0x20,0x0d, 0x0a,0x20,0x20,0x3c,0x2f,0x62,0x6f,0x64, 0x79,0x3e,0x0d,0x0a,0x3c,0x2f,0x68,0x74, 0x6d,0x6c,0x3e,...}; static const char data_upload_html[] = { 0x2f,0x75,0x70,0x6c,0x6f,0x61,0x64,0x2e, 0x68,0x74,0x6d,0x6c,0x00,0x48,0x54,0x54, 0x50,0x2f,0x31,0x2e,0x30,0x20,0x32,0x30, 0x30,0x20,0x4f,0x4b,0x0d,0x0a,0x53,0x65, 0x72,0x76,0x65,0x72,0x3a,0x20,0x75,0x49, 0x50,0x2f,0x30,0x2e,0x39,0x20,0x28,0x68, 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x64,0x75, 0x6e,0x6b,0x65,0x6c,0x73,0x2e,0x63,0x6f, 0x6d,0x2f,0x61,0x64,0x61,0x6d,0x2f,0x75, 0x69,0x70,0x2f,0x29,0x0d,0x0a,0x43,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79, 0x70,0x65,0x3a,0x20,0x74,0x65,0x78,0x74, 0x2f,0x68,0x74,0x6d,0x6c,0x0d,0x0a,0x0d, 0x0a,0x3c,0x21,0x44,0x4f,0x43,0x54,0x59, 0x50,0x45,0x20,0x48,0x54,0x4d,0x4c,0x20, 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22, 0x2d,0x2f,0x2f,0x57,0x33,0x43,0x2f,0x2f, 0x44,0x54,0x44,0x20,0x48,0x54,0x4d,0x4c, 0x20,0x34,0x2e,0x30,0x31,0x20,0x54,0x72, 0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e, 0x61,0x6c,0x2f,0x2f,0x45,0x4e,0x22,0x3e, 0x0d,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x3e, 0x0d,0x0a,0x20,0x20,0x3c,0x68,0x65,0x61, 0x64,0x3e,0x0d,0x0a,0x20,0x20,0x3c,0x6d, 0x65,0x74,0x61,0x20,0x68,0x74,0x74,0x70, 0x2d,0x65,0x71,0x75,0x69,0x76,0x3d,0x22, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d, 0x74,0x79,0x70,0x65,0x22,0x20,0x63,0x6f, 0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x74, 0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c, 0x3b,0x20,0x63,0x68,0x61,0x72,0x73,0x65, 0x74,0x3d,0x77,0x69,0x6e,0x64,0x6f,0x77, 0x73,0x2d,0x31,0x32,0x35,0x30,0x22,0x3e, 0x0d,0x0a,0x20,0x20,0x3c,0x74,0x69,0x74, 0x6c,0x65,0x3e,0x53,0x54,0x4d,0x33,0x32, 0x46,0x34,0x78,0x78,0x20,0x49,0x41,0x50, 0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x48, 0x54,0x54,0x50,0x3c,0x2f,0x74,0x69,0x74, 0x6c,0x65,0x3e,0x0d,0x0a,0x20,0x20,0x3c, 0x2f,0x68,0x65,0x61,0x64,0x3e,0x0d,0x0a, 0x20,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e, 0x0d,0x0a,0x20,0x20,0x20,0x20,0x3c,0x66, 0x6f,0x72,0x6d,0x20,0x61,0x63,0x74,0x69, 0x6f,0x6e,0x20,0x3d,0x22,0x2f,0x75,0x70, 0x6c,0x6f,0x61,0x64,0x2e,0x63,0x67,0x69, 0x22,0x20,0x65,0x6e,0x63,0x74,0x79,0x70, 0x65,0x3d,0x22,0x6d,0x75,0x6c,0x74,0x69, 0x70,0x61,0x72,0x74,0x2f,0x66,0x6f,0x72, 0x6d,0x2d,0x64,0x61,0x74,0x61,0x22,0x20, 0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22, 0x70,0x6f,0x73,0x74,0x22,0x3e,0x0d,0x0a, 0x20,0x20,0x3c,0x70,0x3e,0x50,0x6c,0x65, 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, 0x69,0x66,0x79,0x20,0x61,0x20,0x62,0x69, 0x6e,0x61,0x72,0x79,0x20,0x66,0x69,0x6c, 0x65,0x20,0x74,0x6f,0x20,0x75,0x70,0x6c, 0x6f,0x61,0x64,0x20,0x69,0x6e,0x74,0x6f, 0x20,0x53,0x54,0x4d,0x33,0x32,0x46,0x34, 0x78,0x78,0x20,0x66,0x6c,0x61,0x73,0x68, 0x3a,0x0d,0x0a,0x20,0x20,0x20,0x20,0x3c, 0x62,0x72,0x3e,0x0d,0x0a,0x20,0x20,0x20, 0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20, 0x74,0x79,0x70,0x65,0x3d,0x22,0x66,0x69, 0x6c,0x65,0x22,0x20,0x6e,0x61,0x6d,0x65, 0x3d,0x22,0x64,0x61,0x74,0x61,0x66,0x69, 0x6c,0x65,0x22,0x20,0x73,0x69,0x7a,0x65, 0x3d,0x22,0x34,0x30,0x22,0x3e,0x0d,0x0a, 0x20,0x20,0x3c,0x2f,0x70,0x3e,0x0d,0x0a, 0x20,0x20,0x3c,0x64,0x69,0x76,0x3e,0x0d, 0x0a,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e, 0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65, 0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74, 0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d, 0x22,0x55,0x70,0x6c,0x6f,0x61,0x64,0x22, 0x3e,0x0d,0x0a,0x20,0x20,0x3c,0x2f,0x64, 0x69,0x76,0x3e,0x0d,0x0a,0x3c,0x2f,0x66, 0x6f,0x72,0x6d,0x3e,0x0d,0x0a,0x20,0x20, 0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0d, 0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e, 0x0d,0x0a,...}; static const char data_uploaddone_html[] = { 0x2f,0x75,0x70,0x6c,0x6f,0x61,0x64,0x64, 0x6f,0x6e,0x65,0x2e,0x68,0x74,0x6d,0x6c, 0x00,0x48,0x54,0x54,0x50,0x2f,0x31,0x2e, 0x30,0x20,0x32,0x30,0x30,0x20,0x4f,0x4b, 0x0d,0x0a,0x53,0x65,0x72,0x76,0x65,0x72, 0x3a,0x20,0x75,0x49,0x50,0x2f,0x30,0x2e, 0x39,0x20,0x28,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x64,0x75,0x6e,0x6b,0x65,0x6c, 0x73,0x2e,0x63,0x6f,0x6d,0x2f,0x61,0x64, 0x61,0x6d,0x2f,0x75,0x69,0x70,0x2f,0x29, 0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x2d,0x74,0x79,0x70,0x65,0x3a,0x20, 0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d, 0x6c,0x0d,0x0a,0x0d,0x0a,0x3c,0x21,0x44, 0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x48, 0x54,0x4d,0x4c,0x20,0x50,0x55,0x42,0x4c, 0x49,0x43,0x20,0x22,0x2d,0x2f,0x2f,0x57, 0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, 0x48,0x54,0x4d,0x4c,0x20,0x34,0x2e,0x30, 0x31,0x20,0x54,0x72,0x61,0x6e,0x73,0x69, 0x74,0x69,0x6f,0x6e,0x61,0x6c,0x2f,0x2f, 0x45,0x4e,0x22,0x3e,0x0d,0x0a,0x3c,0x68, 0x74,0x6d,0x6c,0x3e,0x20,0x20,0x20,0x20, 0x20,0x0d,0x0a,0x20,0x20,0x3c,0x68,0x65, 0x61,0x64,0x3e,0x20,0x20,0x20,0x20,0x20, 0x20,0x20,0x0d,0x0a,0x20,0x20,0x20,0x20, 0x3c,0x6d,0x65,0x74,0x61,0x20,0x68,0x74, 0x74,0x70,0x2d,0x65,0x71,0x75,0x69,0x76, 0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e, 0x74,0x2d,0x74,0x79,0x70,0x65,0x22,0x20, 0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d, 0x22,0x74,0x65,0x78,0x74,0x2f,0x68,0x74, 0x6d,0x6c,0x3b,0x20,0x63,0x68,0x61,0x72, 0x73,0x65,0x74,0x3d,0x77,0x69,0x6e,0x64, 0x6f,0x77,0x73,0x2d,0x31,0x32,0x35,0x30, 0x22,0x3e,0x20,0x20,0x20,0x20,0x20,0x20, 0x20,0x0d,0x0a,0x20,0x20,0x20,0x20,0x3c, 0x74,0x69,0x74,0x6c,0x65,0x3e,0x53,0x54, 0x4d,0x33,0x32,0x20,0x49,0x41,0x50,0x20, 0x75,0x73,0x69,0x6e,0x67,0x20,0x48,0x54, 0x54,0x50,0x20,0x20,0x20,0x20,0x20,0x0d, 0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74, 0x69,0x74,0x6c,0x65,0x3e,0x20,0x20,0x20, 0x20,0x20,0x0d,0x0a,0x20,0x20,0x3c,0x2f, 0x68,0x65,0x61,0x64,0x3e,0x20,0x20,0x20, 0x20,0x20,0x0d,0x0a,0x20,0x20,0x3c,0x62, 0x6f,0x64,0x79,0x3e,0x20,0x20,0x46,0x69, 0x6c,0x65,0x20,0x55,0x70,0x6c,0x6f,0x61, 0x64,0x20,0x44,0x6f,0x6e,0x65,0x21,0x20, 0x20,0x20,0x20,0x20,0x20,0x0d,0x0a,0x20, 0x20,0x20,0x20,0x3c,0x62,0x72,0x3e,0x20, 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0d, 0x0a,0x20,0x20,0x20,0x20,0x3c,0x66,0x6f, 0x72,0x6d,0x20,0x61,0x63,0x74,0x69,0x6f, 0x6e,0x20,0x3d,0x22,0x2f,0x72,0x65,0x73, 0x65,0x74,0x6d,0x63,0x75,0x2e,0x63,0x67, 0x69,0x22,0x20,0x65,0x6e,0x63,0x74,0x79, 0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74, 0x2f,0x70,0x6c,0x61,0x69,0x6e,0x22,0x20, 0x6d,0x65,0x74,0x68,0x6f,0x64,0x3d,0x22, 0x67,0x65,0x74,0x22,0x3e,0x20,0x20,0x20, 0x20,0x0d,0x0a,0x20,0x20,0x20,0x20,0x20, 0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20, 0x74,0x79,0x70,0x65,0x3d,0x22,0x73,0x75, 0x62,0x6d,0x69,0x74,0x22,0x20,0x76,0x61, 0x6c,0x75,0x65,0x3d,0x22,0x52,0x65,0x73, 0x65,0x74,0x20,0x4d,0x43,0x55,0x22,0x3e, 0x0d,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f, 0x66,0x6f,0x72,0x6d,0x3e,0x20,0x20,0x0d, 0x0a,0x20,0x20,0x3c,0x2f,0x62,0x6f,0x64, 0x79,0x3e,0x0d,0x0a,0x3c,0x2f,0x68,0x74, 0x6d,0x6c,0x3e,...}; const struct fsdata_file file_index_html[] = {{NULL, data_index_html, data_index_html + 12, sizeof(data_index_html) - 12}}; const struct fsdata_file file_reset_html[] = {{file_index_html, data_reset_html, data_reset_html + 12, sizeof(data_reset_html) - 12}}; const struct fsdata_file file_upload_html[] = {{file_reset_html, data_upload_html, data_upload_html + 13, sizeof(data_upload_html) - 13}}; const struct fsdata_file file_uploaddone_html[] = {{file_upload_html, data_uploaddone_html, data_uploaddone_html + 17, sizeof(data_uploaddone_html) - 17}}; #define FS_ROOT file_uploaddone_html #define FS_NUMFILES 4
Details
Show:
from
Types: Columns: