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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:38:41 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 4131cd190549a911be53f18290355bfa4668d9c1
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 13 01:35:40 2002 +0000

    	Add text/xml to our list of MIME types that should use the
    	Web view.  With this fix we now render XML and XHTML
    	correctly!
    
            * WebView.subproj/WebDataSourcePrivate.m:
            (+[WebDataSource _repTypes]):
            * WebView.subproj/WebViewPrivate.m:
            (+[WebView _viewTypes]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2054 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index f9b0019..72ccc20 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2002-09-12  David Hyatt  <hyatt at apple.com>
+
+	Add text/xml to our list of MIME types that should use the
+	Web view.  With this fix we now render XML and XHTML
+	correctly!
+	
+        * WebView.subproj/WebDataSourcePrivate.m:
+        (+[WebDataSource _repTypes]):
+        * WebView.subproj/WebViewPrivate.m:
+        (+[WebView _viewTypes]):
+
 2002-09-12  Ken Kocienda  <kocienda at apple.com>
 
         Removed load flags as a design concept. Replaced with new "caching policy" concept 
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index f9b0019..72ccc20 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,14 @@
+2002-09-12  David Hyatt  <hyatt at apple.com>
+
+	Add text/xml to our list of MIME types that should use the
+	Web view.  With this fix we now render XML and XHTML
+	correctly!
+	
+        * WebView.subproj/WebDataSourcePrivate.m:
+        (+[WebDataSource _repTypes]):
+        * WebView.subproj/WebViewPrivate.m:
+        (+[WebView _viewTypes]):
+
 2002-09-12  Ken Kocienda  <kocienda at apple.com>
 
         Removed load flags as a design concept. Replaced with new "caching policy" concept 
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index 9595384..4e9434a 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -364,6 +364,7 @@
     if (!repTypes) {
         repTypes = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
             [WebHTMLRepresentation class], @"text/html",
+	    [WebHTMLRepresentation class], @"text/xml",
             [WebTextRepresentation class], @"text/",
             [WebTextRepresentation class], @"application/x-javascript",
             [WebImageRepresentation class], @"image/jpeg",
diff --git a/WebKit/WebView.subproj/WebFrameViewPrivate.m b/WebKit/WebView.subproj/WebFrameViewPrivate.m
index 28b43fe..22c307d 100644
--- a/WebKit/WebView.subproj/WebFrameViewPrivate.m
+++ b/WebKit/WebView.subproj/WebFrameViewPrivate.m
@@ -220,6 +220,7 @@
     if (!viewTypes) {
         viewTypes = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
             [WebHTMLView class], @"text/html",
+	    [WebHTMLView class], @"text/xml",
             [WebTextView class], @"text/",
             [WebTextView class], @"application/x-javascript",
             [WebImageView class], @"image/jpeg",

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list