Author: Derick Rethans Date: 2007-05-07 09:36:13 +0200 (Mon, 07 May 2007) New Revision: 5096
Log: - Released Configuration version 1.2beta1 Added: releases/Configuration/1.2beta1/ releases/Configuration/1.2beta1/ChangeLog Removed: releases/Configuration/1.2beta1/ChangeLog Modified: release-info/latest releases/Configuration/1.2beta1/src/array/array_reader.php releases/Configuration/1.2beta1/src/array/array_writer.php releases/Configuration/1.2beta1/src/configuration.php releases/Configuration/1.2beta1/src/configuration_autoload.php releases/Configuration/1.2beta1/src/configuration_manager.php releases/Configuration/1.2beta1/src/exceptions/exception.php releases/Configuration/1.2beta1/src/exceptions/group_exists_already.php releases/Configuration/1.2beta1/src/exceptions/invalid_reader_class.php releases/Configuration/1.2beta1/src/exceptions/invalid_suffix.php releases/Configuration/1.2beta1/src/exceptions/manager_no_init.php releases/Configuration/1.2beta1/src/exceptions/no_config.php releases/Configuration/1.2beta1/src/exceptions/no_config_object.php releases/Configuration/1.2beta1/src/exceptions/parse_error.php releases/Configuration/1.2beta1/src/exceptions/read_failed.php releases/Configuration/1.2beta1/src/exceptions/setting_wrong_type.php releases/Configuration/1.2beta1/src/exceptions/settingname_not_string.php releases/Configuration/1.2beta1/src/exceptions/unknown_config.php releases/Configuration/1.2beta1/src/exceptions/unknown_group.php releases/Configuration/1.2beta1/src/exceptions/unknown_setting.php releases/Configuration/1.2beta1/src/exceptions/write_failed.php releases/Configuration/1.2beta1/src/file_reader.php releases/Configuration/1.2beta1/src/file_writer.php releases/Configuration/1.2beta1/src/ini/ini_parser.php releases/Configuration/1.2beta1/src/ini/ini_reader.php releases/Configuration/1.2beta1/src/ini/ini_writer.php releases/Configuration/1.2beta1/src/interfaces/reader.php releases/Configuration/1.2beta1/src/interfaces/writer.php releases/Configuration/1.2beta1/src/structs/ini_item.php releases/Configuration/1.2beta1/src/structs/validation_item.php releases/Configuration/1.2beta1/src/validation_result.php releases/Configuration/1.2beta1/tests/configuration_array_writer_test.php releases/Configuration/1.2beta1/tests/configuration_ini_parser_test.php releases/Configuration/1.2beta1/tests/configuration_ini_reader_test.php releases/Configuration/1.2beta1/tests/configuration_ini_writer_test.php releases/Configuration/1.2beta1/tests/configuration_manager_delayed_init_test.php releases/Configuration/1.2beta1/tests/configuration_manager_test.php releases/Configuration/1.2beta1/tests/configuration_test.php releases/Configuration/1.2beta1/tests/suite.php Modified: release-info/latest =================================================================== --- release-info/latest 2007-05-07 07:35:49 UTC (rev 5095) +++ release-info/latest 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ Archive: 1.2.1 Base: 1.3beta1 Cache: 1.2beta1 -Configuration: 1.1 +Configuration: 1.2beta1 ConsoleTools: 1.2 Database: 1.2 DatabaseSchema: 1.1 Copied: releases/Configuration/1.2beta1 (from rev 5084, trunk/Configuration) Deleted: releases/Configuration/1.2beta1/ChangeLog =================================================================== --- trunk/Configuration/ChangeLog 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/ChangeLog 2007-05-07 07:36:13 UTC (rev 5096) @@ -1,138 +0,0 @@ -1.2beta1 - [RELEASEDATE] -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Implemented issue #9965: Support for delayed initialization through - ezcBaseInit. -- Implemented issue #10457: Unclear what $name in getSetting() of - Configuration component means. -- Added the ezcConfigurationManager::reset() method that returns the - manager to its unintialized state. -- Fixed issue #10110: Warnings in configuration tests with the posix extension - is not enabled. - - -1.1 - Monday 18 December 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Fixed issue #9819: Let all components deal with the ezcBaseAutoloadException - properly. - - -1.1beta1 - Monday 20 November 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Added feature #9169: Ini files can also have comments that start with an ; - now - instead of only using # as comment marker. - - -1.0.4 - Monday 09 October 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Fixed a bug where the class name ezcConfigurationUnknownSetting was used - instead of the correct name ezcConfigurationUnknownSettingException. - - -1.0.3 - Monday 28 August 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Refactored to use new ezcBaseStruct class to inherit all the structs from. - - -1.0.2 - Monday 12 June 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Added a check to insure that the init method is called before fetching a - reader in the manager. If the init method was not called then an - ezcConfigurationManagerNotInitializedException will be thrown. - - -1.0.1 - Monday 20 February 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Fixed bug #7855: Ini value not followed by newline sequence is not - recognized. - - -1.0 - Monday 30 January 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Fixed documentation regarding when which exception is thrown. - -ezcConfigurationManager -======================= - -- Added getSettingsAsList() method to retrieve a group of settings but without - their names being used as keys in the returned array. This allows the list() - = $manager->getSettingsAsList( $name, $group, $settingsArray() ); syntax. - - -1.0rc1 - Monday 16 January 2006 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Changed exception behavior. All errors will now throw a different exception - class. - -ezcConfigurationFileWriter -========================== - -- Fixed generation of file names to include a . before appending the suffix. -- Fixed a spelling error when throwing an exception in case a file could not - be written to. - - -1.0beta2 - Wednesday 21 December 2005 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -ezcConfiguration -================ - -- Added implementation of getGroupNames() that returns all group names from - a configuration file. -- Changed method names: - - * allComments() to getAllComments() - * allSettings() to getAllSettings() - * arraySetting() to getArraySetting() - * boolSetting() to getBoolSetting() - * comments() to getComments() - * comment() to getComment() - * floatSetting() to getFloatSetting() - * intSetting() to getIntSetting() - * numberSetting() to getNumberSetting() - * settingNames() to getSettingNames() - * settingsInGroup() to getSettingsInGroup() - * settings() to getSettings() - * setting() to getSetting() - * stringSetting() to getStringSetting() - -ezcConfigurationManager -======================= - -- Changed method names: - - * arraySetting() to getArraySetting() - * boolSetting() to getBoolSetting() - * numberSetting() to getNumberSetting() - * settings() to getSettings() - * setting() to getSetting() - * stringSetting() to getStringSetting() - -ezcConfigurationArrayReader -=========================== - -- Changed method name: - - * timestamp() to getTimestamp() - -ezcConfigurationIniReader -========================= - -- Changed method name: - - * timestamp() to getTimestamp() - - -1.0beta1 - [RELEASEDATE] -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Initial release of this package. Copied: releases/Configuration/1.2beta1/ChangeLog (from rev 5085, trunk/Configuration/ChangeLog) =================================================================== --- trunk/Configuration/ChangeLog 2007-05-07 07:04:39 UTC (rev 5085) +++ releases/Configuration/1.2beta1/ChangeLog 2007-05-07 07:36:13 UTC (rev 5096) @@ -0,0 +1,138 @@ +1.2beta1 - Monday 07 May 2007 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Implemented issue #9965: Support for delayed initialization through + ezcBaseInit. +- Implemented issue #10457: Unclear what $name in getSetting() of + Configuration component means. +- Added the ezcConfigurationManager::reset() method that returns the + manager to its uninitialized state. +- Fixed issue #10110: Warnings in configuration tests with the posix extension + is not enabled. + + +1.1 - Monday 18 December 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Fixed issue #9819: Let all components deal with the ezcBaseAutoloadException + properly. + + +1.1beta1 - Monday 20 November 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Added feature #9169: Ini files can also have comments that start with an ; + now - instead of only using # as comment marker. + + +1.0.4 - Monday 09 October 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Fixed a bug where the class name ezcConfigurationUnknownSetting was used + instead of the correct name ezcConfigurationUnknownSettingException. + + +1.0.3 - Monday 28 August 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Refactored to use new ezcBaseStruct class to inherit all the structs from. + + +1.0.2 - Monday 12 June 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Added a check to insure that the init method is called before fetching a + reader in the manager. If the init method was not called then an + ezcConfigurationManagerNotInitializedException will be thrown. + + +1.0.1 - Monday 20 February 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Fixed bug #7855: Ini value not followed by newline sequence is not + recognized. + + +1.0 - Monday 30 January 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Fixed documentation regarding when which exception is thrown. + +ezcConfigurationManager +======================= + +- Added getSettingsAsList() method to retrieve a group of settings but without + their names being used as keys in the returned array. This allows the list() + = $manager->getSettingsAsList( $name, $group, $settingsArray() ); syntax. + + +1.0rc1 - Monday 16 January 2006 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Changed exception behavior. All errors will now throw a different exception + class. + +ezcConfigurationFileWriter +========================== + +- Fixed generation of file names to include a . before appending the suffix. +- Fixed a spelling error when throwing an exception in case a file could not + be written to. + + +1.0beta2 - Wednesday 21 December 2005 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +ezcConfiguration +================ + +- Added implementation of getGroupNames() that returns all group names from + a configuration file. +- Changed method names: + + * allComments() to getAllComments() + * allSettings() to getAllSettings() + * arraySetting() to getArraySetting() + * boolSetting() to getBoolSetting() + * comments() to getComments() + * comment() to getComment() + * floatSetting() to getFloatSetting() + * intSetting() to getIntSetting() + * numberSetting() to getNumberSetting() + * settingNames() to getSettingNames() + * settingsInGroup() to getSettingsInGroup() + * settings() to getSettings() + * setting() to getSetting() + * stringSetting() to getStringSetting() + +ezcConfigurationManager +======================= + +- Changed method names: + + * arraySetting() to getArraySetting() + * boolSetting() to getBoolSetting() + * numberSetting() to getNumberSetting() + * settings() to getSettings() + * setting() to getSetting() + * stringSetting() to getStringSetting() + +ezcConfigurationArrayReader +=========================== + +- Changed method name: + + * timestamp() to getTimestamp() + +ezcConfigurationIniReader +========================= + +- Changed method name: + + * timestamp() to getTimestamp() + + +1.0beta1 - [RELEASEDATE] +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Initial release of this package. Modified: releases/Configuration/1.2beta1/src/array/array_reader.php =================================================================== --- trunk/Configuration/src/array/array_reader.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/array/array_reader.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationArrayReader class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -73,7 +73,7 @@ * to cache the content for even faster retrieval. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @mainclass */ class ezcConfigurationArrayReader extends ezcConfigurationFileReader Modified: releases/Configuration/1.2beta1/src/array/array_writer.php =================================================================== --- trunk/Configuration/src/array/array_writer.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/array/array_writer.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationArrayWriter class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -41,7 +41,7 @@ * to cache the content for even faster retrieval. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @mainclass */ class ezcConfigurationArrayWriter extends ezcConfigurationFileWriter Modified: releases/Configuration/1.2beta1/src/configuration.php =================================================================== --- trunk/Configuration/src/configuration.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/configuration.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfiguration class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -91,7 +91,7 @@ * settings the ezcConfigurationManager class might be of interest. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @mainclass */ class ezcConfiguration Modified: releases/Configuration/1.2beta1/src/configuration_autoload.php =================================================================== --- trunk/Configuration/src/configuration_autoload.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/configuration_autoload.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration */ Modified: releases/Configuration/1.2beta1/src/configuration_manager.php =================================================================== --- trunk/Configuration/src/configuration_manager.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/configuration_manager.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationManager class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -39,7 +39,7 @@ * * @package Configuration * @mainclass - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationManager { Modified: releases/Configuration/1.2beta1/src/exceptions/exception.php =================================================================== --- trunk/Configuration/src/exceptions/exception.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/exception.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * component. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ abstract class ezcConfigurationException extends ezcBaseException { Modified: releases/Configuration/1.2beta1/src/exceptions/group_exists_already.php =================================================================== --- trunk/Configuration/src/exceptions/group_exists_already.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/group_exists_already.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * exists. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationGroupExistsAlreadyException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/invalid_reader_class.php =================================================================== --- trunk/Configuration/src/exceptions/invalid_reader_class.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/invalid_reader_class.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationIntalidReaderClassException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if an invalid class is passed as INI reader to the manager. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationInvalidReaderClassException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/invalid_suffix.php =================================================================== --- trunk/Configuration/src/exceptions/invalid_suffix.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/invalid_suffix.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * is impossible to read or write using the location values. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationInvalidSuffixException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/manager_no_init.php =================================================================== --- trunk/Configuration/src/exceptions/manager_no_init.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/manager_no_init.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationManagerNotInitializedException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if an invalid class is passed as INI reader to the manager. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationManagerNotInitializedException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/no_config.php =================================================================== --- trunk/Configuration/src/exceptions/no_config.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/no_config.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * Cannot continue operation. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationNoConfigException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/no_config_object.php =================================================================== --- trunk/Configuration/src/exceptions/no_config_object.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/no_config_object.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * on. The operation cannot continue with this object. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationNoConfigObjectException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/parse_error.php =================================================================== --- trunk/Configuration/src/exceptions/parse_error.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/parse_error.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * parser was not in validation mode. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationParseErrorException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/read_failed.php =================================================================== --- trunk/Configuration/src/exceptions/read_failed.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/read_failed.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if the read operation for the configuration failed. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationReadFailedException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/setting_wrong_type.php =================================================================== --- trunk/Configuration/src/exceptions/setting_wrong_type.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/setting_wrong_type.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -13,7 +13,7 @@ * type. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationSettingWrongTypeException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/settingname_not_string.php =================================================================== --- trunk/Configuration/src/exceptions/settingname_not_string.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/settingname_not_string.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if the name of a setting is not a string. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationSettingnameNotStringException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/unknown_config.php =================================================================== --- trunk/Configuration/src/exceptions/unknown_config.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/unknown_config.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if the specified configuration does not exist in the system. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationUnknownConfigException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/unknown_group.php =================================================================== --- trunk/Configuration/src/exceptions/unknown_group.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/unknown_group.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if the specified group does not exist in the settings. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationUnknownGroupException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/unknown_setting.php =================================================================== --- trunk/Configuration/src/exceptions/unknown_setting.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/unknown_setting.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if the specified setting does not exist in the settings. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationUnknownSettingException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/exceptions/write_failed.php =================================================================== --- trunk/Configuration/src/exceptions/write_failed.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/exceptions/write_failed.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationException class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * Exception that is thrown if the write operation for the configuration failed. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationWriteFailedException extends ezcConfigurationException { Modified: releases/Configuration/1.2beta1/src/file_reader.php =================================================================== --- trunk/Configuration/src/file_reader.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/file_reader.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationFileReader class. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -17,7 +17,7 @@ * needs to handle the actual serialization. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ abstract class ezcConfigurationFileReader extends ezcConfigurationReader { Modified: releases/Configuration/1.2beta1/src/file_writer.php =================================================================== --- trunk/Configuration/src/file_writer.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/file_writer.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationFileWriter class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -18,7 +18,7 @@ * serialization. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ abstract class ezcConfigurationFileWriter extends ezcConfigurationWriter { Modified: releases/Configuration/1.2beta1/src/ini/ini_parser.php =================================================================== --- trunk/Configuration/src/ini/ini_parser.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/ini/ini_parser.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationIniParser class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * This class provides functionality for parsing INI files * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationIniParser implements Iterator { Modified: releases/Configuration/1.2beta1/src/ini/ini_reader.php =================================================================== --- trunk/Configuration/src/ini/ini_reader.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/ini/ini_reader.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationIniReader class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -74,7 +74,7 @@ * operation fails somehow. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @mainclass */ class ezcConfigurationIniReader extends ezcConfigurationFileReader Modified: releases/Configuration/1.2beta1/src/ini/ini_writer.php =================================================================== --- trunk/Configuration/src/ini/ini_writer.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/ini/ini_writer.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationIniWriter class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -36,7 +36,7 @@ * operation fails somehow. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @mainclass */ class ezcConfigurationIniWriter extends ezcConfigurationFileWriter Modified: releases/Configuration/1.2beta1/src/interfaces/reader.php =================================================================== --- trunk/Configuration/src/interfaces/reader.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/interfaces/reader.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationReader class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -35,7 +35,7 @@ * </code> * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ abstract class ezcConfigurationReader { Modified: releases/Configuration/1.2beta1/src/interfaces/writer.php =================================================================== --- trunk/Configuration/src/interfaces/writer.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/interfaces/writer.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationWriter class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -36,7 +36,7 @@ * </code> * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ abstract class ezcConfigurationWriter { Modified: releases/Configuration/1.2beta1/src/structs/ini_item.php =================================================================== --- trunk/Configuration/src/structs/ini_item.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/structs/ini_item.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration */ Modified: releases/Configuration/1.2beta1/src/structs/validation_item.php =================================================================== --- trunk/Configuration/src/structs/validation_item.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/structs/validation_item.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationValidationItem class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -18,7 +18,7 @@ * @see ezcConfigurationValidationResult for more details. * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationValidationItem extends ezcBaseStruct { Modified: releases/Configuration/1.2beta1/src/validation_result.php =================================================================== --- trunk/Configuration/src/validation_result.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/src/validation_result.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -3,7 +3,7 @@ * File containing the ezcConfigurationValidationResult class * * @package Configuration - * @version //autogen// + * @version 1.2beta1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -45,7 +45,7 @@ * </code> * * @package Configuration - * @version //autogen// + * @version 1.2beta1 */ class ezcConfigurationValidationResult { Modified: releases/Configuration/1.2beta1/tests/configuration_array_writer_test.php =================================================================== --- trunk/Configuration/tests/configuration_array_writer_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_array_writer_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/configuration_ini_parser_test.php =================================================================== --- trunk/Configuration/tests/configuration_ini_parser_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_ini_parser_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/configuration_ini_reader_test.php =================================================================== --- trunk/Configuration/tests/configuration_ini_reader_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_ini_reader_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/configuration_ini_writer_test.php =================================================================== --- trunk/Configuration/tests/configuration_ini_writer_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_ini_writer_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/configuration_manager_delayed_init_test.php =================================================================== --- trunk/Configuration/tests/configuration_manager_delayed_init_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_manager_delayed_init_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/configuration_manager_test.php =================================================================== --- trunk/Configuration/tests/configuration_manager_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_manager_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/configuration_test.php =================================================================== --- trunk/Configuration/tests/configuration_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/configuration_test.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests Modified: releases/Configuration/1.2beta1/tests/suite.php =================================================================== --- trunk/Configuration/tests/suite.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Configuration/1.2beta1/tests/suite.php 2007-05-07 07:36:13 UTC (rev 5096) @@ -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.2beta1 * @filesource * @package Configuration * @subpackage Tests -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
