<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nginx.git/src, branch release-1.3.6</title>
<subtitle>nginx</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/'/>
<entry>
<title>Gunzip: removed nginx.h leftover include.</title>
<updated>2012-09-11T01:13:23+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-11T01:13:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=4b948b49aa16e1990fb2e018b3da392caf602c36'/>
<id>4b948b49aa16e1990fb2e018b3da392caf602c36</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Gunzip filter import.</title>
<updated>2012-09-10T16:52:47+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-10T16:52:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=90bd33e8ebf8f2cdfe9a809573d6f27490190dc7'/>
<id>90bd33e8ebf8f2cdfe9a809573d6f27490190dc7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Gzip static: "always" parameter in "gzip_static" directive.</title>
<updated>2012-09-10T16:48:25+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-10T16:48:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=86aee85d2ea41d79999ed95333ede8fdd8a135c2'/>
<id>86aee85d2ea41d79999ed95333ede8fdd8a135c2</id>
<content type='text'>
With "always" gzip static returns gzipped content in all cases, without
checking if client supports it.  It is useful if there are no uncompressed
files on disk anyway.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With "always" gzip static returns gzipped content in all cases, without
checking if client supports it.  It is useful if there are no uncompressed
files on disk anyway.
</pre>
</div>
</content>
</entry>
<entry>
<title>Memcached: memcached_gzip_flag directive.</title>
<updated>2012-09-10T16:43:49+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-10T16:43:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=23a959615e0e7f73c5503582a3e70a5e08edc493'/>
<id>23a959615e0e7f73c5503582a3e70a5e08edc493</id>
<content type='text'>
This directive allows to test desired flag as returned by memcached and
sets Content-Encoding to gzip if one found.

This is reimplementation of patch by Tomash Brechko as available on
http://openhack.ru/.  It should be a bit more correct though (at least
I think so).  In particular, it doesn't try to detect if we are able to
gunzip data, but instead just sets correct Content-Encoding.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This directive allows to test desired flag as returned by memcached and
sets Content-Encoding to gzip if one found.

This is reimplementation of patch by Tomash Brechko as available on
http://openhack.ru/.  It should be a bit more correct though (at least
I think so).  In particular, it doesn't try to detect if we are able to
gunzip data, but instead just sets correct Content-Encoding.
</pre>
</div>
</content>
</entry>
<entry>
<title>Write filter: replaced unneeded loop with one to free chains.</title>
<updated>2012-09-05T15:06:47+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-05T15:06:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=5867c81fe6c9485937fe87c43634cdaab29b483b'/>
<id>5867c81fe6c9485937fe87c43634cdaab29b483b</id>
<content type='text'>
Noted by Gabor Lekeny.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Noted by Gabor Lekeny.
</pre>
</div>
</content>
</entry>
<entry>
<title>Limit req: fix of rbtree node insertion on hash collisions.</title>
<updated>2012-09-03T12:55:50+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2012-09-03T12:55:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=605a0ab2e1bbaba36e3d275e22b066238f87b4cb'/>
<id>605a0ab2e1bbaba36e3d275e22b066238f87b4cb</id>
<content type='text'>
The rbtree used in ngx_http_limit_req_module has two level of keys, the top is
hash, and the next is the value string itself. However, when inserting a new
node, only hash has been set, while the value string has been left empty.

The bug was introduced in r4419 (1.1.14).

Found by Charles Chen.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The rbtree used in ngx_http_limit_req_module has two level of keys, the top is
hash, and the next is the value string itself. However, when inserting a new
node, only hash has been set, while the value string has been left empty.

The bug was introduced in r4419 (1.1.14).

Found by Charles Chen.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed overflow if ngx_slab_alloc() is called with very big "size" argument.</title>
<updated>2012-08-30T15:09:21+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-08-30T15:09:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=9d6d33a5613544b68e5ad8298cb164e71d56548c'/>
<id>9d6d33a5613544b68e5ad8298cb164e71d56548c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed strict aliasing bugs when dealing with IPv4-mapped IPv6 addresses</title>
<updated>2012-08-30T14:58:11+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-08-30T14:58:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=d469482cda460107c034f8d9e723de830a1f768e'/>
<id>d469482cda460107c034f8d9e723de830a1f768e</id>
<content type='text'>
(closes #201).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(closes #201).
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed the "include" directive.</title>
<updated>2012-08-28T13:31:01+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-08-28T13:31:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=da4ffd8955b14383d6c027004d8beb85395ce9f5'/>
<id>da4ffd8955b14383d6c027004d8beb85395ce9f5</id>
<content type='text'>
The "include" directive should be able to include multiple files if
given a filename mask.  Fixed this to work for "include" directives
inside the "map" or "types" blocks.  The "include" directive inside
the "geo" block is still not fixed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "include" directive should be able to include multiple files if
given a filename mask.  Fixed this to work for "include" directives
inside the "map" or "types" blocks.  The "include" directive inside
the "geo" block is still not fixed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Version bump.</title>
<updated>2012-08-27T14:21:41+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-08-27T14:21:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=43f6163063bc0d4f7477156141c6df651ea5ca8b'/>
<id>43f6163063bc0d4f7477156141c6df651ea5ca8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
