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

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:46:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit ed9290a925db6240c5df9e1e50d7e430a6c88bd8
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 1 22:25:42 2002 +0000

    WebFoundation:
    
    	Implemented WebResourceRequest "category" design for extending a
    	request with protocol-specific data.
    
            * CacheLoader.subproj/IFHTTPURLHandleC.m: Now imports WebHTTPResourceRequest.h.
            * CacheLoader.subproj/WebProtocolHandler.h: Added partOfRequest:withClass:createIfDoesNotExist: method.
            * CacheLoader.subproj/WebProtocolHandler.m:
            (+[WebProtocolHandler partOfRequest:withClass:createIfDoesNotExist:]):
            * CacheLoader.subproj/WebResourceLoad.m: Now imports WebHTTPResourceRequest.h.
            * CacheLoader.subproj/WebResourceLoadManager.m: Ditto.
            * CacheLoader.subproj/WebResourceRequest.h: Removed HTTP-protocol-specific fields and methods.
            * CacheLoader.subproj/WebResourceRequest.m: Ditto.
            (-[WebResourceRequest initWithURL:]): Deal with fact that HTTP-protocol-specific fields and methods have been removed.
            (-[WebResourceRequest copyWithZone:]): Ditto. Copy protocol-specific parts.
            (-[WebResourceRequest copyWithURL:]): Ditto. Ditto. :)
            (-[WebResourceRequest _partWithClass:createIfDoesNotExist:]): Added implementation.
            (-[WebResourceRequest dealloc]): Deal with fact that HTTP-protocol-specific fields and methods have been removed.
            * CacheLoader.subproj/WebResourceRequestPrivate.h: Added.
            * Misc.subproj/WebFoundation.h: Now imports WebHTTPResourceRequest.h.
            * ProtocolHandlers.subproj/WebCFNetworkHTTPProtocolHandler.m: Now imports WebHTTPResourceRequest.h.
            * ProtocolHandlers.subproj/WebHTTPProtocolHandler.m: Ditto.
            * ProtocolHandlers.subproj/WebHTTPResourceRequest.h: Added.
            * ProtocolHandlers.subproj/WebHTTPResourceRequest.m: Added.
            * ProtocolHandlers.subproj/WebHTTPResourceRequestParameters.h: Added.
            * ProtocolHandlers.subproj/WebHTTPResourceRequestParameters.m: Added.
            * ProtocolHandlers.subproj/WebSimpleHTTPProtocolHandler.m: Now imports WebHTTPResourceRequest.h.
            * WebFoundation.pbproj/project.pbxproj
    
    WebKit:
    
            Implemented WebResourceRequest "category" design for extending a
            request with protocol-specific data.
    
            * WebCoreSupport.subproj/WebBridge.m: Now imports WebHTTPResourceRequest.h.
            * WebCoreSupport.subproj/WebSubresourceClient.m: Ditto.
            * WebView.subproj/WebMainResourceClient.m: Ditto.
    
    WebBrowser:
    
            * BrowserDocument.m: Now imports WebHTTPResourceRequest.h to get at protocol-specific
    	request information.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2219 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 56bca5e..c6db432 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-10-01  Ken Kocienda  <kocienda at apple.com>
+
+        Implemented WebResourceRequest "category" design for extending a
+        request with protocol-specific data.
+
+        * WebCoreSupport.subproj/WebBridge.m: Now imports WebHTTPResourceRequest.h.
+        * WebCoreSupport.subproj/WebSubresourceClient.m: Ditto.
+        * WebView.subproj/WebMainResourceClient.m: Ditto.
+
 2002-10-01  Chris Blumenberg  <cblu at apple.com>
 
 	- Added debug drawing
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 56bca5e..c6db432 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-10-01  Ken Kocienda  <kocienda at apple.com>
+
+        Implemented WebResourceRequest "category" design for extending a
+        request with protocol-specific data.
+
+        * WebCoreSupport.subproj/WebBridge.m: Now imports WebHTTPResourceRequest.h.
+        * WebCoreSupport.subproj/WebSubresourceClient.m: Ditto.
+        * WebView.subproj/WebMainResourceClient.m: Ditto.
+
 2002-10-01  Chris Blumenberg  <cblu at apple.com>
 
 	- Added debug drawing
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index 23e0445..3d52ea6 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -24,6 +24,7 @@
 #import <WebFoundation/WebNSStringExtras.h>
 #import <WebFoundation/WebResourceHandle.h>
 #import <WebFoundation/WebResourceRequest.h>
+#import <WebFoundation/WebHTTPResourceRequest.h>
 
 @interface NSApplication (DeclarationStolenFromAppKit)
 - (void)_cycleWindowsReversed:(BOOL)reversed;
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
index 8b04964..1fcbd5a 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
@@ -12,6 +12,7 @@
 #import <WebFoundation/WebResourceHandle.h>
 #import <WebFoundation/WebResourceHandlePrivate.h>
 #import <WebFoundation/WebResourceRequest.h>
+#import <WebFoundation/WebHTTPResourceRequest.h>
 #import <WebFoundation/WebResourceResponse.h>
 
 #import <WebCore/WebCoreResourceLoader.h>
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
index 8b04964..1fcbd5a 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
@@ -12,6 +12,7 @@
 #import <WebFoundation/WebResourceHandle.h>
 #import <WebFoundation/WebResourceHandlePrivate.h>
 #import <WebFoundation/WebResourceRequest.h>
+#import <WebFoundation/WebHTTPResourceRequest.h>
 #import <WebFoundation/WebResourceResponse.h>
 
 #import <WebCore/WebCoreResourceLoader.h>
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index 1642fe3..eafd6ae 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -24,6 +24,7 @@
 #import <WebFoundation/WebResourceHandle.h>
 #import <WebFoundation/WebResourceHandlePrivate.h>
 #import <WebFoundation/WebResourceRequest.h>
+#import <WebFoundation/WebHTTPResourceRequest.h>
 #import <WebFoundation/WebResourceResponse.h>
 #import <WebFoundation/WebCookieConstants.h>
 
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index 1642fe3..eafd6ae 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -24,6 +24,7 @@
 #import <WebFoundation/WebResourceHandle.h>
 #import <WebFoundation/WebResourceHandlePrivate.h>
 #import <WebFoundation/WebResourceRequest.h>
+#import <WebFoundation/WebHTTPResourceRequest.h>
 #import <WebFoundation/WebResourceResponse.h>
 #import <WebFoundation/WebCookieConstants.h>
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list