<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/sapi/cli/php_cli_server.c, branch php-7.0.0RC3</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Merge branch 'PHP-5.6'</title>
<updated>2015-09-05T12:43:19+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmb@php.net</email>
</author>
<published>2015-09-05T12:43:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cc9da62bdb815421151958e8f2971d992291192a'/>
<id>cc9da62bdb815421151958e8f2971d992291192a</id>
<content type='text'>
* PHP-5.6:
  Fix #68291: 404 on urls with '+'

Resolved conflicts:
	sapi/cli/php_cli_server.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  Fix #68291: 404 on urls with '+'

Resolved conflicts:
	sapi/cli/php_cli_server.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #68291: 404 on urls with '+'</title>
<updated>2015-09-05T12:34:08+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2015-09-05T11:52:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fd94c92171eb4f25a792b38c7754bdd76933ec04'/>
<id>fd94c92171eb4f25a792b38c7754bdd76933ec04</id>
<content type='text'>
URI paths have to be treated according to RFC 3986 by the CLI web server, not
as application/x-www-form-urlencoded.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
URI paths have to be treated according to RFC 3986 by the CLI web server, not
as application/x-www-form-urlencoded.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.6'</title>
<updated>2015-08-14T15:18:35+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmb@php.net</email>
</author>
<published>2015-08-14T15:18:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fc444896af3bfd6c051913b6f0db49f3376e586b'/>
<id>fc444896af3bfd6c051913b6f0db49f3376e586b</id>
<content type='text'>
* PHP-5.6:
  Fix #70264: CLI server directory traversal
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  Fix #70264: CLI server directory traversal
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #70264: CLI server directory traversal</title>
<updated>2015-08-14T15:05:31+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmb@php.net</email>
</author>
<published>2015-08-14T14:56:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9c805a6cb31596c41609512bdd8a9a76c9ce9b15'/>
<id>9c805a6cb31596c41609512bdd8a9a76c9ce9b15</id>
<content type='text'>
On Windows the built-in webserver doesn't prevent directory traversal when
backslashes are used as path component separators. Even though that is not a
security issue (the CLI webserver is meant for testing only), we fix that by
replacing backslashes in the path with slashes on Windows, because backslashes
may be valid characters for file names on other systems, but not on Windows.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Windows the built-in webserver doesn't prevent directory traversal when
backslashes are used as path component separators. Even though that is not a
security issue (the CLI webserver is meant for testing only), we fix that by
replacing backslashes in the path with slashes on Windows, because backslashes
may be valid characters for file names on other systems, but not on Windows.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #66606: Sets HTTP_CONTENT_TYPE but not CONTENT_TYPE</title>
<updated>2015-08-09T00:37:16+00:00</updated>
<author>
<name>wusuopu</name>
<email>admin@longchangjin.cn</email>
</author>
<published>2014-11-03T06:52:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=72976e2497f963b7f203443f9881d52e0ff97962'/>
<id>72976e2497f963b7f203443f9881d52e0ff97962</id>
<content type='text'>
The patch will store Content-Type header value in both HTTP_CONTENT_TYPE field and CONTENT_TYPE field.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The patch will store Content-Type header value in both HTTP_CONTENT_TYPE field and CONTENT_TYPE field.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.6'</title>
<updated>2015-08-09T00:51:16+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmb@php.net</email>
</author>
<published>2015-08-09T00:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fc69549593cb1ab4f9fa0fd41d74000cd4a98894'/>
<id>fc69549593cb1ab4f9fa0fd41d74000cd4a98894</id>
<content type='text'>
* PHP-5.6:
  Fix #66606: Sets HTTP_CONTENT_TYPE but not CONTENT_TYPE
  added tests for bug #66606
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  Fix #66606: Sets HTTP_CONTENT_TYPE but not CONTENT_TYPE
  added tests for bug #66606
</pre>
</div>
</content>
</entry>
<entry>
<title>Use ZSTR_ API to access zend_string elements (this is just renaming without semantick changes).</title>
<updated>2015-06-30T10:59:27+00:00</updated>
<author>
<name>Dmitry Stogov</name>
<email>dmitry@zend.com</email>
</author>
<published>2015-06-30T10:59:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=7aa7627172c11979ec45c2db85f99182812ee59d'/>
<id>7aa7627172c11979ec45c2db85f99182812ee59d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.6'</title>
<updated>2015-06-27T12:35:20+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmb@php.net</email>
</author>
<published>2015-06-27T12:35:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=4e32ecb90a00e46ebef2c2636622c8f630b3a5e2'/>
<id>4e32ecb90a00e46ebef2c2636622c8f630b3a5e2</id>
<content type='text'>
* PHP-5.6:
  Fix #64878: 304 responses return Content-Type header
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  Fix #64878: 304 responses return Content-Type header
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #64878: 304 responses return Content-Type header</title>
<updated>2015-06-27T12:28:33+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2015-05-18T19:28:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1920ba6f7bd1ce3c866ca947f51a1633dc892fce'/>
<id>1920ba6f7bd1ce3c866ca947f51a1633dc892fce</id>
<content type='text'>
According to RFC 7232 304 responses should not send a Content-Type header,
so the CLI server should comply.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to RFC 7232 304 responses should not send a Content-Type header,
so the CLI server should comply.
</pre>
</div>
</content>
</entry>
<entry>
<title>cleanup more redundant S_IS* declarations</title>
<updated>2015-05-25T16:03:26+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2015-05-25T11:28:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cfadcfc73486828b53ec45217fd00659a1a2e918'/>
<id>cfadcfc73486828b53ec45217fd00659a1a2e918</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
