Changeset 52208 in webkit


Ignore:
Timestamp:
Dec 16, 2009 11:14:36 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-16 Dan Winship <danw@gnome.org>

Reviewed by Gustavo Noronha Silva.

[Gtk] Content-Encoding support

https://bugs.webkit.org/show_bug.cgi?id=522772

  • configure.ac: require libsoup 2.28.2 for SoupContentDecoder

2009-12-16 Dan Winship <danw@gnome.org>

Reviewed by Gustavo Noronha Silva.

[Gtk] Content-Encoding support

https://bugs.webkit.org/show_bug.cgi?id=522772

  • platform/network/soup/ResourceHandleSoup.cpp: (WebCore::startHttp): Don't force "Accept-Encoding: identity" any more

2009-12-16 Dan Winship <danw@gnome.org>

Reviewed by Gustavo Noronha Silva.

Content-Encoding support

https://bugs.webkit.org/show_bug.cgi?id=522772

  • webkit/webkitprivate.cpp: (webkit_init): add a SoupContentDecoder feature to the session
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r52078 r52208  
     12009-12-16  Dan Winship  <danw@gnome.org>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [Gtk] Content-Encoding support
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=522772
     8
     9        * configure.ac: require libsoup 2.28.2 for SoupContentDecoder
     10
    1112009-12-13  Eric Seidel  <eric@webkit.org>
    212
  • trunk/WebCore/ChangeLog

    r52206 r52208  
     12009-12-16  Dan Winship  <danw@gnome.org>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [Gtk] Content-Encoding support
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=522772
     8
     9        * platform/network/soup/ResourceHandleSoup.cpp:
     10        (WebCore::startHttp): Don't force "Accept-Encoding: identity" any
     11        more
     12
    1132009-12-16  Benjamin Otte  <otte@gnome.org>
    214
  • trunk/WebCore/platform/network/soup/ResourceHandleSoup.cpp

    r51380 r52208  
    549549    handle->ref();
    550550
    551     // FIXME: For now, we cannot accept content encoded in anything
    552     // other than identity, so force servers to do it our way. When
    553     // libsoup gets proper Content-Encoding support we will want to
    554     // use it here instead.
    555     soup_message_headers_replace(d->m_msg->request_headers, "Accept-Encoding", "identity");
    556 
    557551    // Balanced in ResourceHandleInternal's destructor; we need to
    558552    // keep our own ref, because after queueing the message, the
  • trunk/WebKit/gtk/ChangeLog

    r52207 r52208  
     12009-12-16  Dan Winship  <danw@gnome.org>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        Content-Encoding support
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=522772
     8
     9        * webkit/webkitprivate.cpp:
     10        (webkit_init): add a SoupContentDecoder feature to the session
     11
    1122009-12-16  Christian Dywan  <christian@twotoasts.de>
    213
  • trunk/WebKit/gtk/webkit/webkitprivate.cpp

    r51948 r52208  
    281281    soup_session_add_feature(session, sniffer);
    282282    g_object_unref(sniffer);
     283
     284    soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_DECODER);
    283285}
    284286
  • trunk/configure.ac

    r51856 r52208  
    191191
    192192# minimum base dependencies
    193 LIBSOUP_REQUIRED_VERSION=2.27.91
     193LIBSOUP_REQUIRED_VERSION=2.28.2
    194194CAIRO_REQUIRED_VERSION=1.6
    195195FONTCONFIG_REQUIRED_VERSION=2.4
Note: See TracChangeset for help on using the changeset viewer.