<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cowboy.git/examples/echo_post/src, branch 1.0.4</title>
<subtitle>Small, fast, modern HTTP server for Erlang/OTP.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/'/>
<entry>
<title>Fix the list of registered processes in the examples</title>
<updated>2013-09-09T14:46:21+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-09-09T14:46:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=1a4e7a86185021f1f1eb50b3fde5043570da3f94'/>
<id>1a4e7a86185021f1f1eb50b3fde5043570da3f94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert the POST echo example to a release</title>
<updated>2013-09-08T09:07:01+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-09-08T09:07:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=57e6d1f4165134bc91fc7ccfc28c5b0a74824945'/>
<id>57e6d1f4165134bc91fc7ccfc28c5b0a74824945</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix wrong header sent in echo_post example</title>
<updated>2013-09-07T12:13:51+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-09-07T12:13:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=7ab12d1b66910d3651f7b2311a2fb6d17b9e4f31'/>
<id>7ab12d1b66910d3651f7b2311a2fb6d17b9e4f31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make cowlib a proper dependency</title>
<updated>2013-09-04T17:24:54+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-09-04T17:24:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=4a30198f9068cc989616c8088e4b890bc1de259d'/>
<id>4a30198f9068cc989616c8088e4b890bc1de259d</id>
<content type='text'>
Start moving a few functions from Cowboy into cowlib.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Start moving a few functions from Cowboy into cowlib.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make examples use the new routing</title>
<updated>2013-01-29T13:47:17+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-29T13:47:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=ab0699ab29b6750d19cf2e0fce03e185d2206e9d'/>
<id>ab0699ab29b6750d19cf2e0fce03e185d2206e9d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace terminate/2 with terminate/3, adding a Reason</title>
<updated>2013-01-22T01:34:18+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-22T01:34:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=647e95aed157edd58c86acdd774048593eb9d039'/>
<id>647e95aed157edd58c86acdd774048593eb9d039</id>
<content type='text'>
This should have been done a *long* time ago, back when I initially
added Websocket support. This is the first part of two in improving
loop handler support with regards to socket closure.

Reason may include: {normal, shutdown} for the most normal shutdown,
{normal, timeout} for a loop handler timeout shutdown, or {error, _}
if an error occured.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should have been done a *long* time ago, back when I initially
added Websocket support. This is the first part of two in improving
loop handler support with regards to socket closure.

Reason may include: {normal, shutdown} for the most normal shutdown,
{normal, timeout} for a loop handler timeout shutdown, or {error, _}
if an error occured.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make cowboy_req:has_body/1 return boolean()</title>
<updated>2013-01-19T16:20:35+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-01-19T16:20:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=82de4254ddeff748c28c2086f43fb0d73015932f'/>
<id>82de4254ddeff748c28c2086f43fb0d73015932f</id>
<content type='text'>
This makes it similar to the other has_* functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes it similar to the other has_* functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix examples to follow new env tuple standard</title>
<updated>2013-01-06T03:19:14+00:00</updated>
<author>
<name>Unix1</name>
<email>unix1@live.com</email>
</author>
<published>2013-01-06T03:19:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=33461ecdbd1554165d395bf63907e4f3e08712fc'/>
<id>33461ecdbd1554165d395bf63907e4f3e08712fc</id>
<content type='text'>
This brings examples in line with the recent Middleware change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This brings examples in line with the recent Middleware change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make a few more missing headers lowercase</title>
<updated>2012-12-05T12:43:25+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2012-12-05T09:21:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=db6b1596ae69529207ca66a9a8f3eaf0779109f0'/>
<id>db6b1596ae69529207ca66a9a8f3eaf0779109f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Start crypto also in the examples and documentation</title>
<updated>2012-10-11T18:52:29+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2012-10-11T18:52:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/cowboy.git/commit/?id=160063497cade2c5334cc06859a43afec7183e78'/>
<id>160063497cade2c5334cc06859a43afec7183e78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
