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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:27:59 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 562843bd6ccd099d2f0626bbc37ebf463aeb9d19
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 30 01:15:25 2002 +0000

            Removed setDirectsAllLinksToSystemBrowser: method, not needed
            and antiquated by the policy APIs.
    
            * WebView.subproj/WebController.h:
            * WebView.subproj/WebController.m:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1694 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 1eb6d8a..74b619a 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2002-07-29  Richard Williamson  <rjw at apple.com>
 
+        Removed setDirectsAllLinksToSystemBrowser: method, not needed
+        and antiquated by the policy APIs.
+        
+        * WebView.subproj/WebController.h:
+        * WebView.subproj/WebController.m:
+
+2002-07-29  Richard Williamson  <rjw at apple.com>
+
         Changes to support the migration of back/forward list to WebKit.
         Back/forward in frames now works (2946164), still not done w/
         restoring scroll positions (2927633).
@@ -4909,7 +4917,7 @@ guide for the port's coordinates. Also added a workaround for Java.
 
 	- Removed obsolete MIME/download related code.
 	- Minor clean-ups.
-	- Made WebKit support all text/* MIME types.
+	- Made WebKit support all text MIME types.
 	- Now send NPP_URLNotify when pages requested by plug-ins are loaded.
 	- Simplified NPP_Get/NPP_Post code.
 	
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 1eb6d8a..74b619a 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-07-29  Richard Williamson  <rjw at apple.com>
 
+        Removed setDirectsAllLinksToSystemBrowser: method, not needed
+        and antiquated by the policy APIs.
+        
+        * WebView.subproj/WebController.h:
+        * WebView.subproj/WebController.m:
+
+2002-07-29  Richard Williamson  <rjw at apple.com>
+
         Changes to support the migration of back/forward list to WebKit.
         Back/forward in frames now works (2946164), still not done w/
         restoring scroll positions (2927633).
@@ -4909,7 +4917,7 @@ guide for the port's coordinates. Also added a workaround for Java.
 
 	- Removed obsolete MIME/download related code.
 	- Minor clean-ups.
-	- Made WebKit support all text/* MIME types.
+	- Made WebKit support all text MIME types.
 	- Now send NPP_URLNotify when pages requested by plug-ins are loaded.
 	- Simplified NPP_Get/NPP_Post code.
 	
diff --git a/WebKit/WebView.subproj/WebController.h b/WebKit/WebView.subproj/WebController.h
index c6326f4..a2dfc7f 100644
--- a/WebKit/WebView.subproj/WebController.h
+++ b/WebKit/WebView.subproj/WebController.h
@@ -160,9 +160,6 @@
 
 + (WebURLPolicy *)defaultURLPolicyForURL: (NSURL *)url;
 
-- (void)setDirectsAllLinksToSystemBrowser: (BOOL)flag;
-- (BOOL)directsAllLinksToSystemBrowser;
-
 // FIXME:  Should this method be private?
 // Called when a data source needs to create a frame.  This method encapsulates the
 // specifics of creating and initializing a view of the appropriate class.
diff --git a/WebKit/WebView.subproj/WebController.m b/WebKit/WebView.subproj/WebController.m
index 4c1ffd7..4b74b15 100644
--- a/WebKit/WebView.subproj/WebController.m
+++ b/WebKit/WebView.subproj/WebController.m
@@ -54,16 +54,6 @@
     [super dealloc];
 }
 
-- (void)setDirectsAllLinksToSystemBrowser: (BOOL)flag
-{
-    [NSException raise:WebMethodNotYetImplemented format:@"WebController::setDirectsAllLinksToSystemBrowser: is not implemented"];
-}
-
-- (BOOL)directsAllLinksToSystemBrowser
-{
-    [NSException raise:WebMethodNotYetImplemented format:@"WebController::directsAllLinksToSystemBrowser is not implemented"];
-    return NO;
-}
 
 - (WebFrame *)createFrameNamed: (NSString *)fname for: (WebDataSource *)childDataSource inParent: (WebDataSource *)parentDataSource allowsScrolling: (BOOL)allowsScrolling
 {
diff --git a/WebKit/WebView.subproj/WebView.h b/WebKit/WebView.subproj/WebView.h
index c6326f4..a2dfc7f 100644
--- a/WebKit/WebView.subproj/WebView.h
+++ b/WebKit/WebView.subproj/WebView.h
@@ -160,9 +160,6 @@
 
 + (WebURLPolicy *)defaultURLPolicyForURL: (NSURL *)url;
 
-- (void)setDirectsAllLinksToSystemBrowser: (BOOL)flag;
-- (BOOL)directsAllLinksToSystemBrowser;
-
 // FIXME:  Should this method be private?
 // Called when a data source needs to create a frame.  This method encapsulates the
 // specifics of creating and initializing a view of the appropriate class.
diff --git a/WebKit/WebView.subproj/WebView.m b/WebKit/WebView.subproj/WebView.m
index 4c1ffd7..4b74b15 100644
--- a/WebKit/WebView.subproj/WebView.m
+++ b/WebKit/WebView.subproj/WebView.m
@@ -54,16 +54,6 @@
     [super dealloc];
 }
 
-- (void)setDirectsAllLinksToSystemBrowser: (BOOL)flag
-{
-    [NSException raise:WebMethodNotYetImplemented format:@"WebController::setDirectsAllLinksToSystemBrowser: is not implemented"];
-}
-
-- (BOOL)directsAllLinksToSystemBrowser
-{
-    [NSException raise:WebMethodNotYetImplemented format:@"WebController::directsAllLinksToSystemBrowser is not implemented"];
-    return NO;
-}
 
 - (WebFrame *)createFrameNamed: (NSString *)fname for: (WebDataSource *)childDataSource inParent: (WebDataSource *)parentDataSource allowsScrolling: (BOOL)allowsScrolling
 {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list