[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:33:54 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f3518160c9cf77da93b7a4f1fc85209d76ee8e77
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 22 18:22:11 2002 +0000

    	Passing the main load's attributes to the subresource loads causes
    	breakage (most visible when we POST).
    
    	Right now, we just rely on flags to handle "back/forward" loads, so
    	the attributes were not actually being used.
    
    	A better fix needs to be put in place when the soon-to-be-done
    	attributes/flags rework is done.
    
            * WebCoreSupport.subproj/WebSubresourceClient.m:
            (+[WebSubresourceClient startLoadingResource:withURL:dataSource:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1900 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index bd9e496..2abe0fb 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,17 @@
+2002-08-22  Ken Kocienda  <kocienda at apple.com>
+
+	Passing the main load's attributes to the subresource loads causes 
+	breakage (most visible when we POST).
+	
+	Right now, we just rely on flags to handle "back/forward" loads, so
+	the attributes were not actually being used.
+
+	A better fix needs to be put in place when the soon-to-be-done 
+	attributes/flags rework is done.
+
+        * WebCoreSupport.subproj/WebSubresourceClient.m:
+        (+[WebSubresourceClient startLoadingResource:withURL:dataSource:]):
+
 === Alexander-20 ===
 
 2002-08-21  Richard Williamson (Local)  <rjw at apple.com>
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index bd9e496..2abe0fb 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,17 @@
+2002-08-22  Ken Kocienda  <kocienda at apple.com>
+
+	Passing the main load's attributes to the subresource loads causes 
+	breakage (most visible when we POST).
+	
+	Right now, we just rely on flags to handle "back/forward" loads, so
+	the attributes were not actually being used.
+
+	A better fix needs to be put in place when the soon-to-be-done 
+	attributes/flags rework is done.
+
+        * WebCoreSupport.subproj/WebSubresourceClient.m:
+        (+[WebSubresourceClient startLoadingResource:withURL:dataSource:]):
+
 === Alexander-20 ===
 
 2002-08-21  Richard Williamson (Local)  <rjw at apple.com>
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
index 9d64d95..59c56ae 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
@@ -60,7 +60,7 @@
     withURL:(NSURL *)URL dataSource:(WebDataSource *)source
 {
     WebSubresourceClient *client = [[self alloc] initWithLoader:rLoader dataSource:source];
-    WebResourceHandle *handle = [[[WebResourceHandle alloc] initWithClient:client URL:URL attributes:[source attributes] flags:[source flags]] autorelease];
+    WebResourceHandle *handle = [[[WebResourceHandle alloc] initWithClient:client URL:URL attributes:nil flags:[source flags]] autorelease];
     [client release];
 
     if (handle == nil) {
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
index 9d64d95..59c56ae 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
@@ -60,7 +60,7 @@
     withURL:(NSURL *)URL dataSource:(WebDataSource *)source
 {
     WebSubresourceClient *client = [[self alloc] initWithLoader:rLoader dataSource:source];
-    WebResourceHandle *handle = [[[WebResourceHandle alloc] initWithClient:client URL:URL attributes:[source attributes] flags:[source flags]] autorelease];
+    WebResourceHandle *handle = [[[WebResourceHandle alloc] initWithClient:client URL:URL attributes:nil flags:[source flags]] autorelease];
     [client release];
 
     if (handle == nil) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list