Author: xavier Date: 2010-05-16 03:07:01 +0200 (Sun, 16 May 2010) New Revision: 29479
Added: plugins/sfDoctrineShortUrlPlugin/trunk/README plugins/sfDoctrineShortUrlPlugin/trunk/package.xml Log: [wiki:sfDoctrineShortUrlPlugin]: added package.xml and README Added: plugins/sfDoctrineShortUrlPlugin/trunk/README =================================================================== --- plugins/sfDoctrineShortUrlPlugin/trunk/README (rev 0) +++ plugins/sfDoctrineShortUrlPlugin/trunk/README 2010-05-16 01:07:01 UTC (rev 29479) @@ -0,0 +1,53 @@ +# sfDoctrineShortUrlPlugin + +## Introduction + +This plugin provides all the functionnalities of a short url service similar to tinyURL: + + * url shortening + * url validation + +This is the Doctrine version of the propel plugin [sfShortUrlPlugin](http://www.symfony-project.org/plugins/sfShortUrlPlugin). + +It is a work in progress, which aims to grow as a reference implementation of the url shortening topic. The website [http://xav.cc/](http://xav.cc/) uses this plugin. The complete source of this website is available on the SVN repository [http://opensource.lacot.org/xav.cc/svn](http://opensource.lacot.org/xav.cc/svn) + + +## How to install + + * go to your project's root + + * Install the plugin: + + ./symfony plugin:install http://plugins.symfony-project.com/sfDoctrineShortUrlPlugin + + + * clear the cache: + + ./symfony cc + + + * alternatively, you might prefer to install this plugin as a Subversion dependancy. In this case, here is the repository: [http://svn.symfony-project.com/plugins/sfDoctrineShortUrlPlugin](http://svn.symfony-project.com/plugins/sfDoctrineShortUrlPlugin) + + +## Whishlist + * a query-string based api (not strict-REST) + * all the possible feedback! + + +## Contribute to the plugin, ask for help + +Please ask for help on how to use the plugin on Symfony's users mailing list. +You can also send me a mail directly : [email protected]. + + +## License and credits + +This plugin has been developed by [Xavier Lacot](http://lacot.org/) and is +licensed under the MIT license. + + +## Changelog + +### version 0.8 - 2010-05-16 + +Initial public release. Features all the basic functionnalities. \ No newline at end of file Added: plugins/sfDoctrineShortUrlPlugin/trunk/package.xml =================================================================== --- plugins/sfDoctrineShortUrlPlugin/trunk/package.xml (rev 0) +++ plugins/sfDoctrineShortUrlPlugin/trunk/package.xml 2010-05-16 01:07:01 UTC (rev 29479) @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="UTF-8"?> +<package packagerversion="1.9.0" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 + http://pear.php.net/dtd/tasks-1.0.xsd + http://pear.php.net/dtd/package-2.0 + http://pear.php.net/dtd/package-2.0.xsd"> + <name>sfDoctrineShortUrlPlugin</name> + <channel>pear.symfony-project.com</channel> + <summary>sfDoctrineShortUrlPlugin allows to build a Doctrine based url shortening system</summary> + <description>sfDoctrineShortUrlPlugin provides all the functionnalities of a short url service similar to tinyURL: + + * url shortening + * url validation + +This is the Doctrine version of the Propel plugin (http://www.symfony-project.org/plugins/sfShortUrlPlugin). + +It is a work in progress, which aims to grow as a reference implementation of the url shortening topic. The website http://xav.cc/ uses this plugin. The complete source of this website is available on the SVN repository http://opensource.lacot.org/xav.cc/svn</description> + <lead> + <name>Xavier Lacot</name> + <user>xavier</user> + <email>[email protected]</email> + <active>yes</active> + </lead> + <date>2010-05-16</date> + <time>03:07:25</time> + <version> + <release>0.8.0</release> + <api>0.8.0</api> + </version> + <stability> + <release>beta</release> + <api>beta</api> + </stability> + <license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license> + <notes> +Initial public release + </notes> + <contents> + <dir baseinstalldir="." name="/"> + <file baseinstalldir="." name="LICENSE" role="data" /> + <file baseinstalldir="." name="README" role="data" /> + <file baseinstalldir="." md5sum="cea259ccc6b79efcf401315ba2f1d05b" name="config/config.php" role="php" /> + <file baseinstalldir="." md5sum="3c8a80b67052a8385d608220f1b0496b" name="config/doctrine/schema.yml" role="data" /> + <file baseinstalldir="." md5sum="65004f529f6dccc3823a54b78f2152b8" name="lib/filter/doctrine/PluginsfShortUrlFormFilter.class.php" role="php" /> + <file baseinstalldir="." md5sum="1f25cc45e90e24b371174ba12acaf2a0" name="lib/form/doctrine/PluginsfShortUrlForm.class.php" role="php" /> + <file baseinstalldir="." md5sum="dc325f95379bc299c4f5cc33a056b7a5" name="lib/model/doctrine/PluginsfShortUrl.class.php" role="php" /> + <file baseinstalldir="." md5sum="8b485f046ab148c5defd34e4c3a99749" name="lib/model/doctrine/PluginsfShortUrlTable.class.php" role="php" /> + <file baseinstalldir="." md5sum="a6783788c1127b193d7407e58c52794c" name="lib/routing/sfDoctrineShortUrlRouting.class.php" role="php" /> + <file baseinstalldir="." md5sum="c95f6f26304695364c262ba5ae98ccaf" name="modules/sfShortUrl/actions/actions.class.php" role="php" /> + <file baseinstalldir="." md5sum="6d1225a00e64ba7610157939341de316" name="modules/sfShortUrl/lib/BasesfShortUrlActions.class.php" role="php" /> + <file baseinstalldir="." md5sum="1495374c232a9edf4b40e04f02f99034" name="modules/sfShortUrl/templates/indexSuccess.php" role="php" /> + </dir> + </contents> + <dependencies> + <required> + <php> + <min>5.2.4</min> + </php> + <pearinstaller> + <min>1.4.1</min> + </pearinstaller> + <package> + <name>symfony</name> + <channel>pear.symfony-project.com</channel> + <min>1.3.0</min> + <max>2.0.0</max> + <exclude>2.0.0</exclude> + </package> + </required> + </dependencies> + <phprelease /> + <changelog> + <release> + <version> + <release>0.8.0</release> + <api>0.8.0</api> + </version> + <stability> + <release>beta</release> + <api>beta</api> + </stability> + <date>2010-05-16</date> + <license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license> + <notes> +Initial public release + </notes> + </release> + </changelog> +</package> -- You received this message because you are subscribed to the Google Groups "symfony SVN" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/symfony-svn?hl=en.
