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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:53:17 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8e0a74b745e2a9eb4bd66f03ccea4a2be08ea5ae
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 14 19:23:38 2001 +0000

    	After discussion with Don, Removed all methods relating to
    	resolved URLs, since browsers don't actually treat aliases
    	specially.
    
    	* WebView.subproj/WKWebController.h: removed inputURLresolvedTo: methods.
    	* WebView.subproj/WKWebDataSource.h: remove resolvedURL method,
    	and mentions of it in comments.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@501 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a114f88..25328a7 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2001-12-14  Maciej Stachowiak  <mjs at apple.com>
+
+	After discussion with Don, Removed all methods relating to
+	resolved URLs, since browsers don't actually treat aliases
+	specially.
+	
+	* WebView.subproj/WKWebController.h: removed inputURLresolvedTo: methods.
+	* WebView.subproj/WKWebDataSource.h: remove resolvedURL method,
+	and mentions of it in comments.
+
 2001-12-13  Maciej Stachowiak  <mjs at apple.com>
 
 	Warning fixes and support to pass the http headers along with
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a114f88..25328a7 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,13 @@
+2001-12-14  Maciej Stachowiak  <mjs at apple.com>
+
+	After discussion with Don, Removed all methods relating to
+	resolved URLs, since browsers don't actually treat aliases
+	specially.
+	
+	* WebView.subproj/WKWebController.h: removed inputURLresolvedTo: methods.
+	* WebView.subproj/WKWebDataSource.h: remove resolvedURL method,
+	and mentions of it in comments.
+
 2001-12-13  Maciej Stachowiak  <mjs at apple.com>
 
 	Warning fixes and support to pass the http headers along with
diff --git a/WebKit/WebView.subproj/IFWebController.h b/WebKit/WebView.subproj/IFWebController.h
index c96355b..b7ac85f 100644
--- a/WebKit/WebView.subproj/IFWebController.h
+++ b/WebKit/WebView.subproj/IFWebController.h
@@ -87,6 +87,11 @@
         
         Changed WKLocationChangeHandler to add a parameter specifying the data source
         that sent the message.
+
+  2001-12-14
+
+        Removed inputURL:resolvedTo: methods, per discussion with Don.
+
 */
 
 
@@ -168,7 +173,6 @@
 
 - (void)receivedPageTitle: (NSString *)title;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL;
 - (void)serverRedirectTo: (NSURL *)url;
 
 @end
@@ -196,7 +200,6 @@
 
 - (void)receivedPageTitle: (NSString *)title byDataSource: (WKWebDataSource *)dataSource;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL byDataSource: (WKWebDataSource *)dataSource;
 - (void)serverRedirectTo: (NSURL *)url byDataSource: (WKWebDataSource *)dataSource;
 
 @end
diff --git a/WebKit/WebView.subproj/IFWebDataSource.h b/WebKit/WebView.subproj/IFWebDataSource.h
index 5049c27..72315d1 100644
--- a/WebKit/WebView.subproj/IFWebDataSource.h
+++ b/WebKit/WebView.subproj/IFWebDataSource.h
@@ -51,9 +51,13 @@
             - (BOOL)frameExists: (NSString *)name;
             - (void)openURL: (NSURL *)url inFrameNamed: (NSString *)frameName;
             - (void)openURL: (NSURL *)url inIFrame: (id)iFrameIdentifier;
+
+  2001-12-14
+
+        Removed all mentions of resolved URLs, because browsers don't
+        actuall treat DNS aliases specially.
                     
-   ============================================================================= 
-*/
+   ============================================================================= */
    
 #ifdef READY_FOR_PRIMETIME
 
@@ -120,22 +124,15 @@
 - (NSURL *)inputURL;
 
 
-// The inputURL may resolve to a different URL as a result of
-// a DNS redirect.  May return nil if the URL has not yet been
-// resolved.  <WKLocationChangedHandler> includes a message
-// that is sent after the URL has been resolved.
-- (NSURL *)resolvedURL;
-
-
 // finalURL returns the URL that was actually used.  The final URL
-// may be different than the resolvedURL if the server redirects.
-// <WKLocationChangedHandler> includes a message that is sent after
-// the URL has been resolved.
+// may be different than the inputURL if the server redirects.
+// <WKLocationChangedHandler> includes a message that is sent when
+// a redirect is processed
 - (NSURL *)finalURL;
 
 
-// Returns true if the resolvedURL has been redirected by the server,
-// i.e. resolvedURL != finalURL.
+// Returns true if the inputURL has been redirected by the server,
+// i.e. inputURL != finalURL.
 - (BOOL)isRedirected;
 
 // Start actually getting (if initialized with a URL) and parsing data. If the data source
diff --git a/WebKit/WebView.subproj/WKWebController.h b/WebKit/WebView.subproj/WKWebController.h
index c96355b..b7ac85f 100644
--- a/WebKit/WebView.subproj/WKWebController.h
+++ b/WebKit/WebView.subproj/WKWebController.h
@@ -87,6 +87,11 @@
         
         Changed WKLocationChangeHandler to add a parameter specifying the data source
         that sent the message.
+
+  2001-12-14
+
+        Removed inputURL:resolvedTo: methods, per discussion with Don.
+
 */
 
 
@@ -168,7 +173,6 @@
 
 - (void)receivedPageTitle: (NSString *)title;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL;
 - (void)serverRedirectTo: (NSURL *)url;
 
 @end
@@ -196,7 +200,6 @@
 
 - (void)receivedPageTitle: (NSString *)title byDataSource: (WKWebDataSource *)dataSource;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL byDataSource: (WKWebDataSource *)dataSource;
 - (void)serverRedirectTo: (NSURL *)url byDataSource: (WKWebDataSource *)dataSource;
 
 @end
diff --git a/WebKit/WebView.subproj/WKWebDataSource.h b/WebKit/WebView.subproj/WKWebDataSource.h
index 5049c27..72315d1 100644
--- a/WebKit/WebView.subproj/WKWebDataSource.h
+++ b/WebKit/WebView.subproj/WKWebDataSource.h
@@ -51,9 +51,13 @@
             - (BOOL)frameExists: (NSString *)name;
             - (void)openURL: (NSURL *)url inFrameNamed: (NSString *)frameName;
             - (void)openURL: (NSURL *)url inIFrame: (id)iFrameIdentifier;
+
+  2001-12-14
+
+        Removed all mentions of resolved URLs, because browsers don't
+        actuall treat DNS aliases specially.
                     
-   ============================================================================= 
-*/
+   ============================================================================= */
    
 #ifdef READY_FOR_PRIMETIME
 
@@ -120,22 +124,15 @@
 - (NSURL *)inputURL;
 
 
-// The inputURL may resolve to a different URL as a result of
-// a DNS redirect.  May return nil if the URL has not yet been
-// resolved.  <WKLocationChangedHandler> includes a message
-// that is sent after the URL has been resolved.
-- (NSURL *)resolvedURL;
-
-
 // finalURL returns the URL that was actually used.  The final URL
-// may be different than the resolvedURL if the server redirects.
-// <WKLocationChangedHandler> includes a message that is sent after
-// the URL has been resolved.
+// may be different than the inputURL if the server redirects.
+// <WKLocationChangedHandler> includes a message that is sent when
+// a redirect is processed
 - (NSURL *)finalURL;
 
 
-// Returns true if the resolvedURL has been redirected by the server,
-// i.e. resolvedURL != finalURL.
+// Returns true if the inputURL has been redirected by the server,
+// i.e. inputURL != finalURL.
 - (BOOL)isRedirected;
 
 // Start actually getting (if initialized with a URL) and parsing data. If the data source
diff --git a/WebKit/WebView.subproj/WebController.h b/WebKit/WebView.subproj/WebController.h
index c96355b..b7ac85f 100644
--- a/WebKit/WebView.subproj/WebController.h
+++ b/WebKit/WebView.subproj/WebController.h
@@ -87,6 +87,11 @@
         
         Changed WKLocationChangeHandler to add a parameter specifying the data source
         that sent the message.
+
+  2001-12-14
+
+        Removed inputURL:resolvedTo: methods, per discussion with Don.
+
 */
 
 
@@ -168,7 +173,6 @@
 
 - (void)receivedPageTitle: (NSString *)title;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL;
 - (void)serverRedirectTo: (NSURL *)url;
 
 @end
@@ -196,7 +200,6 @@
 
 - (void)receivedPageTitle: (NSString *)title byDataSource: (WKWebDataSource *)dataSource;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL byDataSource: (WKWebDataSource *)dataSource;
 - (void)serverRedirectTo: (NSURL *)url byDataSource: (WKWebDataSource *)dataSource;
 
 @end
diff --git a/WebKit/WebView.subproj/WebDataSource.h b/WebKit/WebView.subproj/WebDataSource.h
index 5049c27..72315d1 100644
--- a/WebKit/WebView.subproj/WebDataSource.h
+++ b/WebKit/WebView.subproj/WebDataSource.h
@@ -51,9 +51,13 @@
             - (BOOL)frameExists: (NSString *)name;
             - (void)openURL: (NSURL *)url inFrameNamed: (NSString *)frameName;
             - (void)openURL: (NSURL *)url inIFrame: (id)iFrameIdentifier;
+
+  2001-12-14
+
+        Removed all mentions of resolved URLs, because browsers don't
+        actuall treat DNS aliases specially.
                     
-   ============================================================================= 
-*/
+   ============================================================================= */
    
 #ifdef READY_FOR_PRIMETIME
 
@@ -120,22 +124,15 @@
 - (NSURL *)inputURL;
 
 
-// The inputURL may resolve to a different URL as a result of
-// a DNS redirect.  May return nil if the URL has not yet been
-// resolved.  <WKLocationChangedHandler> includes a message
-// that is sent after the URL has been resolved.
-- (NSURL *)resolvedURL;
-
-
 // finalURL returns the URL that was actually used.  The final URL
-// may be different than the resolvedURL if the server redirects.
-// <WKLocationChangedHandler> includes a message that is sent after
-// the URL has been resolved.
+// may be different than the inputURL if the server redirects.
+// <WKLocationChangedHandler> includes a message that is sent when
+// a redirect is processed
 - (NSURL *)finalURL;
 
 
-// Returns true if the resolvedURL has been redirected by the server,
-// i.e. resolvedURL != finalURL.
+// Returns true if the inputURL has been redirected by the server,
+// i.e. inputURL != finalURL.
 - (BOOL)isRedirected;
 
 // Start actually getting (if initialized with a URL) and parsing data. If the data source
diff --git a/WebKit/WebView.subproj/WebView.h b/WebKit/WebView.subproj/WebView.h
index c96355b..b7ac85f 100644
--- a/WebKit/WebView.subproj/WebView.h
+++ b/WebKit/WebView.subproj/WebView.h
@@ -87,6 +87,11 @@
         
         Changed WKLocationChangeHandler to add a parameter specifying the data source
         that sent the message.
+
+  2001-12-14
+
+        Removed inputURL:resolvedTo: methods, per discussion with Don.
+
 */
 
 
@@ -168,7 +173,6 @@
 
 - (void)receivedPageTitle: (NSString *)title;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL;
 - (void)serverRedirectTo: (NSURL *)url;
 
 @end
@@ -196,7 +200,6 @@
 
 - (void)receivedPageTitle: (NSString *)title byDataSource: (WKWebDataSource *)dataSource;
 
-- (void)inputURL: (NSURL *)inputURL resolvedTo: (NSURL *)resolvedURL byDataSource: (WKWebDataSource *)dataSource;
 - (void)serverRedirectTo: (NSURL *)url byDataSource: (WKWebDataSource *)dataSource;
 
 @end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list