Author: Ruslan Lisnyk
Date: 2006-01-12 17:45:00 +0100 (Thu, 12 Jan 2006)
New Revision: 1798

Log:
#- Fixed wrong usage of @see tag: @see tag cannot be inline, use @link tag 
instead.

Modified:
   packages/ConsoleTools/releases/1.0beta1/src/exceptions/output_exception.php
   
packages/ConsoleTools/releases/1.0beta1/src/exceptions/parameter_exception.php
   packages/Database/trunk/src/handler.php
   packages/Execution/releases/1.0beta1/src/exceptions/execution_exception.php
   packages/Execution/releases/1.0beta2/src/exceptions/execution_exception.php
   packages/Execution/trunk/src/exceptions/exception.php
   packages/Http/trunk/src/url.php
   packages/Mail/releases/1.0beta1/src/interfaces/part.php
   packages/Mail/releases/1.0beta2/src/interfaces/part.php
   packages/UserInput/releases/1.0beta1/src/exceptions/input_form_exception.php

Modified: 
packages/ConsoleTools/releases/1.0beta1/src/exceptions/output_exception.php
===================================================================
--- packages/ConsoleTools/releases/1.0beta1/src/exceptions/output_exception.php 
2006-01-12 16:40:02 UTC (rev 1797)
+++ packages/ConsoleTools/releases/1.0beta1/src/exceptions/output_exception.php 
2006-01-12 16:45:00 UTC (rev 1798)
@@ -10,8 +10,8 @@
  */
 
 /**
- * General exception for use in [EMAIL PROTECTED] ezcConsoleOutput} class.
- * 
+ * General exception for use in [EMAIL PROTECTED] ezcConsoleOutput} class.
+ *
  * @package ConsoleTools
  * @version 1.0beta1
  */

Modified: 
packages/ConsoleTools/releases/1.0beta1/src/exceptions/parameter_exception.php
===================================================================
--- 
packages/ConsoleTools/releases/1.0beta1/src/exceptions/parameter_exception.php  
    2006-01-12 16:40:02 UTC (rev 1797)
+++ 
packages/ConsoleTools/releases/1.0beta1/src/exceptions/parameter_exception.php  
    2006-01-12 16:45:00 UTC (rev 1798)
@@ -10,10 +10,10 @@
  */
 
 /**
- * General exception for use in [EMAIL PROTECTED] ezcConsoleParameter} class.
+ * General exception for use in [EMAIL PROTECTED] ezcConsoleParameter} class.
  * Adds an additional field 'param' to the exception which indicates
  * with which parameter something went wrong.
- * 
+ *
  * @package ConsoleTools
  * @version 1.0beta1
  */
@@ -52,7 +52,7 @@
      */
     const ARGUMENTS_NOT_ALLOWED = 8;
     /**
-     * Parameter definition string was not well formed. 
+     * Parameter definition string was not well formed.
      */
     const PARAMETER_STRING_NOT_WELLFORMED = 9;
 
@@ -65,7 +65,7 @@
      * @var string
      */
     public $paramName;
-    
+
     /**
      * Constructor
      * The constructor additionally needs a parameter name, which is

Modified: packages/Database/trunk/src/handler.php
===================================================================
--- packages/Database/trunk/src/handler.php     2006-01-12 16:40:02 UTC (rev 
1797)
+++ packages/Database/trunk/src/handler.php     2006-01-12 16:45:00 UTC (rev 
1798)
@@ -122,7 +122,7 @@
     /**
      * Begins a transaction.
      *
-     * Wraps [EMAIL PROTECTED] begin()} for PDO compatibility.
+     * Wraps [EMAIL PROTECTED] begin()} for PDO compatibility.
      *
      * @return bool
      */

Modified: 
packages/Execution/releases/1.0beta1/src/exceptions/execution_exception.php
===================================================================
--- packages/Execution/releases/1.0beta1/src/exceptions/execution_exception.php 
2006-01-12 16:40:02 UTC (rev 1797)
+++ packages/Execution/releases/1.0beta1/src/exceptions/execution_exception.php 
2006-01-12 16:45:00 UTC (rev 1798)
@@ -7,8 +7,8 @@
  */
 
 /**
- * General exception for use in [EMAIL PROTECTED] ezcExecution} class.
- * 
+ * General exception for use in [EMAIL PROTECTED] ezcExecution} class.
+ *
  * @package Execution
  */
 class ezcExecutionException extends Exception

Modified: 
packages/Execution/releases/1.0beta2/src/exceptions/execution_exception.php
===================================================================
--- packages/Execution/releases/1.0beta2/src/exceptions/execution_exception.php 
2006-01-12 16:40:02 UTC (rev 1797)
+++ packages/Execution/releases/1.0beta2/src/exceptions/execution_exception.php 
2006-01-12 16:45:00 UTC (rev 1798)
@@ -7,8 +7,8 @@
  */
 
 /**
- * General exception for use in [EMAIL PROTECTED] ezcExecution} class.
- * 
+ * General exception for use in [EMAIL PROTECTED] ezcExecution} class.
+ *
  * @package Execution
  */
 class ezcExecutionException extends Exception

Modified: packages/Execution/trunk/src/exceptions/exception.php
===================================================================
--- packages/Execution/trunk/src/exceptions/exception.php       2006-01-12 
16:40:02 UTC (rev 1797)
+++ packages/Execution/trunk/src/exceptions/exception.php       2006-01-12 
16:45:00 UTC (rev 1798)
@@ -7,8 +7,8 @@
  */
 
 /**
- * General exception for use in [EMAIL PROTECTED] ezcExecution} class.
- * 
+ * General exception for use in [EMAIL PROTECTED] ezcExecution} class.
+ *
  * @package Execution
  */
 abstract class ezcExecutionException extends ezcBaseException

Modified: packages/Http/trunk/src/url.php
===================================================================
--- packages/Http/trunk/src/url.php     2006-01-12 16:40:02 UTC (rev 1797)
+++ packages/Http/trunk/src/url.php     2006-01-12 16:45:00 UTC (rev 1798)
@@ -219,13 +219,12 @@
     }
 
     /**
-     * Adds the prefix $prefix with the identifier $prefixName to the list of 
avaliable
-     * prefixes.
+     * Adds the prefix $prefix with the identifier $prefixName to the list of 
avaliable prefixes.
      *
      * $defaultQuotingStyle can be used to set the default quoting style for 
this prefix.
      * The default is not to add any quotes.
      *
-     * You can prepend a URI with this prefix later using [EMAIL PROTECTED] 
prepend}
+     * You can prepend a URI with this prefix later using [EMAIL PROTECTED] 
prepend}.
      *
      * @param string $prefixName
      * @param string $prefix

Modified: packages/Mail/releases/1.0beta1/src/interfaces/part.php
===================================================================
--- packages/Mail/releases/1.0beta1/src/interfaces/part.php     2006-01-12 
16:40:02 UTC (rev 1797)
+++ packages/Mail/releases/1.0beta1/src/interfaces/part.php     2006-01-12 
16:45:00 UTC (rev 1798)
@@ -10,9 +10,10 @@
 
 /**
  * Base class for all mail parts.
+ *
  * This base class provides functionality to store headers and to generate
  * the mail part. Implementations of this class must handle the body of that
- * parts themselves. They must also implement [EMAIL PROTECTED] 
generateBody()} which is
+ * parts themselves. They must also implement [EMAIL PROTECTED] 
generateBody()} which is
  * called when the message part is generated.
  *
  * @package Mail

Modified: packages/Mail/releases/1.0beta2/src/interfaces/part.php
===================================================================
--- packages/Mail/releases/1.0beta2/src/interfaces/part.php     2006-01-12 
16:40:02 UTC (rev 1797)
+++ packages/Mail/releases/1.0beta2/src/interfaces/part.php     2006-01-12 
16:45:00 UTC (rev 1798)
@@ -13,7 +13,7 @@
  *
  * This base class provides functionality to store headers and to generate
  * the mail part. Implementations of this class must handle the body of that
- * parts themselves. They must also implement [EMAIL PROTECTED] 
generateBody()} which is
+ * parts themselves. They must also implement [EMAIL PROTECTED] 
generateBody()} which is
  * called when the message part is generated.
  *
  * @package Mail

Modified: 
packages/UserInput/releases/1.0beta1/src/exceptions/input_form_exception.php
===================================================================
--- 
packages/UserInput/releases/1.0beta1/src/exceptions/input_form_exception.php    
    2006-01-12 16:40:02 UTC (rev 1797)
+++ 
packages/UserInput/releases/1.0beta1/src/exceptions/input_form_exception.php    
    2006-01-12 16:45:00 UTC (rev 1798)
@@ -7,7 +7,7 @@
  */
 
 /**
- * General exception for use in [EMAIL PROTECTED] ezcUserInput} class.
+ * General exception for use in [EMAIL PROTECTED] ezcUserInput} class.
  *
  * @package UserInput
  * @version 1.0beta1

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to