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

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


The following commit has been merged in the debian/unstable branch:
commit b034ff1db41a6bb8b2dee4850ffb5b4f18dc2772
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 20 19:23:13 2002 +0000

            * History.subproj/WebHistory.m: (-[WebHistory addEntryForURLString:]):
    	Use _web_URLWithString so we can handle unusual characters.
    
            * WebView.subproj/WebDefaultPolicyHandler.m: Remove stray semicolon.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2106 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 3a4aa53..19d09af 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-20  Darin Adler  <darin at apple.com>
+
+        * History.subproj/WebHistory.m: (-[WebHistory addEntryForURLString:]):
+	Use _web_URLWithString so we can handle unusual characters.
+
+        * WebView.subproj/WebDefaultPolicyHandler.m: Remove stray semicolon.
+
 2002-09-20  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed wasteful memory usage in the WebIconDatabase:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 3a4aa53..19d09af 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-09-20  Darin Adler  <darin at apple.com>
+
+        * History.subproj/WebHistory.m: (-[WebHistory addEntryForURLString:]):
+	Use _web_URLWithString so we can handle unusual characters.
+
+        * WebView.subproj/WebDefaultPolicyHandler.m: Remove stray semicolon.
+
 2002-09-20  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed wasteful memory usage in the WebIconDatabase:
diff --git a/WebKit/History.subproj/WebHistory.m b/WebKit/History.subproj/WebHistory.m
index 8387bd0..b767ede 100644
--- a/WebKit/History.subproj/WebHistory.m
+++ b/WebKit/History.subproj/WebHistory.m
@@ -10,6 +10,7 @@
 #import <WebKit/WebHistoryItem.h>
 
 #import <WebFoundation/WebAssertions.h>
+#import <WebFoundation/WebNSURLExtras.h>
 
 NSString *WebHistoryEntriesChangedNotification = @"WebHistoryEntriesChangedNotification";
 
@@ -54,7 +55,7 @@ NSString *WebHistoryEntriesChangedNotification = @"WebHistoryEntriesChangedNotif
 
 - (void)addEntryForURLString: (NSString *)string
 {
-    WebHistoryItem *entry = [[WebHistoryItem alloc] initWithURL:[NSURL URLWithString: string] title:nil];
+    WebHistoryItem *entry = [[WebHistoryItem alloc] initWithURL:[NSURL _web_URLWithString: string] title:nil];
     [self addEntry: entry];
     [entry release];
 }
diff --git a/WebKit/WebView.subproj/WebDefaultPolicyDelegate.m b/WebKit/WebView.subproj/WebDefaultPolicyDelegate.m
index f238def..d337470 100644
--- a/WebKit/WebView.subproj/WebDefaultPolicyDelegate.m
+++ b/WebKit/WebView.subproj/WebDefaultPolicyDelegate.m
@@ -29,7 +29,7 @@
         return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyIgnore];
     if([WebController canShowMIMEType:type])
         return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyUseContentPolicy];
-    return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyIgnore];;
+    return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyIgnore];
 }
 
 - (void)unableToImplementPolicy:(WebPolicy *)policy error:(WebError *)error forURL:(NSURL *)URL inFrame:(WebFrame *)frame
diff --git a/WebKit/WebView.subproj/WebDefaultPolicyHandler.m b/WebKit/WebView.subproj/WebDefaultPolicyHandler.m
index f238def..d337470 100644
--- a/WebKit/WebView.subproj/WebDefaultPolicyHandler.m
+++ b/WebKit/WebView.subproj/WebDefaultPolicyHandler.m
@@ -29,7 +29,7 @@
         return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyIgnore];
     if([WebController canShowMIMEType:type])
         return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyUseContentPolicy];
-    return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyIgnore];;
+    return [WebFileURLPolicy webPolicyWithFileAction:WebFileURLPolicyIgnore];
 }
 
 - (void)unableToImplementPolicy:(WebPolicy *)policy error:(WebError *)error forURL:(NSURL *)URL inFrame:(WebFrame *)frame

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list