Author: COil
Date: 2010-04-09 17:08:50 +0200 (Fri, 09 Apr 2010)
New Revision: 29060

Modified:
   plugins/sfBBCodeParserPlugin/trunk/README
   plugins/sfBBCodeParserPlugin/trunk/package.xml
Log:
[sfBBCodeParserPlugin]
* Updated package for sf 1.3 and 1.4
* Updated README

Modified: plugins/sfBBCodeParserPlugin/trunk/README
===================================================================
--- plugins/sfBBCodeParserPlugin/trunk/README   2010-04-09 14:21:36 UTC (rev 
29059)
+++ plugins/sfBBCodeParserPlugin/trunk/README   2010-04-09 15:08:50 UTC (rev 
29060)
@@ -4,38 +4,14 @@
 The **sfBBCodeParserPlugin** allows you to parse *BBCode* and get the 
corresponding html
 output. There are 6 available filters which provide the following tags:
 
-* Basic
-  * b
-  * i
-  * u
-  * s
-  * sub
-  * sup
-* Extended:
-  * color
-  * size
-  * font
-  * align
-  * quote
-  * code
-  * h1
-  * h2
-  * h3
-  * h4
-  * h5
-  * h6
-* Images
-  * img
-* Links:
-  * url
-* Lists
-  * list
-  * ulist
-  * li
-* Email
-  * email 
+* Basic (b, i, u, s, sub, sup)
+* Extended (color, size, font, align, quote, code, h1 to h6)
+* Images (img)
+* Links (url)
+* Lists (list, ulist, li)
+* Email (email)
 
-You can activate the filters you want; for each filter you can also decide 
which tags 
+You can activate the filters you want. For each filter you can also decide 
which tags 
 can be used. And finally you can make your own filters with your own tags. 
 Almost everything can be configured in the plugin, filters, tags, attributes, 
opening 
 and closing character...
@@ -51,7 +27,7 @@
 
         $ symfony plugin:install sfBBCodeParserPlugin
 
-(or download and unzip in your /plugins directory or make a SVN:externals)
+(or download and unzip in your /plugins directory or checkout with 
[SVN](http://svn.symfony-project.com/plugins/sfBBCodeParserPlugin/trunk/))
 
  * Clear your cache
 
@@ -96,7 +72,7 @@
 Usage
 =====
 
- * Instantiate an `sfBBCodeParser` object:
+ * Instantiate a `sfBBCodeParser` object:
 
         [php]
         // actions.class.php
@@ -259,7 +235,7 @@
         </table>        
 
 >**Note**
->If your escaping strategy is set to `on`:
+>If your escaping strategy is set to `on`: (this is the default case for 
symfony 1.3 and 1.4)
 >
 >     # settings.yml
 >     # Output escaping settings
@@ -274,7 +250,7 @@
 Extend the plugin
 =================
 
-If you want to create your filters, let's say the filter called `myFilter`:
+If you want to create your own filters, let's say the filter called `myFilter`:
 
 * Create the class `sfBBCodeParser_Filter_myFilter``in your lib/ directory
 * Add this filter in the `config/bb_code_parser_config.yml` file
@@ -289,7 +265,7 @@
 ====
 
 If you want to see the demo, enable the `sfBBCodeParser` module in your 
`settings.yml`
-file, then call the `/sfBBCodeParser` URL. (If you have de-activated the 
default symfony routes, 
+file, then call the `/sfBBCodeParser` URL. (If you have desactivated the 
default symfony routes,
 a `routing.yml` file is included in the `config` folder of the plugin. 
(copy/paste it
 in the `routing.yml` of your application.
  
@@ -310,6 +286,8 @@
 Please report bugs on the symfony TRAC, I can also answer if you ask on the 
symfony
 mailing list.
 
+See you. [COil](http://www.strangebuzz.com) :)
+
 Changelog
 =========
 
@@ -319,14 +297,10 @@
 Bugs
 ====
 
-* The `img` tag does not allow to have spaces in alt or title attributes.
+* The `img` tag doesn't allow to have spaces in alt or title attributes.
 
 ----
 
-See you. [COil](http://www.strangebuzz.com) :)
-
-----
-
 This plugin is sponsored by [SQL Technologies](http://www.sqltechnologies.com)
 
- ![SQL Technologies](http://www.php-debug.com/images/sql.gif)
+![SQL Technologies](http://www.php-debug.com/images/sql.gif)
\ No newline at end of file

Modified: plugins/sfBBCodeParserPlugin/trunk/package.xml
===================================================================
--- plugins/sfBBCodeParserPlugin/trunk/package.xml      2010-04-09 14:21:36 UTC 
(rev 29059)
+++ plugins/sfBBCodeParserPlugin/trunk/package.xml      2010-04-09 15:08:50 UTC 
(rev 29060)
@@ -2,32 +2,39 @@
 <package 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"; packagerversion="1.4.1" 
version="2.0" 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>sfBBCodeParserPlugin</name>
  <channel>pear.symfony-project.com</channel>
- <summary>This a plugin to parse BBCode, it is based on the HTML_BBCodeParser 
PEAR library</summary>
+ <summary>This is a plugin to parse BBCode, it is based on the 
HTML_BBCodeParser PEAR library</summary>
  <description>The **sfBBCodeParserPlugin** allows you to parse *BBCode* and 
get the corresponding html
-output. You can activate the filters you want, for each filter you can also 
tell witch tags 
+output. There are 6 available filters which provide the following tags:
+* Basic (b, i, u, s, sub, sup)
+* Extended (color, size, font, align, quote, code, h1 to h6)
+* Images (img)
+* Links (url)
+* Lists (list, ulist, li)
+* Email (email)
+You can activate the filters you want, for each filter you can also tell witch 
tags 
 can be use. And finally you can make your own filters with your own tags. 
 Almost everything can be configured in the plugin, filters, tags, attributes, 
opening 
 and closing character...
 The plugin is based on the PEAR library HTML_BBCodeParser 
http://pear.php.net/package/HTML_BBCodeParser
-but the PEAR dependencies were removed so you don't have to install it in order
-to use the plugin.</description>
+but the PEAR dependencies were removed so you don't have to install it in 
order to use the plugin.
+ </description>
  <lead>
   <name>Vernet Loic</name>
   <user>COil</user>
   <email>[email protected]</email>
   <active>yes</active>
  </lead>
- <date>2009-05-10</date>
+ <date>2010-04-09</date>
  <version>
-   <release>1.0.1</release>
-   <api>1.0.1</api>
+   <release>1.0.2</release>
+   <api>1.0.2</api>
  </version>
  <stability>
   <release>stable</release>
   <api>stable</api>
  </stability>
  <license uri="http://www.symfony-project.com/license";>MIT license</license>
- <notes></notes>
+ <notes>-</notes>
  <contents>
   <dir name="/">
    <dir name="config">
@@ -81,9 +88,9 @@
    <package>
     <name>symfony</name>
     <channel>pear.symfony-project.com</channel>
-    <min>1.2.0</min>
-    <max>1.3.0</max>
-    <exclude>1.3.0</exclude>
+    <min>1.1.0</min>
+    <max>1.5.0</max>
+    <exclude>1.5.0</exclude>
    </package>
   </required>
  </dependencies>
@@ -92,6 +99,23 @@
   <changelog>
     <release>
       <version>
+        <release>1.0.2</release>
+        <api>1.0.2</api>
+      </version>
+      <stability>
+       <release>stable</release>
+       <api>stable</api>
+      </stability>
+      <license uri="http://www.symfony-project.com/license";>MIT 
license</license>
+      <date>2010-04-09</date>
+      <license>MIT</license>
+      <notes>
+        * Updated package for sf 1.1, 1.3 and 1.4
+        * Tested the plugin with 1.1, 1.3 and 1.4
+      </notes>
+    </release>
+    <release>
+      <version>
         <release>1.0.1</release>
         <api>1.0.1</api>
       </version>

-- 
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