Changeset 46178 in webkit


Ignore:
Timestamp:
Jul 21, 2009 10:14:20 AM (15 years ago)
Author:
kov@webkit.org
Message:

2009-07-21 Priit Laes <plaes@plaes.org>

Reviewed by Gustavo Noronha.

[Gtk] Searching in thepiratebay.org doesn't work with more than 1 word
https://bugs.webkit.org/show_bug.cgi?id=24602

Remove workaround required for <=libsoup-2.26.1

  • platform/network/soup/ResourceHandleSoup.cpp: (WebCore::restartedCallback):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46177 r46178  
     12009-07-21  Priit Laes  <plaes@plaes.org>
     2
     3        Reviewed by Gustavo Noronha.
     4
     5        [Gtk] Searching in thepiratebay.org doesn't work with more than 1 word
     6        https://bugs.webkit.org/show_bug.cgi?id=24602
     7
     8        Remove workaround required for <=libsoup-2.26.1
     9
     10        * platform/network/soup/ResourceHandleSoup.cpp:
     11        (WebCore::restartedCallback):
     12
    1132009-07-21  Adam Barth  <abarth@webkit.org>
    214
  • trunk/WebCore/platform/network/soup/ResourceHandleSoup.cpp

    r46117 r46178  
    212212    KURL newURL = KURL(handle->request().url(), location);
    213213
    214     // FIXME: This is needed because some servers use broken URIs in
    215     // their Location header, when redirecting, such as URIs with
    216     // white spaces instead of %20; this should be fixed in soup, in
    217     // the future, and this work-around removed.
    218     // See http://bugzilla.gnome.org/show_bug.cgi?id=575378.
    219     SoupURI* soup_uri = soup_uri_new(newURL.string().utf8().data());
    220     soup_message_set_uri(msg, soup_uri);
    221     soup_uri_free(soup_uri);
    222 
    223214    ResourceRequest request = handle->request();
    224215    ResourceResponse response;
Note: See TracChangeset for help on using the changeset viewer.