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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0">
<name>XML_Util</name>
<summary>XML utility class.</summary>
<description>Selection of methods that are often needed when working with XML documents. Functionality includes creating of attribute lists from arrays, creation of tags, validation of XML names and more.</description>
<maintainers>
<maintainer>
<user>schst</user>
<name>Stephan Schmidt</name>
<email>schst@php-tools.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>davey</user>
<name>Davey Shafik</name>
<email>davey@php.net</email>
<role>helper</role>
</maintainer>
</maintainers>
<release>
<version>1.1.1</version>
<date>2004-12-23</date>
<license>PHP License</license>
<state>stable</state>
<notes>- fixed bug in replaceEntities() and reverseEntities() in conjunction with XML_UTIL_ENTITIES_HTML
- createTag() and createTagFromArray() now accept XML_UTIL_ENTITIES_XML, XML_UTIL_ENTITIES_XML_REQUIRED, XML_UTIL_ENTITIES_HTML, XML_UTIL_ENTITIES_NONE and XML_UTIL_CDATA_SECTION as $replaceEntities parameter</notes>
<deps>
<dep type="ext" rel="has" optional="no">pcre</dep>
<dep type="pkg" rel="has" optional="no">PEAR</dep>
<dep type="php" rel="ge" version="4.2.0" optional="no"/>
</deps>
<filelist>
<file role="doc" baseinstalldir="XML" md5sum="1633c0298423ae777a46a87a9312b95a" name="examples\example.php"/>
<file role="doc" baseinstalldir="XML" md5sum="6e3cee592743f5abdfef8a1e6361a7a8" name="examples\example2.php"/>
<file role="php" baseinstalldir="XML" md5sum="562d7b0afeb8674d1e988ff326dad49b" name="Util.php"/>
</filelist>
</release>
<changelog>
<release>
<version>0.1</version>
<date>2003-08-01</date>
<state>stable</state>
<notes>inital release
</notes>
</release>
<release>
<version>0.1.1</version>
<date>2003-08-02</date>
<state>stable</state>
<notes>bugfix: removed bug in createTagFromArray
</notes>
</release>
<release>
<version>0.2</version>
<date>2003-08-12</date>
<license>PHP License</license>
<state>stable</state>
<notes>added XML_Util::getDocTypeDeclaration()
</notes>
</release>
<release>
<version>0.2.1</version>
<date>2003-09-05</date>
<license>PHP License</license>
<state>stable</state>
<notes>fixed bug with zero as tag content in createTagFromArray and createTag
</notes>
</release>
<release>
<version>0.3</version>
<date>2003-09-12</date>
<license>PHP License</license>
<state>stable</state>
<notes>added createStartElement() and createEndElement()
</notes>
</release>
<release>
<version>0.4</version>
<date>2003-09-21</date>
<license>PHP License</license>
<state>stable</state>
<notes>added createCDataSection(),
added support for CData sections in createTag* methods,
fixed bug #23,
fixed bug in splitQualifiedName()
</notes>
</release>
<release>
<version>0.5</version>
<date>2003-09-23</date>
<license>PHP License</license>
<state>stable</state>
<notes>added support for multiline attributes in attributesToString(), createTag*() and createStartElement (requested by Yavor Shahpasov for XML_Serializer),
added createComment
</notes>
</release>
<release>
<version>0.5.1</version>
<date>2003-09-26</date>
<license>PHP License</license>
<state>stable</state>
<notes>added default namespace parameter (optional) in splitQualifiedName() (requested by Sebastian Bergmann)
</notes>
</release>
<release>
<version>0.5.2</version>
<date>2003-11-22</date>
<license>PHP License</license>
<state>stable</state>
<notes>now creates XHTML compliant empty tags (Davey),
minor whitespace fixes (Davey)
</notes>
</release>
<release>
<version>0.6.0beta1</version>
<date>2004-05-24</date>
<license>PHP License</license>
<state>beta</state>
<notes>- Fixed bug 1438 (namespaces not accepted for isValidName()) (thanks to davey)
- added optional parameter to replaceEntities() to define the set of entities to replace
- added optional parameter to attributesToString() to define, whether entities should be replaced (requested by Sebastian Bergmann)
- allowed second parameter to XML_Util::attributesToString() to be an array containing options (easier to use, if you only need to set the last parameter)
- introduced XML_Util::raiseError() to avoid the necessity of including PEAR.php, will only be included on error
</notes>
</release>
<release>
<version>0.6.0</version>
<date>2004-06-07</date>
<license>PHP License</license>
<state>stable</state>
<notes>- Fixed bug 1438 (namespaces not accepted for isValidName()) (thanks to davey)
- added optional parameter to replaceEntities() to define the set of entities to replace
- added optional parameter to attributesToString() to define, whether entities should be replaced (requested by Sebastian Bergmann)
- allowed second parameter to XML_Util::attributesToString() to be an array containing options (easier to use, if you only need to set the last parameter)
- introduced XML_Util::raiseError() to avoid the necessity of including PEAR.php, will only be included on error
</notes>
</release>
<release>
<version>0.6.1</version>
<date>2004-10-28</date>
<license>PHP License</license>
<state>stable</state>
<notes>- Added check for tag name (either as local part or qualified name) in createTagFromArray() (bug #1083)
</notes>
</release>
<release>
<version>1.0.0</version>
<date>2004-10-28</date>
<license>PHP License</license>
<state>stable</state>
<notes>- Added reverseEntities() (request #2639)
</notes>
</release>
<release>
<version>1.1.0</version>
<date>2004-11-19</date>
<license>PHP License</license>
<state>stable</state>
<notes>- Added collapseEmptyTags (patch by Sebastian Bergmann and Thomas Duffey)
</notes>
</release>
<release>
<version>1.1.1</version>
<date>2004-12-23</date>
<license>PHP License</license>
<state>stable</state>
<notes>- fixed bug in replaceEntities() and reverseEntities() in conjunction with XML_UTIL_ENTITIES_HTML
- createTag() and createTagFromArray() now accept XML_UTIL_ENTITIES_XML, XML_UTIL_ENTITIES_XML_REQUIRED, XML_UTIL_ENTITIES_HTML, XML_UTIL_ENTITIES_NONE and XML_UTIL_CDATA_SECTION as $replaceEntities parameter
</notes>
</release>
</changelog>
</package>
|