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


The following commit has been merged in the debian/unstable branch:
commit 435dd4e982f8ac8a7bfe55dd2f85e9a0fe11adef
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 26 23:13:37 2003 +0000

            Reviewed by Maciej.
    
            - re-fixed 3366542 -- filename with non-ASCII name left out of Content-Disposition for <input type=file>
    
            * khtml/html/html_formimpl.cpp: (HTMLFormElementImpl::formData): Added missing # sign.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4890 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 21d72db..529ed12 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2003-08-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by Maciej.
+
+        - re-fixed 3366542 -- filename with non-ASCII name left out of Content-Disposition for <input type=file>
+
+        * khtml/html/html_formimpl.cpp: (HTMLFormElementImpl::formData): Added missing # sign.
+
 2003-08-26  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3394107, make sure the display mutation code doesn't mutate objects with
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 21d72db..529ed12 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2003-08-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by Maciej.
+
+        - re-fixed 3366542 -- filename with non-ASCII name left out of Content-Disposition for <input type=file>
+
+        * khtml/html/html_formimpl.cpp: (HTMLFormElementImpl::formData): Added missing # sign.
+
 2003-08-26  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3394107, make sure the display mutation code doesn't mutate objects with
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 56963c7..15251fc 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -357,7 +357,7 @@ QByteArray HTMLFormElementImpl::formData(bool& ok)
                                 onlyfilename.append(&c, 1);
                             } else {
                                 QString ampersandEscape;
-                                ampersandEscape.sprintf("&%hu;", c.unicode());
+                                ampersandEscape.sprintf("&#%hu;", c.unicode());
                                 onlyfilename.append(ampersandEscape);
                             }
                         }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list