Changeset 8887
- Timestamp:
- 05/10/08 03:49:53 (3 days ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPropelActAsTaggableBehaviorPlugin/trunk/README
r8619 r8887 201 201 202 202 // gets objects that are tagged with a certain number of tags within a set of 203 // tags. For instance, the following line returns all t ehobject tagged with at203 // tags. For instance, the following line returns all the object tagged with at 204 204 // least two of the following tags: toto, tutu, tata, titi 205 205 $objects = TagPeer::getTaggedWith('tutu, toto, tata, titi', … … 339 339 The plugin has been deeply unit-tested, if not fully. The tests are located in test/unit/sfPropelActAsTaggableBehaviorTest.php. If you want to run them: 340 340 * install the plugin 341 * configure a model for using it, for instance "Post" 342 * copy the test file to /path/to/your/project/test/unit/sfPropelActAsTaggableBehaviorTest.php 343 * edit this file and modify line 3: 341 * configure two model for using it, for instance "Post" and "Link" 342 * edit the test file test/unit/sfPropelActAsTaggableBehaviorTest.php and modify line 3 and 4: 344 343 {{{ 345 344 define('TEST_CLASS', 'Post'); 345 define('TEST_CLASS', 'Link'); 346 346 }}} 347 347 * run the tests: 348 348 {{{ 349 ./symfony test-unit sfPropelActAsTaggableBehavior349 $ php ./plugins/sfPropelActAsTaggableBehaviorPlugin/test/unit/sfPropelActAsTaggableBehaviorTest.php 350 350 }}} 351 351 352 352 == License and credits == 353 This plugin has been developed by [http://lacot.org/ blog Xavier Lacot] and is licensed under the MIT license. Thanks to Tristan Rivoallan for the help provided.353 This plugin has been developed by [http://lacot.org/ Xavier Lacot] and is licensed under the MIT license. 354 354 355 355 == Changelog == 356 356 357 === trunk===357 === version 0.6 - 2008-05-10 === 358 358 * added "nb_common_tags" option, that permits to select objects having a certain number of tags within a given tags list 359 359 * added the possibility to retrieve the triple tags of an object that meet certain constraints (namespace, etc.) 360 * added "separator" option in the tag_list() helper 361 * improved preloadTags() performance, in case all the objects don't have a tag 360 362 361 363 === version 0.5 - 2008-03-21 === … … 376 378 377 379 === version 0.1 - 2007-05-22 === 378 Initial public release. Features tags attachment to heterogene Propel objects, and includes tag-clouds generation. 380 Initial public release. Features tags attachment to heterogene Propel objects, and includes tag-clouds generation. Thanks to Tristan Rivoallan for the help provided. plugins/sfPropelActAsTaggableBehaviorPlugin/trunk/package.xml
r8026 r8887 11 11 <active>yes</active> 12 12 </lead> 13 <date>2008-0 3-21</date>14 <time> 14:23:24</time>13 <date>2008-05-10</date> 14 <time>03:55:12</time> 15 15 <version> 16 <release>0. 5.0</release>17 <api>0. 5.0</api>16 <release>0.6.0</release> 17 <api>0.6.0</api> 18 18 </version> 19 19 <stability> … … 22 22 </stability> 23 23 <license uri="http://www.symfony-project.com/license">MIT license</license> 24 <notes>* compatibility with Symfony 1.1 25 * added setTags() method 26 * renamed table names in order to use the sf_ prefix 24 <notes>* added "nb_common_tags" option, that permits to select objects having a certain number of tags within a given tags list 25 * added the possibility to retrieve the triple tags of an object that meet certain constraints (namespace, etc.) 26 * added "separator" option in the tag_list() helper 27 * improved preloadTags() performance, in case all the objects don't have a tag 27 28 </notes> 28 29 <contents> … … 78 79 <phprelease /> 79 80 <changelog> 81 <release> 82 <version> 83 <release>0.6.0</release> 84 <api>0.6.0</api> 85 </version> 86 <stability> 87 <release>beta</release> 88 <api>beta</api> 89 </stability> 90 <date>2008-05-10</date> 91 <license uri="http://www.symfony-project.com/license">MIT license</license> 92 <notes>* added "nb_common_tags" option, that permits to select objects having a certain number of tags within a given tags list 93 * added the possibility to retrieve the triple tags of an object that meet certain constraints (namespace, etc.) 94 * added "separator" option in the tag_list() helper 95 * improved preloadTags() performance, in case all the objects don't have a tag</notes> 96 </release> 80 97 <release> 81 98 <version>