php-src/ext/tidy/package.xml
Ilia Alshanetsky 4cd101abed Tidy Hijacked! Read all about it ;)
* No more tidy resources, it's now persistent and internal. This helps speed
  quite a bit, since the tidy resource only needs to be initialized once.
* Replace common code with macros.
* Added necessary safe_mode & open_basedir checks when working with files.
* Added ini option to allow loading of config file on startup.
* Show current configuration in phpinfo();
* Coding Style Cleanup
* Added tidy_get_config(), returns an associated array with all configuration
  values.
* Added tidy_reset_config(), it restores tidy configuration to default values.
* Fixed a possible crash inside tidy_setopt().
* Added myself to the credits.

More changes to follow.
2003-09-20 19:45:32 +00:00

65 lines
1.9 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>tidy</name>
<summary>Tidy HTML Repairing and Parsing</summary>
<maintainers>
<maintainer>
<user>john</user>
<name>John Coggeshall</name>
<email>john@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>iliaa</user>
<name>Ilia Alshanetsky</name>
<email>ilia@php.net</email>
<role>lead</role>
</maintainer>
</maintainers>
<description>
Tidy is a binding for the Tidy HTML clean and repair utility which
allows you to not only clean and otherwise manipluate HTML documents,
but also traverse the document tree using the Zend Engine 2 OO semantics.
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>0.5.3</version>
<date>2003-05-07</date>
<notes>
Bugfixes and updates for the changes in ZE2
</notes>
<configureoptions>
<configureoption name="with-tidy" default="autodetect" prompt="Tidy library installation dir?"/>
</configureoptions>
<filelist>
<file role="src" name="config.m4"/>
<file role="src" name="tidy.c"/>
<file role="src" name="php_tidy.h"/>
<file role="doc" name="CREDITS"/>
<file role="doc" name="README"/>
<file role="doc" name="TODO"/>
<file role="doc" name="examples/cleanhtml.php"/>
<file role="doc" name="examples/dumpit.php"/>
<file role="doc" name="examples/urlgrab.php"/>
<file role="test" name="tests/001.phpt"/>
<file role="test" name="tests/002.phpt"/>
<file role="test" name="tests/003.phpt"/>
<file role="test" name="tests/004.phpt"/>
<file role="test" name="tests/005.phpt"/>
<file role="test" name="tests/005.html"/>
<file role="test" name="tests/006.phpt"/>
<file role="test" name="tests/007.phpt"/>
</filelist>
<deps>
<dep type="php" rel="ge">5.0.0</dep>
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->