summaryrefslogtreecommitdiff
path: root/ext/tidy/package.xml
blob: b7f6e26d9b34137ae022bd29afa02e5fd6b2acf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?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.7</version>
  <date>2003-05-07</date>
  <notes>
    The tidy extension now works in PHP4 for most tasks, only the parsing
    abilities of the extension are not available (ZE2 only). The OO portions
    of the extension have been completely re-written and are now stable and
    work quite well. 

    The way all tidy functions work has also changed slightly. Instead of
    calling tidy_create() to create a tidy resource, the tidy resource is
    stored internally and used as needed. Thus, all tidy functions no longer
    need the initial $tidy parameter to function. If you'd like to reset
    tidy to an initial state, you can still call tidy_create(). This change
    was done to make tidy faster per-request. 
  </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
-->