Author: tkoomzaaskz
Date: 2010-09-04 17:15:52 +0200 (Sat, 04 Sep 2010)
New Revision: 30826

Added:
   plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_activate.php
   plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_deactivate.php
   plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_main_active.php
   plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_actions.php
   plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_stacked.php
   plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_tabular.php
Modified:
   plugins/tdVideoPlugin/trunk/README
   plugins/tdVideoPlugin/trunk/config/routing.yml
   plugins/tdVideoPlugin/trunk/modules/td_video/actions/actions.class.php
   plugins/tdVideoPlugin/trunk/package.xml
Log:
[td_video] preparing for release 0.1.8

Modified: plugins/tdVideoPlugin/trunk/README
===================================================================
--- plugins/tdVideoPlugin/trunk/README  2010-09-04 14:53:08 UTC (rev 30825)
+++ plugins/tdVideoPlugin/trunk/README  2010-09-04 15:15:52 UTC (rev 30826)
@@ -65,6 +65,13 @@
         [php]
         enabled_modules: [ ..., td_video ]
 
+  * To use the activate/deactivate AJAX interface in the backend td_video
+    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/tdVideoPlugin/trunk/config/routing.yml
===================================================================
--- plugins/tdVideoPlugin/trunk/config/routing.yml      2010-09-04 14:53:08 UTC 
(rev 30825)
+++ plugins/tdVideoPlugin/trunk/config/routing.yml      2010-09-04 15:15:52 UTC 
(rev 30826)
@@ -8,6 +8,20 @@
   options:
     segment_separators: ['/'] # disabling '.' separator
 
+# ajax actions
+
+ajax_video_activate:
+  url:   /ajax-video-activate/:id
+  param: { module: td_video, action: activate }
+  requirements:
+    id: \d+
+
+ajax_video_deactivate:
+  url:   /ajax-video-deactivate/:id
+  param: { module: td_video, action: deactivate }
+  requirements:
+    id: \d+
+
 td_video:
   class: sfDoctrineRouteCollection
   options:

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

Added: plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_activate.php
===================================================================
--- plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_activate.php   
                        (rev 0)
+++ plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_activate.php   
2010-09-04 15:15:52 UTC (rev 30826)
@@ -0,0 +1,14 @@
+<?php use_helper('I18N') ?>
+<li class="sf_admin_action_activate" id="ajax_activate_<?php echo 
$td_video->getId() ?>">
+<?php use_helper('jQuery'); ?>
+  <?php echo jq_link_to_remote(__('Activate', array(), 'sf_admin'), array(
+    'update'   => 'video_is_active_action_'.$td_video->getId(),
+    'url'      => '@ajax_video_activate?id='.$td_video->getId(),
+    'script' => true,
+    'complete' => jq_remote_function( array(
+      'update' => 'video_is_active_column_'.$td_video->getId(),
+      'url'    => 'graphics/tick',
+      'script' => true
+    )),
+  )) ?>
+</li>

Added: 
plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_deactivate.php
===================================================================
--- plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_deactivate.php 
                        (rev 0)
+++ plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_deactivate.php 
2010-09-04 15:15:52 UTC (rev 30826)
@@ -0,0 +1,14 @@
+<?php use_helper('I18N') ?>
+<li class="sf_admin_action_deactivate" id="ajax_deactivate_<?php echo 
$td_video->getId() ?>">
+<?php use_helper('jQuery'); ?>
+  <?php echo jq_link_to_remote(__('Deactivate', array(), 'sf_admin'), array(
+    'update'   => 'video_is_active_action_'.$td_video->getId(),
+    'url'      => '@ajax_video_deactivate?id='.$td_video->getId(),
+    'script' => true,
+    'complete' => jq_remote_function( array(
+      'update' => 'video_is_active_column_'.$td_video->getId(),
+      'url'    => 'graphics/empty',
+      'script' => true
+    )),
+  )) ?>
+</li>

Added: 
plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_main_active.php
===================================================================
--- 
plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_main_active.php    
                            (rev 0)
+++ 
plugins/tdVideoPlugin/trunk/modules/td_video/templates/_ajax_main_active.php    
    2010-09-04 15:15:52 UTC (rev 30826)
@@ -0,0 +1,7 @@
+<span id="video_is_active_action_<?php echo $td_video->getId() ?>">
+  <?php if ($td_video->getActive()): ?>
+    <?php include_partial('td_video/ajax_deactivate', array('td_video' => 
$td_video)) ?>
+  <?php else: ?>
+    <?php include_partial('td_video/ajax_activate', array('td_video' => 
$td_video)) ?>
+  <?php endif; ?>
+</span>
\ No newline at end of file

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

Added: 
plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_stacked.php
===================================================================
--- plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_stacked.php 
                        (rev 0)
+++ plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_stacked.php 
2010-09-04 15:15:52 UTC (rev 30826)
@@ -0,0 +1,3 @@
+<td colspan="6">
+  <?php echo __('<strong>Nazwa</strong>: <i>%%name%%</i><span 
id="video_is_active_column_'.$td_video->getId().'">%%active%%</span><br 
/><strong>Autor</strong>: <i>%%author%%</i><br /><strong>Nagrano</strong>: 
<i>%%recorded_at%%</i><br /><strong>Opis</strong>: <div 
class="text_box">%%description_short%%</div><br /><strong>utworzono</strong>: 
<i>%%created_at%%</i><br /><strong>zmieniono</strong>: <i>%%updated_at%%</i>', 
array('%%name%%' => $td_video->getName(), '%%active%%' => 
get_partial('td_video/list_field_boolean', array('value' => 
$td_video->getActive())), '%%author%%' => $td_video->getAuthor(), 
'%%recorded_at%%' => false !== strtotime($td_video->getRecordedAt()) ? 
format_date($td_video->getRecordedAt(), "f") : '&nbsp;', 
'%%description_short%%' => $td_video->getDescriptionShort(), '%%created_at%%' 
=> false !== strtotime($td_video->getCreatedAt()) ? 
format_date($td_video->getCreatedAt(), "f") : '&nbsp;', '%%updated_at%%' => 
false !== strtotime($td_video->getUpdatedAt()) ? 
format_date($td_video->getUpdatedAt(), "f") : '&nbsp;'), 'sf_admin') ?>
+</td>

Added: 
plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_tabular.php
===================================================================
--- plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_tabular.php 
                        (rev 0)
+++ plugins/tdVideoPlugin/trunk/modules/td_video/templates/_list_td_tabular.php 
2010-09-04 15:15:52 UTC (rev 30826)
@@ -0,0 +1,18 @@
+<td class="sf_admin_boolean sf_admin_list_td_active" 
id="video_is_active_column_<?php echo $td_video->getId() ?>">
+  <?php echo get_partial('td_video/list_field_boolean', array('value' => 
$td_video->getActive())) ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_name">
+  <?php echo $td_video->getName() ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_author">
+  <?php echo $td_video->getAuthor() ?>
+</td>
+<td class="sf_admin_date sf_admin_list_td_recorded_at">
+  <?php echo false !== strtotime($td_video->getRecordedAt()) ? 
format_date($td_video->getRecordedAt(), "f") : '&nbsp;' ?>
+</td>
+<td class="sf_admin_text sf_admin_list_td_description_short">
+  <?php echo $td_video->getDescriptionShort() ?>
+</td>
+<td class="sf_admin_date sf_admin_list_td_updated_at">
+  <?php echo false !== strtotime($td_video->getUpdatedAt()) ? 
format_date($td_video->getUpdatedAt(), "f") : '&nbsp;' ?>
+</td>

Modified: plugins/tdVideoPlugin/trunk/package.xml
===================================================================
--- plugins/tdVideoPlugin/trunk/package.xml     2010-09-04 14:53:08 UTC (rev 
30825)
+++ plugins/tdVideoPlugin/trunk/package.xml     2010-09-04 15:15:52 UTC (rev 
30826)
@@ -4,145 +4,151 @@
   <channel>plugins.symfony-project.org</channel>
   <summary>Provides easy interface for flash video player to embed in symfony 
projects.</summary>
   <description>Provides easy interface for flash video player to embed in 
symfony projects. It is based on my sfVideoPlugin and is integrated into _TD 
CMF_. 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.7</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.8</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="tdVideoPluginConfiguration.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="tdVideoPluginConfiguration.class.php" role="data" />
+      </dir>
 
-     <dir name="data">
-       <dir name="fixtures">
-         <file name="fixtures.yml" role="data" />
-       </dir>
-       <dir name="samples">
-         <file name="01.flv" role="data" />
-         <file name="02.flv" role="data" />
-         <file name="03.flv" role="data" />
-       </dir>
-     </dir>
+      <dir name="data">
+        <dir name="fixtures">
+          <file name="fixtures.yml" role="data" />
+        </dir>
+        <dir name="samples">
+          <file name="01.flv" role="data" />
+          <file name="02.flv" role="data" />
+          <file name="03.flv" role="data" />
+        </dir>
+      </dir>
 
-     <dir name="lib">
-       <dir name="filter">
-         <dir name="doctrine">
-           <file name="PlugintdVideoFormFilter.class.php" role="data" />
-         </dir>
-       </dir>
-       <dir name="form">
-         <dir name="doctrine">
-           <file name="PlugintdVideoForm.class.php" role="data" />
-         </dir>
-       </dir>
-       <dir name="helper">
-         <file name="VideoHelper.php" role="data" />
-       </dir>
-       <dir name="model">
-         <dir name="doctrine">
-           <file name="PlugintdVideo.class.php" role="data" />
-           <file name="PlugintdVideoTable.class.php" role="data" />
-         </dir>
-       </dir>
-     </dir>
+      <dir name="lib">
+        <dir name="filter">
+          <dir name="doctrine">
+            <file name="PlugintdVideoFormFilter.class.php" role="data" />
+          </dir>
+        </dir>
+        <dir name="form">
+          <dir name="doctrine">
+            <file name="PlugintdVideoForm.class.php" role="data" />
+          </dir>
+        </dir>
+        <dir name="helper">
+          <file name="VideoHelper.php" role="data" />
+        </dir>
+        <dir name="model">
+          <dir name="doctrine">
+            <file name="PlugintdVideo.class.php" role="data" />
+            <file name="PlugintdVideoTable.class.php" role="data" />
+          </dir>
+        </dir>
+      </dir>
 
-     <dir name="modules">
-       <dir name="tdSampleVideo">
-         <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="showSuccess.php" role="data" />
-         </dir>
-       </dir>
-       <dir name="td_video">
-         <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_videoGeneratorConfiguration.class.php" role="data" />
-           <file name="td_videoGeneratorHelper.class.php" role="data" />
-         </dir>
-         <dir name="templates">
-           <file name="_file_show.php" role="data" />
-           <file name="_form_field.php" role="data" />
-           <file name="_form_fieldset.php" role="data" />
-         </dir>
-       </dir>
-     </dir>
+      <dir name="modules">
+        <dir name="tdSampleVideo">
+          <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="showSuccess.php" role="data" />
+          </dir>
+        </dir>
+        <dir name="td_video">
+          <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_videoGeneratorConfiguration.class.php" role="data" 
/>
+            <file name="td_videoGeneratorHelper.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" />
+            <file name="_file_show.php" role="data" />
+            <file name="_form_field.php" role="data" />
+            <file name="_form_fieldset.php" role="data" />
+          </dir>
+        </dir>
+      </dir>
 
-     <dir name="web">
-       <dir name="css">
-         <file name="flowplayer.css" role="data" />
-         <file name="td_video.css" role="data" />
-       </dir>
-       <dir name="js">
-         <file name="flowplayer-3.1.4.min.js" role="data" />
-       </dir>
-       <dir name="swf">
-         <file name="flowplayer-3.1.5.swf" role="data" />
-         <file name="flowplayer.controls-3.1.5.swf" role="data" />
-       </dir>
-     </dir>
+      <dir name="web">
+        <dir name="css">
+          <file name="flowplayer.css" role="data" />
+          <file name="td_video.css" role="data" />
+        </dir>
+        <dir name="js">
+          <file name="flowplayer-3.1.4.min.js" role="data" />
+        </dir>
+        <dir name="swf">
+          <file name="flowplayer-3.1.5.swf" role="data" />
+          <file name="flowplayer.controls-3.1.5.swf" role="data" />
+        </dir>
+      </dir>
 
-     <file name="FLOWPLAYER_LICENSE" role="data" />
-     <file name="LICENSE" role="data" />
-     <file name="README" role="data" />
-   </dir>
- </contents>
+      <file name="FLOWPLAYER_LICENSE" role="data" />
+      <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>
-   </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>
+    </required>
   </dependencies>
 
   <phprelease>
@@ -150,147 +156,164 @@
 
   <changelog>
 
-   <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-02-24</date>
-    <license>MIT</license>
-    <notes>
-     * short description sign count moved to core
-     * deletion of video file before record is deleted.
-    </notes>
-   </release>
+    <release>
+      <version>
+        <release>0.1.8</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.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-23</date>
-    <license>MIT</license>
-    <notes>
-     * forward404 if no video added
-    </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-02-24</date>
+      <license>MIT</license>
+      <notes>
+        * short description sign count moved to core
+        * deletion of video file before record is deleted.
+      </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>
-     * updated random videos - fixed blocked website bug
-     * video list/play 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-23</date>
+      <license>MIT</license>
+      <notes>
+        * forward404 if no video added
+      </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>
-     * reorganized sample flv files directory and upload directory
-    </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>
+        * updated random videos - fixed blocked website bug
+        * video list/play 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>
-     * fixed short description
-     * video admin updated
-     * documentation 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>
+        * reorganized sample flv files directory and upload directory
+      </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>
-     * dependency on tdCorePlugin
-     * model table class methods added
-    </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>
+        * fixed short description
+        * video admin updated
+        * documentation 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-18</date>
-    <license>MIT</license>
-    <notes>
-     * short description configuration variable
-    </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>
+        * dependency on tdCorePlugin
+        * model table class methods added
+      </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-17</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-18</date>
+      <license>MIT</license>
+      <notes>
+        * short description configuration variable
+      </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-17</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