Author: dr Date: Mon Dec 17 10:07:17 2007 New Revision: 7010 Log: - Released Execution version 1.4
Added: releases/Execution/1.4/ - copied from r6987, trunk/Execution/ releases/Execution/1.4/ChangeLog - copied unchanged from r6988, trunk/Execution/ChangeLog Modified: release-info/latest releases/Execution/1.4/src/exceptions/already_initialized.php releases/Execution/1.4/src/exceptions/exception.php releases/Execution/1.4/src/exceptions/invalid_callback.php releases/Execution/1.4/src/exceptions/not_initialized.php releases/Execution/1.4/src/exceptions/wrong_class.php releases/Execution/1.4/src/execution.php releases/Execution/1.4/src/execution_autoload.php releases/Execution/1.4/src/handlers/basic_handler.php releases/Execution/1.4/src/interfaces/execution_handler.php releases/Execution/1.4/tests/execution_init_test.php releases/Execution/1.4/tests/suite.php releases/Execution/1.4/tests/test_classes/test_classes.php Modified: release-info/latest ============================================================================== --- release-info/latest [iso-8859-1] (original) +++ release-info/latest [iso-8859-1] Mon Dec 17 10:07:17 2007 @@ -12,7 +12,7 @@ Debug: 1.1 EventLog: 1.2 EventLogDatabaseTiein: 1.0.2 -Execution: 1.1beta1 +Execution: 1.4 Feed: 1.0beta1 File: 1.2 Graph: 1.2 Modified: releases/Execution/1.4/src/exceptions/already_initialized.php ============================================================================== --- releases/Execution/1.4/src/exceptions/already_initialized.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/exceptions/already_initialized.php [iso-8859-1] Mon Dec 17 10:07:17 2007 @@ -1,7 +1,7 @@ <?php /** * @package Execution - * @version //autogen// + * @version 1.4 * @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.4 */ class ezcExecutionAlreadyInitializedException extends ezcExecutionException { Modified: releases/Execution/1.4/src/exceptions/exception.php ============================================================================== --- releases/Execution/1.4/src/exceptions/exception.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/exceptions/exception.php [iso-8859-1] Mon Dec 17 10:07:17 2007 @@ -1,7 +1,7 @@ <?php /** * @package Execution - * @version //autogen// + * @version 1.4 * @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.4 */ abstract class ezcExecutionException extends ezcBaseException { Modified: releases/Execution/1.4/src/exceptions/invalid_callback.php ============================================================================== --- releases/Execution/1.4/src/exceptions/invalid_callback.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/exceptions/invalid_callback.php [iso-8859-1] Mon Dec 17 10:07:17 2007 @@ -1,7 +1,7 @@ <?php /** * @package Execution - * @version //autogen// + * @version 1.4 * @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.4 */ class ezcExecutionInvalidCallbackException extends ezcExecutionException { Modified: releases/Execution/1.4/src/exceptions/not_initialized.php ============================================================================== --- releases/Execution/1.4/src/exceptions/not_initialized.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/exceptions/not_initialized.php [iso-8859-1] Mon Dec 17 10:07:17 2007 @@ -1,7 +1,7 @@ <?php /** * @package Execution - * @version //autogen// + * @version 1.4 * @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.4 */ class ezcExecutionNotInitializedException extends ezcExecutionException { Modified: releases/Execution/1.4/src/exceptions/wrong_class.php ============================================================================== --- releases/Execution/1.4/src/exceptions/wrong_class.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/exceptions/wrong_class.php [iso-8859-1] Mon Dec 17 10:07:17 2007 @@ -1,7 +1,7 @@ <?php /** * @package Execution - * @version //autogen// + * @version 1.4 * @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.4 */ class ezcExecutionWrongClassException extends ezcExecutionException { Modified: releases/Execution/1.4/src/execution.php ============================================================================== --- releases/Execution/1.4/src/execution.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/execution.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution */ @@ -37,7 +37,7 @@ * </code> * * @package Execution - * @version //autogentag// + * @version 1.4 * @mainclass */ class ezcExecution Modified: releases/Execution/1.4/src/execution_autoload.php ============================================================================== --- releases/Execution/1.4/src/execution_autoload.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/execution_autoload.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution */ Modified: releases/Execution/1.4/src/handlers/basic_handler.php ============================================================================== --- releases/Execution/1.4/src/handlers/basic_handler.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/handlers/basic_handler.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution */ @@ -15,7 +15,7 @@ * implement the ezcExecutionErrorHandler interface. * * @package Execution - * @version //autogentag// + * @version 1.4 */ class ezcExecutionBasicErrorHandler implements ezcExecutionErrorHandler { Modified: releases/Execution/1.4/src/interfaces/execution_handler.php ============================================================================== --- releases/Execution/1.4/src/interfaces/execution_handler.php [iso-8859-1] (original) +++ releases/Execution/1.4/src/interfaces/execution_handler.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution */ @@ -12,7 +12,7 @@ * * This interface describes the methods that an Execution callback handler * should implement. - * @version //autogentag// + * @version 1.4 * * For an example see [EMAIL PROTECTED] ezcExecution}. * Modified: releases/Execution/1.4/tests/execution_init_test.php ============================================================================== --- releases/Execution/1.4/tests/execution_init_test.php [iso-8859-1] (original) +++ releases/Execution/1.4/tests/execution_init_test.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution * @subpackage Tests Modified: releases/Execution/1.4/tests/suite.php ============================================================================== --- releases/Execution/1.4/tests/suite.php [iso-8859-1] (original) +++ releases/Execution/1.4/tests/suite.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution * @subpackage Tests Modified: releases/Execution/1.4/tests/test_classes/test_classes.php ============================================================================== --- releases/Execution/1.4/tests/test_classes/test_classes.php [iso-8859-1] (original) +++ releases/Execution/1.4/tests/test_classes/test_classes.php [iso-8859-1] Mon Dec 17 10:07:17 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.4 * @filesource * @package Execution * @subpackage Tests -- svn-components mailing list svn-components@lists.ez.no http://lists.ez.no/mailman/listinfo/svn-components