mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-10 21:12:01 +03:00
[project @ 2005-04-01 02:25:11 by jmb]
application/xhtml+xml -> CONTENT_HTML Fix minor issue with mimetype matching regexp. svn path=/import/netsurf/; revision=1587
This commit is contained in:
parent
e7e34b78c3
commit
92fa1133c9
@ -63,9 +63,12 @@ static const struct mime_entry mime_map[] = {
|
||||
#ifdef WITH_DRAW
|
||||
{"application/drawfile", CONTENT_DRAW},
|
||||
{"application/x-drawfile", CONTENT_DRAW},
|
||||
#endif
|
||||
#ifdef WITH_THEME_INSTALL
|
||||
{"application/x-netsurf-theme", CONTENT_THEME},
|
||||
#endif
|
||||
{"application/xhtml+xml", CONTENT_HTML},
|
||||
#ifdef WITH_DRAW
|
||||
{"image/drawfile", CONTENT_DRAW},
|
||||
#endif
|
||||
#ifdef WITH_GIF
|
||||
|
@ -75,7 +75,7 @@ struct content * fetchcache(const char *url,
|
||||
struct content *c;
|
||||
char *url1;
|
||||
char *hash;
|
||||
|
||||
|
||||
if ((url1 = strdup(url)) == NULL)
|
||||
return NULL;
|
||||
|
||||
@ -350,7 +350,7 @@ void fetchcache_callback(fetch_msg msg, void *p, const char *data,
|
||||
void fetchcache_init(void)
|
||||
{
|
||||
regcomp_wrapper(&re_content_type,
|
||||
"^([-0-9a-zA-Z_.]+/[-0-9a-zA-Z_.]+)[ \t]*"
|
||||
"^([-0-9a-zA-Z_.]+/[-0-9a-zA-Z_.+]+)[ \t]*"
|
||||
"(;[ \t]*([-0-9a-zA-Z_.]+)="
|
||||
"([-0-9a-zA-Z_.]+|\"([^\"]|[\\].)*\")[ \t]*)*$",
|
||||
REG_EXTENDED);
|
||||
|
Loading…
Reference in New Issue
Block a user