Author: tkoomzaaskz
Date: 2010-09-04 16:53:08 +0200 (Sat, 04 Sep 2010)
New Revision: 30825

Added:
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_activate.php
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_deactivate.php
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_main_active.php
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_actions.php
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_stacked.php
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_tabular.php
Modified:
   plugins/tdGuestbookPlugin/trunk/README
   plugins/tdGuestbookPlugin/trunk/config/routing.yml
   
plugins/tdGuestbookPlugin/trunk/lib/model/doctrine/PlugintdGuestbook.class.php
   
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/actions/actions.class.php
   plugins/tdGuestbookPlugin/trunk/package.xml
Log:
[td_guestbook] preparing for release 0.1.7

Modified: plugins/tdGuestbookPlugin/trunk/README
===================================================================
--- plugins/tdGuestbookPlugin/trunk/README      2010-09-04 14:44:42 UTC (rev 
30824)
+++ plugins/tdGuestbookPlugin/trunk/README      2010-09-04 14:53:08 UTC (rev 
30825)
@@ -57,6 +57,13 @@
     special class with captcha configuration is included: 
_tdFrontendGuestbookForm_.
     td_guestbook admin module uses the standard tdGuestbookForm.
 
+  * To use the activate/deactivate AJAX interface in the backend td_guestbook
+    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/tdGuestbookPlugin/trunk/config/routing.yml
===================================================================
--- plugins/tdGuestbookPlugin/trunk/config/routing.yml  2010-09-04 14:44:42 UTC 
(rev 30824)
+++ plugins/tdGuestbookPlugin/trunk/config/routing.yml  2010-09-04 14:53:08 UTC 
(rev 30825)
@@ -6,6 +6,20 @@
   url:   /guestbook-add
   param: { module: tdSampleGuestbook, action: new }
 
+# ajax actions
+
+ajax_guestbook_entry_activate:
+  url:   /ajax-guestbook-entry-activate/:id
+  param: { module: td_guestbook, action: activate }
+  requirements:
+    id: \d+
+
+ajax_guestbook_entry_deactivate:
+  url:   /ajax-guestbook-entry-deactivate/:id
+  param: { module: td_guestbook, action: deactivate }
+  requirements:
+    id: \d+
+
 td_guestbook:
   class: sfDoctrineRouteCollection
   options:

Modified: 
plugins/tdGuestbookPlugin/trunk/lib/model/doctrine/PlugintdGuestbook.class.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/lib/model/doctrine/PlugintdGuestbook.class.php  
    2010-09-04 14:44:42 UTC (rev 30824)
+++ 
plugins/tdGuestbookPlugin/trunk/lib/model/doctrine/PlugintdGuestbook.class.php  
    2010-09-04 14:53:08 UTC (rev 30825)
@@ -24,25 +24,21 @@
 
   /**
    * Activates the guestbook entry.
-   *
-   * @return True
    */
   public function activate()
   {
     $this->setActive(true);
     $this->save();
-    return true;
+//var_dump('activated');
   }
 
   /**
    * Deactivates the guestbook entry.
-   *
-   * @return True
    */
   public function deactivate()
   {
     $this->setActive(false);
     $this->save();
-    return true;
+//var_dump('deactivated');
   }
 }
\ No newline at end of file

Modified: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/actions/actions.class.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/actions/actions.class.php  
    2010-09-04 14:44:42 UTC (rev 30824)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/actions/actions.class.php  
    2010-09-04 14:53:08 UTC (rev 30825)
@@ -53,33 +53,29 @@
         $this->redirect('@td_guestbook');
     }
 
-    /**
-     * Activates selected guestbook entry.
-     *
-     * @param sfWebRequest $request
-     */
-    public function executeListActivate(sfWebRequest $request)
-    {
-        $entry = $this->getRoute()->getObject();
-        $entry->activate();
+  /**
+   * Activates a guestbook entry from admin generator list using AJAX.
+   *
+   * @param sfWebRequest $request
+   * @return Partial - generated partial enabling guestbook entry deactivating 
(switch).
+   */
+  public function executeActivate(sfWebRequest $request)
+  {
+    $entry = 
Doctrine::getTable('tdGuestbook')->findOneById($request->getParameter('id'));
+    $entry->activate();
+    return $this->renderPartial('td_guestbook/ajax_deactivate', 
array('td_guestbook' => $entry));
+  }
 
-        $this->getUser()->setFlash('notice', 'The selected guestbook entry has 
been activated successfully.');
-
-        $this->redirect('@td_guestbook');
-    }
-
-    /**
-     * Deactivates selected guestbook entry.
-     *
-     * @param sfWebRequest $request
-     */
-    public function executeListDeactivate(sfWebRequest $request)
-    {
-        $entry = $this->getRoute()->getObject();
-        $entry->deactivate();
-
-        $this->getUser()->setFlash('notice', 'The selected guestbook entry has 
been deactivated successfully.');
-
-        $this->redirect('@td_guestbook');
-    }
+  /**
+   * Deactivates a guestbook entry from admin generator list using AJAX.
+   *
+   * @param sfWebRequest $request
+   * @return Partial - generated partial enabling guestbook entry activating 
(switch).
+   */
+  public function executeDeactivate(sfWebRequest $request)
+  {
+    $entry = 
Doctrine::getTable('tdGuestbook')->findOneById($request->getParameter('id'));
+    $entry->deactivate();
+    return $this->renderPartial('td_guestbook/ajax_activate', 
array('td_guestbook' => $entry));
+  }
 }

Added: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_activate.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_activate.php
                           (rev 0)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_activate.php
   2010-09-04 14:53:08 UTC (rev 30825)
@@ -0,0 +1,14 @@
+<?php use_helper('I18N') ?>
+<li class="sf_admin_action_activate" id="ajax_activate_<?php echo 
$td_guestbook->getId() ?>">
+<?php use_helper('jQuery'); ?>
+  <?php echo jq_link_to_remote(__('Activate', array(), 'sf_admin'), array(
+    'update'   => 'entry_is_active_action_'.$td_guestbook->getId(),
+    'url'      => '@ajax_guestbook_entry_activate?id='.$td_guestbook->getId(),
+    'script' => true,
+    'complete' => jq_remote_function( array(
+      'update' => 'entry_is_active_column_'.$td_guestbook->getId(),
+      'url'    => 'graphics/tick',
+      'script' => true
+    )),
+  )) ?>
+</li>

Added: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_deactivate.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_deactivate.php
                         (rev 0)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_deactivate.php
 2010-09-04 14:53:08 UTC (rev 30825)
@@ -0,0 +1,14 @@
+<?php use_helper('I18N') ?>
+<li class="sf_admin_action_deactivate" id="ajax_deactivate_<?php echo 
$td_guestbook->getId() ?>">
+<?php use_helper('jQuery'); ?>
+  <?php echo jq_link_to_remote(__('Deactivate', array(), 'sf_admin'), array(
+    'update'   => 'entry_is_active_action_'.$td_guestbook->getId(),
+    'url'      => 
'@ajax_guestbook_entry_deactivate?id='.$td_guestbook->getId(),
+    'script' => true,
+    'complete' => jq_remote_function( array(
+      'update' => 'entry_is_active_column_'.$td_guestbook->getId(),
+      'url'    => 'graphics/empty',
+      'script' => true
+    )),
+  )) ?>
+</li>

Added: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_main_active.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_main_active.php
                                (rev 0)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_ajax_main_active.php
        2010-09-04 14:53:08 UTC (rev 30825)
@@ -0,0 +1,7 @@
+<span id="entry_is_active_action_<?php echo $td_guestbook->getId() ?>">
+  <?php if ($td_guestbook->getActive()): ?>
+    <?php include_partial('td_guestbook/ajax_deactivate', array('td_guestbook' 
=> $td_guestbook)) ?>
+  <?php else: ?>
+    <?php include_partial('td_guestbook/ajax_activate', array('td_guestbook' 
=> $td_guestbook)) ?>
+  <?php endif; ?>
+</span>
\ No newline at end of file

Added: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_actions.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_actions.php
                         (rev 0)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_actions.php
 2010-09-04 14:53:08 UTC (rev 30825)
@@ -0,0 +1,7 @@
+<td>
+  <ul class="sf_admin_td_actions">
+    <?php echo $helper->linkToEdit($td_guestbook, array(  'params' =>   array( 
 ),  'class_suffix' => 'edit',  'label' => 'Edit',)) ?>
+    <?php echo $helper->linkToDelete($td_guestbook, array(  'params' =>   
array(  ),  'confirm' => 'Are you sure?',  'class_suffix' => 'delete',  'label' 
=> 'Delete',)) ?>
+    <?php include_partial('ajax_main_active', array('td_guestbook' => 
$td_guestbook)) ?>
+  </ul>
+</td>

Added: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_stacked.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_stacked.php
                         (rev 0)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_stacked.php
 2010-09-04 14:53:08 UTC (rev 30825)
@@ -0,0 +1,3 @@
+<td colspan="5">
+  <?php echo __('<strong>Autor</strong>: <i>%%author%%</i><span 
id="entry_is_active_column_'.$td_guestbook->getId().'">%%active%%</span><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('%%author%%' => 
$td_guestbook->getAuthor(), '%%active%%' => 
get_partial('td_guestbook/list_field_boolean', array('value' => 
$td_guestbook->getActive())), '%%text_short%%' => 
$td_guestbook->getTextShort(), '%%created_at%%' => false !== 
strtotime($td_guestbook->getCreatedAt()) ? 
format_date($td_guestbook->getCreatedAt(), "f") : '&nbsp;', '%%updated_at%%' => 
false !== strtotime($td_guestbook->getUpdatedAt()) ? 
format_date($td_guestbook->getUpdatedAt(), "f") : '&nbsp;'), 'sf_admin') ?>
+</td>

Added: 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_tabular.php
===================================================================
--- 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_tabular.php
                         (rev 0)
+++ 
plugins/tdGuestbookPlugin/trunk/modules/td_guestbook/templates/_list_td_tabular.php
 2010-09-04 14:53:08 UTC (rev 30825)
@@ -0,0 +1,15 @@
+<td class="sf_admin_boolean sf_admin_list_td_active" 
id="entry_is_active_column_<?php echo $td_guestbook->getId() ?>">
+  <?php echo get_partial('td_guestbook/list_field_boolean', array('value' => 
$td_guestbook->getActive())) ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_author">
+  <?php echo $td_guestbook->getAuthor() ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_text">
+  <?php echo $td_guestbook->getText() ?>
+</td>
+<td class="sf_admin_date sf_admin_list_td_updated_at">
+  <?php echo false !== strtotime($td_guestbook->getUpdatedAt()) ? 
format_date($td_guestbook->getUpdatedAt(), "f") : '&nbsp;' ?>
+</td>
+<td class="sf_admin_date sf_admin_list_td_created_at">
+  <?php echo false !== strtotime($td_guestbook->getCreatedAt()) ? 
format_date($td_guestbook->getCreatedAt(), "f") : '&nbsp;' ?>
+</td>

Modified: plugins/tdGuestbookPlugin/trunk/package.xml
===================================================================
--- plugins/tdGuestbookPlugin/trunk/package.xml 2010-09-04 14:44:42 UTC (rev 
30824)
+++ plugins/tdGuestbookPlugin/trunk/package.xml 2010-09-04 14:53:08 UTC (rev 
30825)
@@ -4,130 +4,137 @@
   <channel>plugins.symfony-project.org</channel>
   <summary>Provides funcionalities for a standard guestbook.</summary>
   <description>Provides funcionalities for a standard guestbook. 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-02-24</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>
+  <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.7</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="tdGuestbookPluginConfiguration.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="tdGuestbookPluginConfiguration.class.php" role="data" />
+      </dir>
 
-     <dir name="data">
-       <dir name="fixtures">
-         <file name="fixtures.yml" role="data" />
-       </dir>
-     </dir>
+      <dir name="data">
+        <dir name="fixtures">
+          <file name="fixtures.yml" role="data" />
+        </dir>
+      </dir>
 
-     <dir name="lib">
-       <dir name="filter">
-         <dir name="doctrine">
-           <file name="PlugintdGuestbookFormFilter.class.php" role="data" />
-         </dir>
-       </dir>
-       <dir name="form">
-         <dir name="doctrine">
-           <file name="PlugintdGuestbookForm.class.php" role="data" />
-           <file name="tdFrontendGuestbookForm.class.php" role="data" />
-         </dir>
-       </dir>
-       <dir name="model">
-         <dir name="doctrine">
-           <file name="PlugintdGuestbook.class.php" role="data" />
-           <file name="PlugintdGuestbookTable.class.php" role="data" />
-         </dir>
-       </dir>
-     </dir>
+      <dir name="lib">
+        <dir name="filter">
+          <dir name="doctrine">
+            <file name="PlugintdGuestbookFormFilter.class.php" role="data" />
+          </dir>
+        </dir>
+        <dir name="form">
+          <dir name="doctrine">
+            <file name="PlugintdGuestbookForm.class.php" role="data" />
+            <file name="tdFrontendGuestbookForm.class.php" role="data" />
+          </dir>
+        </dir>
+        <dir name="model">
+          <dir name="doctrine">
+            <file name="PlugintdGuestbook.class.php" role="data" />
+            <file name="PlugintdGuestbookTable.class.php" role="data" />
+          </dir>
+        </dir>
+      </dir>
 
-     <dir name="modules">
-       <dir name="td_guestbook">
-         <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_guestbookGeneratorConfiguration.class.php" 
role="data" />
-           <file name="td_guestbookGeneratorHelper.class.php" role="data" />
-         </dir>
-         <dir name="templates" />
-       </dir>
-       <dir name="tdSampleGuestbook">
-         <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="indexSuccess.php" role="data" />
-           <file name="newSuccess.php" role="data" />
-         </dir>
-       </dir>
-     </dir>
+      <dir name="modules">
+        <dir name="td_guestbook">
+          <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_guestbookGeneratorConfiguration.class.php" 
role="data" />
+            <file name="td_guestbookGeneratorHelper.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="tdSampleGuestbook">
+          <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="indexSuccess.php" role="data" />
+            <file name="newSuccess.php" role="data" />
+          </dir>
+        </dir>
+      </dir>
 
-     <dir name="web">
-       <dir name="css">
-         <file name="td_guestbook.css" role="data" />
-       </dir>
-     </dir>
+      <dir name="web">
+        <dir name="css">
+          <file name="td_guestbook.css" role="data" />
+        </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>sfCryptoCaptchaPlugin</name>
-     <channel>plugins.symfony-project.org</channel>
-     <min>0.1.0</min>
-    </package>
-   </required>
+    <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>sfCryptoCaptchaPlugin</name>
+        <channel>plugins.symfony-project.org</channel>
+        <min>0.1.0</min>
+      </package>
+    </required>
   </dependencies>
 
   <phprelease>
@@ -135,133 +142,150 @@
 
   <changelog>
 
-   <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-02-24</date>
-    <license>MIT</license>
-    <notes>
-     * short description sign count moved to core
-    </notes>
-   </release>
+    <release>
+      <version>
+        <release>0.1.7</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.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-02-21</date>
-    <license>MIT</license>
-    <notes>
-     * guestbook list/form templates use background image
-    </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-02-24</date>
+      <license>MIT</license>
+      <notes>
+        * short description sign count moved to core
+      </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-01-24</date>
-    <license>MIT</license>
-    <notes>
-     * added crypto captcha support (dependency on sfCryptoCaptchaPlugin)
-     * added translations
-     * default sort in admin panel
-    </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-02-21</date>
+      <license>MIT</license>
+      <notes>
+        * guestbook list/form templates use background image
+      </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-01-24</date>
-    <license>MIT</license>
-    <notes>
-     * admin generator updated
-     * short text method created/admin
-     * docs updated
-    </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-01-24</date>
+      <license>MIT</license>
+      <notes>
+        * added crypto captcha support (dependency on sfCryptoCaptchaPlugin)
+        * added translations
+        * default sort in admin panel
+      </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-22</date>
-    <license>MIT</license>
-    <notes>
-     * added stylesheets and modified layout
-     * added model methods
-     * fixed adding posts
-    </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-01-24</date>
+      <license>MIT</license>
+      <notes>
+        * admin generator updated
+        * short text method created/admin
+        * docs updated
+      </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-17</date>
-    <license>MIT</license>
-    <notes>
-     * switched pagination images to core td pagination
-     * forms and filters 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-22</date>
+      <license>MIT</license>
+      <notes>
+        * added stylesheets and modified layout
+        * added model methods
+        * fixed adding posts
+      </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-03</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-17</date>
+      <license>MIT</license>
+      <notes>
+        * switched pagination images to core td pagination
+        * forms and filters updated
+        * documentation updated
+      </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-03</date>
+      <license>MIT</license>
+      <notes>
+        * initial import
+      </notes>
+    </release>
+
   </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.

Reply via email to