From d2c3d22f521ae71f0da181d2b3f3914046e2c10f Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 21 Jul 2007 00:20:04 +0000 Subject: Change ArtWorks file MIME type to "image/x-artworks". svn path=/trunk/netsurf/; revision=3449 --- content/content.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'content') 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}, -- cgit v1.2.3