Author: tkoomzaaskz
Date: 2010-09-04 18:13:59 +0200 (Sat, 04 Sep 2010)
New Revision: 30830
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_activate.php
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_deactivate.php
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_main_active.php
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_actions.php
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_stacked.php
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_tabular.php
Modified:
plugins/tdBlogPlugin/trunk/README
plugins/tdBlogPlugin/trunk/config/routing.yml
plugins/tdBlogPlugin/trunk/modules/td_article/actions/actions.class.php
plugins/tdBlogPlugin/trunk/package.xml
Log:
[td_blog] preparing for release 0.1.6
Modified: plugins/tdBlogPlugin/trunk/README
===================================================================
--- plugins/tdBlogPlugin/trunk/README 2010-09-04 16:01:53 UTC (rev 30829)
+++ plugins/tdBlogPlugin/trunk/README 2010-09-04 16:13:59 UTC (rev 30830)
@@ -57,6 +57,13 @@
[php]
enabled_modules: [ ..., td_article ]
+ * To use the activate/deactivate AJAX interface in the backend td_article
+ module, remember to enable the __graphics__ module of the __tdCorePlugin__
+ inside your settings.yml file (see tdCorePlugin README).
+
+ [php]
+ enabled_modules: [ ..., graphics ]
+
Configuration
=============
Modified: plugins/tdBlogPlugin/trunk/config/routing.yml
===================================================================
--- plugins/tdBlogPlugin/trunk/config/routing.yml 2010-09-04 16:01:53 UTC
(rev 30829)
+++ plugins/tdBlogPlugin/trunk/config/routing.yml 2010-09-04 16:13:59 UTC
(rev 30830)
@@ -2,6 +2,20 @@
url: /sample-article
param: { module: tdSampleArticle, action: index }
+# ajax actions
+
+ajax_article_activate:
+ url: /ajax-article-activate/:id
+ param: { module: td_article, action: activate }
+ requirements:
+ id: \d+
+
+ajax_article_deactivate:
+ url: /ajax-article-deactivate/:id
+ param: { module: td_article, action: deactivate }
+ requirements:
+ id: \d+
+
td_article:
class: sfDoctrineRouteCollection
options:
Modified:
plugins/tdBlogPlugin/trunk/modules/td_article/actions/actions.class.php
===================================================================
--- plugins/tdBlogPlugin/trunk/modules/td_article/actions/actions.class.php
2010-09-04 16:01:53 UTC (rev 30829)
+++ plugins/tdBlogPlugin/trunk/modules/td_article/actions/actions.class.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -53,33 +53,29 @@
$this->redirect('@td_article');
}
- /**
- * Activates selected article.
- *
- * @param sfWebRequest $request
- */
- public function executeListActivate(sfWebRequest $request)
- {
- $article = $this->getRoute()->getObject();
- $article->activate();
+ /**
+ * Activates an article from admin generator list using AJAX.
+ *
+ * @param sfWebRequest $request
+ * @return Partial - generated partial enabling article deactivating
(switch).
+ */
+ public function executeActivate(sfWebRequest $request)
+ {
+ $article =
Doctrine::getTable('tdArticle')->findOneById($request->getParameter('id'));
+ $article->activate();
+ return $this->renderPartial('td_article/ajax_deactivate',
array('td_article' => $article));
+ }
- $this->getUser()->setFlash('notice', 'The selected article has been
activated successfully.');
-
- $this->redirect('@td_article');
- }
-
- /**
- * Deactivates selected article.
- *
- * @param sfWebRequest $request
- */
- public function executeListDeactivate(sfWebRequest $request)
- {
- $article = $this->getRoute()->getObject();
- $article->deactivate();
-
- $this->getUser()->setFlash('notice', 'The selected article has been
deactivated successfully.');
-
- $this->redirect('@td_article');
- }
+ /**
+ * Deactivates an article from admin generator list using AJAX.
+ *
+ * @param sfWebRequest $request
+ * @return Partial - generated partial enabling article activating (switch).
+ */
+ public function executeDeactivate(sfWebRequest $request)
+ {
+ $article =
Doctrine::getTable('tdArticle')->findOneById($request->getParameter('id'));
+ $article->deactivate();
+ return $this->renderPartial('td_article/ajax_activate', array('td_article'
=> $article));
+ }
}
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_activate.php
===================================================================
--- plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_activate.php
(rev 0)
+++ plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_activate.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -0,0 +1,14 @@
+<?php use_helper('I18N') ?>
+<li class="sf_admin_action_activate" id="ajax_activate_<?php echo
$td_article->getId() ?>">
+<?php use_helper('jQuery'); ?>
+ <?php echo jq_link_to_remote(__('Activate', array(), 'sf_admin'), array(
+ 'update' => 'article_is_active_action_'.$td_article->getId(),
+ 'url' => '@ajax_article_activate?id='.$td_article->getId(),
+ 'script' => true,
+ 'complete' => jq_remote_function( array(
+ 'update' => 'article_is_active_column_'.$td_article->getId(),
+ 'url' => 'graphics/tick',
+ 'script' => true
+ )),
+ )) ?>
+</li>
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_deactivate.php
===================================================================
---
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_deactivate.php
(rev 0)
+++
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_deactivate.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -0,0 +1,14 @@
+<?php use_helper('I18N') ?>
+<li class="sf_admin_action_deactivate" id="ajax_deactivate_<?php echo
$td_article->getId() ?>">
+<?php use_helper('jQuery'); ?>
+ <?php echo jq_link_to_remote(__('Deactivate', array(), 'sf_admin'), array(
+ 'update' => 'article_is_active_action_'.$td_article->getId(),
+ 'url' => '@ajax_article_deactivate?id='.$td_article->getId(),
+ 'script' => true,
+ 'complete' => jq_remote_function( array(
+ 'update' => 'article_is_active_column_'.$td_article->getId(),
+ 'url' => 'graphics/empty',
+ 'script' => true
+ )),
+ )) ?>
+</li>
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_main_active.php
===================================================================
---
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_main_active.php
(rev 0)
+++
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_ajax_main_active.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -0,0 +1,7 @@
+<span id="article_is_active_action_<?php echo $td_article->getId() ?>">
+ <?php if ($td_article->getActive()): ?>
+ <?php include_partial('td_article/ajax_deactivate', array('td_article' =>
$td_article)) ?>
+ <?php else: ?>
+ <?php include_partial('td_article/ajax_activate', array('td_article' =>
$td_article)) ?>
+ <?php endif; ?>
+</span>
\ No newline at end of file
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_actions.php
===================================================================
---
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_actions.php
(rev 0)
+++
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_actions.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -0,0 +1,7 @@
+<td>
+ <ul class="sf_admin_td_actions">
+ <?php echo $helper->linkToEdit($td_article, array( 'params' => array(
), 'class_suffix' => 'edit', 'label' => 'Edit',)) ?>
+ <?php echo $helper->linkToDelete($td_article, array( 'params' => array(
), 'confirm' => 'Are you sure?', 'class_suffix' => 'delete', 'label' =>
'Delete',)) ?>
+ <?php include_partial('ajax_main_active', array('td_article' =>
$td_article)) ?>
+ </ul>
+</td>
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_stacked.php
===================================================================
---
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_stacked.php
(rev 0)
+++
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_stacked.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -0,0 +1,3 @@
+<td colspan="6">
+ <?php echo __('<img src="/uploads/td/blog/%%image%%" class="border"
alt="błąd ładowania zdjęcia" /><br /><strong>Tytuł</strong>:
<i>%%title%%</i><span
id="article_is_active_column_'.$td_article->getId().'">%%active%%</span><br
/><strong>Autor</strong>: <i>%%author%%</i><br /><strong>Treść</strong>: <div
class="text_box">%%text_short%%</div><br /><strong>Utworzono</strong>:
<i>%%created_at%%</i><br /><strong>Zmieniono</strong>: <i>%%updated_at%%</i>',
array('%%image%%' => $td_article->getImage(), '%%title%%' =>
$td_article->getTitle(), '%%active%%' =>
get_partial('td_article/list_field_boolean', array('value' =>
$td_article->getActive())), '%%author%%' => $td_article->getAuthor(),
'%%text_short%%' => $td_article->getTextShort(), '%%created_at%%' => false !==
strtotime($td_article->getCreatedAt()) ?
format_date($td_article->getCreatedAt(), "f") : ' ', '%%updated_at%%' =>
false !== strtotime($td_article->getUpdatedAt()) ?
format_date($td_article->getUpdatedAt(), "f") : ' '), 'sf_admin') ?>
+</td>
Added:
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_tabular.php
===================================================================
---
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_tabular.php
(rev 0)
+++
plugins/tdBlogPlugin/trunk/modules/td_article/templates/_list_td_tabular.php
2010-09-04 16:13:59 UTC (rev 30830)
@@ -0,0 +1,18 @@
+<td class="sf_admin_boolean sf_admin_list_td_active"
id="article_is_active_column_<?php echo $td_article->getId() ?>">
+ <?php echo get_partial('td_article/list_field_boolean', array('value' =>
$td_article->getActive())) ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_title">
+ <?php echo $td_article->getTitle() ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_author">
+ <?php echo $td_article->getAuthor() ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_text">
+ <?php echo $td_article->getText() ?>
+</td>
+<td class="sf_admin_date sf_admin_list_td_created_at">
+ <?php echo false !== strtotime($td_article->getCreatedAt()) ?
format_date($td_article->getCreatedAt(), "f") : ' ' ?>
+</td>
+<td class="sf_admin_date sf_admin_list_td_updated_at">
+ <?php echo false !== strtotime($td_article->getUpdatedAt()) ?
format_date($td_article->getUpdatedAt(), "f") : ' ' ?>
+</td>
Modified: plugins/tdBlogPlugin/trunk/package.xml
===================================================================
--- plugins/tdBlogPlugin/trunk/package.xml 2010-09-04 16:01:53 UTC (rev
30829)
+++ plugins/tdBlogPlugin/trunk/package.xml 2010-09-04 16:13:59 UTC (rev
30830)
@@ -4,246 +4,270 @@
<channel>plugins.symfony-project.org</channel>
<summary>Provides basic blog functionalities.</summary>
<description>Provides basic blog functionalities. This plugin is a part of
__TD CMF__ and is based on __Doctrine ORM__.</description>
- <lead>
- <name>Tomasz Ducin</name>
- <user>tkoomzaaskz</user>
- <email>[email protected]</email>
- <active>yes</active>
- </lead>
- <date>2010-04-11</date>
- <time>11:00:00</time>
- <version>
- <release>0.1.5</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.com/license">MIT</license>
- <notes>-</notes>
+ <lead>
+ <name>Tomasz Ducin</name>
+ <user>tkoomzaaskz</user>
+ <email>[email protected]</email>
+ <active>yes</active>
+ </lead>
+ <date>2010-09-04</date>
+ <time>11:00:00</time>
+ <version>
+ <release>0.1.6/release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.com/license">MIT</license>
+ <notes>-</notes>
- <contents>
- <dir name="/">
+ <contents>
+ <dir name="/">
- <dir name="config">
- <dir name="doctrine">
- <file name="schema.yml" role="data" />
- </dir>
- <file name="routing.yml" role="data" />
- <file name="tdBlogPluginConfiguration.class.php" role="data" />
- </dir>
+ <dir name="config">
+ <dir name="doctrine">
+ <file name="schema.yml" role="data" />
+ </dir>
+ <file name="routing.yml" role="data" />
+ <file name="tdBlogPluginConfiguration.class.php" role="data" />
+ </dir>
- <dir name="data">
- <dir name="fixtures">
- <file name="fixtures.yml" role="data" />
- </dir>
- <dir name="samples">
- <file name="sample1.jpg" role="data" />
- <file name="sample2.jpg" role="data" />
- </dir>
- </dir>
+ <dir name="data">
+ <dir name="fixtures">
+ <file name="fixtures.yml" role="data" />
+ </dir>
+ <dir name="samples">
+ <file name="sample1.jpg" role="data" />
+ <file name="sample2.jpg" role="data" />
+ </dir>
+ </dir>
- <dir name="lib">
- <dir name="filter">
- <dir name="doctrine">
- <file name="PlugintdArticleFormFilter.class.php" role="data" />
- </dir>
- </dir>
- <dir name="form">
- <dir name="doctrine">
- <file name="PlugintdArticleForm.class.php" role="data" />
- </dir>
- </dir>
- <dir name="model">
- <dir name="doctrine">
- <file name="PlugintdArticle.class.php" role="data" />
- <file name="PlugintdArticleTable.class.php" role="data" />
- </dir>
- </dir>
- </dir>
+ <dir name="lib">
+ <dir name="filter">
+ <dir name="doctrine">
+ <file name="PlugintdArticleFormFilter.class.php" role="data" />
+ </dir>
+ </dir>
+ <dir name="form">
+ <dir name="doctrine">
+ <file name="PlugintdArticleForm.class.php" role="data" />
+ </dir>
+ </dir>
+ <dir name="model">
+ <dir name="doctrine">
+ <file name="PlugintdArticle.class.php" role="data" />
+ <file name="PlugintdArticleTable.class.php" role="data" />
+ </dir>
+ </dir>
+ </dir>
- <dir name="modules">
- <dir name="td_article">
- <dir name="actions">
- <file name="actions.class.php" role="data" />
- </dir>
- <dir name="config">
- <file name="generator.yml" role="data" />
- </dir>
- <dir name="i18n">
- <file name="sf_admin.pl.xml" role="data" />
- </dir>
- <dir name="lib">
- <file name="td_articleGeneratorConfiguration.class.php" role="data"
/>
- <file name="td_articleGeneratorHelper.class.php" role="data" />
- </dir>
- <dir name="templates" />
- </dir>
- <dir name="tdSampleArticle">
- <dir name="actions">
- <file name="actions.class.php" role="data" />
- </dir>
- <dir name="i18n">
- <file name="td.pl.xml" role="data" />
- </dir>
- <dir name="templates">
- <file name="_article.php" role="data" />
- <file name="indexSuccess.php" role="data" />
- <file name="showSuccess.php" role="data" />
- </dir>
- </dir>
- </dir>
+ <dir name="modules">
+ <dir name="td_article">
+ <dir name="actions">
+ <file name="actions.class.php" role="data" />
+ </dir>
+ <dir name="config">
+ <file name="generator.yml" role="data" />
+ </dir>
+ <dir name="i18n">
+ <file name="sf_admin.pl.xml" role="data" />
+ </dir>
+ <dir name="lib">
+ <file name="td_articleGeneratorConfiguration.class.php"
role="data" />
+ <file name="td_articleGeneratorHelper.class.php" role="data" />
+ </dir>
+ <dir name="templates">
+ <file name="_ajax_activate.php" role="data" />
+ <file name="_ajax_deactivate.php" role="data" />
+ <file name="_ajax_main_active.php" role="data" />
+ <file name="_list_td_actions.php" role="data" />
+ <file name="_list_td_stacked.php" role="data" />
+ <file name="_list_td_tabular.php" role="data" />
+ <dir/>
+ </dir>
+ <dir name="tdSampleArticle">
+ <dir name="actions">
+ <file name="actions.class.php" role="data" />
+ </dir>
+ <dir name="i18n">
+ <file name="td.pl.xml" role="data" />
+ </dir>
+ <dir name="templates">
+ <file name="_article.php" role="data" />
+ <file name="indexSuccess.php" role="data" />
+ <file name="showSuccess.php" role="data" />
+ </dir>
+ </dir>
+ </dir>
- <file name="LICENSE" role="data" />
- <file name="README" role="data" />
- </dir>
- </contents>
+ <file name="LICENSE" role="data" />
+ <file name="README" role="data" />
+ </dir>
+ </contents>
- <dependencies>
- <required>
- <php>
- <min>5.1.0</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>1.5.0</max>
- <exclude>1.5.0</exclude>
- </package>
- <package>
- <name>tdCorePlugin</name>
- <channel>plugins.symfony-project.org</channel>
- <min>0.1.9</min>
- </package>
- <package>
- <name>sfDoctrineGuardPlugin</name>
- <channel>plugins.symfony-project.org</channel>
- <min>4.0.1</min>
- </package>
- </required>
- </dependencies>
+ <dependencies>
+ <required>
+ <php>
+ <min>5.1.0</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>1.5.0</max>
+ <exclude>1.5.0</exclude>
+ </package>
+ <package>
+ <name>tdCorePlugin</name>
+ <channel>plugins.symfony-project.org</channel>
+ <min>0.1.10</min>
+ </package>
+ <package>
+ <name>sfDoctrineGuardPlugin</name>
+ <channel>plugins.symfony-project.org</channel>
+ <min>4.0.1</min>
+ </package>
+ </required>
+ </dependencies>
- <phprelease>
- </phprelease>
+ <phprelease>
+ </phprelease>
- <changelog>
+ <changelog>
- <release>
- <version>
- <release>0.1.5</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.org/license">MIT license</license>
- <date>2010-04-11</date>
- <license>MIT</license>
- <notes>
- * added sfDoctrineGuardPlugin dependency
- * fixed schema bug with wrong author foreign key
- </notes>
- </release>
+ <release>
+ <version>
+ <release>0.1.6</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-09-04</date>
+ <license>MIT</license>
+ <notes>
+ * added backend module AJAX activate/deactivate interface
+ </notes>
+ </release>
- <release>
- <version>
- <release>0.1.4</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.org/license">MIT license</license>
- <date>2010-02-23</date>
- <license>MIT</license>
- <notes>
- * short description sign count moved to core
- * article admin generator updated
- * fixtures bug fixed
- * article frontend template - ommit displaying image if no image uploaded
- </notes>
- </release>
+ <release>
+ <version>
+ <release>0.1.5</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-04-11</date>
+ <license>MIT</license>
+ <notes>
+ * added sfDoctrineGuardPlugin dependency
+ * fixed schema bug with wrong author foreign key
+ </notes>
+ </release>
- <release>
- <version>
- <release>0.1.3</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.org/license">MIT license</license>
- <date>2010-02-08</date>
- <license>MIT</license>
- <notes>
- * switched articles list to be shown with descending create time
- * fixed image showing in admin list
- * fixed upload directory bug
- </notes>
- </release>
+ <release>
+ <version>
+ <release>0.1.4</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-02-23</date>
+ <license>MIT</license>
+ <notes>
+ * short description sign count moved to core
+ * article admin generator updated
+ * fixtures bug fixed
+ * article frontend template - ommit displaying image if no image
uploaded
+ </notes>
+ </release>
- <release>
- <version>
- <release>0.1.2</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.org/license">MIT license</license>
- <date>2010-01-24</date>
- <license>MIT</license>
- <notes>
- * reorganized sample jpg files directory and upload directory
- </notes>
- </release>
+ <release>
+ <version>
+ <release>0.1.3</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-02-08</date>
+ <license>MIT</license>
+ <notes>
+ * switched articles list to be shown with descending create time
+ * fixed image showing in admin list
+ * fixed upload directory bug
+ </notes>
+ </release>
- <release>
- <version>
- <release>0.1.1</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.org/license">MIT license</license>
- <date>2010-01-24</date>
- <license>MIT</license>
- <notes>
- * fixed short text method
- * translation added
- * article admin generator updated
- * documentation updated
- </notes>
- </release>
+ <release>
+ <version>
+ <release>0.1.2</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-01-24</date>
+ <license>MIT</license>
+ <notes>
+ * reorganized sample jpg files directory and upload directory
+ </notes>
+ </release>
- <release>
- <version>
- <release>0.1.0</release>
- <api>0.1.0</api>
- </version>
- <stability>
- <release>beta</release>
- <api>beta</api>
- </stability>
- <license uri="http://www.symfony-project.org/license">MIT license</license>
- <date>2010-01-22</date>
- <license>MIT</license>
- <notes>
- * initial import
- </notes>
- </release>
+ <release>
+ <version>
+ <release>0.1.1</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-01-24</date>
+ <license>MIT</license>
+ <notes>
+ * fixed short text method
+ * translation added
+ * article admin generator updated
+ * documentation updated
+ </notes>
+ </release>
- </changelog>
+ <release>
+ <version>
+ <release>0.1.0</release>
+ <api>0.1.0</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-01-22</date>
+ <license>MIT</license>
+ <notes>
+ * initial import
+ </notes>
+ </release>
-</package>
\ No newline at end of file
+ </changelog>
+
+ </package>
\ No newline at end of file
--
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.