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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
/*
* File: about.c
*
* Copyright (C) 1999-2007 Jorge Arellano Cid <jcid@dillo.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*/
#include <config.h>
/*
* HTML text for startup screen
*/
const char *const AboutSplash=
"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>\n"
"<html>\n"
"<head>\n"
"<title>Splash screen for dillo-" VERSION "</title>\n"
"</head>\n"
"<body bgcolor='#778899' text='#000000' link='#000000' vlink='#000000'>\n"
"\n"
"\n"
"<!-- the head of the page -->\n"
"\n"
"<table width='100%' border='0' cellspacing='1' cellpadding='3'>\n"
" <tr><td>\n"
" <table border='1' cellspacing='1' cellpadding='0'>\n"
" <tr>\n"
" <td bgcolor='#000000'>\n"
" <table width='100%' border='0' bgcolor='#ffffff'>\n"
" <tr>\n"
" <td valign='top' align='left'>\n"
" <h1> Welcome to Dillo " VERSION " </h1>\n"
" </table>\n"
" </table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"\n"
"<!-- the main layout table, definition -->\n"
"\n"
"<table width='100%' border='0' cellspacing='0' cellpadding='0'>\n"
"<tr><td valign='top' width='150' align='center'>\n"
"\n"
"\n"
"<!-- The navigation bar -->\n"
"\n"
"<table border='0' cellspacing='0' cellpadding='0' width='140' bgcolor='#000000'>\n"
"<tr>\n"
" <td>\n"
" <table width='100%' border='0' cellspacing='1' cellpadding='3'>\n"
" <tr>\n"
" <td colspan='1' bgcolor='#CCCCCC'>Dillo\n"
" <tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'><tr><td>\n"
" <table border='0' cellspacing='0' cellpadding='2'><tr>\n"
" <td>\n"
" <td>\n"
" <a href='http://www.dillo.org/dillo2-help.html'>\n"
" Help</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.dillo.org/'>Home</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.dillo.org/funding/objectives.html'>\n"
" Objectives</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://hg.dillo.org/dillo/file/tip/ChangeLog'>\n"
" ChangeLog</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.dillo.org/interview.html'>\n"
" Interview</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.dillo.org/D_authors.html'>\n"
" Authors</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.dillo.org/donations.html'>\n"
" Donate</a>\n"
" </table>\n"
" </table>\n"
" </table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"<table border='0' cellspacing='0' cellpadding='0' width='140' bgcolor='#000000'>\n"
"<tr>\n"
" <td>\n"
" <table width='100%' border='0' cellspacing='1' cellpadding='3'>\n"
" <tr>\n"
" <td colspan='1' bgcolor='#CCCCCC'>News\n"
"\n"
" <tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'><tr><td>\n"
" <table border='0' cellpadding='2'>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://lwn.net/'>LWN</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://slashdot.org/'>Slashdot</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.linux.org.uk/Portaloo.cs'>Linux.org.uk</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.commondreams.org/'>C. Dreams</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.voltairenet.org/en'>VoltaireNet</a>\n"
" <tr>\n"
" <td> \n"
" <td>\n"
" <a href='http://www.nexusmagazine.com/'>Nexus M.</a>\n"
" </table>\n"
" </table>\n"
" </table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"<table border='0' cellspacing='0' cellpadding='0' width='140' bgcolor='#000000'>\n"
"<tr>\n"
" <td>\n"
" <table width='100%' border='0' cellspacing='1' cellpadding='3'>\n"
" <tr>\n"
" <td colspan='1' bgcolor='#CCCCCC'>Additional Stuff\n"
"\n"
" <tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'><tr><td>\n"
" <table border='0' cellpadding='2'><tr>\n"
" <td> \n"
" <td><a href='http://www.google.com/'>Google</a>\n"
" <tr>\n"
" <td> \n"
" <td><a href='http://www.wikipedia.org/'>Wikipedia</a>\n"
" <tr>\n"
" <td> \n"
" <td><a href='http://www.gutenberg.org/'>P. Gutenberg</a>\n"
" <tr>\n"
" <td> \n"
" <td><a href='http://freshmeat.net/'>FreshMeat</a>\n"
" <tr>\n"
" <td> \n"
" <td><a href='http://www.gnu.org/gnu/thegnuproject.html'>GNU\n"
" project</a>\n"
" <tr>\n"
" <td> \n"
" <td><a href='http://www.linuxfund.org/'>LinuxFund</a>\n"
" </table>\n"
" </table>\n"
" </table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"<table border='0' cellspacing='0' cellpadding='0' width='140' bgcolor='#000000'>\n"
"<tr>\n"
" <td>\n"
" <table width='100%' border='0' cellspacing='1' cellpadding='3'>\n"
" <tr>\n"
" <td colspan='1' bgcolor='#CCCCCC'>Essential Readings\n"
"\n"
" <tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'><tr><td>\n"
" <table border='0' cellpadding='2'>\n"
" <tr><td> \n"
" <td><a href='http://www.violence.de'>Peace&Violence</a>\n"
" <tr><td> \n"
" <td><a href='http://www.gnu.org/philosophy/right-to-read.html'>\n"
" Right to Read</a>\n"
" </table>\n"
" </table>\n"
" </table>\n"
"</table>\n"
"\n"
"<table border='0' width='100%' cellpadding='0' cellspacing='0'><tr><td height='10'></table>\n"
"\n"
"\n"
"<!-- the main layout table, a small vertical spacer -->\n"
"\n"
"<td width='20'><td valign='top'>\n"
"\n"
"\n"
"<!-- Main Part of the page -->\n"
"\n"
"<table border='0' cellpadding='0' cellspacing='0' align='center' bgcolor='#000000' width='100%'><tr><td>\n"
"<table border='0' cellpadding='5' cellspacing='1' width='100%'>\n"
"<tr>\n"
" <td bgcolor='#CCCCCC'>\n"
" <h4>Free Software</h4>\n"
"<tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'><tr><td>\n"
" <p>\n"
" Dillo is Free Software under the terms of version 3 of the\n"
" <a href='http://www.gnu.org/licenses/gpl.html'>GPL</a>.\n"
" This means you have four basic freedoms:\n"
" <ul>\n"
" <li>Freedom to use the program any way you see fit.\n"
" <li>Freedom to study and modify the source code.\n"
" <li>Freedom to make backup copies.\n"
" <li>Freedom to redistribute it.\n"
" </ul>\n"
" The GPL is the legal mechanism that gives you these freedoms.\n"
" It also protects you from having them taken away: any derivative work\n"
" based on the program must be under GPLv3 as well.<br>\n"
" </table>\n"
"</table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"<table border='0' cellpadding='0' cellspacing='0' align='center' bgcolor='#000000' width='100%'><tr><td>\n"
"<table border='0' cellpadding='5' cellspacing='1' width='100%'>\n"
"<tr>\n"
" <td bgcolor='#CCCCCC'>\n"
" <h4>Release overview</h4>\n"
" February 11, 2010\n"
"<tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'>\n"
" <tr>\n"
" <td>\n"
"<p>\n"
"This release features a major overhaul of the cookies subsystem,\n"
"a reimplementation of the DPI API, a configurable connection limit,\n"
"and various CSS improvements.\n"
"<p>\n"
"Remember that the dillo project uses a release model where every new\n"
"version shall be better than the last.\n"
"<EM>Keep up with the latest one!</EM>\n"
" </table>\n"
"</table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"<table border='0' cellpadding='0' cellspacing='0' align='center' bgcolor='#000000' width='100%'><tr><td>\n"
"<table border='0' cellpadding='5' cellspacing='1' width='100%'>\n"
"<tr>\n"
" <td bgcolor='#CCCCCC'>\n"
" <h4>ChangeLog highlights</h4>\n"
" (Extracted from the\n"
" <a href='http://hg.dillo.org/dillo/file/tip/ChangeLog'>full\n"
" ChangeLog</a>)\n"
"<tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'>\n"
" <tr>\n"
" <td>\n"
"<ul>\n"
"<li>Added keybindings for scrolling.\n"
"<li>Help button and local help file.\n"
"<li>Add support for multiple class names in CSS.\n"
"<li>Fix X11 coordinate overflows.\n"
"<li>Improve CSS font parsing.\n"
"<li>Enable font face setting via <font> element.\n"
"<li>Ignore XML comment markers in CSS.\n"
"<li>Fix user agent style for nested <ul>.\n"
"<li>Handle signed chars. Added dIsspace() and dIsalnum() to dlib.\n"
"<li>Changed the CCCs to build in one step (for both HTTP and DPI).\n"
"<li>Remove the empty cache entry lingering after connection abort.\n"
"<li>Fixed URL unescaping in the datauri DPI.\n"
"<li>Changed and reimplemented the DPI API.\n"
"<li>Allow linebreaks around Chinese/Japanese characters.\n"
"<li>Fix scrolling for text search.\n"
"<li>Tooltips.\n"
"<li>Enable popup menu below bottom of page content.\n"
"<li>Handle JPEGs with CMYK color space.\n"
"<li>General cookies overhaul.\n"
"<li>Fixed a bug in w3c_mode.\n"
"<li>Limit number of simultaneous connections.\n"
"</ul>\n"
" </table>\n"
"</table>\n"
"</table>\n"
"\n"
"<br>\n"
"\n"
"<table border='0' cellpadding='0' cellspacing='0' align='center' bgcolor='#000000' width='100%'><tr><td>\n"
"<table border='0' cellpadding='5' cellspacing='1' width='100%'>\n"
"<tr>\n"
" <td bgcolor='#CCCCCC'>\n"
" <h4>Notes</h4>\n"
"<tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'>\n"
" <tr>\n"
" <td>\n"
"<ul>\n"
" <li> There's a\n"
" <a href='http://www.dillo.org/dillorc'>dillorc</a>\n"
" (readable config) file within the tarball; It is well-commented\n"
" and has plenty of options to customize dillo, so <STRONG>copy\n"
" it</STRONG> to your <STRONG>~/.dillo/</STRONG> directory, and\n"
" modify it to your taste.\n"
" <li> Documentation for developers is in the <CODE>/doc</CODE>\n"
" dir within the tarball; you can find directions on everything\n"
" else at the home page.\n"
" <li> The right mouse button brings up a context-sensitive menu\n"
" (available on pages, links, images, forms, the Back and Forward buttons,\n"
" and the bug meter).\n"
" <li> Dillo behaves very nicely when browsing local files, images, and HTML.\n"
" It's also very good for Internet searching.\n"
" <li> This release is mainly intended for <strong>developers</strong>\n"
" and <strong>advanced users</strong>.\n"
" <li> Frames, Java and Javascript are not supported.\n"
"</ul>\n"
"<br>\n"
" </table>\n"
"</table>\n"
"</table>\n"
"\n"
"<table border='0' width='100%' cellpadding='0' cellspacing='0'><tr><td height='10'></table>\n"
"\n"
"\n"
"<!-- the main layout table, a small vertical spacer -->\n"
"\n"
"<td width='20'>\n"
"\n"
"\n"
"\n"
"<!-- The right column (info) -->\n"
"<td valign='top' align='center'>\n"
"\n"
"\n"
"\n"
"<!-- end of the main layout table -->\n"
"\n"
"\n"
"</table>\n"
"\n"
"<!-- footnotes -->\n"
"\n"
"<br><br><center>\n"
"<hr size='2'>\n"
"<hr size='2'>\n"
"</center>\n"
"</body>\n"
"</html>\n";
|