[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:29:32 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 839bd252d70edb1b112796052ad9b92128e679a6
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 9 22:11:19 2009 +0000

    2009-12-09  Philippe Normand  <pnormand at igalia.com>
    
            Reviewed by Eric Carlson.
    
            Ogg mimetypes are incorrect
            https://bugs.webkit.org/show_bug.cgi?id=27113
    
            The ogg extension is handled by audio/ogg instead of
            application/ogg. See
            http://wiki.xiph.org/MIME_Types_and_File_Extensions
    
            * platform/MIMETypeRegistry.cpp:
            (WebCore::TypeExtensionPair::):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51921 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 8d4fbe8..8bd896c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2009-12-09  Philippe Normand  <pnormand at igalia.com>
+
+        Reviewed by Eric Carlson.
+
+        Ogg mimetypes are incorrect
+        https://bugs.webkit.org/show_bug.cgi?id=27113
+
+        The ogg extension is handled by audio/ogg instead of
+        application/ogg. See
+        http://wiki.xiph.org/MIME_Types_and_File_Extensions
+
+        * platform/MIMETypeRegistry.cpp:
+        (WebCore::TypeExtensionPair::):
+
 2009-12-09  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Anders Carlsson.
diff --git a/WebCore/platform/MIMETypeRegistry.cpp b/WebCore/platform/MIMETypeRegistry.cpp
index 609a1b0..f5b003b 100644
--- a/WebCore/platform/MIMETypeRegistry.cpp
+++ b/WebCore/platform/MIMETypeRegistry.cpp
@@ -235,8 +235,8 @@ static void initializeMediaTypeMaps()
     static const TypeExtensionPair pairs[] = {
     
         // Ogg
-        { "application/ogg", "ogg" },
         { "application/ogg", "ogx" },
+        { "audio/ogg", "ogg" },
         { "audio/ogg", "oga" },
         { "video/ogg", "ogv" },
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list