[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:18:44 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit aa9061c751e7220b84c6ca571185896d624aedd3
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jan 4 02:53:57 2003 +0000

            Fixed 3139129.  Added application/xhtml+xml to list of supported type.
    
            Reviewed by gramps.
    
            * WebView.subproj/WebDataSourcePrivate.m:
            (+[WebDataSource _repTypes]):
            * WebView.subproj/WebViewPrivate.m:
            (+[WebView _viewTypes]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3252 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 3244284..843cdc6 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,16 @@
 2003-01-03  Richard Williamson   <rjw at apple.com>
 
+        Fixed 3139129.  Added application/xhtml+xml to list of supported type.
+
+        Reviewed by gramps.
+
+        * WebView.subproj/WebDataSourcePrivate.m:
+        (+[WebDataSource _repTypes]):
+        * WebView.subproj/WebViewPrivate.m:
+        (+[WebView _viewTypes]):
+
+2003-01-03  Richard Williamson   <rjw at apple.com>
+
         Support for fixes to 3138743, 3138678.  Added
         isFontFixedPitch used to determine if font is fixed
         pitch.  Makes use of appkit private _isFakeFixedPitch
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index c88e6d5..5a62f98 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -424,6 +424,7 @@
         repTypes = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
             [WebHTMLRepresentation class], @"text/html",
 	    [WebHTMLRepresentation class], @"text/xml",
+	    [WebHTMLRepresentation class], @"application/xhtml+xml",
             [WebTextRepresentation class], @"text/",
             [WebTextRepresentation class], @"application/x-javascript",
             nil];
diff --git a/WebKit/WebView.subproj/WebFrameViewPrivate.m b/WebKit/WebView.subproj/WebFrameViewPrivate.m
index e965dc9..5fe84d2 100644
--- a/WebKit/WebView.subproj/WebFrameViewPrivate.m
+++ b/WebKit/WebView.subproj/WebFrameViewPrivate.m
@@ -244,6 +244,7 @@
         viewTypes = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
             [WebHTMLView class], @"text/html",
 	    [WebHTMLView class], @"text/xml",
+	    [WebHTMLView class], @"application/xhtml+xml",
             [WebTextView class], @"text/",
             [WebTextView class], @"application/x-javascript",
             nil];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list