[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 07:08:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 1c8f2449c88eb9d0d750591bac5d88f95cc859e7
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 26 18:48:22 2002 +0000

    	Fixed: 3061174 - javascript: URLs sent by plugins don't work
    
    	For "Javascript:" URLs.
    
            * Plugins.subproj/WebBaseNetscapePluginView.m:
            (-[WebBaseNetscapePluginView loadRequest:inTarget:withNotifyData:]): lowercase the scheme
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2876 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7c06c6b..7a96977 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-11-26  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3061174 - javascript: URLs sent by plugins don't work
+
+	For "Javascript:" URLs. 
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView loadRequest:inTarget:withNotifyData:]): lowercase the scheme
+
 2002-11-26  Richard Williamson   <rjw at apple.com>
 
         More work on back/forward cache.  It's ready for
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 7c06c6b..7a96977 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-11-26  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3061174 - javascript: URLs sent by plugins don't work
+
+	For "Javascript:" URLs. 
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView loadRequest:inTarget:withNotifyData:]): lowercase the scheme
+
 2002-11-26  Richard Williamson   <rjw at apple.com>
 
         More work on back/forward cache.  It's ready for
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index 27c0f4f..20f20f6 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -831,7 +831,7 @@
             return NPERR_INVALID_URL;
         }
     } else {
-        if([[URL scheme] isEqualToString:@"javascript"]){
+        if([[[URL scheme] lowercaseString] isEqualToString:@"javascript"]){
             NSString *JSString = [(id)CFURLCreateStringByReplacingPercentEscapes(NULL, (CFStringRef)[[URL absoluteString] substringFromIndex:11], (CFStringRef)@"") autorelease];
             [[self controller] stringByEvaluatingJavaScriptFromString:JSString];
             if(notifyData){

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list