Changeset 51
- Timestamp:
- 11/28/06 15:13:38 (2 years ago)
- Files:
-
- trunk/package.php (modified) (2 diffs)
- trunk/package.xml (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/package.php
r44 r51 20 20 * current version 21 21 */ 22 $version = '0.1. 1';22 $version = '0.1.2'; 23 23 24 24 /** 25 25 * Current API version 26 26 */ 27 $apiVersion = '0.1. 1';27 $apiVersion = '0.1.2'; 28 28 29 29 /** … … 42 42 $notes = <<<EOT 43 43 Feature addition: 44 It is now possible to use dynamic setter methods built from an attribute value. 44 This release enables using class loaders for differant namespaces which allows to load classes 45 at runtime of the XmlParser instead of having to load all classes before parsing the xml files. 46 Bugfix: 47 The ConstructorValueConverter now works with all examples. 45 48 EOT; 46 49 trunk/package.xml
r44 r51 22 22 <active>yes</active> 23 23 </lead> 24 <date>2006-11-2 1</date>25 <time> 20:48:28</time>24 <date>2006-11-28</date> 25 <time>15:07:43</time> 26 26 <version> 27 <release>0.1. 1</release>28 <api>0.1. 1</api>27 <release>0.1.2</release> 28 <api>0.1.2</api> 29 29 </version> 30 30 <stability> … … 34 34 <license uri="http://www.gnu.org/copyleft/lesser.txt">LGPL</license> 35 35 <notes>Feature addition: 36 It is now possible to use dynamic setter methods built from an attribute value.</notes> 36 This release enables using class loaders for differant namespaces which allows to load classes 37 at runtime of the XmlParser instead of having to load all classes before parsing the xml files. 38 Bugfix: 39 The ConstructorValueConverter now works with all examples.</notes> 37 40 <contents> 38 41 <dir baseinstalldir="/" name="/"> 39 42 <dir name="examples"> 43 <dir name="hidden"> 44 <file name="MyNestedClass.php" role="doc" /> 45 </dir> <!-- /examples/hidden --> 40 46 <dir name="xml"> 41 47 <file name="defines-attributes-required.xml" role="doc" /> 48 <file name="defines-classloader.xml" role="doc" /> 42 49 <file name="defines-collection.xml" role="doc" /> 43 50 <file name="defines-constructor.xml" role="doc" /> … … 53 60 <file name="defines3.xml" role="doc" /> 54 61 <file name="test-attributes-required.xml" role="doc" /> 62 <file name="test-classloader.xml" role="doc" /> 55 63 <file name="test-collection.xml" role="doc" /> 56 64 <file name="test-constructor.xml" role="doc" /> … … 67 75 <file name="test3.xml" role="doc" /> 68 76 </dir> <!-- /examples/xml --> 77 <file name="ClassLoader.php" role="doc" /> 69 78 <file name="Color.php" role="doc" /> 70 79 <file name="ColorPrimitives.php" role="doc" /> … … 78 87 <file name="Example2.php" role="doc" /> 79 88 <file name="Example3.php" role="doc" /> 89 <file name="ExampleClassLoader.php" role="doc" /> 80 90 <file name="ExampleCollection.php" role="doc" /> 81 91 <file name="ExampleExtension.php" role="doc" /> … … 94 104 <file name="UpperString.php" role="doc" /> 95 105 </dir> <!-- /examples --> 106 <dir name="tests"> 107 <dir name="definitions"> 108 <file name="AttributeDefinitionTestCase.php" role="test" /> 109 <file name="DefinitionsTestSuite.php" role="test" /> 110 </dir> <!-- /tests/definitions --> 111 <file name="run.php" role="test" /> 112 </dir> <!-- /tests --> 96 113 <dir name="XJConf"> 97 114 <dir name="converters"> … … 154 171 <file name="GenericTag.php" role="php" /> 155 172 <file name="Tag.php" role="php" /> 173 <file name="XJConfClassLoader.php" role="php" /> 156 174 <file name="XJConfLoader.php" role="php" /> 157 175 <file name="XmlParser.php" role="php" /> … … 202 220 It is now possible to use dynamic setter methods built from an attribute value.</notes> 203 221 </release> 222 <release> 223 <version> 224 <release>0.1.2</release> 225 <api>0.1.2</api> 226 </version> 227 <stability> 228 <release>alpha</release> 229 <api>alpha</api> 230 </stability> 231 <date>2006-11-28</date> 232 <license uri="http://www.gnu.org/copyleft/lesser.txt">LGPL</license> 233 <notes>Feature addition: 234 This release enables using class loaders for differant namespaces which allows to load classes 235 at runtime of the XmlParser instead of having to load all classes before parsing the xml files. 236 Bugfix: 237 The ConstructorValueConverter now works with all examples.</notes> 238 </release> 204 239 </changelog> 205 240 </package>
