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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
|
/*
* 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 *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://cvs.auriga.wearlab.de/cgi-bin/cvsweb.cgi/dillo2/ChangeLog?rev=HEAD;cvsroot=dillo'>\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/'>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'>"
" 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 in the terms of the GPL3.\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 <a href='http://www.gnu.org/licenses/gpl.html'>GPL3</a>\n"
" is the legal mechanism that gives you these freedoms.\n"
" It also protects them from being taken away: any derivative work\n"
" based on the program must be under the GPL3.<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"
" October ??, 2008\n"
"<tr>\n"
" <td bgcolor='#FFFFFF'>\n"
" <table border='0' cellspacing='0' cellpadding='5'>\n"
" <tr>\n"
" <td>\n"
"<p>\n"
"This is a rewrite of dillo, using FLTK2, that comes\n"
"with lots of improvements and fixes.\n"
"<p>\n"
"Our users will surely enjoy this new release as it will give them\n"
"the same things they're accustomed plus tabbed browsing,\n"
"antialiasing, different\n"
"character sets, accepting compressed pages, control over image\n"
"loading, smaller footprint, fewer dependencies, better table\n"
"rendering, bugfixes, improved GUI, ... In brief, a better dillo.\n"
"<p>\n"
"Remember that dillo project uses a release model where every new\n"
"browser shall be better than the former.\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://cvs.auriga.wearlab.de/cgi-bin/cvsweb.cgi/dillo2/ChangeLog?rev=HEAD;cvsroot=dillo'>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>Ported Dillo from GTK1 to FLTK2."
"<li>Ported a susbstantial part of the code from C to C++ (FLTK2 is in C++)."
"<li>Wrote a new library: Dlib. With 'Dlib' Dillo doesn't need glib anymore."
"<li>Ported all the code to Dlib."
"<li>Made Dillo's UI Control Panel resizable on-the-fly."
"<li>Implemented a new, simpler, dillorc parser."
"<li>Reimplemented the Concomitant Callback chains into a uniform scheme!"
"<li>Removed threads from IO. Now it only uses select-based watches."
"<li>Simplified http.c by reusing the new non-blocking writes in IO."
"<li>Implemented Stop button to not only stop rendering but also networking."
"<li>Bound Ctrl+Space to toggle fullscreen mode."
"<li>Added a http_referer preference. See details in dillo2rc."
"<li>CCC: added reentrancy control to the OpEnd and OpAbort operations."
"<li>CCC: enhanced the debug function and implemented OpAbort for dpi."
"<li>Hooked a decoder for text/plain with charset."
"<li>Forbid dpi GET and POST from non dpi-generated urls."
"<li>Implemented tabbed browsing."
"<li>Added a image-loading toggle button to the UI."
"<li>Added line numbers and enabled wrapping in the 'View Source' window."
"<li>Added HTTP-1.1's chunked transfer support!"
"<li>Made the stop button sensitive when loading an image."
"<li>Added support for 'charset' in the HTTP header field for Content-Type."
"<li>Added support for 'charset' in the META element."
"<li>Added the multipart/form-data encoding method to form submission."
"<li>Made zlib a configure requirement, and cleaned up configure.in."
"<li>Enabled the file dpi to look inside gzipped files."
"<li>Added code for optional image loading (nice interface)!"
"<li>Fixed data guesser to detect ASCII, LATIN1, UTF8, KOI8-R, CP-1251 as"
" text."
"<li>Fixed void to int conversions for 64bit-arch."
"<li>Set the url resolver to escape illegal chars instead of stripping."
"<li>Big html.cc cleanup. New classes, form API, source split."
"<li>Added int32_t, EAI_NODATA and iconv tests for FreeBSD."
"<li>Replaced the findtext dialog with an in-window widget!"
"</ul>\n"
"Dw2:<br>\n"
"<ul>\n"
"<li>Enabled clipped redraws (avoids some flickering)."
"<li>Added combination of drawing rectangles into a larger one."
"<li>Made getWidgetAtPoint() a virtual method of widget and implemented a"
" custom one for TextBlock, reducing CPU usage on pages full of links."
"<li>Set FltkViewBase::draw to intersect with view area for expose."
"<li>Added double buffering for partial redraws!"
"<li>Reduced memory usage in 30% by reusing styles, reducing the size"
" of struct Content, and not preallocating in SimpleVector. !"
"<li>Moved highlighting information from struct Word into Textblock"
" to save memory."
"<li>Reduced memory usage 10% with a custom memory handler in Textblock."
"<li>Implemented selection of multibyte glyphs (UTF-8)."
"<li>Fixed a slithery BUG in lout::misc::Stringbuffer."
"<li>Added 'enter' and 'leave' signals into class Resource."
"<li>Enabled mouse wheel scrolling."
"<li>Added setDeleteCallback(DW_Callback_t func, void *data) to widget."
" This allows to hook a callback when the widget is destroyed."
"<li>Changed the table-apportion algorithms + bug fixes. Big work!"
"</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 to your taste.\n"
" <li> There's documentation for developers in the <CODE>/doc</CODE>\n"
" dir within the tarball; you can find directions on everything\n"
" else at the home page.\n"
" <li> Dillo has context sensitive menus using the\n"
" right mouse button (available on pages, links, images,\n"
" the Back and Forward buttons, and 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 <strong>for developers</strong>\n"
" and <em>advanced users</em>.\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";
|