<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nginx.git/src/http, branch release-0.7.64</title>
<subtitle>nginx</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/'/>
<entry>
<title>r3313 merge:</title>
<updated>2009-11-16T15:16:47+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-11-16T15:16:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=bf6c11e928d505d987a57258df31ab3bcc5bf590'/>
<id>bf6c11e928d505d987a57258df31ab3bcc5bf590</id>
<content type='text'>
nginx sent gzipped responses to clients those do not support gzip,
if "gzip_static on" and "gzip_vary off"; the bug had been introduced in r3250
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
nginx sent gzipped responses to clients those do not support gzip,
if "gzip_static on" and "gzip_vary off"; the bug had been introduced in r3250
</pre>
</div>
</content>
</entry>
<entry>
<title>r3117, r3123, r3229 merge:</title>
<updated>2009-11-16T15:00:13+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-11-16T15:00:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=9a61c9e761a716f5e8ab064dc4cbe784d3efe65a'/>
<id>9a61c9e761a716f5e8ab064dc4cbe784d3efe65a</id>
<content type='text'>
server name related merges:

*) If .domain.com, .sub.domain.com, and .domain-some.com were defined,
   then .sub.domain.com was matched by .domain.com: wildcard names hash
   was built incorrectly due to sorting order issue of "." vs "-".
   They were sorted as
       com.domain  com.domain-some  com.domain.sub
   while they should be sorted as
       com.domain  com.domain.sub   com.domain-some
   for correct hash building

*) test space between "~" and regex in server_name and invalid_referers

*) do not run regex for empty host name since regex always fails in this case,
   the bug had been introduced in r2196
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
server name related merges:

*) If .domain.com, .sub.domain.com, and .domain-some.com were defined,
   then .sub.domain.com was matched by .domain.com: wildcard names hash
   was built incorrectly due to sorting order issue of "." vs "-".
   They were sorted as
       com.domain  com.domain-some  com.domain.sub
   while they should be sorted as
       com.domain  com.domain.sub   com.domain-some
   for correct hash building

*) test space between "~" and regex in server_name and invalid_referers

*) do not run regex for empty host name since regex always fails in this case,
   the bug had been introduced in r2196
</pre>
</div>
</content>
</entry>
<entry>
<title>bump version</title>
<updated>2009-11-16T14:52:22+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-11-16T14:52:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=664ca88d335026bc927d6eb73a7f3a299929b7ef'/>
<id>664ca88d335026bc927d6eb73a7f3a299929b7ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r3185:</title>
<updated>2009-10-26T17:46:25+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:46:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=cba113702018887cd9e750dd3852e2b733c62164'/>
<id>cba113702018887cd9e750dd3852e2b733c62164</id>
<content type='text'>
fix building by gcc45
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix building by gcc45
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r3162, r3183:</title>
<updated>2009-10-26T17:45:55+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:45:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=8232053651ecd9d2029e080bf93eb66f27f1d2f3'/>
<id>8232053651ecd9d2029e080bf93eb66f27f1d2f3</id>
<content type='text'>
WebDAV fixes:

*) check unsafe Destination
*) omit '\0' from "Location" header on MKCOL request
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
WebDAV fixes:

*) check unsafe Destination
*) omit '\0' from "Location" header on MKCOL request
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r3079:</title>
<updated>2009-10-26T17:40:07+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:40:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=5aa449e8ffae59f0dfdc73485971a51258391eed'/>
<id>5aa449e8ffae59f0dfdc73485971a51258391eed</id>
<content type='text'>
discard request body before returning 413 error,
this fixes custom 413 page redirection bug introduced in r1456
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
discard request body before returning 413 error,
this fixes custom 413 page redirection bug introduced in r1456
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r2976:</title>
<updated>2009-10-26T17:37:18+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:37:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=bc286e0604cf29501a5fa69e51fdaa4ebaa7c9c8'/>
<id>bc286e0604cf29501a5fa69e51fdaa4ebaa7c9c8</id>
<content type='text'>
allow underscore in request method
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
allow underscore in request method
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r3055, r3136:</title>
<updated>2009-10-26T17:34:43+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:34:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=6427b81842aea67417d64832c13fe2b0413ddc77'/>
<id>6427b81842aea67417d64832c13fe2b0413ddc77</id>
<content type='text'>
gzip related fixes:

*) do not disable gzip for MSIE 6.0 SV1 in "gzip_disable msie6"
*) nginx always sent "Vary: Accept-Encoding",
   if both gzip_static and gzip_vary were on
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
gzip related fixes:

*) do not disable gzip for MSIE 6.0 SV1 in "gzip_disable msie6"
*) nginx always sent "Vary: Accept-Encoding",
   if both gzip_static and gzip_vary were on
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r3024, r3025, r3028, r3033, r3034, r3035, r3036:</title>
<updated>2009-10-26T17:32:17+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:32:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=efdaec7003e37933e113b009407f2a62df2ec78a'/>
<id>efdaec7003e37933e113b009407f2a62df2ec78a</id>
<content type='text'>
allow cross device temporary files atomic copying
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
allow cross device temporary files atomic copying
</pre>
</div>
</content>
</entry>
<entry>
<title>merge r3017, r3018, r3019, r3020, r3021, r3022, r3023, r3196:</title>
<updated>2009-10-26T17:23:49+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2009-10-26T17:23:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=7571f6c962e5b02abf01b2f1c9f84cb109728d4d'/>
<id>7571f6c962e5b02abf01b2f1c9f84cb109728d4d</id>
<content type='text'>
cache management fixes:

*) separate cache loader process
*) use real file cache length, this fixes cache size counting for responses
   without "Content-Length" header and 304 responses.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cache management fixes:

*) separate cache loader process
*) use real file cache length, this fixes cache size counting for responses
   without "Content-Length" header and 304 responses.
</pre>
</div>
</content>
</entry>
</feed>
