pkgsrc/net/libsoup24/PLIST

167 lines
7.5 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.17 2012/11/15 14:50:37 drochner Exp $
include/libsoup-2.4/libsoup/soup-address.h
include/libsoup-2.4/libsoup/soup-auth-domain-basic.h
include/libsoup-2.4/libsoup/soup-auth-domain-digest.h
include/libsoup-2.4/libsoup/soup-auth-domain.h
include/libsoup-2.4/libsoup/soup-auth.h
include/libsoup-2.4/libsoup/soup-cache.h
include/libsoup-2.4/libsoup/soup-content-decoder.h
include/libsoup-2.4/libsoup/soup-content-sniffer.h
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
include/libsoup-2.4/libsoup/soup-cookie-jar-text.h
include/libsoup-2.4/libsoup/soup-cookie-jar.h
include/libsoup-2.4/libsoup/soup-cookie.h
include/libsoup-2.4/libsoup/soup-date.h
include/libsoup-2.4/libsoup/soup-enum-types.h
include/libsoup-2.4/libsoup/soup-form.h
include/libsoup-2.4/libsoup/soup-headers.h
include/libsoup-2.4/libsoup/soup-logger.h
include/libsoup-2.4/libsoup/soup-message-body.h
include/libsoup-2.4/libsoup/soup-message-headers.h
include/libsoup-2.4/libsoup/soup-message.h
include/libsoup-2.4/libsoup/soup-method.h
include/libsoup-2.4/libsoup/soup-misc.h
include/libsoup-2.4/libsoup/soup-multipart-input-stream.h
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
include/libsoup-2.4/libsoup/soup-multipart.h
include/libsoup-2.4/libsoup/soup-password-manager.h
include/libsoup-2.4/libsoup/soup-portability.h
include/libsoup-2.4/libsoup/soup-proxy-resolver-default.h
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
include/libsoup-2.4/libsoup/soup-proxy-resolver.h
include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h
include/libsoup-2.4/libsoup/soup-request-data.h
include/libsoup-2.4/libsoup/soup-request-file.h
include/libsoup-2.4/libsoup/soup-request-http.h
include/libsoup-2.4/libsoup/soup-request.h
include/libsoup-2.4/libsoup/soup-requester.h
include/libsoup-2.4/libsoup/soup-server.h
include/libsoup-2.4/libsoup/soup-session-async.h
include/libsoup-2.4/libsoup/soup-session-feature.h
include/libsoup-2.4/libsoup/soup-session-sync.h
include/libsoup-2.4/libsoup/soup-session.h
include/libsoup-2.4/libsoup/soup-socket.h
include/libsoup-2.4/libsoup/soup-status.h
include/libsoup-2.4/libsoup/soup-tld.h
include/libsoup-2.4/libsoup/soup-types.h
include/libsoup-2.4/libsoup/soup-uri.h
include/libsoup-2.4/libsoup/soup-value-utils.h
include/libsoup-2.4/libsoup/soup-xmlrpc.h
include/libsoup-2.4/libsoup/soup.h
${PLIST.gnome}include/libsoup-gnome-2.4/libsoup/soup-cookie-jar-sqlite.h
${PLIST.gnome}include/libsoup-gnome-2.4/libsoup/soup-gnome-features.h
${PLIST.gnome}include/libsoup-gnome-2.4/libsoup/soup-gnome.h
lib/libsoup-2.4.la
${PLIST.gnome}lib/libsoup-gnome-2.4.la
lib/pkgconfig/libsoup-2.4.pc
${PLIST.gnome}lib/pkgconfig/libsoup-gnome-2.4.pc
share/gtk-doc/html/libsoup-2.4/SoupAddress.html
share/gtk-doc/html/libsoup-2.4/SoupAuth.html
share/gtk-doc/html/libsoup-2.4/SoupAuthDomain.html
share/gtk-doc/html/libsoup-2.4/SoupAuthDomainBasic.html
share/gtk-doc/html/libsoup-2.4/SoupAuthDomainDigest.html
share/gtk-doc/html/libsoup-2.4/SoupCache.html
share/gtk-doc/html/libsoup-2.4/SoupContentDecoder.html
Update to 2.30.1: Changes in libsoup from 2.30.0 to 2.30.1: * Fix for https through proxies that close the connection when returning a "407 Proxy Authentication Required" response, and add a regression test for that case. [#611663] * Fixed multiple forms/multipart-related interoperability problems reported by Egon Andersen: * Don't quote the multipart boundary string if it's not needed, since RFC 2616 recommends that you don't, and some servers don't handle quotes there correctly. (Sigh.) [#614176] * Don't put an extra blank line before the first multipart part, since it's unnecessary and some servers don't handle a multipart preamble correctly. (Sigh.) [#614183] * Don't put Content-Transfer-Encoding headers in the multipart/form-data parts, even though the HTML 4 spec says you must, since no other browsers do, and some servers don't handle them correctly. (Sigh.) [#614198] * Changed SoupCookieJarSqlite to actually erase deleted cookies from the database. [#615711, Lukasz Slachciak] * Fixed SoupLogger to be more robust against getting passed bad data by the session. [#611663] * Fixed SoupAuthDomain to ignore paths when doing proxy auth * Fixed a g_warning when hovering over a javascript link in WebKit. [#613442, Xan Lopez] Changes in libsoup from 2.29.91 to 2.30.0: * Fixed a crash in the whitespace-stripping code in soup_uri_new() [#612644, "arnaud.lb"] * Update content-sniffing algorithm to match Chrome and the soon-to-be-updated sniffing spec. [#611502, Gustavo Noronha Silva] * We now handle "Content-Encoding: x-gzip" as well as "gzip" (even though "x-gzip" has been deprecated for more than 10 years). [#611476] * Fixed leaks found by valgrind * Make the "make check" programs only bind to 127.0.0.1, not any public network interfaces. [#609489, Saleem Absulrasool] * Add a test to sniffing-test to make sure that Content-Type parameters are preserved correctly. [Gustavo Noronha Silva] Changes in libsoup from 2.29.90 to 2.29.91: * Added SOUP_SESSION_SSL_STRICT and SOUP_MESSAGE_CERTIFICATE_TRUSTED, to allow callers to determine if an https response comes from a server with a recognized/valid or unrecognized/invalid certificate. [#610374, Gustavo Noronha Silva] * Fixed handling of certain badly-formatted URIs [#590524] Changes in libsoup from 2.29.6 to 2.29.90: * Added soup_cookie_jar_set_accept_policy() and related API for implementing cookie acceptance policies. [#608353, Xan Lopez] * Fixed the "request-read" signal in SoupServer to actually be emitted. Changes in libsoup from 2.29.5 to 2.29.6: * Fixed SoupContentDecoder to ignore trailing junk after the encoded message body (as other browsers do), rather than getting stuck in an infinite loop. [#606352] * Fixed an invalid read in soup_cookie_applies_to_uri() [#607024, pointed out by Xan] * Fixed linking on OS X [#606959] * Removed a harmless warning in SoupServer. [#606645] Changes in libsoup from 2.29.3 to 2.29.5: * Added SoupContentDecoder, providing support for Content-Encoding: gzip for WebKitGTK. [#522772] * Added "accept-language" and "accept-language-auto" properties to SoupSession, to support the Accept-Language header. [#597004, Mario Sanchez Prada] * Fixed a bug in SoupPasswordManagerGNOME that could cause crashes if you typed the wrong password once and then tried again. [#595554, debugged by Gustavo Noronha Silva] * Fixed a crash in SoupAuthDigest if the server claims support for both qop=auth and qop=auth-int. (This was not noticed sooner because no one actually supports qop=auth-int, and the server in question here was probably confused. :) * Updated cookie parsing/output to more closely match draft-ietf-httpstate-cookie-00. [Also fixes #603496 (WebKit unit test), and #604794 (hang parsing malformed Set-Cookie header)] * Fixed https-via-proxy to not hang if there is an error communicating with the proxy immediately after the TLS negotiation. [#587528] * Fixed a bug that broke gobject-introspection's introspection of libsoup. [#603696, Vincent Untz] * Handle spurious CR/LFs between responses. [#602863, Alexander V. Butenko] * Fixed soup-message-client-io to not erroneously include URI fragments on the Request-Line when sending via a proxy. [Related to WebKit bug #28687] * Fixed Digest authentication against certain (buggy?) clients/servers that require you to use quotes in exactly the same places where the spec uses them. [#582219] * Fix ugly gtype-related hack to work with the latest unstable glib. [Benjamin Otte]
2010-06-05 13:00:42 +02:00
share/gtk-doc/html/libsoup-2.4/SoupContentSniffer.html
share/gtk-doc/html/libsoup-2.4/SoupCookie.html
share/gtk-doc/html/libsoup-2.4/SoupCookieJar.html
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
share/gtk-doc/html/libsoup-2.4/SoupCookieJarSqlite.html
share/gtk-doc/html/libsoup-2.4/SoupCookieJarText.html
share/gtk-doc/html/libsoup-2.4/SoupLogger.html
share/gtk-doc/html/libsoup-2.4/SoupMessage.html
share/gtk-doc/html/libsoup-2.4/SoupMessageBody.html
share/gtk-doc/html/libsoup-2.4/SoupMessageHeaders.html
share/gtk-doc/html/libsoup-2.4/SoupMultipart.html
share/gtk-doc/html/libsoup-2.4/SoupMultipartInputStream.html
share/gtk-doc/html/libsoup-2.4/SoupProxyResolverDefault.html
Update to 2.30.1: Changes in libsoup from 2.30.0 to 2.30.1: * Fix for https through proxies that close the connection when returning a "407 Proxy Authentication Required" response, and add a regression test for that case. [#611663] * Fixed multiple forms/multipart-related interoperability problems reported by Egon Andersen: * Don't quote the multipart boundary string if it's not needed, since RFC 2616 recommends that you don't, and some servers don't handle quotes there correctly. (Sigh.) [#614176] * Don't put an extra blank line before the first multipart part, since it's unnecessary and some servers don't handle a multipart preamble correctly. (Sigh.) [#614183] * Don't put Content-Transfer-Encoding headers in the multipart/form-data parts, even though the HTML 4 spec says you must, since no other browsers do, and some servers don't handle them correctly. (Sigh.) [#614198] * Changed SoupCookieJarSqlite to actually erase deleted cookies from the database. [#615711, Lukasz Slachciak] * Fixed SoupLogger to be more robust against getting passed bad data by the session. [#611663] * Fixed SoupAuthDomain to ignore paths when doing proxy auth * Fixed a g_warning when hovering over a javascript link in WebKit. [#613442, Xan Lopez] Changes in libsoup from 2.29.91 to 2.30.0: * Fixed a crash in the whitespace-stripping code in soup_uri_new() [#612644, "arnaud.lb"] * Update content-sniffing algorithm to match Chrome and the soon-to-be-updated sniffing spec. [#611502, Gustavo Noronha Silva] * We now handle "Content-Encoding: x-gzip" as well as "gzip" (even though "x-gzip" has been deprecated for more than 10 years). [#611476] * Fixed leaks found by valgrind * Make the "make check" programs only bind to 127.0.0.1, not any public network interfaces. [#609489, Saleem Absulrasool] * Add a test to sniffing-test to make sure that Content-Type parameters are preserved correctly. [Gustavo Noronha Silva] Changes in libsoup from 2.29.90 to 2.29.91: * Added SOUP_SESSION_SSL_STRICT and SOUP_MESSAGE_CERTIFICATE_TRUSTED, to allow callers to determine if an https response comes from a server with a recognized/valid or unrecognized/invalid certificate. [#610374, Gustavo Noronha Silva] * Fixed handling of certain badly-formatted URIs [#590524] Changes in libsoup from 2.29.6 to 2.29.90: * Added soup_cookie_jar_set_accept_policy() and related API for implementing cookie acceptance policies. [#608353, Xan Lopez] * Fixed the "request-read" signal in SoupServer to actually be emitted. Changes in libsoup from 2.29.5 to 2.29.6: * Fixed SoupContentDecoder to ignore trailing junk after the encoded message body (as other browsers do), rather than getting stuck in an infinite loop. [#606352] * Fixed an invalid read in soup_cookie_applies_to_uri() [#607024, pointed out by Xan] * Fixed linking on OS X [#606959] * Removed a harmless warning in SoupServer. [#606645] Changes in libsoup from 2.29.3 to 2.29.5: * Added SoupContentDecoder, providing support for Content-Encoding: gzip for WebKitGTK. [#522772] * Added "accept-language" and "accept-language-auto" properties to SoupSession, to support the Accept-Language header. [#597004, Mario Sanchez Prada] * Fixed a bug in SoupPasswordManagerGNOME that could cause crashes if you typed the wrong password once and then tried again. [#595554, debugged by Gustavo Noronha Silva] * Fixed a crash in SoupAuthDigest if the server claims support for both qop=auth and qop=auth-int. (This was not noticed sooner because no one actually supports qop=auth-int, and the server in question here was probably confused. :) * Updated cookie parsing/output to more closely match draft-ietf-httpstate-cookie-00. [Also fixes #603496 (WebKit unit test), and #604794 (hang parsing malformed Set-Cookie header)] * Fixed https-via-proxy to not hang if there is an error communicating with the proxy immediately after the TLS negotiation. [#587528] * Fixed a bug that broke gobject-introspection's introspection of libsoup. [#603696, Vincent Untz] * Handle spurious CR/LFs between responses. [#602863, Alexander V. Butenko] * Fixed soup-message-client-io to not erroneously include URI fragments on the Request-Line when sending via a proxy. [Related to WebKit bug #28687] * Fixed Digest authentication against certain (buggy?) clients/servers that require you to use quotes in exactly the same places where the spec uses them. [#582219] * Fix ugly gtype-related hack to work with the latest unstable glib. [Benjamin Otte]
2010-06-05 13:00:42 +02:00
share/gtk-doc/html/libsoup-2.4/SoupProxyURIResolver.html
share/gtk-doc/html/libsoup-2.4/SoupRequest.html
share/gtk-doc/html/libsoup-2.4/SoupRequestData.html
share/gtk-doc/html/libsoup-2.4/SoupRequestFile.html
share/gtk-doc/html/libsoup-2.4/SoupRequestHTTP.html
share/gtk-doc/html/libsoup-2.4/SoupRequester.html
share/gtk-doc/html/libsoup-2.4/SoupServer.html
share/gtk-doc/html/libsoup-2.4/SoupSession.html
share/gtk-doc/html/libsoup-2.4/SoupSessionAsync.html
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
share/gtk-doc/html/libsoup-2.4/SoupSessionFeature.html
share/gtk-doc/html/libsoup-2.4/SoupSessionSync.html
share/gtk-doc/html/libsoup-2.4/SoupSocket.html
share/gtk-doc/html/libsoup-2.4/SoupURI.html
share/gtk-doc/html/libsoup-2.4/annotation-glossary.html
share/gtk-doc/html/libsoup-2.4/ch01.html
share/gtk-doc/html/libsoup-2.4/ch02.html
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
share/gtk-doc/html/libsoup-2.4/ch03.html
share/gtk-doc/html/libsoup-2.4/ch04.html
share/gtk-doc/html/libsoup-2.4/ch05.html
share/gtk-doc/html/libsoup-2.4/ch06.html
share/gtk-doc/html/libsoup-2.4/ch07.html
share/gtk-doc/html/libsoup-2.4/home.png
share/gtk-doc/html/libsoup-2.4/index.html
share/gtk-doc/html/libsoup-2.4/index.sgml
share/gtk-doc/html/libsoup-2.4/ix01.html
share/gtk-doc/html/libsoup-2.4/left.png
Update to 2.30.1: Changes in libsoup from 2.30.0 to 2.30.1: * Fix for https through proxies that close the connection when returning a "407 Proxy Authentication Required" response, and add a regression test for that case. [#611663] * Fixed multiple forms/multipart-related interoperability problems reported by Egon Andersen: * Don't quote the multipart boundary string if it's not needed, since RFC 2616 recommends that you don't, and some servers don't handle quotes there correctly. (Sigh.) [#614176] * Don't put an extra blank line before the first multipart part, since it's unnecessary and some servers don't handle a multipart preamble correctly. (Sigh.) [#614183] * Don't put Content-Transfer-Encoding headers in the multipart/form-data parts, even though the HTML 4 spec says you must, since no other browsers do, and some servers don't handle them correctly. (Sigh.) [#614198] * Changed SoupCookieJarSqlite to actually erase deleted cookies from the database. [#615711, Lukasz Slachciak] * Fixed SoupLogger to be more robust against getting passed bad data by the session. [#611663] * Fixed SoupAuthDomain to ignore paths when doing proxy auth * Fixed a g_warning when hovering over a javascript link in WebKit. [#613442, Xan Lopez] Changes in libsoup from 2.29.91 to 2.30.0: * Fixed a crash in the whitespace-stripping code in soup_uri_new() [#612644, "arnaud.lb"] * Update content-sniffing algorithm to match Chrome and the soon-to-be-updated sniffing spec. [#611502, Gustavo Noronha Silva] * We now handle "Content-Encoding: x-gzip" as well as "gzip" (even though "x-gzip" has been deprecated for more than 10 years). [#611476] * Fixed leaks found by valgrind * Make the "make check" programs only bind to 127.0.0.1, not any public network interfaces. [#609489, Saleem Absulrasool] * Add a test to sniffing-test to make sure that Content-Type parameters are preserved correctly. [Gustavo Noronha Silva] Changes in libsoup from 2.29.90 to 2.29.91: * Added SOUP_SESSION_SSL_STRICT and SOUP_MESSAGE_CERTIFICATE_TRUSTED, to allow callers to determine if an https response comes from a server with a recognized/valid or unrecognized/invalid certificate. [#610374, Gustavo Noronha Silva] * Fixed handling of certain badly-formatted URIs [#590524] Changes in libsoup from 2.29.6 to 2.29.90: * Added soup_cookie_jar_set_accept_policy() and related API for implementing cookie acceptance policies. [#608353, Xan Lopez] * Fixed the "request-read" signal in SoupServer to actually be emitted. Changes in libsoup from 2.29.5 to 2.29.6: * Fixed SoupContentDecoder to ignore trailing junk after the encoded message body (as other browsers do), rather than getting stuck in an infinite loop. [#606352] * Fixed an invalid read in soup_cookie_applies_to_uri() [#607024, pointed out by Xan] * Fixed linking on OS X [#606959] * Removed a harmless warning in SoupServer. [#606645] Changes in libsoup from 2.29.3 to 2.29.5: * Added SoupContentDecoder, providing support for Content-Encoding: gzip for WebKitGTK. [#522772] * Added "accept-language" and "accept-language-auto" properties to SoupSession, to support the Accept-Language header. [#597004, Mario Sanchez Prada] * Fixed a bug in SoupPasswordManagerGNOME that could cause crashes if you typed the wrong password once and then tried again. [#595554, debugged by Gustavo Noronha Silva] * Fixed a crash in SoupAuthDigest if the server claims support for both qop=auth and qop=auth-int. (This was not noticed sooner because no one actually supports qop=auth-int, and the server in question here was probably confused. :) * Updated cookie parsing/output to more closely match draft-ietf-httpstate-cookie-00. [Also fixes #603496 (WebKit unit test), and #604794 (hang parsing malformed Set-Cookie header)] * Fixed https-via-proxy to not hang if there is an error communicating with the proxy immediately after the TLS negotiation. [#587528] * Fixed a bug that broke gobject-introspection's introspection of libsoup. [#603696, Vincent Untz] * Handle spurious CR/LFs between responses. [#602863, Alexander V. Butenko] * Fixed soup-message-client-io to not erroneously include URI fragments on the Request-Line when sending via a proxy. [Related to WebKit bug #28687] * Fixed Digest authentication against certain (buggy?) clients/servers that require you to use quotes in exactly the same places where the spec uses them. [#582219] * Fix ugly gtype-related hack to work with the latest unstable glib. [Benjamin Otte]
2010-06-05 13:00:42 +02:00
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-GValue-Support.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-HTML-Form-Support.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-Soup-Miscellaneous-Utilities.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-Top-Level-Domain-utils.html
Update to 2.30.1: Changes in libsoup from 2.30.0 to 2.30.1: * Fix for https through proxies that close the connection when returning a "407 Proxy Authentication Required" response, and add a regression test for that case. [#611663] * Fixed multiple forms/multipart-related interoperability problems reported by Egon Andersen: * Don't quote the multipart boundary string if it's not needed, since RFC 2616 recommends that you don't, and some servers don't handle quotes there correctly. (Sigh.) [#614176] * Don't put an extra blank line before the first multipart part, since it's unnecessary and some servers don't handle a multipart preamble correctly. (Sigh.) [#614183] * Don't put Content-Transfer-Encoding headers in the multipart/form-data parts, even though the HTML 4 spec says you must, since no other browsers do, and some servers don't handle them correctly. (Sigh.) [#614198] * Changed SoupCookieJarSqlite to actually erase deleted cookies from the database. [#615711, Lukasz Slachciak] * Fixed SoupLogger to be more robust against getting passed bad data by the session. [#611663] * Fixed SoupAuthDomain to ignore paths when doing proxy auth * Fixed a g_warning when hovering over a javascript link in WebKit. [#613442, Xan Lopez] Changes in libsoup from 2.29.91 to 2.30.0: * Fixed a crash in the whitespace-stripping code in soup_uri_new() [#612644, "arnaud.lb"] * Update content-sniffing algorithm to match Chrome and the soon-to-be-updated sniffing spec. [#611502, Gustavo Noronha Silva] * We now handle "Content-Encoding: x-gzip" as well as "gzip" (even though "x-gzip" has been deprecated for more than 10 years). [#611476] * Fixed leaks found by valgrind * Make the "make check" programs only bind to 127.0.0.1, not any public network interfaces. [#609489, Saleem Absulrasool] * Add a test to sniffing-test to make sure that Content-Type parameters are preserved correctly. [Gustavo Noronha Silva] Changes in libsoup from 2.29.90 to 2.29.91: * Added SOUP_SESSION_SSL_STRICT and SOUP_MESSAGE_CERTIFICATE_TRUSTED, to allow callers to determine if an https response comes from a server with a recognized/valid or unrecognized/invalid certificate. [#610374, Gustavo Noronha Silva] * Fixed handling of certain badly-formatted URIs [#590524] Changes in libsoup from 2.29.6 to 2.29.90: * Added soup_cookie_jar_set_accept_policy() and related API for implementing cookie acceptance policies. [#608353, Xan Lopez] * Fixed the "request-read" signal in SoupServer to actually be emitted. Changes in libsoup from 2.29.5 to 2.29.6: * Fixed SoupContentDecoder to ignore trailing junk after the encoded message body (as other browsers do), rather than getting stuck in an infinite loop. [#606352] * Fixed an invalid read in soup_cookie_applies_to_uri() [#607024, pointed out by Xan] * Fixed linking on OS X [#606959] * Removed a harmless warning in SoupServer. [#606645] Changes in libsoup from 2.29.3 to 2.29.5: * Added SoupContentDecoder, providing support for Content-Encoding: gzip for WebKitGTK. [#522772] * Added "accept-language" and "accept-language-auto" properties to SoupSession, to support the Accept-Language header. [#597004, Mario Sanchez Prada] * Fixed a bug in SoupPasswordManagerGNOME that could cause crashes if you typed the wrong password once and then tried again. [#595554, debugged by Gustavo Noronha Silva] * Fixed a crash in SoupAuthDigest if the server claims support for both qop=auth and qop=auth-int. (This was not noticed sooner because no one actually supports qop=auth-int, and the server in question here was probably confused. :) * Updated cookie parsing/output to more closely match draft-ietf-httpstate-cookie-00. [Also fixes #603496 (WebKit unit test), and #604794 (hang parsing malformed Set-Cookie header)] * Fixed https-via-proxy to not hang if there is an error communicating with the proxy immediately after the TLS negotiation. [#587528] * Fixed a bug that broke gobject-introspection's introspection of libsoup. [#603696, Vincent Untz] * Handle spurious CR/LFs between responses. [#602863, Alexander V. Butenko] * Fixed soup-message-client-io to not erroneously include URI fragments on the Request-Line when sending via a proxy. [Related to WebKit bug #28687] * Fixed Digest authentication against certain (buggy?) clients/servers that require you to use quotes in exactly the same places where the spec uses them. [#582219] * Fix ugly gtype-related hack to work with the latest unstable glib. [Benjamin Otte]
2010-06-05 13:00:42 +02:00
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-XMLRPC-Support.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-soup-gnome-features.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-soup-method.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4-soup-status.html
share/gtk-doc/html/libsoup-2.4/libsoup-2.4.devhelp2
Update libsoup24 to 2.25.91. Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-16 13:49:02 +01:00
share/gtk-doc/html/libsoup-2.4/libsoup-build-howto.html
share/gtk-doc/html/libsoup-2.4/libsoup-client-howto.html
share/gtk-doc/html/libsoup-2.4/libsoup-server-howto.html
share/gtk-doc/html/libsoup-2.4/right.png
share/gtk-doc/html/libsoup-2.4/style.css
share/gtk-doc/html/libsoup-2.4/up.png
share/locale/as/LC_MESSAGES/libsoup.mo
share/locale/be/LC_MESSAGES/libsoup.mo
share/locale/bg/LC_MESSAGES/libsoup.mo
share/locale/bn_IN/LC_MESSAGES/libsoup.mo
share/locale/ca/LC_MESSAGES/libsoup.mo
share/locale/ca@valencia/LC_MESSAGES/libsoup.mo
share/locale/cs/LC_MESSAGES/libsoup.mo
share/locale/da/LC_MESSAGES/libsoup.mo
share/locale/de/LC_MESSAGES/libsoup.mo
share/locale/el/LC_MESSAGES/libsoup.mo
share/locale/en_GB/LC_MESSAGES/libsoup.mo
share/locale/eo/LC_MESSAGES/libsoup.mo
share/locale/es/LC_MESSAGES/libsoup.mo
share/locale/et/LC_MESSAGES/libsoup.mo
share/locale/fa/LC_MESSAGES/libsoup.mo
share/locale/fr/LC_MESSAGES/libsoup.mo
share/locale/gl/LC_MESSAGES/libsoup.mo
share/locale/gu/LC_MESSAGES/libsoup.mo
share/locale/he/LC_MESSAGES/libsoup.mo
share/locale/hi/LC_MESSAGES/libsoup.mo
share/locale/hu/LC_MESSAGES/libsoup.mo
share/locale/id/LC_MESSAGES/libsoup.mo
share/locale/it/LC_MESSAGES/libsoup.mo
share/locale/ja/LC_MESSAGES/libsoup.mo
share/locale/ko/LC_MESSAGES/libsoup.mo
share/locale/lt/LC_MESSAGES/libsoup.mo
share/locale/lv/LC_MESSAGES/libsoup.mo
share/locale/ml/LC_MESSAGES/libsoup.mo
share/locale/mr/LC_MESSAGES/libsoup.mo
share/locale/nb/LC_MESSAGES/libsoup.mo
share/locale/pa/LC_MESSAGES/libsoup.mo
share/locale/pl/LC_MESSAGES/libsoup.mo
share/locale/pt/LC_MESSAGES/libsoup.mo
share/locale/pt_BR/LC_MESSAGES/libsoup.mo
share/locale/ro/LC_MESSAGES/libsoup.mo
share/locale/ru/LC_MESSAGES/libsoup.mo
share/locale/sk/LC_MESSAGES/libsoup.mo
share/locale/sl/LC_MESSAGES/libsoup.mo
share/locale/sr/LC_MESSAGES/libsoup.mo
share/locale/sr@latin/LC_MESSAGES/libsoup.mo
share/locale/sv/LC_MESSAGES/libsoup.mo
share/locale/ta/LC_MESSAGES/libsoup.mo
share/locale/te/LC_MESSAGES/libsoup.mo
share/locale/th/LC_MESSAGES/libsoup.mo
share/locale/tr/LC_MESSAGES/libsoup.mo
share/locale/ug/LC_MESSAGES/libsoup.mo
share/locale/uk/LC_MESSAGES/libsoup.mo
share/locale/uz@cyrillic/LC_MESSAGES/libsoup.mo
share/locale/vi/LC_MESSAGES/libsoup.mo
share/locale/zh_CN/LC_MESSAGES/libsoup.mo
share/locale/zh_HK/LC_MESSAGES/libsoup.mo
share/locale/zh_TW/LC_MESSAGES/libsoup.mo