[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:26:18 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 87d8474672627350d740214f62001f26ee22e8b8
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 22 17:44:19 2002 +0000

    WebKit:
    
    	Strip white space before and after URL string 2998696
    
            * Misc.subproj/WebNSViewExtras.m:
            (-[NSView _web_bestURLForDraggingInfo:]):
    
    WebBrowser:
    
    	Added document icon.
    
            * WebBrowser.pbproj/project.pbxproj:
            * document.icns: Added.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1628 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 49e776e..9916aed 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-07-22  Chris Blumenberg  <cblu at apple.com>
+
+	Strip white space before and after URL string 2998696
+
+        * Misc.subproj/WebNSViewExtras.m:
+        (-[NSView _web_bestURLForDraggingInfo:]):
+
 2002-07-22  Ken Kocienda  <kocienda at apple.com>
 
         * WebView.subproj/WebHTMLView.m: import of removed WebFrame bridge header was
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 49e776e..9916aed 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-07-22  Chris Blumenberg  <cblu at apple.com>
+
+	Strip white space before and after URL string 2998696
+
+        * Misc.subproj/WebNSViewExtras.m:
+        (-[NSView _web_bestURLForDraggingInfo:]):
+
 2002-07-22  Ken Kocienda  <kocienda at apple.com>
 
         * WebView.subproj/WebHTMLView.m: import of removed WebFrame bridge header was
diff --git a/WebKit/Misc.subproj/WebNSViewExtras.m b/WebKit/Misc.subproj/WebNSViewExtras.m
index 7294d1c..0410fdf 100644
--- a/WebKit/Misc.subproj/WebNSViewExtras.m
+++ b/WebKit/Misc.subproj/WebNSViewExtras.m
@@ -56,7 +56,7 @@
     
     if(!bestURL || ![scheme isEqualToString:@"http"] || ![scheme isEqualToString:@"https"]){
 
-        NSString *URLString = [draggingPasteboard stringForType:NSStringPboardType];
+        NSString *URLString = [[draggingPasteboard stringForType:NSStringPboardType] _web_stringByTrimmingWhitespace];
         if(URLString && [URLString _web_looksLikeAbsoluteURL]){
             bestURL = [NSURL _web_URLWithString:URLString];
         }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list