<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libsoup.git/docs/reference/server-howto.xml, branch gresolver</title>
<subtitle>gitlab.gnome.org: GNOME/libsoup.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libsoup.git/'/>
<entry>
<title>Updates: Mention SoupSessionFeature (and link to SoupLogger,</title>
<updated>2009-02-15T21:28:28+00:00</updated>
<author>
<name>Dan Winship</name>
<email>danw@src.gnome.org</email>
</author>
<published>2009-02-15T21:28:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libsoup.git/commit/?id=536a7b8130533a107f5a50962287b64b0838ef81'/>
<id>536a7b8130533a107f5a50962287b64b0838ef81</id>
<content type='text'>
	* docs/reference/client-howto.xml: Updates: Mention
	SoupSessionFeature (and link to SoupLogger, SoupCookieJar, and
	SoupProxyResolverGNOME specifically). Mention forms and XML-RPC
	support. Mention header-parsing methods. Give a concrete example
	of connecting to SoupMessage signals. Document the (minimal)
	thread-safety guarantees

	* docs/reference/build-howto.xml: basic notes on pkg-config and
	#include usage.

svn path=/trunk/; revision=1238
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* docs/reference/client-howto.xml: Updates: Mention
	SoupSessionFeature (and link to SoupLogger, SoupCookieJar, and
	SoupProxyResolverGNOME specifically). Mention forms and XML-RPC
	support. Mention header-parsing methods. Give a concrete example
	of connecting to SoupMessage signals. Document the (minimal)
	thread-safety guarantees

	* docs/reference/build-howto.xml: basic notes on pkg-config and
	#include usage.

svn path=/trunk/; revision=1238
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge libsoup-2.4 branch to trunk</title>
<updated>2008-01-15T17:40:47+00:00</updated>
<author>
<name>Dan Winship</name>
<email>danw@src.gnome.org</email>
</author>
<published>2008-01-15T17:40:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libsoup.git/commit/?id=96d28e7f42ead1ddde6bccca9fba6831710a531f'/>
<id>96d28e7f42ead1ddde6bccca9fba6831710a531f</id>
<content type='text'>
	* Merge libsoup-2.4 branch to trunk

svn path=/trunk/; revision=1041
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* Merge libsoup-2.4 branch to trunk

svn path=/trunk/; revision=1041
</pre>
</div>
</content>
</entry>
<entry>
<title>ref the socket around the processing of the message, since otherwise it</title>
<updated>2007-10-28T17:23:38+00:00</updated>
<author>
<name>Dan Winship</name>
<email>danw@src.gnome.org</email>
</author>
<published>2007-10-28T17:23:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libsoup.git/commit/?id=2fcfaa9f21de3ddb4fab6c4e444f1437b249b55c'/>
<id>2fcfaa9f21de3ddb4fab6c4e444f1437b249b55c</id>
<content type='text'>
	* libsoup/soup-server.c (start_request, request_finished): ref the
	socket around the processing of the message, since otherwise it
	might already be freed when request_finished runs. #459896.

	* libsoup/soup-message-io.c (soup_message_io_pause)
	(soup_message_io_unpause): Clarify the docs here; this is for
	server-side use only. Inspired by #452280.

	* docs/reference/server-howto.xml: You need to watch the
	"finished" signal on the message if using soup_message_io_pause()
	or chunked encoding, because the client might disconnect while
	you're paused. Clarification inspired by #471385.

	* tests/simple-proxy.c (client_msg_failed): Fix this to DTRT since
	server-howto.xml points to it as an example of what to do.

svn path=/trunk/; revision=947
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* libsoup/soup-server.c (start_request, request_finished): ref the
	socket around the processing of the message, since otherwise it
	might already be freed when request_finished runs. #459896.

	* libsoup/soup-message-io.c (soup_message_io_pause)
	(soup_message_io_unpause): Clarify the docs here; this is for
	server-side use only. Inspired by #452280.

	* docs/reference/server-howto.xml: You need to watch the
	"finished" signal on the message if using soup_message_io_pause()
	or chunked encoding, because the client might disconnect while
	you're paused. Clarification inspired by #471385.

	* tests/simple-proxy.c (client_msg_failed): Fix this to DTRT since
	server-howto.xml points to it as an example of what to do.

svn path=/trunk/; revision=947
</pre>
</div>
</content>
</entry>
<entry>
<title>New client and server API tutorials.</title>
<updated>2006-06-12T19:19:19+00:00</updated>
<author>
<name>Dan Winship</name>
<email>danw@src.gnome.org</email>
</author>
<published>2006-06-12T19:19:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libsoup.git/commit/?id=098e15d8f81a7017c1e9fb48522e04ce992ffaef'/>
<id>098e15d8f81a7017c1e9fb48522e04ce992ffaef</id>
<content type='text'>
	* docs/reference/client-howto.xml:
	* docs/reference/server-howto.xml: New client and server API
	tutorials.

	* docs/reference/*: reorganize, regenerate, fill in some missing
	pieces, etc

	* libsoup/soup-connection.c (soup_connection_new): document the
	varargs param

	* libsoup/soup-date.h: sync prototypes to declarations for gtk-doc.

	* libsoup/soup-headers.c (soup_headers_parse_response): fix typo
	in doc.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* docs/reference/client-howto.xml:
	* docs/reference/server-howto.xml: New client and server API
	tutorials.

	* docs/reference/*: reorganize, regenerate, fill in some missing
	pieces, etc

	* libsoup/soup-connection.c (soup_connection_new): document the
	varargs param

	* libsoup/soup-date.h: sync prototypes to declarations for gtk-doc.

	* libsoup/soup-headers.c (soup_headers_parse_response): fix typo
	in doc.
</pre>
</div>
</content>
</entry>
</feed>
