Author: dr
Date: Mon Nov 12 08:32:40 2007
New Revision: 6695
Log:
- Released Execution version 1.1alpha1
Added:
releases/Execution/1.1alpha1/
- copied from r6692, trunk/Execution/
Modified:
release-info/latest
releases/Execution/1.1alpha1/ChangeLog
releases/Execution/1.1alpha1/src/exceptions/already_initialized.php
releases/Execution/1.1alpha1/src/exceptions/exception.php
releases/Execution/1.1alpha1/src/exceptions/invalid_callback.php
releases/Execution/1.1alpha1/src/exceptions/not_initialized.php
releases/Execution/1.1alpha1/src/exceptions/wrong_class.php
releases/Execution/1.1alpha1/src/execution.php
releases/Execution/1.1alpha1/src/execution_autoload.php
releases/Execution/1.1alpha1/src/handlers/basic_handler.php
releases/Execution/1.1alpha1/src/interfaces/execution_handler.php
releases/Execution/1.1alpha1/tests/execution_init_test.php
releases/Execution/1.1alpha1/tests/suite.php
releases/Execution/1.1alpha1/tests/test_classes/test_classes.php
trunk/Execution/ChangeLog
Modified: release-info/latest
==============================================================================
--- release-info/latest [iso-8859-1] (original)
+++ release-info/latest [iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -12,7 +12,7 @@
Debug: 1.1
EventLog: 1.2alpha1
EventLogDatabaseTiein: 1.0.2
-Execution: 1.0.4
+Execution: 1.1alpha1
Feed: 1.0beta1
File: 1.2alpha1
Graph: 1.2alpha1
Modified: releases/Execution/1.1alpha1/ChangeLog
==============================================================================
--- releases/Execution/1.1alpha1/ChangeLog [iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/ChangeLog [iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -1,4 +1,4 @@
-1.1alpha1 - [RELEASEDATE]
+1.1alpha1 - Monday 12 November 2007
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Implemented change #10677: Removed the throwing of an exception of the
Modified: releases/Execution/1.1alpha1/src/exceptions/already_initialized.php
==============================================================================
--- releases/Execution/1.1alpha1/src/exceptions/already_initialized.php
[iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/src/exceptions/already_initialized.php
[iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -1,7 +1,7 @@
<?php
/**
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -10,7 +10,7 @@
* Thrown when the Execution framework was already initialized.
*
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
*/
class ezcExecutionAlreadyInitializedException extends ezcExecutionException
{
Modified: releases/Execution/1.1alpha1/src/exceptions/exception.php
==============================================================================
--- releases/Execution/1.1alpha1/src/exceptions/exception.php [iso-8859-1]
(original)
+++ releases/Execution/1.1alpha1/src/exceptions/exception.php [iso-8859-1] Mon
Nov 12 08:32:40 2007
@@ -1,7 +1,7 @@
<?php
/**
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -10,7 +10,7 @@
* General exception for use in [EMAIL PROTECTED] ezcExecution} class.
*
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
*/
abstract class ezcExecutionException extends ezcBaseException
{
Modified: releases/Execution/1.1alpha1/src/exceptions/invalid_callback.php
==============================================================================
--- releases/Execution/1.1alpha1/src/exceptions/invalid_callback.php
[iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/src/exceptions/invalid_callback.php
[iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -1,7 +1,7 @@
<?php
/**
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -10,7 +10,7 @@
* Thrown when an non-existend class was passed as callback handler.
*
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
*/
class ezcExecutionInvalidCallbackException extends ezcExecutionException
{
Modified: releases/Execution/1.1alpha1/src/exceptions/not_initialized.php
==============================================================================
--- releases/Execution/1.1alpha1/src/exceptions/not_initialized.php
[iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/src/exceptions/not_initialized.php
[iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -1,7 +1,7 @@
<?php
/**
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -11,7 +11,7 @@
* was called.
*
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
*/
class ezcExecutionNotInitializedException extends ezcExecutionException
{
Modified: releases/Execution/1.1alpha1/src/exceptions/wrong_class.php
==============================================================================
--- releases/Execution/1.1alpha1/src/exceptions/wrong_class.php [iso-8859-1]
(original)
+++ releases/Execution/1.1alpha1/src/exceptions/wrong_class.php [iso-8859-1]
Mon Nov 12 08:32:40 2007
@@ -1,7 +1,7 @@
<?php
/**
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -11,7 +11,7 @@
* implements the ezcExecutionErrorHandler interface.
*
* @package Execution
- * @version //autogen//
+ * @version 1.1alpha1
*/
class ezcExecutionWrongClassException extends ezcExecutionException
{
Modified: releases/Execution/1.1alpha1/src/execution.php
==============================================================================
--- releases/Execution/1.1alpha1/src/execution.php [iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/src/execution.php [iso-8859-1] Mon Nov 12
08:32:40 2007
@@ -2,7 +2,7 @@
/**
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
*/
@@ -37,7 +37,7 @@
* </code>
*
* @package Execution
- * @version //autogentag//
+ * @version 1.1alpha1
* @mainclass
*/
class ezcExecution
Modified: releases/Execution/1.1alpha1/src/execution_autoload.php
==============================================================================
--- releases/Execution/1.1alpha1/src/execution_autoload.php [iso-8859-1]
(original)
+++ releases/Execution/1.1alpha1/src/execution_autoload.php [iso-8859-1] Mon
Nov 12 08:32:40 2007
@@ -4,7 +4,7 @@
*
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
*/
Modified: releases/Execution/1.1alpha1/src/handlers/basic_handler.php
==============================================================================
--- releases/Execution/1.1alpha1/src/handlers/basic_handler.php [iso-8859-1]
(original)
+++ releases/Execution/1.1alpha1/src/handlers/basic_handler.php [iso-8859-1]
Mon Nov 12 08:32:40 2007
@@ -2,7 +2,7 @@
/**
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
*/
@@ -15,7 +15,7 @@
* implement the ezcExecutionErrorHandler interface.
*
* @package Execution
- * @version //autogentag//
+ * @version 1.1alpha1
*/
class ezcExecutionBasicErrorHandler implements ezcExecutionErrorHandler
{
Modified: releases/Execution/1.1alpha1/src/interfaces/execution_handler.php
==============================================================================
--- releases/Execution/1.1alpha1/src/interfaces/execution_handler.php
[iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/src/interfaces/execution_handler.php
[iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -2,7 +2,7 @@
/**
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
*/
@@ -12,7 +12,7 @@
*
* This interface describes the methods that an Execution callback handler
* should implement.
- * @version //autogentag//
+ * @version 1.1alpha1
*
* For an example see [EMAIL PROTECTED] ezcExecution}.
*
Modified: releases/Execution/1.1alpha1/tests/execution_init_test.php
==============================================================================
--- releases/Execution/1.1alpha1/tests/execution_init_test.php [iso-8859-1]
(original)
+++ releases/Execution/1.1alpha1/tests/execution_init_test.php [iso-8859-1] Mon
Nov 12 08:32:40 2007
@@ -2,7 +2,7 @@
/**
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
* @subpackage Tests
Modified: releases/Execution/1.1alpha1/tests/suite.php
==============================================================================
--- releases/Execution/1.1alpha1/tests/suite.php [iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/tests/suite.php [iso-8859-1] Mon Nov 12
08:32:40 2007
@@ -2,7 +2,7 @@
/**
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
* @subpackage Tests
Modified: releases/Execution/1.1alpha1/tests/test_classes/test_classes.php
==============================================================================
--- releases/Execution/1.1alpha1/tests/test_classes/test_classes.php
[iso-8859-1] (original)
+++ releases/Execution/1.1alpha1/tests/test_classes/test_classes.php
[iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -2,7 +2,7 @@
/**
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
- * @version //autogentag//
+ * @version 1.1alpha1
* @filesource
* @package Execution
* @subpackage Tests
Modified: trunk/Execution/ChangeLog
==============================================================================
--- trunk/Execution/ChangeLog [iso-8859-1] (original)
+++ trunk/Execution/ChangeLog [iso-8859-1] Mon Nov 12 08:32:40 2007
@@ -1,4 +1,4 @@
-1.1alpha1 - [RELEASEDATE]
+1.1alpha1 - Monday 12 November 2007
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Implemented change #10677: Removed the throwing of an exception of the
--
svn-components mailing list
[EMAIL PROTECTED]
http://lists.ez.no/mailman/listinfo/svn-components