summaryrefslogtreecommitdiff
path: root/libsoup/soup-cookie-jar-text.h
Commit message (Collapse)AuthorAgeFilesLines
* Do not include the header exclusion guards in the introspectionCorentin Noël2018-06-131-3/+3
|
* Add per-version deprecation/availability warningsDan Winship2012-11-081-0/+2
| | | | | | | | | | | Add SOUP_VERSION_X_XX, SOUP_VERSION_MIN_REQUIRED, and SOUP_VERSION_MAX_ALLOWED, to enable version-based warnings. Tag all functions with appropriate SOUP_AVAILABLE_IN_ and SOUP_DEPRECATED_IN_ macros. Also, fix up some "Since" tags to not refer to unstable releases or non-.0 point releases.
* Add G_{BEGIN,END}_DECLS guards to public headers.Xan Lopez2009-03-141-0/+4
| | | | | | | | | | | | | 2009-03-14 Xan Lopez <xan@gnome.org> Add G_{BEGIN,END}_DECLS guards to public headers. * libsoup/soup-auth.h: * libsoup/soup-cookie-jar-sqlite.h: * libsoup/soup-cookie-jar-text.h: * libsoup/soup-proxy-resolver.h: svn path=/trunk/; revision=1249
* misc doc fixesDan Winship2008-11-041-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | * libsoup/soup-address.c (soup_address_is_resolved): * libsoup/soup-cookie.c (soup_cookie_copy): * libsoup/soup-cookie-jar.c (soup_cookie_jar_class_init): * libsoup/soup-message-headers.c (SoupMessageHeadersType): * libsoup/soup-proxy-resolver.c (soup_proxy_resolver_get_proxy_async) (soup_proxy_resolver_get_proxy_sync): * libsoup/soup-status.c (soup_status_proxyify): misc doc fixes * libsoup/soup-cookie-jar-text.h: remove a "deprecated" API that was never actually released * libsoup/soup.h: include soup-proxy-resolver.h * docs/reference/Makefile.am (SCAN_OPTIONS): set --deprecated-guards correctly (IGNORE_HFILES): ignore some more internal files (GTKDOC_LIBS): link against libsoup-gnome, not libsoup * docs/reference/libsoup-2.4-docs.sgml: * docs/reference/libsoup-2.4.types: * docs/reference/libsoup-2.4-sections.txt: add new stuff svn path=/trunk/; revision=1201
* implementation of SoupCookieJar that persists to a text file in the oldDan Winship2008-11-041-0/+43
* libsoup/soup-cookie-jar-text.c: implementation of SoupCookieJar that persists to a text file in the old Mozilla cookies.txt format. * libsoup/soup-cookie-jar-sqlite.c: implementation of SoupCookieJar that persists to an sqlite database in the new Mozilla cookies.sqlite format. (Part of libsoup-gnome.) * libsoup/soup-cookie-jar.c: add various functionality needed by the two new subclasses. Does not break API/ABI compat with 2.24. * libsoup/soup-cookie.c (soup_cookie_get_type): register SoupCookie as a boxed type. (domain_matches): fix a bug here that meant "foo.com" couldn't set a cookie for domain=.foo.com (soup_cookie_applies_to_uri): fix path checking * configure.in: if building --with-gnome, require sqlite3 svn path=/trunk/; revision=1200