<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/run-tests.php, branch php-5.6.0RC2</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.5' into PHP-5.6</title>
<updated>2014-05-27T10:04:26+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-27T10:04:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=eb2bd850041a84ac40d3b025419fb9a1b88b2280'/>
<id>eb2bd850041a84ac40d3b025419fb9a1b88b2280</id>
<content type='text'>
* PHP-5.5:
  Escape non-printable characters in the junit XML output
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  Escape non-printable characters in the junit XML output
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2014-05-27T10:04:17+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-27T10:04:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=abfd97741056cc837918891f6f6c3662837547d0'/>
<id>abfd97741056cc837918891f6f6c3662837547d0</id>
<content type='text'>
* PHP-5.4:
  Escape non-printable characters in the junit XML output
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  Escape non-printable characters in the junit XML output
</pre>
</div>
</content>
</entry>
<entry>
<title>Escape non-printable characters in the junit XML output</title>
<updated>2014-05-27T10:03:38+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-27T09:54:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=92d54f81d671f0f14a06fec7bd6f917b085253c6'/>
<id>92d54f81d671f0f14a06fec7bd6f917b085253c6</id>
<content type='text'>
XML doesn't allow most of the characters &lt; 0x20 and binary output
breaks XML parsers. Such characters are not allowed as entities
either, so the generated entities are escaped in order to be printed
as text.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
XML doesn't allow most of the characters &lt; 0x20 and binary output
breaks XML parsers. Such characters are not allowed as entities
either, so the generated entities are escaped in order to be printed
as text.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.5' into PHP-5.6</title>
<updated>2014-05-27T09:07:32+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-27T09:07:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cc3a1af62a803120ebe478c85541482179d43cfb'/>
<id>cc3a1af62a803120ebe478c85541482179d43cfb</id>
<content type='text'>
* PHP-5.5:
  Fixed broken XML junit output due to escaping of CDATA sections
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  Fixed broken XML junit output due to escaping of CDATA sections
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2014-05-27T09:07:19+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-27T09:07:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=56bcb22afb5040d49439f0a0d238f8a013ebec48'/>
<id>56bcb22afb5040d49439f0a0d238f8a013ebec48</id>
<content type='text'>
* PHP-5.4:
  Fixed broken XML junit output due to escaping of CDATA sections
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  Fixed broken XML junit output due to escaping of CDATA sections
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed broken XML junit output due to escaping of CDATA sections</title>
<updated>2014-05-27T09:04:48+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-27T09:04:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1696166466e179c361c562f01a14995a09c41ae3'/>
<id>1696166466e179c361c562f01a14995a09c41ae3</id>
<content type='text'>
I've removed CDATA and used htmlspecialchars as the output might not be UTF-8 safe, as pointed out by ircmaxell in 26b37f1792dfaf9b0b30f81e492c8f68b9ece571
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I've removed CDATA and used htmlspecialchars as the output might not be UTF-8 safe, as pointed out by ircmaxell in 26b37f1792dfaf9b0b30f81e492c8f68b9ece571
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.5' into PHP-5.6</title>
<updated>2014-05-24T22:08:41+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-24T22:08:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=370256ad4bf1e3d0c388911d3a75f693fe4ca5b0'/>
<id>370256ad4bf1e3d0c388911d3a75f693fe4ca5b0</id>
<content type='text'>
* PHP-5.5:
  Fix broken Junit output with --disable-cgi
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  Fix broken Junit output with --disable-cgi
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2014-05-24T22:08:32+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-24T22:08:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=980c63651c65f4078f627409781b6d66e5834088'/>
<id>980c63651c65f4078f627409781b6d66e5834088</id>
<content type='text'>
* PHP-5.4:
  Fix broken Junit output with --disable-cgi
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  Fix broken Junit output with --disable-cgi
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix broken Junit output with --disable-cgi</title>
<updated>2014-05-24T22:07:52+00:00</updated>
<author>
<name>Matteo Beccati</name>
<email>mbeccati@php.net</email>
</author>
<published>2014-05-24T22:07:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=f9357b44f3d0871ca737650201366a32118bc3d6'/>
<id>f9357b44f3d0871ca737650201366a32118bc3d6</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.5' into PHP-5.6</title>
<updated>2014-05-22T22:37:57+00:00</updated>
<author>
<name>Adam Harvey</name>
<email>aharvey@php.net</email>
</author>
<published>2014-05-22T22:37:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=34900eb2896d1e80a8be46199dd601059ee1e868'/>
<id>34900eb2896d1e80a8be46199dd601059ee1e868</id>
<content type='text'>
* PHP-5.5:
  Fix run-tests.php with Valgrind &gt;= 3.10.0.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  Fix run-tests.php with Valgrind &gt;= 3.10.0.
</pre>
</div>
</content>
</entry>
</feed>
