Author: tkoomzaaskz
Date: 2010-05-02 14:10:00 +0200 (Sun, 02 May 2010)
New Revision: 29338

Modified:
   
plugins/sfApplicationMapPlugin/branches/1.2/lib/task/sfProjectApplicationMapTask.class.php
   plugins/sfApplicationMapPlugin/branches/1.2/package.xml
   
plugins/sfApplicationMapPlugin/branches/1.4/lib/task/sfProjectApplicationMapTask.class.php
   plugins/sfApplicationMapPlugin/branches/1.4/package.xml
   
plugins/sfApplicationMapPlugin/trunk/lib/task/sfProjectApplicationMapTask.class.php
   plugins/sfApplicationMapPlugin/trunk/package.xml
Log:
[application map] preparing for new releases (1.2.1, 1.0.4)

Modified: 
plugins/sfApplicationMapPlugin/branches/1.2/lib/task/sfProjectApplicationMapTask.class.php
===================================================================
--- 
plugins/sfApplicationMapPlugin/branches/1.2/lib/task/sfProjectApplicationMapTask.class.php
  2010-05-02 12:00:47 UTC (rev 29337)
+++ 
plugins/sfApplicationMapPlugin/branches/1.2/lib/task/sfProjectApplicationMapTask.class.php
  2010-05-02 12:10:00 UTC (rev 29338)
@@ -221,6 +221,12 @@
               {
                 foreach($elements['comments'] as $key => &$comment)
                 {
+                  // eliminating any non-execute method comments
+                  $pattern = "/\/\*\*((.|\n)*?)\*\//";
+                  preg_match_all($pattern, $comment, $matches);
+                  if(count($matches[1]))
+                    $comment = $matches[1][0];
+
                   // creating temporary lines array
                   $lines = explode("\n", $comment);
 

Modified: plugins/sfApplicationMapPlugin/branches/1.2/package.xml
===================================================================
--- plugins/sfApplicationMapPlugin/branches/1.2/package.xml     2010-05-02 
12:00:47 UTC (rev 29337)
+++ plugins/sfApplicationMapPlugin/branches/1.2/package.xml     2010-05-02 
12:10:00 UTC (rev 29338)
@@ -10,10 +10,10 @@
   <email>[email protected]</email>
   <active>yes</active>
  </lead>
- <date>2010-05-02</date>
+ <date>2010-05-07</date>
  <time>11:00:00</time>
  <version>
-   <release>1.0.3</release>
+   <release>1.0.4</release>
    <api>1.0.0</api>
  </version>
  <stability>
@@ -68,6 +68,23 @@
 
    <release>
     <version>
+     <release>1.0.4</release>
+     <api>1.0.0</api>
+    </version>
+    <stability>
+     <release>stable</release>
+     <api>stable</api>
+    </stability>
+    <license uri="http://www.symfony-project.org/license";>MIT license</license>
+    <date>2010-05-07</date>
+    <license>MIT</license>
+    <notes>
+     * fixed bug reported by Kamil Kraśnik (wrong comment included when used 
non-execute methods)
+    </notes>
+   </release>
+
+   <release>
+    <version>
      <release>1.0.3</release>
      <api>1.0.0</api>
     </version>

Modified: 
plugins/sfApplicationMapPlugin/branches/1.4/lib/task/sfProjectApplicationMapTask.class.php
===================================================================
--- 
plugins/sfApplicationMapPlugin/branches/1.4/lib/task/sfProjectApplicationMapTask.class.php
  2010-05-02 12:00:47 UTC (rev 29337)
+++ 
plugins/sfApplicationMapPlugin/branches/1.4/lib/task/sfProjectApplicationMapTask.class.php
  2010-05-02 12:10:00 UTC (rev 29338)
@@ -221,6 +221,12 @@
               {
                 foreach($elements['comments'] as $key => &$comment)
                 {
+                  // eliminating any non-execute method comments
+                  $pattern = "/\/\*\*((.|\n)*?)\*\//";
+                  preg_match_all($pattern, $comment, $matches);
+                  if(count($matches[1]))
+                    $comment = $matches[1][0];
+
                   // creating temporary lines array
                   $lines = explode("\n", $comment);
 

Modified: plugins/sfApplicationMapPlugin/branches/1.4/package.xml
===================================================================
--- plugins/sfApplicationMapPlugin/branches/1.4/package.xml     2010-05-02 
12:00:47 UTC (rev 29337)
+++ plugins/sfApplicationMapPlugin/branches/1.4/package.xml     2010-05-02 
12:10:00 UTC (rev 29338)
@@ -10,10 +10,10 @@
   <email>[email protected]</email>
   <active>yes</active>
  </lead>
- <date>2010-05-02</date>
+ <date>2010-05-07</date>
  <time>11:00:00</time>
  <version>
-   <release>1.2.0</release>
+   <release>1.2.1</release>
    <api>1.0.0</api>
  </version>
  <stability>
@@ -68,6 +68,23 @@
 
    <release>
     <version>
+     <release>1.2.1</release>
+     <api>1.0.0</api>
+    </version>
+    <stability>
+     <release>stable</release>
+     <api>stable</api>
+    </stability>
+    <license uri="http://www.symfony-project.org/license";>MIT license</license>
+    <date>2010-05-07</date>
+    <license>MIT</license>
+    <notes>
+     * fixed bug reported by Kamil Kraśnik (wrong comment included when used 
non-execute methods)
+    </notes>
+   </release>
+
+   <release>
+    <version>
      <release>1.2.0</release>
      <api>1.0.0</api>
     </version>

Modified: 
plugins/sfApplicationMapPlugin/trunk/lib/task/sfProjectApplicationMapTask.class.php
===================================================================
--- 
plugins/sfApplicationMapPlugin/trunk/lib/task/sfProjectApplicationMapTask.class.php
 2010-05-02 12:00:47 UTC (rev 29337)
+++ 
plugins/sfApplicationMapPlugin/trunk/lib/task/sfProjectApplicationMapTask.class.php
 2010-05-02 12:10:00 UTC (rev 29338)
@@ -221,6 +221,12 @@
               {
                 foreach($elements['comments'] as $key => &$comment)
                 {
+                  // eliminating any non-execute method comments
+                  $pattern = "/\/\*\*((.|\n)*?)\*\//";
+                  preg_match_all($pattern, $comment, $matches);
+                  if(count($matches[1]))
+                    $comment = $matches[1][0];
+
                   // creating temporary lines array
                   $lines = explode("\n", $comment);
 

Modified: plugins/sfApplicationMapPlugin/trunk/package.xml
===================================================================
--- plugins/sfApplicationMapPlugin/trunk/package.xml    2010-05-02 12:00:47 UTC 
(rev 29337)
+++ plugins/sfApplicationMapPlugin/trunk/package.xml    2010-05-02 12:10:00 UTC 
(rev 29338)
@@ -10,10 +10,10 @@
   <email>[email protected]</email>
   <active>yes</active>
  </lead>
- <date>2010-05-02</date>
+ <date>2010-05-07</date>
  <time>11:00:00</time>
  <version>
-   <release>1.2.0</release>
+   <release>1.2.1</release>
    <api>1.0.0</api>
  </version>
  <stability>
@@ -68,6 +68,23 @@
 
    <release>
     <version>
+     <release>1.2.1</release>
+     <api>1.0.0</api>
+    </version>
+    <stability>
+     <release>stable</release>
+     <api>stable</api>
+    </stability>
+    <license uri="http://www.symfony-project.org/license";>MIT license</license>
+    <date>2010-05-07</date>
+    <license>MIT</license>
+    <notes>
+     * fixed bug reported by Kamil Kraśnik (wrong comment included when used 
non-execute methods)
+    </notes>
+   </release>
+
+   <release>
+    <version>
      <release>1.2.0</release>
      <api>1.0.0</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