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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:30:07 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5c2000fa26f1c025d79aeee3fdb78cf666c46551
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 7 18:03:52 2002 +0000

    	Fixed: 3018632 - the show javascript files inline bug
    
            * WebView.subproj/WebDataSourcePrivate.m:
            (+[WebDataSource _repTypes]): support application/x-javascript
            * WebView.subproj/WebViewPrivate.m:
            (+[WebView _viewTypes]): support application/x-javascript
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1767 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 88fa5c3..f74eaa6 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-08-07  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3018632 - the show javascript files inline bug
+
+        * WebView.subproj/WebDataSourcePrivate.m:
+        (+[WebDataSource _repTypes]): support application/x-javascript
+        * WebView.subproj/WebViewPrivate.m:
+        (+[WebView _viewTypes]): support application/x-javascript
+
 2002-08-07  John Sullivan  <sullivan at apple.com>
 
         * Misc.subproj/WebNSViewExtras.h:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 88fa5c3..f74eaa6 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-08-07  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3018632 - the show javascript files inline bug
+
+        * WebView.subproj/WebDataSourcePrivate.m:
+        (+[WebDataSource _repTypes]): support application/x-javascript
+        * WebView.subproj/WebViewPrivate.m:
+        (+[WebView _viewTypes]): support application/x-javascript
+
 2002-08-07  John Sullivan  <sullivan at apple.com>
 
         * Misc.subproj/WebNSViewExtras.h:
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index 3ee77d7..37d9123 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -347,10 +347,11 @@
     if (!repTypes) {
         repTypes = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
             [WebHTMLRepresentation class], @"text/html",
+            [WebTextRepresentation class], @"text/",
+            [WebTextRepresentation class], @"application/x-javascript",
             [WebImageRepresentation class], @"image/jpeg",
             [WebImageRepresentation class], @"image/gif",
             [WebImageRepresentation class], @"image/png",
-            [WebTextRepresentation class], @"text/",
             nil];
     }
     
diff --git a/WebKit/WebView.subproj/WebFrameViewPrivate.m b/WebKit/WebView.subproj/WebFrameViewPrivate.m
index a955160..427d228 100644
--- a/WebKit/WebView.subproj/WebFrameViewPrivate.m
+++ b/WebKit/WebView.subproj/WebFrameViewPrivate.m
@@ -223,6 +223,7 @@
         viewTypes = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
             [WebHTMLView class], @"text/html",
             [WebTextView class], @"text/",
+            [WebTextView class], @"application/x-javascript",
             [WebImageView class], @"image/jpeg",
             [WebImageView class], @"image/gif",
             [WebImageView class], @"image/png",

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list