[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 07:46:53 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit ad13906b3bc8d26d454bb223110baa1a9d09cf6d
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 11 08:01:45 2003 +0000

            Reviewed by Maciej.
    
            - fixed 3217731 -- after going back to a page, forms are submitted with the wrong encoding (back/forward cache)
    
            * kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::openURLFromPageCache): Put decoder from document into the part.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4622 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0ec59cc..3f3c6c4 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2003-07-10  Darin Adler  <darin at apple.com>
+
+        Reviewed by Maciej.
+
+        - fixed 3217731 -- after going back to a page, forms are submitted with the wrong encoding (back/forward cache)
+
+        * kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::openURLFromPageCache): Put decoder from document into the part.
+
 === Safari-89 ===
 
 2003-07-10  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0ec59cc..3f3c6c4 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2003-07-10  Darin Adler  <darin at apple.com>
+
+        Reviewed by Maciej.
+
+        - fixed 3217731 -- after going back to a page, forms are submitted with the wrong encoding (back/forward cache)
+
+        * kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::openURLFromPageCache): Put decoder from document into the part.
+
 === Safari-89 ===
 
 2003-07-10  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index 85d3774..d530ef7 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -1044,6 +1044,15 @@ void KWQKHTMLPart::openURLFromPageCache(KWQPageState *state)
     
     d->m_doc = doc;
     d->m_doc->ref();
+    
+    Decoder *decoder = doc->decoder();
+    if (decoder) {
+        decoder->ref();
+    }
+    if (d->m_decoder) {
+        d->m_decoder->deref();
+    }
+    d->m_decoder = decoder;
 
     updatePolicyBaseURL();
         

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list