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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
|
/* character level styles for Lynx
* (c) 1996 Rob Partington -- donated to the Lyncei (if they want it :-)
* @Id: LYStyle.c 1.13 Wed, 22 Oct 1997 08:29:34 -0600 dickey @
*/
#include "HTUtils.h"
#include "HTML.h"
#include "tcp.h"
#include "LYSignal.h"
#include "LYGlobalDefs.h"
#include "LYStructs.h"
#include "LYCurses.h"
#include "LYCharUtils.h"
#include "AttrList.h"
#include "SGML.h"
#include "HTMLDTD.h"
/* Hash table definitions */
#include "LYHash.h"
#include "LYStyle.h"
#include "LYexit.h"
#include "LYLeaks.h"
#ifdef USE_COLOR_STYLE
PUBLIC bucket hashStyles[CSHASHSIZE];
/* definitions for the mono attributes we can use */
static int ncursesMono[7] = {
A_NORMAL, A_BOLD, A_REVERSE, A_UNDERLINE, A_STANDOUT, A_BLINK, A_DIM
};
/*
* If these strings don't match the meanings of the above attributes,
* you'll confuse the hell out of people, so make them the same. - RP
*/
static char *Mono_Strings[7] =
{
"normal", "bold", "reverse", "underline", "standout", "blink", "dim"
};
/* definitions for the colour attributes we can use */
static int ncursesColors[8] = {
COLOR_BLACK, COLOR_RED, COLOR_GREEN, COLOR_YELLOW, COLOR_BLUE,
COLOR_MAGENTA, COLOR_CYAN, COLOR_WHITE
};
/*
* Ditto for these strings - RP
*/
static char *Color_Strings[16] =
{
"black", "red", "green", "brown", "blue", "magenta", "cyan", "lightgray",
"gray", "brightred", "brightgreen", "yellow", "brightblue", "brightmagenta",
"brightcyan", "white"
};
/* Remember the hash codes for common elements */
PUBLIC int s_alink=NOSTYLE, s_a=NOSTYLE, s_status=NOSTYLE,
s_label=NOSTYLE, s_value=NOSTYLE, s_high=NOSTYLE,
s_normal=NOSTYLE, s_alert=NOSTYLE, s_title=NOSTYLE;
/* start somewhere safe */
PRIVATE int colorPairs=0;
PRIVATE int last_fA=COLOR_WHITE, last_bA=COLOR_BLACK;
#define FREE(x) if (x) {free(x); x = NULL;}
/* icky parsing of the style options */
PRIVATE void parse_attributes ARGS5(char*,mono,char*,fg,char*,bg,int,style,char*,element)
{
int i;
int mA=0, fA=COLOR_WHITE, bA=COLOR_BLACK, cA=0;
int newstyle=hash_code(element);
if (TRACE)
fprintf(stderr, "CSS(PA):style d=%d / h=%d, e=%s\n", style, newstyle,element);
for (i=0; i<7; i++)
{
if (!strcasecmp(Mono_Strings[i], mono))
{
mA = ncursesMono[i];
}
}
if (TRACE)
fprintf(stderr, "CSS(CP):%d\n", colorPairs);
/*
* `nocolor' means don't even try to do colour for this - RP
*/
if (!strcasecmp("nocolor", fg))
{
fA=-1;
bA=-1;
cA=-1;
}
else
{
for (i=0; i<16; i++)
{
if (!strcasecmp(Color_Strings[i], fg))
{
fA = ncursesColors[i%8];
/*
* if the string was in the upper 8, then it's
* a bright version, so set the BOLD attribute
*/
cA = (i>=8 ? A_BOLD : 0);
}
}
/*
* Backgrounds are horribly broken under ncurses - RP
*/
for (i=0; i<16; i++)
{
if (!strcasecmp(Color_Strings[i], bg))
{
bA = ncursesColors[i%8];
cA |=(i>=8 ? A_BOLD : 0);
}
}
}
/*
* If we have colour, and space to create a new colour attribute,
* and we have a valid colour description, then add this style
*/
if (lynx_has_color && colorPairs < COLOR_PAIRS-1 && fA!=-1)
{
if (colorPairs <= 0 || fA != last_fA || bA != last_bA) {
colorPairs++;
init_pair(colorPairs, fA, bA);
last_fA = fA;
last_bA = bA;
}
if (style < DSTYLE_ELEMENTS)
setStyle(style, COLOR_PAIR(colorPairs)|cA, cA, mA);
setHashStyle(newstyle, COLOR_PAIR(colorPairs)|cA, cA, mA, element);
}
else
{
/* only mono is set */
if (style < DSTYLE_ELEMENTS)
setStyle(style, -1, -1, mA);
setHashStyle(newstyle, -1, -1, mA, element);
}
}
/* parse a style option of the format
* STYLE:<OBJECT>:FG:BG
*/
PRIVATE void parse_style ARGS1(char*,buffer)
{
char *tmp = strchr(buffer, ':');
char *element, *mono, *fg, *bg;
if(!tmp)
{
fprintf (stderr, "\
Syntax Error parsing style in lss file:\n\
[%s]\n\
The line must be of the form:\n\
OBJECT:MONO:COLOR (ie em:bold:brightblue:white)\n\
where OBJECT is one of EM,STRONG,B,I,U,BLINK etc.\n\n", buffer);
if (!dump_output_immediately) {
#ifndef NOSIGHUP
(void) signal(SIGHUP, SIG_DFL);
#endif /* NOSIGHUP */
(void) signal(SIGTERM, SIG_DFL);
#ifndef VMS
(void) signal(SIGINT, SIG_DFL);
#endif /* !VMS */
#ifdef SIGTSTP
if (no_suspend)
(void) signal(SIGTSTP,SIG_DFL);
#endif /* SIGTSTP */
exit(-1);
}
exit(1);
}
{
char *i;
for (i=buffer; *i; *i++=tolower(*i));
}
*tmp='\0';
element=buffer;
mono=tmp+1;
tmp=strchr(mono, ':');
if (!tmp) { fg="nocolor"; bg="nocolor"; }
else
{
*tmp='\0';
fg=tmp+1;
tmp=strchr(fg, ':');
if (!tmp) bg="black";
else {*tmp='\0'; bg=tmp+1;}
}
if (TRACE)
{
int bucket = hash_code(element);
fprintf(stderr, "CSSPARSE:%s => %d %s\n",
element, bucket,
(hashStyles[bucket].name ? "used" : ""));
}
strtolower(element);
/*
* We use some pseudo-elements, so catch these first
*/
if (!strncasecmp(element, "alink", 5)) /* active link */
{
parse_attributes(mono,fg,bg,DSTYLE_ALINK,"alink");
}
else if (!strcasecmp(element, "a")) /* normal link */
{
parse_attributes(mono,fg,bg, DSTYLE_LINK,"a");
parse_attributes(mono,fg,bg, HTML_A,"a");
}
else if (!strncasecmp(element, "status", 4)) /* status bar */
{
parse_attributes(mono,fg,bg, DSTYLE_STATUS,"status");
}
else if (!strncasecmp(element, "label", 6)) /* [INLINE]'s */
{
parse_attributes(mono,fg,bg,DSTYLE_OPTION,"label");
}
else if (!strncasecmp(element, "value", 5)) /* [INLINE]'s */
{
parse_attributes(mono,fg,bg,DSTYLE_VALUE,"value");
}
else if (!strncasecmp(element, "high", 4)) /* [INLINE]'s */
{
parse_attributes(mono,fg,bg,DSTYLE_HIGH,"high");
}
else if (!strcmp(element, "normal")) /* added - kw */
{
parse_attributes(mono,fg,bg,DSTYLE_NORMAL,"html");
}
/* this may vanish */
else if (!strncasecmp(element, "candy", 5)) /* [INLINE]'s */
{
parse_attributes(mono,fg,bg,DSTYLE_CANDY,"candy");
}
/* Ok, it must be a HTML element, so look through the list until we
* find it
*/
else
{
#if !defined(USE_HASH)
int i;
for (i=0; i<HTML_ELEMENTS; i++)
{
if (!strcasecmp (HTML_dtd.tags[i].name, element))
{
if (TRACE)
fprintf(stderr, "PARSECSS:applying style <%s,%s,%s> for HTML_%s\n",mono,fg,bg,HTML_dtd.tags[i].name);
parse_attributes(mono,fg,bg,i+STARTAT,element);
break;
}
}
#else
int element_number = -1;
HTTag * t = SGMLFindTag(&HTML_dtd, element);
if (t && t->name) {
element_number = t - HTML_dtd.tags;
}
if (element_number >= HTML_A &&
element_number < HTML_ELEMENTS)
parse_attributes(mono,fg,bg, element_number+STARTAT,element);
else
parse_attributes(mono,fg,bg, DSTYLE_ELEMENTS,element);
#endif
}
}
PRIVATE void free_colorstylestuff NOARGS
{
style_initialiseHashTable();
style_deleteStyleList();
}
/*
* initialise the default style sheet
* This should be able to be read from a file in CSS format :-)
*/
PRIVATE void initialise_default_stylesheet NOARGS
{
}
/* Set all the buckets in the hash table to be empty */
PUBLIC void style_initialiseHashTable NOARGS
{
int i;
static int firsttime = 1;
for (i=0; i<CSHASHSIZE; i++)
{
if (firsttime)
hashStyles[i].name=NULL;
else
FREE(hashStyles[i].name);
hashStyles[i].color=-1;
hashStyles[i].cattr=-1;
hashStyles[i].mono=-1;
}
if (firsttime) {
firsttime = 0;
atexit(free_colorstylestuff);
}
s_high=hash_code("high");
s_alink=hash_code("alink");
s_value=hash_code("value");
s_label=hash_code("label");
s_a=hash_code("a");
s_status=hash_code("status");
s_alert=hash_code("alert");
s_title=hash_code("title");
}
/* because curses isn't started when we parse the config file, we
* need to remember the STYLE: lines we encounter and parse them
* after curses has started
*/
HTList *lss_styles = NULL;
PUBLIC void parse_userstyles NOARGS
{
char *name;
HTList *cur = lss_styles;
colorPairs=0;
style_initialiseHashTable();
/* set our styles to be the same as vanilla-curses-lynx */
initialise_default_stylesheet();
while ((name=HTList_nextObject(cur)) != NULL)
{
if (TRACE)
fprintf(stderr, "LSS:%s\n", name ? name : "!?! empty !?!");
if (name != NULL)
parse_style(name);
}
}
/* Add a STYLE: option line to our list */
PUBLIC void HStyle_addStyle ARGS1(char*,buffer)
{
char *name=NULL;
StrAllocCopy(name, buffer);
if (lss_styles==NULL)
lss_styles=HTList_new();
strtolower(name);
if (TRACE)
fprintf(stderr, "READCSS:%s\n", name ? name : "!?! empty !?!");
HTList_addObject (lss_styles, name);
}
PUBLIC void style_deleteStyleList NOARGS
{
char *name;
while ((name = HTList_removeLastObject(lss_styles)) != NULL)
FREE(name);
HTList_delete (lss_styles);
lss_styles=NULL;
}
char* default_stylesheet[]={
"a:bold", "em:bold", "strong:bold", "b:bold", "i:bold",
"alink:reverse", "status:reverse", NULL
};
PUBLIC void style_defaultStyleSheet NOARGS
{
int i;
for (i=0; default_stylesheet[i]; i++)
HStyle_addStyle(default_stylesheet[i]);
}
PUBLIC int style_readFromFile ARGS1(char*, file)
{
FILE *fh;
char buffer[1024];
int len;
if (TRACE)
fprintf(stderr, "CSS:Reading styles from file: %s\n", file ? file : "?!? empty ?!?");
if (file == NULL || *file == '\0')
return -1;
fh=fopen(file, "r");
if (!fh)
{
/* this should probably be an alert or something */
if (TRACE)
fprintf(stderr, "CSS:Can't open style file %s, using defaults\n", file);
return -1;
}
style_initialiseHashTable();
style_deleteStyleList();
while (!feof(fh)
&& fgets(buffer, sizeof(buffer)-1, fh) != NULL)
{
len = strlen(buffer);
if (len > 0) {
if (buffer[len-1] == '\n' || buffer[len-1] == '\r')
buffer[len-1]='\0'; /* hack */
else
buffer[1023]='\0'; /* hack */
}
LYTrimTail(buffer);
LYTrimHead(buffer);
if (buffer[0] != '#' && (len = strlen(buffer)) > 0)
HStyle_addStyle(buffer);
}
/* the default styles are added after the user styles in order
** that they come before them <grin> RP
*/
/* style_defaultStyleSheet(); */
fclose (fh);
if (LYCursesON)
parse_userstyles();
return 0;
}
#endif /* USE_COLOR_STYLE */
|