update
[claws.git] / src / html.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999,2000 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include <glib.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <ctype.h>
24
25 #include "html.h"
26 #include "codeconv.h"
27 #include "utils.h"
28
29 #define HTMLBUFSIZE     8192
30 #define HR_STR          "------------------------------------------------"
31
32 typedef struct _HTMLSymbol      HTMLSymbol;
33
34 struct _HTMLSymbol
35 {
36         gchar *const key;
37         gchar *const val;
38 };
39
40 static HTMLSymbol symbol_list[] = {
41         {"&lt;"    , "<"},
42         {"&gt;"    , ">"},
43         {"&amp;"   , "&"},
44         {"&quot;"  , "\""},
45         {"&nbsp;"  , " "},
46         {"&trade;" , "(TM)"},
47
48         {"&#153;", "(TM)"},
49 };
50
51 static HTMLSymbol ascii_symbol_list[] = {
52         {"&iexcl;" , "^!"},
53         {"&brvbar;", "|"},
54         {"&copy;"  , "(C)"},
55         {"&laquo;" , "<<"},
56         {"&reg;"   , "(R)"},
57
58         {"&sup2;"  , "^2"},
59         {"&sup3;"  , "^3"},
60         {"&acute;" , "'"},
61         {"&cedil;" , ","},
62         {"&sup1;"  , "^1"},
63         {"&raquo;" , ">>"},
64         {"&frac14;", "1/4"},
65         {"&frac12;", "1/2"},
66         {"&frac34;", "3/4"},
67         {"&iquest;", "^?"},
68
69         {"&Agrave;", "A`"},
70         {"&Aacute;", "A'"},
71         {"&Acirc;" , "A^"},
72         {"&Atilde;", "A~"},
73         {"&AElig;" , "AE"},
74         {"&Egrave;", "E`"},
75         {"&Eacute;", "E'"},
76         {"&Ecirc;" , "E^"},
77         {"&Igrave;", "I`"},
78         {"&Iacute;", "I'"},
79         {"&Icirc;" , "I^"},
80
81         {"&Ntilde;", "N~"},
82         {"&Ograve;", "O`"},
83         {"&Oacute;", "O'"},
84         {"&Ocirc;" , "O^"},
85         {"&Otilde;", "O~"},
86         {"&Ugrave;", "U`"},
87         {"&Uacute;", "U'"},
88         {"&Ucirc;" , "U^"},
89         {"&Yacute;", "Y'"},
90
91         {"&agrave;", "a`"},
92         {"&aacute;", "a'"},
93         {"&acirc;" , "a^"},
94         {"&atilde;", "a~"},
95         {"&aelig;" , "ae"},
96         {"&egrave;", "e`"},
97         {"&eacute;", "e'"},
98         {"&ecirc;" , "e^"},
99         {"&igrave;", "i`"},
100         {"&iacute;", "i'"},
101         {"&icirc;" , "i^"},
102
103         {"&ntilde;", "n~"},
104         {"&ograve;", "o`"},
105         {"&oacute;", "o'"},
106         {"&ocirc;" , "o^"},
107         {"&otilde;", "o~"},
108         {"&ugrave;", "u`"},
109         {"&uacute;", "u'"},
110         {"&ucirc;" , "u^"},
111         {"&yacute;", "y'"},
112 };
113
114 static HTMLSymbol eucjp_symbol_list[] = {
115         {"&iexcl;" , "^!"},
116         {"&cent;"  , "\xa1\xf1"},
117         {"&pound;" , "\xa1\xf2"},
118         {"&yen;"   , "\xa1\xef"},
119         {"&brvbar;", "|"},
120         {"&sect;"  , "\xa1\xf8"},
121         {"&uml;"   , "\xa1\xaf"},
122         {"&copy;"  , "(C)"},
123         {"&laquo;" , "<<"},
124         {"&reg;"   , "(R)"},
125
126         {"&deg;"   , "\xa1\xeb"},
127         {"&plusmn;", "\xa1\xde"},
128         {"&sup2;"  , "^2"},
129         {"&sup3;"  , "^3"},
130         {"&acute;" , "'"},
131         {"&micro;" , "\xa6\xcc"},
132         {"&para;"  , "\xa2\xf9"},
133         {"&middot;", "\xa1\xa6"},
134         {"&cedil;" , ","},
135         {"&sup1;"  , "^1"},
136         {"&raquo;" , ">>"},
137         {"&frac14;", "1/4"},
138         {"&frac12;", "1/2"},
139         {"&frac34;", "3/4"},
140         {"&iquest;", "^?"},
141
142         {"&Agrave;", "A`"},
143         {"&Aacute;", "A'"},
144         {"&Acirc;" , "A^"},
145         {"&Atilde;", "A~"},
146         {"&Auml;"  , "A\xa1\xaf"},
147         {"&Aring;" , "A\xa1\xeb"},
148         {"&AElig;" , "AE"},
149         {"&Egrave;", "E`"},
150         {"&Eacute;", "E'"},
151         {"&Ecirc;" , "E^"},
152         {"&Euml;"  , "E\xa1\xaf"},
153         {"&Igrave;", "I`"},
154         {"&Iacute;", "I'"},
155         {"&Icirc;" , "I^"},
156         {"&Iuml;"  , "I\xa1\xaf"},
157
158         {"&Ntilde;", "N~"},
159         {"&Ograve;", "O`"},
160         {"&Oacute;", "O'"},
161         {"&Ocirc;" , "O^"},
162         {"&Otilde;", "O~"},
163         {"&Ouml;"  , "O\xa1\xaf"},
164         {"&times;" , "\xa1\xdf"},
165         {"&Ugrave;", "U`"},
166         {"&Uacute;", "U'"},
167         {"&Ucirc;" , "U^"},
168         {"&Uuml;"  , "U\xa1\xaf"},
169         {"&Yacute;", "Y'"},
170
171         {"&agrave;", "a`"},
172         {"&aacute;", "a'"},
173         {"&acirc;" , "a^"},
174         {"&atilde;", "a~"},
175         {"&auml;"  , "a\xa1\xaf"},
176         {"&aring;" , "a\xa1\xeb"},
177         {"&aelig;" , "ae"},
178         {"&egrave;", "e`"},
179         {"&eacute;", "e'"},
180         {"&ecirc;" , "e^"},
181         {"&euml;"  , "e\xa1\xaf"},
182         {"&igrave;", "i`"},
183         {"&iacute;", "i'"},
184         {"&icirc;" , "i^"},
185         {"&iuml;"  , "i\xa1\xaf"},
186
187         {"&eth;"   , "\xa2\xdf"},
188         {"&ntilde;", "n~"},
189         {"&ograve;", "o`"},
190         {"&oacute;", "o'"},
191         {"&ocirc;" , "o^"},
192         {"&otilde;", "o~"},
193         {"&ouml;"  , "o\xa1\xaf"},
194         {"&divide;", "\xa1\xe0"},
195         {"&ugrave;", "u`"},
196         {"&uacute;", "u'"},
197         {"&ucirc;" , "u^"},
198         {"&uuml;"  , "u\xa1\xaf"},
199         {"&yacute;", "y'"},
200         {"&yuml;"  , "y\xa1\xaf"},
201 };
202
203 static HTMLSymbol latin_symbol_list[] = {
204         {"&iexcl;" , "\xa1"},
205         {"&cent;"  , "\xa2"},
206         {"&pound;" , "\xa3"},
207         {"&curren;", "\xa4"},
208         {"&yen;"   , "\xa5"},
209         {"&brvbar;", "\xa6"},
210         {"&sect;"  , "\xa7"},
211         {"&uml;"   , "\xa8"},
212         {"&copy;"  , "\xa9"},
213         {"&ordf;"  , "\xaa"},
214         {"&laquo;" , "\xab"},
215         {"&not;"   , "\xac"},
216         {"&shy;"   , "\xad"},
217         {"&reg;"   , "\xae"},
218         {"&macr;"  , "\xaf"},
219
220         {"&deg;"   , "\xb0"},
221         {"&plusmn;", "\xb1"},
222         {"&sup2;"  , "\xb2"},
223         {"&sup3;"  , "\xb3"},
224         {"&acute;" , "\xb4"},
225         {"&micro;" , "\xb5"},
226         {"&para;"  , "\xb6"},
227         {"&middot;", "\xb7"},
228         {"&cedil;" , "\xb8"},
229         {"&sup1;"  , "\xb9"},
230         {"&ordm;"  , "\xba"},
231         {"&raquo;" , "\xbb"},
232         {"&frac14;", "\xbc"},
233         {"&frac12;", "\xbd"},
234         {"&frac34;", "\xbe"},
235         {"&iquest;", "\xbf"},
236
237         {"&Agrave;", "\xc0"},
238         {"&Aacute;", "\xc1"},
239         {"&Acirc;" , "\xc2"},
240         {"&Atilde;", "\xc3"},
241         {"&Auml;"  , "\xc4"},
242         {"&Aring;" , "\xc5"},
243         {"&AElig;" , "\xc6"},
244         {"&Ccedil;", "\xc7"},
245         {"&Egrave;", "\xc8"},
246         {"&Eacute;", "\xc9"},
247         {"&Ecirc;" , "\xca"},
248         {"&Euml;"  , "\xcb"},
249         {"&Igrave;", "\xcc"},
250         {"&Iacute;", "\xcd"},
251         {"&Icirc;" , "\xce"},
252         {"&Iuml;"  , "\xcf"},
253
254         {"&ETH;"   , "\xd0"},
255         {"&Ntilde;", "\xd1"},
256         {"&Ograve;", "\xd2"},
257         {"&Oacute;", "\xd3"},
258         {"&Ocirc;" , "\xd4"},
259         {"&Otilde;", "\xd5"},
260         {"&Ouml;"  , "\xd6"},
261         {"&times;" , "\xd7"},
262         {"&Oslash;", "\xd8"},
263         {"&Ugrave;", "\xd9"},
264         {"&Uacute;", "\xda"},
265         {"&Ucirc;" , "\xdb"},
266         {"&Uuml;"  , "\xdc"},
267         {"&Yacute;", "\xdd"},
268         {"&THORN;" , "\xde"},
269         {"&szlig;" , "\xdf"},
270
271         {"&agrave;", "\xe0"},
272         {"&aacute;", "\xe1"},
273         {"&acirc;" , "\xe2"},
274         {"&atilde;", "\xe3"},
275         {"&auml;"  , "\xe4"},
276         {"&aring;" , "\xe5"},
277         {"&aelig;" , "\xe6"},
278         {"&ccedil;", "\xe7"},
279         {"&egrave;", "\xe8"},
280         {"&eacute;", "\xe9"},
281         {"&ecirc;" , "\xea"},
282         {"&euml;"  , "\xeb"},
283         {"&igrave;", "\xec"},
284         {"&iacute;", "\xed"},
285         {"&icirc;" , "\xee"},
286         {"&iuml;"  , "\xef"},
287
288         {"&eth;"   , "\xf0"},
289         {"&ntilde;", "\xf1"},
290         {"&ograve;", "\xf2"},
291         {"&oacute;", "\xf3"},
292         {"&ocirc;" , "\xf4"},
293         {"&otilde;", "\xf5"},
294         {"&ouml;"  , "\xf6"},
295         {"&divide;", "\xf7"},
296         {"&oslash;", "\xf8"},
297         {"&ugrave;", "\xf9"},
298         {"&uacute;", "\xfa"},
299         {"&ucirc;" , "\xfb"},
300         {"&uuml;"  , "\xfc"},
301         {"&yacute;", "\xfd"},
302         {"&thorn;" , "\xfe"},
303         {"&yuml;"  , "\xff"},
304 };
305
306 static GHashTable *default_symbol_table;
307 static GHashTable *eucjp_symbol_table;
308 static GHashTable *latin_symbol_table;
309
310 static HTMLState html_read_line         (HTMLParser     *parser);
311 static void html_append_char            (HTMLParser     *parser,
312                                          gchar           ch);
313 static void html_append_str             (HTMLParser     *parser,
314                                          const gchar    *str,
315                                          gint            len);
316 static HTMLState html_parse_tag         (HTMLParser     *parser);
317 static void html_parse_special          (HTMLParser     *parser);
318 static void html_get_parenthesis        (HTMLParser     *parser,
319                                          gchar          *buf,
320                                          gint            len);
321
322 #if 0
323 static gint g_str_case_equal            (gconstpointer   v,
324                                          gconstpointer   v2);
325 static guint g_str_case_hash            (gconstpointer   key);
326 #endif
327
328 HTMLParser *html_parser_new(FILE *fp, CodeConverter *conv)
329 {
330         HTMLParser *parser;
331
332         g_return_val_if_fail(fp != NULL, NULL);
333         g_return_val_if_fail(conv != NULL, NULL);
334
335         parser = g_new0(HTMLParser, 1);
336         parser->fp = fp;
337         parser->conv = conv;
338         parser->str = g_string_new(NULL);
339         parser->buf = g_string_new(NULL);
340         parser->bufp = parser->buf->str;
341         parser->newline = TRUE;
342         parser->empty_line = TRUE;
343         parser->space = FALSE;
344         parser->pre = FALSE;
345
346 #define SYMBOL_TABLE_ADD(table, list) \
347 { \
348         gint i; \
349  \
350         for (i = 0; i < sizeof(list) / sizeof(list[0]); i++) \
351                 g_hash_table_insert(table, list[i].key, list[i].val); \
352 }
353
354         if (!default_symbol_table) {
355                 default_symbol_table =
356                         g_hash_table_new(g_str_hash, g_str_equal);
357                 SYMBOL_TABLE_ADD(default_symbol_table, symbol_list);
358                 SYMBOL_TABLE_ADD(default_symbol_table, ascii_symbol_list);
359         }
360         if (!eucjp_symbol_table) {
361                 eucjp_symbol_table =
362                         g_hash_table_new(g_str_hash, g_str_equal);
363                 SYMBOL_TABLE_ADD(eucjp_symbol_table, symbol_list);
364                 SYMBOL_TABLE_ADD(eucjp_symbol_table, eucjp_symbol_list);
365         }
366         if (!latin_symbol_table) {
367                 latin_symbol_table =
368                         g_hash_table_new(g_str_hash, g_str_equal);
369                 SYMBOL_TABLE_ADD(latin_symbol_table, symbol_list);
370                 SYMBOL_TABLE_ADD(latin_symbol_table, latin_symbol_list);
371         }
372
373 #undef SYMBOL_TABLE_ADD
374
375         if (conv->charset == C_ISO_8859_1)
376                 parser->symbol_table = latin_symbol_table;
377         else if ((conv->charset == C_ISO_2022_JP   ||
378                   conv->charset == C_ISO_2022_JP_2 ||
379                   conv->charset == C_EUC_JP        ||
380                   conv->charset == C_SHIFT_JIS) &&
381                  conv_get_current_charset() == C_EUC_JP)
382                 parser->symbol_table = eucjp_symbol_table;
383         else
384                 parser->symbol_table = default_symbol_table;
385
386         return parser;
387 }
388
389 void html_parser_destroy(HTMLParser *parser)
390 {
391         g_string_free(parser->str, TRUE);
392         g_string_free(parser->buf, TRUE);
393         g_free(parser);
394 }
395
396 gchar *html_parse(HTMLParser *parser)
397 {
398         parser->state = HTML_NORMAL;
399         g_string_truncate(parser->str, 0);
400
401         if (*parser->bufp == '\0') {
402                 g_string_truncate(parser->buf, 0);
403                 parser->bufp = parser->buf->str;
404                 if (html_read_line(parser) == HTML_EOF)
405                         return NULL;
406         }
407
408         while (*parser->bufp != '\0') {
409                 switch (*parser->bufp) {
410                 case '<':
411                         if (parser->str->len == 0)
412                                 html_parse_tag(parser);
413                         else
414                                 return parser->str->str;
415                         break;
416                 case '&':
417                         html_parse_special(parser);
418                         break;
419                 case ' ':
420                 case '\t':
421                 case '\r':
422                 case '\n':
423                         if (parser->bufp[0] == '\r' && parser->bufp[1] == '\n')
424                                 parser->bufp++;
425
426                         if (!parser->pre) {
427                                 if (!parser->newline)
428                                         parser->space = TRUE;
429
430                                 parser->bufp++;
431                                 break;
432                         }
433                         /* fallthrough */
434                 default:
435                         html_append_char(parser, *parser->bufp++);
436                 }
437         }
438
439         return parser->str->str;
440 }
441
442 static HTMLState html_read_line(HTMLParser *parser)
443 {
444         gchar buf[HTMLBUFSIZE];
445         gchar buf2[HTMLBUFSIZE];
446         gint index;
447
448         if (fgets(buf, sizeof(buf), parser->fp) == NULL) {
449                 parser->state = HTML_EOF;
450                 return HTML_EOF;
451         }
452
453         if (conv_convert(parser->conv, buf2, sizeof(buf2), buf) < 0) {
454                 g_warning("html_read_line(): code conversion failed\n");
455
456                 index = parser->bufp - parser->buf->str;
457
458                 g_string_append(parser->buf, buf);
459
460                 parser->bufp = parser->buf->str + index;
461
462                 return HTML_ERR;
463         }
464
465         index = parser->bufp - parser->buf->str;
466
467         g_string_append(parser->buf, buf2);
468
469         parser->bufp = parser->buf->str + index;
470
471         return HTML_NORMAL;
472 }
473
474 static void html_append_char(HTMLParser *parser, gchar ch)
475 {
476         GString *str = parser->str;
477
478         if (!parser->pre && parser->space) {
479                 g_string_append_c(str, ' ');
480                 parser->space = FALSE;
481         }
482
483         g_string_append_c(str, ch);
484
485         parser->empty_line = FALSE;
486         if (ch == '\n') {
487                 parser->newline = TRUE;
488                 if (str->len > 1 && str->str[str->len - 2] == '\n')
489                         parser->empty_line = TRUE;
490         } else
491                 parser->newline = FALSE;
492 }
493
494 static void html_append_str(HTMLParser *parser, const gchar *str, gint len)
495 {
496         GString *string = parser->str;
497
498         if (!parser->pre && parser->space) {
499                 g_string_append_c(string, ' ');
500                 parser->space = FALSE;
501         }
502
503         if (len == 0) return;
504         if (len < 0)
505                 g_string_append(string, str);
506         else {
507                 gchar *s;
508                 Xstrndup_a(s, str, len, return);
509                 g_string_append(string, s);
510         }
511
512         parser->empty_line = FALSE;
513         if (string->len > 0 && string->str[string->len - 1] == '\n') {
514                 parser->newline = TRUE;
515                 if (string->len > 1 && string->str[string->len - 2] == '\n')
516                         parser->empty_line = TRUE;
517         } else
518                 parser->newline = FALSE;
519 }
520
521 static HTMLState html_parse_tag(HTMLParser *parser)
522 {
523         gchar buf[HTMLBUFSIZE];
524         gchar *p;
525         static gboolean is_in_href = FALSE;
526
527         html_get_parenthesis(parser, buf, sizeof(buf));
528
529         for (p = buf; *p != '\0'; p++) {
530                 if (isspace(*p)) {
531                         *p = '\0';
532                         break;
533                 }
534         }
535
536         parser->state = HTML_UNKNOWN;
537         if (buf[0] == '\0') return parser->state;
538
539         g_strdown(buf);
540
541         if (!strcmp(buf, "br")) {
542                 parser->space = FALSE;
543                 html_append_char(parser, '\n');
544                 parser->state = HTML_BR;
545         } else if (!strcmp(buf, "a")) {
546                 /* look for tokens separated by space or = */
547                 char* href_token = strtok(++p, " =");
548                 parser->state = HTML_NORMAL;
549                 while (href_token != NULL) {
550                         /* look for href */
551                         if (!strcmp(href_token, "href")) {
552                                 /* the next token is the url, between double
553                                  * quotes */
554                                 char* url = strtok(NULL, "\"");
555                                 if (!url) break;
556                                 html_append_str(parser, url, strlen(url));
557                                 html_append_char(parser, ' ');
558                                 /* start enforcing html link */
559                                 parser->state = HTML_HREF;
560                                 is_in_href = TRUE;
561                                 break;
562                         }
563                         /* or get next token */
564                         href_token = strtok(NULL, " =");
565                 }
566         } else if (!strcmp(buf, "/a")) {
567                 /* stop enforcing html link */
568                 parser->state = HTML_NORMAL;
569                 is_in_href = FALSE;
570         } else if (!strcmp(buf, "p")) {
571                 parser->space = FALSE;
572                 if (!parser->empty_line) {
573                         parser->space = FALSE;
574                         if (!parser->newline) html_append_char(parser, '\n');
575                         html_append_char(parser, '\n');
576                 }
577                 parser->state = HTML_PAR;
578         } else if (!strcmp(buf, "pre")) {
579                 parser->pre = TRUE;
580                 parser->state = HTML_PRE;
581         } else if (!strcmp(buf, "/pre")) {
582                 parser->pre = FALSE;
583                 parser->state = HTML_NORMAL;
584         } else if (!strcmp(buf, "hr")) {
585                 if (!parser->newline) {
586                         parser->space = FALSE;
587                         html_append_char(parser, '\n');
588                 }
589                 html_append_str(parser, HR_STR "\n", -1);
590                 parser->state = HTML_HR;
591         } else if (!strcmp(buf, "div")    ||
592                    !strcmp(buf, "ul")     ||
593                    !strcmp(buf, "li")     ||
594                    !strcmp(buf, "table")  ||
595                    !strcmp(buf, "tr")     ||
596                    (buf[0] == 'h' && isdigit(buf[1]))) {
597                 if (!parser->newline) {
598                         parser->space = FALSE;
599                         html_append_char(parser, '\n');
600                 }
601                 parser->state = HTML_NORMAL;
602         } else if (!strcmp(buf, "/table") ||
603                    (buf[0] == '/' && buf[1] == 'h' && isdigit(buf[1]))) {
604                 if (!parser->empty_line) {
605                         parser->space = FALSE;
606                         if (!parser->newline) html_append_char(parser, '\n');
607                         html_append_char(parser, '\n');
608                 }
609                 parser->state = HTML_NORMAL;
610         } else if (!strcmp(buf, "/div")   ||
611                    !strcmp(buf, "/ul")    ||
612                    !strcmp(buf, "/li")) {
613                 if (!parser->newline) {
614                         parser->space = FALSE;
615                         html_append_char(parser, '\n');
616                 }
617                 parser->state = HTML_NORMAL;
618         }
619         
620         if (is_in_href == TRUE) {
621                 /* when inside a link, everything will be written as
622                  * clickable (see textview_show_thml in textview.c) */
623                 parser->state = HTML_HREF;
624         }
625
626         return parser->state;
627 }
628
629 static void html_parse_special(HTMLParser *parser)
630 {
631         gchar symbol_name[9];
632         gint n;
633         const gchar *val;
634
635         parser->state = HTML_UNKNOWN;
636         g_return_if_fail(*parser->bufp == '&');
637
638         /* &foo; */
639         for (n = 0; parser->bufp[n] != '\0' && parser->bufp[n] != ';'; n++)
640                 ;
641         if (n > 7 || parser->bufp[n] != ';') {
642                 /* output literal `&' */
643                 html_append_char(parser, *parser->bufp++);
644                 parser->state = HTML_NORMAL;
645                 return;
646         }
647         strncpy2(symbol_name, parser->bufp, n + 2);
648         parser->bufp += n + 1;
649
650         if ((val = g_hash_table_lookup(parser->symbol_table, symbol_name))
651             != NULL) {
652                 html_append_str(parser, val, -1);
653                 parser->state = HTML_NORMAL;
654                 return;
655         } else if (symbol_name[1] == '#' && isdigit(symbol_name[2])) {
656                 gint ch;
657
658                 ch = atoi(symbol_name + 2);
659                 if ((ch > 0 && ch <= 127) ||
660                     (ch >= 128 && ch <= 255 &&
661                      parser->conv->charset == C_ISO_8859_1)) {
662                         html_append_char(parser, ch);
663                         parser->state = HTML_NORMAL;
664                         return;
665                 }
666         }
667
668         html_append_str(parser, symbol_name, -1);
669 }
670
671 static void html_get_parenthesis(HTMLParser *parser, gchar *buf, gint len)
672 {
673         gchar *p;
674
675         buf[0] = '\0';
676         g_return_if_fail(*parser->bufp == '<');
677
678         /* ignore comment / CSS / script stuff */
679         if (!strncmp(parser->bufp, "<!--", 4)) {
680                 parser->bufp += 4;
681                 while ((p = strstr(parser->bufp, "-->")) == NULL)
682                         if (html_read_line(parser) == HTML_EOF) return;
683                 parser->bufp = p + 3;
684                 return;
685         }
686         if (!g_strncasecmp(parser->bufp, "<style", 6)) {
687                 parser->bufp += 6;
688                 while ((p = strcasestr(parser->bufp, "</style>")) == NULL)
689                         if (html_read_line(parser) == HTML_EOF) return;
690                 parser->bufp = p + 8;
691                 return;
692         }
693         if (!g_strncasecmp(parser->bufp, "<script", 7)) {
694                 parser->bufp += 7;
695                 while ((p = strcasestr(parser->bufp, "</script>")) == NULL)
696                         if (html_read_line(parser) == HTML_EOF) return;
697                 parser->bufp = p + 9;
698                 return;
699         }
700
701         parser->bufp++;
702         while ((p = strchr(parser->bufp, '>')) == NULL)
703                 if (html_read_line(parser) == HTML_EOF) return;
704
705         strncpy2(buf, parser->bufp, MIN(p - parser->bufp + 1, len));
706         parser->bufp = p + 1;
707 }
708
709 /* these hash functions were taken from gstring.c in glib */
710 #if 0
711 static gint g_str_case_equal(gconstpointer v, gconstpointer v2)
712 {
713         return strcasecmp((const gchar *)v, (const gchar *)v2) == 0;
714 }
715
716 static guint g_str_case_hash(gconstpointer key)
717 {
718         const gchar *p = key;
719         guint h = *p;
720
721         if (h) {
722                 h = tolower(h);
723                 for (p += 1; *p != '\0'; p++)
724                         h = (h << 5) - h + tolower(*p);
725         }
726
727         return h;
728 }
729 #endif