summaryrefslogtreecommitdiff
path: root/content/content.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2007-07-21 00:20:04 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2007-07-21 00:20:04 +0000
commitd2c3d22f521ae71f0da181d2b3f3914046e2c10f (patch)
tree332c5514bee4ac1efb887b2eb3d94bc371077119 /content/content.c
parent04fb714f8e9d37bb2ac2fd7cf412a779042a0f2f (diff)
downloadnetsurf-d2c3d22f521ae71f0da181d2b3f3914046e2c10f.tar.gz
netsurf-d2c3d22f521ae71f0da181d2b3f3914046e2c10f.tar.bz2
Change ArtWorks file MIME type to "image/x-artworks".
svn path=/trunk/netsurf/; revision=3449
Diffstat (limited to 'content/content.c')
-rw-r--r--content/content.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/content/content.c b/content/content.c
index b35802af7..e4c0c4fde 100644
--- a/content/content.c
+++ b/content/content.c
@@ -78,9 +78,6 @@ struct mime_entry {
};
/** A map from MIME type to ::content_type. Must be sorted by mime_type. */
static const struct mime_entry mime_map[] = {
-#ifdef WITH_ARTWORKS
- {"application/artworks", CONTENT_ARTWORKS},
-#endif
#ifdef WITH_BMP
{"application/bmp", CONTENT_BMP},
#endif
@@ -106,9 +103,6 @@ static const struct mime_entry mime_map[] = {
{"application/x-win-bitmap", CONTENT_BMP},
#endif
{"application/xhtml+xml", CONTENT_HTML},
-#ifdef WITH_ARTWORKS
- {"image/artworks", CONTENT_ARTWORKS},
-#endif
#ifdef WITH_BMP
{"image/bmp", CONTENT_BMP},
#endif
@@ -143,6 +137,9 @@ static const struct mime_entry mime_map[] = {
{"image/svg", CONTENT_SVG},
{"image/svg+xml", CONTENT_SVG},
#endif
+#ifdef WITH_ARTWORKS
+ {"image/x-artworks", CONTENT_ARTWORKS},
+#endif
#ifdef WITH_BMP
{"image/x-bitmap", CONTENT_BMP},
{"image/x-bmp", CONTENT_BMP},