<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_bold extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,16 +30,16 @@ class syntax_plugin_bbcode_bold extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'formatting'; }
+    function getType() { return 'formatting'; }
     function getAllowedTypes() { return array('formatting', 'substition', 'disabled'); }   
-    function getSort(){ return 105; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addEntryPattern('\[b\](?=.*?\x5B/b\x5D)',$mode,'strong'); }
     function postConnect() { $this-&gt;Lexer-&gt;addExitPattern('\[/b\]','strong'); }
 
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         return array();
     }
  
@@ -50,5 +50,4 @@ class syntax_plugin_bbcode_bold extends DokuWiki_Syntax_Plugin {
         return true;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/bold.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_code extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,16 +30,16 @@ class syntax_plugin_bbcode_code extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'protected'; }
-    function getPType(){ return 'block'; }
-    function getSort(){ return 105; }
+    function getType() { return 'protected'; }
+    function getPType() { return 'block'; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addEntryPattern('\[code\](?=.*?\x5B/code\x5D)',$mode,'preformatted'); }
     function postConnect() { $this-&gt;Lexer-&gt;addExitPattern('\[/code\]','preformatted'); }
 
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         return true;
     }
  
@@ -50,5 +50,4 @@ class syntax_plugin_bbcode_code extends DokuWiki_Syntax_Plugin {
         return true;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/code.php</filename>
    </modified>
    <modified>
      <diff>@@ -20,7 +20,7 @@ class syntax_plugin_bbcode_color extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -31,9 +31,9 @@ class syntax_plugin_bbcode_color extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'formatting'; }
+    function getType() { return 'formatting'; }
     function getAllowedTypes() { return array('formatting', 'substition', 'disabled'); }   
-    function getSort(){ return 105; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addEntryPattern('\[color=.*?\](?=.*?\x5B/color\x5D)',$mode,'plugin_bbcode_color'); }
     function postConnect() { $this-&gt;Lexer-&gt;addExitPattern('\[/color\]','plugin_bbcode_color'); }
  
@@ -41,7 +41,7 @@ class syntax_plugin_bbcode_color extends DokuWiki_Syntax_Plugin {
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         switch ($state) {
           case DOKU_LEXER_ENTER :
             $match = substr($match, 7, -1);
@@ -61,7 +61,7 @@ class syntax_plugin_bbcode_color extends DokuWiki_Syntax_Plugin {
      * Create output
      */
     function render($mode, &amp;$renderer, $data) {
-        if($mode == 'xhtml'){
+        if($mode == 'xhtml') {
             list($state, $match) = $data;
             switch ($state) {
               case DOKU_LEXER_ENTER :      
@@ -92,7 +92,7 @@ class syntax_plugin_bbcode_color extends DokuWiki_Syntax_Plugin {
         $pattern = &quot;/
             ([a-zA-z]+)|                                #colorname - not verified
             (\#([0-9a-fA-F]{3}|[0-9a-fA-F]{6}))|        #colorvalue
-            (rgb\(([0-9]{1,3}%?,){2}[0-9]{1,3}%?\))     #rgb triplet
+            (rgb\(([0-9]{1,3}%?,) {2}[0-9]{1,3}%?\))     #rgb triplet
             /x&quot;;
         
         if (preg_match($pattern, $c)) return $c;
@@ -100,5 +100,4 @@ class syntax_plugin_bbcode_color extends DokuWiki_Syntax_Plugin {
         return &quot;&quot;;
     }
 }
- 
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/color.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_email extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,15 +30,15 @@ class syntax_plugin_bbcode_email extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'substition'; }
-    function getSort(){ return 105; }
+    function getType() { return 'substition'; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addSpecialPattern('\[email.+?\[/email\]',$mode,'plugin_bbcode_email'); }
  
  
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         $match = trim(substr($match, 7, -8));
         $match = preg_split('/\]/u',$match,2);
         if ( !isset($match[0]) ) {
@@ -59,5 +59,4 @@ class syntax_plugin_bbcode_email extends DokuWiki_Syntax_Plugin {
         return true;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/email.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_image extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,15 +30,15 @@ class syntax_plugin_bbcode_image extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'substition'; }
-    function getSort(){ return 105; }
+    function getType() { return 'substition'; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addSpecialPattern('\[img.+?\[/img\]',$mode,'plugin_bbcode_image'); }
  
  
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         $match = trim(substr($match, 5, -6));
         $match = preg_split('/\]/u',$match,2);
         if ( !isset($match[0]) ) {
@@ -67,5 +67,4 @@ class syntax_plugin_bbcode_image extends DokuWiki_Syntax_Plugin {
         return true;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/image.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_italic extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,16 +30,16 @@ class syntax_plugin_bbcode_italic extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'formatting'; }
+    function getType() { return 'formatting'; }
     function getAllowedTypes() { return array('formatting', 'substition', 'disabled'); }   
-    function getSort(){ return 105; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addEntryPattern('\[i\](?=.*?\x5B/i\x5D)',$mode,'emphasis'); }
     function postConnect() { $this-&gt;Lexer-&gt;addExitPattern('\[/i\]','emphasis'); }
 
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         return array();
     }
  
@@ -50,5 +50,4 @@ class syntax_plugin_bbcode_italic extends DokuWiki_Syntax_Plugin {
         return true;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/italic.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_link extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,15 +30,15 @@ class syntax_plugin_bbcode_link extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'substition'; }
-    function getSort(){ return 105; }
+    function getType() { return 'substition'; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addSpecialPattern('\[url.+?\[/url\]',$mode,'plugin_bbcode_link'); }
  
  
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         $match = substr($match, 5, -6);
         $match = preg_split('/\]/u',$match,2);
         if ( !isset($match[0]) ) {
@@ -71,5 +71,4 @@ class syntax_plugin_bbcode_link extends DokuWiki_Syntax_Plugin {
         return true;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/link.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_olist extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,11 +30,11 @@ class syntax_plugin_bbcode_olist extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){
+    function getType() {
         return 'container';
     }
     
-    function getPType(){
+    function getPType() {
         return 'block';
     }
     
@@ -42,7 +42,7 @@ class syntax_plugin_bbcode_olist extends DokuWiki_Syntax_Plugin {
         return array('formatting', 'substition', 'disabled', 'protected');
     }
     
-    function getSort(){
+    function getSort() {
         return 105;
     }
     
@@ -58,7 +58,7 @@ class syntax_plugin_bbcode_olist extends DokuWiki_Syntax_Plugin {
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){        
+    function handle($match, $state, $pos, &amp;$handler) {        
         switch ($state) {
           case DOKU_LEXER_ENTER :
             // get the list type
@@ -80,7 +80,7 @@ class syntax_plugin_bbcode_olist extends DokuWiki_Syntax_Plugin {
      * Create output
      */
     function render($mode, &amp;$renderer, $data) {
-        if($mode == 'xhtml'){
+        if($mode == 'xhtml') {
             list($state, $match) = $data;
             switch ($state) {
               case DOKU_LEXER_ENTER :
@@ -119,5 +119,4 @@ class syntax_plugin_bbcode_olist extends DokuWiki_Syntax_Plugin {
     }
     
 }
- 
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/olist.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_quote extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,10 +30,10 @@ class syntax_plugin_bbcode_quote extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'container'; }
-    function getPType(){ return 'block'; }
+    function getType() { return 'container'; }
+    function getPType() { return 'block'; }
     function getAllowedTypes() { return array('formatting', 'substition', 'disabled', 'protected'); }   
-    function getSort(){ return 105; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addEntryPattern('\[quote.*?\](?=.*?\x5B/quote\x5D)',$mode,'plugin_bbcode_quote'); }
     function postConnect() { $this-&gt;Lexer-&gt;addExitPattern('\[/quote\]','plugin_bbcode_quote'); }
  
@@ -41,7 +41,7 @@ class syntax_plugin_bbcode_quote extends DokuWiki_Syntax_Plugin {
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){        
+    function handle($match, $state, $pos, &amp;$handler) {        
         switch ($state) {
           case DOKU_LEXER_ENTER :
             $match = explode('&quot;',substr($match, 6, -1));
@@ -61,7 +61,7 @@ class syntax_plugin_bbcode_quote extends DokuWiki_Syntax_Plugin {
      * Create output
      */
     function render($mode, &amp;$renderer, $data) {
-        if($mode == 'xhtml'){
+        if($mode == 'xhtml') {
             list($state, $match) = $data;
             switch ($state) {
               case DOKU_LEXER_ENTER :
@@ -85,5 +85,4 @@ class syntax_plugin_bbcode_quote extends DokuWiki_Syntax_Plugin {
     }
     
 }
- 
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/quote.php</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ class syntax_plugin_bbcode_size extends DokuWiki_Syntax_Plugin {
     /**
      * return some info
      */
-    function getInfo(){
+    function getInfo() {
         return array(
             'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
             'email'  =&gt; 'dokuwiki@chimeric.de',
@@ -30,9 +30,9 @@ class syntax_plugin_bbcode_size extends DokuWiki_Syntax_Plugin {
         );
     }
  
-    function getType(){ return 'formatting'; }
+    function getType() { return 'formatting'; }
     function getAllowedTypes() { return array('formatting', 'substition', 'disabled'); }   
-    function getSort(){ return 105; }
+    function getSort() { return 105; }
     function connectTo($mode) { $this-&gt;Lexer-&gt;addEntryPattern('\[size=.*?\](?=.*?\x5B/size\x5D)',$mode,'plugin_bbcode_size'); }
     function postConnect() { $this-&gt;Lexer-&gt;addExitPattern('\[/size\]','plugin_bbcode_size'); }
  
@@ -40,7 +40,7 @@ class syntax_plugin_bbcode_size extends DokuWiki_Syntax_Plugin {
     /**
      * Handle the match
      */
-    function handle($match, $state, $pos, &amp;$handler){
+    function handle($match, $state, $pos, &amp;$handler) {
         switch ($state) {
           case DOKU_LEXER_ENTER :
             $match = substr($match, 6, -1);
@@ -61,7 +61,7 @@ class syntax_plugin_bbcode_size extends DokuWiki_Syntax_Plugin {
      * Create output
      */
     function render($mode, &amp;$renderer, $data) {
-        if($mode == 'xhtml'){
+        if($mode == 'xhtml') {
             list($state, $match) = $data;
             switch ($state) {
               case DOKU_LEXER_ENTER :      
@@ -82,5 +82,4 @@ class syntax_plugin_bbcode_size extends DokuWiki_Syntax_Plugin {
         return false;
     }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:     </diff>
      <filename>syntax/size.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3c7adc852e9826eb439a53d4131867d979cce71a</id>
    </parent>
  </parents>
  <author>
    <name>Michael Klier</name>
    <login>chimeric</login>
    <email>chi@chimeric.de</email>
  </author>
  <url>http://github.com/dokufreaks/plugin-bbcode/commit/1d443f060f6d9b92eef0b1098e2ebb8c636949ec</url>
  <id>1d443f060f6d9b92eef0b1098e2ebb8c636949ec</id>
  <committed-date>2008-06-07T13:29:58-07:00</committed-date>
  <authored-date>2008-06-07T13:29:58-07:00</authored-date>
  <message>fixed code style

darcs-hash:20080607202958-23886-d8f7deab1e6a638c67be535018c2dd1bbf94eec2.gz</message>
  <tree>7b00ade4b5f98b3d8452639b3700c5428f3a946a</tree>
  <committer>
    <name>Michael Klier</name>
    <login>chimeric</login>
    <email>chi@chimeric.de</email>
  </committer>
</commit>
