<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/skeleton/tests, branch master</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/'/>
<entry>
<title>Run tidy</title>
<updated>2020-09-18T12:28:32+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-09-18T12:28:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=c5401854fcea27ff9aabfd0682ff4d81bbb3c888'/>
<id>c5401854fcea27ff9aabfd0682ff4d81bbb3c888</id>
<content type='text'>
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add stubs for aliases</title>
<updated>2020-02-18T20:10:36+00:00</updated>
<author>
<name>Máté Kocsis</name>
<email>kocsismate@woohoolabs.com</email>
</author>
<published>2020-02-18T18:59:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=736b22dc0b2fc36e9bd87f2ee5af8c4b2be9fd3d'/>
<id>736b22dc0b2fc36e9bd87f2ee5af8c4b2be9fd3d</id>
<content type='text'>
Closes GH-5187
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-5187
</pre>
</div>
</content>
</entry>
<entry>
<title>Trim trailing whitespace in tests</title>
<updated>2018-10-14T15:07:20+00:00</updated>
<author>
<name>Gabriel Caruso</name>
<email>carusogabriel34@gmail.com</email>
</author>
<published>2018-09-16T17:16:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=9c144e0d8217d1ef7a83c2498214308b21af749f'/>
<id>9c144e0d8217d1ef7a83c2498214308b21af749f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Redesigned ext_skel to be written entirely in PHP with no dependencies, this means it will now run on Windows without Cygwin and other nonsense.</title>
<updated>2017-07-23T08:36:35+00:00</updated>
<author>
<name>Kalle Sommer Nielsen</name>
<email>kalle@php.net</email>
</author>
<published>2017-07-23T08:36:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=f35f45906eac34498c7720326fb9da9fde960871'/>
<id>f35f45906eac34498c7720326fb9da9fde960871</id>
<content type='text'>
It no longer includes a way to generate XML documentation (the PHP documentation utilities already got tools for that in svn under phpdoc/doc-base) and it no longer support function stubs.

$ php ext_skel.php --help
php ext_skel.php --ext=&lt;name&gt; [--experimental] [--author=&lt;name&gt;]
                 [--dir=&lt;path&gt;] [--std] [--onlyunix]
                 [--onlywindows] [--help]

  --ext=&lt;name&gt;          The name of the extension defined as &lt;name&gt;
  --experimental        Passed if this extension is experimental, this creates
                        the EXPERIMENTAL file in the root of the extension
  --author=&lt;name&gt;       Your name, this is used if --header is passed and
                        for the CREDITS file
  --dir=&lt;path&gt;          Path to the directory for where extension should be
                        created. Defaults to the directory of where this script
                        lives
  --std                 If passed, the standard header and vim rules footer used

                        in extensions that is included in the core, will be used

  --onlyunix            Only generate configure scripts for Unix
  --onlywindows         Only generate configure scripts for Windows
  --help                This help

Example usage:
$ php ext_skel.php --ext test --std --experimental
$ php ext_skel.php --ext kalle --author "Kalle Sommer Nielsen"
$ php ext_skel.php --ext phpfi --dir "/home/kalle/dev/" --onlyunix
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It no longer includes a way to generate XML documentation (the PHP documentation utilities already got tools for that in svn under phpdoc/doc-base) and it no longer support function stubs.

$ php ext_skel.php --help
php ext_skel.php --ext=&lt;name&gt; [--experimental] [--author=&lt;name&gt;]
                 [--dir=&lt;path&gt;] [--std] [--onlyunix]
                 [--onlywindows] [--help]

  --ext=&lt;name&gt;          The name of the extension defined as &lt;name&gt;
  --experimental        Passed if this extension is experimental, this creates
                        the EXPERIMENTAL file in the root of the extension
  --author=&lt;name&gt;       Your name, this is used if --header is passed and
                        for the CREDITS file
  --dir=&lt;path&gt;          Path to the directory for where extension should be
                        created. Defaults to the directory of where this script
                        lives
  --std                 If passed, the standard header and vim rules footer used

                        in extensions that is included in the core, will be used

  --onlyunix            Only generate configure scripts for Unix
  --onlywindows         Only generate configure scripts for Windows
  --help                This help

Example usage:
$ php ext_skel.php --ext test --std --experimental
$ php ext_skel.php --ext kalle --author "Kalle Sommer Nielsen"
$ php ext_skel.php --ext phpfi --dir "/home/kalle/dev/" --onlyunix
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaces php5 with php7, without whitespace changes.</title>
<updated>2014-09-20T08:01:44+00:00</updated>
<author>
<name>Florian MARGAINE</name>
<email>florian@margaine.com</email>
</author>
<published>2014-09-20T08:01:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=cf0303e7824c3e20e9db240f9d4e4b154cc2a72d'/>
<id>cf0303e7824c3e20e9db240f9d4e4b154cc2a72d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Opps.</title>
<updated>2005-03-05T17:55:45+00:00</updated>
<author>
<name>John Coggeshall</name>
<email>john@php.net</email>
</author>
<published>2005-03-05T17:55:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=81c161d0a7dab7c5ebee755a17cc48291c613ed3'/>
<id>81c161d0a7dab7c5ebee755a17cc48291c613ed3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Starting tests....</title>
<updated>2005-03-05T01:13:10+00:00</updated>
<author>
<name>John Coggeshall</name>
<email>john@php.net</email>
</author>
<published>2005-03-05T01:13:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=5fe241ff64eb5376b35a06eb5f37fb93c51fac2d'/>
<id>5fe241ff64eb5376b35a06eb5f37fb93c51fac2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Remove unused blocks</title>
<updated>2004-05-19T08:56:50+00:00</updated>
<author>
<name>Marcus Boerger</name>
<email>helly@php.net</email>
</author>
<published>2004-05-19T08:56:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=29cfd6d24ff30a5f2610babd80821bdfe0ca7cd0'/>
<id>29cfd6d24ff30a5f2610babd80821bdfe0ca7cd0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5</title>
<updated>2004-01-17T13:00:38+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2004-01-17T13:00:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=f4983c0d3f56c2074458e4840db36643b2fec59b'/>
<id>f4983c0d3f56c2074458e4840db36643b2fec59b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ok, re-adding this mostly un-maintained awk/sed/sh nightmare for now ...</title>
<updated>2003-06-29T16:07:18+00:00</updated>
<author>
<name>Hartmut Holzgraefe</name>
<email>hholzgra@php.net</email>
</author>
<published>2003-06-29T16:07:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=f355c4c5bbd0d02b838a056c8e081ee6fcd1e0d0'/>
<id>f355c4c5bbd0d02b838a056c8e081ee6fcd1e0d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
