Author: Derick Rethans
Date: 2006-01-30 09:16:00 +0100 (Mon, 30 Jan 2006)
New Revision: 2115
Log:
- Released ConsoleTools version 1.0
Added:
packages/ConsoleTools/releases/1.0/
packages/ConsoleTools/releases/1.0/ChangeLog
Removed:
packages/ConsoleTools/releases/1.0/ChangeLog
Modified:
packages/ConsoleTools/releases/1.0/docs/example_input.php
packages/ConsoleTools/releases/1.0/docs/example_output.php
packages/ConsoleTools/releases/1.0/docs/example_progressbar.php
packages/ConsoleTools/releases/1.0/docs/example_table.php
packages/ConsoleTools/releases/1.0/docs/example_table_2.php
packages/ConsoleTools/releases/1.0/src/console_autoload.php
packages/ConsoleTools/releases/1.0/src/exceptions/exception.php
packages/ConsoleTools/releases/1.0/src/exceptions/no_position_stored.php
packages/ConsoleTools/releases/1.0/src/exceptions/option.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_already_registered.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_arguments_violation.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_dependency_violation.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_exclusion_violation.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_mandatory_violation.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_missing_value.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_no_alias.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_not_exists.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_string_not_wellformed.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_too_many_values.php
packages/ConsoleTools/releases/1.0/src/exceptions/option_type_violation.php
packages/ConsoleTools/releases/1.0/src/input.php
packages/ConsoleTools/releases/1.0/src/input/option.php
packages/ConsoleTools/releases/1.0/src/output.php
packages/ConsoleTools/releases/1.0/src/progressbar.php
packages/ConsoleTools/releases/1.0/src/statusbar.php
packages/ConsoleTools/releases/1.0/src/structs/option_rule.php
packages/ConsoleTools/releases/1.0/src/structs/output_format.php
packages/ConsoleTools/releases/1.0/src/structs/output_formats.php
packages/ConsoleTools/releases/1.0/src/structs/output_options.php
packages/ConsoleTools/releases/1.0/src/structs/progressbar_options.php
packages/ConsoleTools/releases/1.0/src/structs/table_options.php
packages/ConsoleTools/releases/1.0/src/table.php
packages/ConsoleTools/releases/1.0/src/table/cell.php
packages/ConsoleTools/releases/1.0/src/table/row.php
packages/ConsoleTools/releases/1.0/tests/input_test.php
packages/ConsoleTools/releases/1.0/tests/output_format_test.php
packages/ConsoleTools/releases/1.0/tests/output_formats_test.php
packages/ConsoleTools/releases/1.0/tests/output_options_test.php
packages/ConsoleTools/releases/1.0/tests/output_test.php
packages/ConsoleTools/releases/1.0/tests/progressbar_test.php
packages/ConsoleTools/releases/1.0/tests/statusbar_test.php
packages/ConsoleTools/releases/1.0/tests/suite.php
packages/ConsoleTools/releases/1.0/tests/table_cell_test.php
packages/ConsoleTools/releases/1.0/tests/table_row_test.php
packages/ConsoleTools/releases/1.0/tests/table_test.php
packages/ConsoleTools/trunk/ChangeLog
Copied: packages/ConsoleTools/releases/1.0 (from rev 2111,
packages/ConsoleTools/trunk)
Deleted: packages/ConsoleTools/releases/1.0/ChangeLog
===================================================================
--- packages/ConsoleTools/trunk/ChangeLog 2006-01-30 07:48:01 UTC (rev
2111)
+++ packages/ConsoleTools/releases/1.0/ChangeLog 2006-01-30 08:16:00 UTC
(rev 2115)
@@ -1,151 +0,0 @@
-1.0 - [RELEASEDATE]
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Fixed unreported bug: ezcConsoleTableOptions struct caried deprecated
- options and missed 2 in its constructor.
-- Fixed unreported bug: Option values not properly checked for eczConsoleTable,
- ezcConsoleOutput.
-- Fixed unreported bug in ezcConsoleProgressbarOptions that disallowed option
- read access.
-- Fixed notice in ezcConsoleOptionExclusionViolationException.
-- Fixed unreported bug: ezcConsoleTable "colWrap" option not recognized
- correctly.
-- Fix unreported bug: ezcConsoleTable "defaultFormat" and
- "defaultBorderFormat" not recognized.
-
-
-1.0rc1 - Monday 16 January 2006
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Added redrawFrequency option to ezcConsoleProgressbar to allow less redraws
- than advance() is called. This allows the progress measuring of huge numbers
- without redrawing the bar each time advance() is called.
-- Added setOptions() method to ezcConsoleOutput, ezcConsoleTable,
- ezcConsoleProgressbar and ezcConsoleStatusbar.
-
-- Changed exception behavior. All errors will now throw a different exception
- class.
-- Changed default progressbar size to 78 characters (standard console width).
-- Changed submission of options to ezcConsoleOutput, ezcConsoleTable,
- ezcConsoleProgressbar and ezcConsoleStatusbar to be an array.
-- Changed value "step" to be an option in ezcConsoleProgressbar with default
- value = 1 (was a setting before).
-- Changed "successChar" and "failureChar" to be options in
- ezcConsoleStatusbar (were properties before).
-- Changed getSuccesses() to getSuccessCount() and getFailures() to
- getFailureCount() in ezcConsoleStatusbar.
-
-- Fixed unreported bug regarding rounding problems when calculating different
- measures.
-
-
-1.0beta2 - Friday 23 December 2005
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Added convenience method ezcConsoleOutput::outputLine().
- This one adds a line break after outputting the desired text and works also
- without any text to print a blank line (similar to Pascals writeln()).
-- Added option filter parameter to eczConsoleParameter::getHelp().
- This allows you to filter which parameters the information will return
- information about.
-- Added a new class ezcConsoleOption.
- This represents a single option. Before this was named parameter and an
array was
- used to structure option properties.
- Therefore changed / removed the following methods in ezcConsoleParameter
- (now ezcConsoleInput):
-
- * getParamDef() -> Deprecated & removed, since getOption() now returns the
- complete option object, including settings and value.
- * getDefaults() -> Deprecated & removed, since getOption() now returns the
- complete option object including the default.
-
-- Added new setting "mandatory" to ezcConsoleOption.
- This indicates that an option should always have submitted. Normally all
- options are optional.
-- Added method getSynopsis().
- This generates a synopsis string for the program autonmatically.
-- Added cell, row and table based format and alignment settings to
- ezcConsoleTable. This allows you to let rows and cells inherit their format
- and alignment settings. Rows inherit the format, align and (new)
- borderFormat value that were set globally, but only if they have no explicit
- value set. Cells inherit their row's format and alignment settings if they
- are not explicitly set.
-- Added <borderFormat> property to rows.
- This allows a more flexible way to specify the format that a border of a row
- should have, instead of just saying: "this is a headline row".
-- Added new alignment constant ALIGN_DEFAULT to ezcConsoleTable.
- This is the default alignment used in ezcConsoleTable objects (cell, row) to
- indicate, that the alignment setting should be inherited from the parent.
-
-- Refactored the whole package to fit into the unified layout and provide a
- much more convenient API.
-- Renamed the class ezcConsoleParameter to ezcConsoleInput.
- Reflects it's purpose much better and avoids conflicts with the acronym
- "option", which is now used in ezcConsoleOption.
- Renamed the cooperating types and methods:
-
- * ezcConsoleParameter::registerParam() to ezcConsoleInput::registerOption().
- * ezcConsoleParameter::unregisterParam()
- to ezcConsoleInput::unregisterOption().
- * ezcConsoleParameter::getParam() to ezcConsoleInput::getOption().
- * ezcConsoleParameter::getParams() to ezcConsoleInput::getOptions().
-
-- Changed to the use of structs instead of complex array structures:
-
- * ezcConsoleOptionRule (replaces old handling of dependencies and exclusions
- between options - former parameters).
- * ezcConsoleOutputFormat (to define format options).
- * ezcConsoleOutputOptions (stores the options for ezcConsoleOutput).
- * ezcConsoleProgressbarOptions (stores the options for
- ezcConsoleProgressbar).
- * eczConsoleTableOptions (stores the options for ezcConsoleTable).
-
-- Changed to the use of "extended structs" where it made sense to avoid
- complex arrays:
-
- * ezcConsoleOutputFormats (iteration and on-the-fly creation of format
- definitions in ezcConsoleOutput through
- $out->formats->{formatname}->{formatoption} = ...;)
-
-- Changed handling of parameter names in ezcConsoleInput.
- Short and long parameters are now also handled without their prefixes ("-"
- for short names and "--" for long names) everywhere.
-- Changed to use overloading property access - __get(),__set(),__isset().
- To unify access to object properties and in different other places, which
- are explicitly mentioned above (see e.g. ezcConsoleTable) where possible.
-- Changed handling of default values for ezcConsoleOption.
- Default values are now set if the parameter is not submitted at all. If an
- option that expects a value is submitted without, this results in an
- exception.
-- Changed "colAlign" option to "defaultAlign".
-- Changed handling of table structure to classes ezcConsoleTableRow and
- ezcConsoleTableCell. These allow a convenient way to create and customize
- console based tables:
-
- * $table[0][]; // creates a new cell
- * $table[2][]->format = 'important'; // creates a new cell and set's it's
- format to 'important',
- * $table[2]->align = ezcConsoleTable::ALIGN_CENTER; // sets the default
- align
-
-- Removed $cols setting from ezcConsoleTable.
- The table now knows on its own how many columns it has, when it is
- rendered.
-- Renamed ezcConsoleParameter to ezcConsoleInput.
-- Renamed methods (consistency):
-
- * ezcConsoleOutput::styleText() to ezcConsoleOutput::formatText().
- * ezcConsoleInput::fromString() to ezcConsoleInput::registerOptionString().
- * ezcConsoleInput::getValues() to ezcConsoleInput::getOptionsValues().
-
-- Fixed bug with argument handling and non-value parameters in
- ezcConsoleInput. It was not possible to sumit the name of a parameter as an
- argument after the argument seperator "-- ".
-- Fixed bug with submitting multiple parameters of the same name without
- value.
-
-
-1.0beta1 - Friday 25 November 2005
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Initial release of this package.
Copied: packages/ConsoleTools/releases/1.0/ChangeLog (from rev 2114,
packages/ConsoleTools/trunk/ChangeLog)
===================================================================
--- packages/ConsoleTools/trunk/ChangeLog 2006-01-30 08:15:17 UTC (rev
2114)
+++ packages/ConsoleTools/releases/1.0/ChangeLog 2006-01-30 08:16:00 UTC
(rev 2115)
@@ -0,0 +1,151 @@
+1.0 - Monday 30 January 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Fixed unreported bug: ezcConsoleTableOptions struct caried deprecated
+ options and missed 2 in its constructor.
+- Fixed unreported bug: Option values not properly checked for eczConsoleTable,
+ ezcConsoleOutput.
+- Fixed unreported bug: ezcConsoleProgressbarOptions disallowed option
+ read access.
+- Fixed unreported bug: ezcConsoleTable "colWrap" option not recognized
+ correctly.
+- Fixed unreported bug: ezcConsoleTable "defaultFormat" and
+ "defaultBorderFormat" not recognized.
+- Fixed notice in ezcConsoleOptionExclusionViolationException.
+
+
+1.0rc1 - Monday 16 January 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Added redrawFrequency option to ezcConsoleProgressbar to allow less redraws
+ than advance() is called. This allows the progress measuring of huge numbers
+ without redrawing the bar each time advance() is called.
+- Added setOptions() method to ezcConsoleOutput, ezcConsoleTable,
+ ezcConsoleProgressbar and ezcConsoleStatusbar.
+
+- Changed exception behavior. All errors will now throw a different exception
+ class.
+- Changed default progressbar size to 78 characters (standard console width).
+- Changed submission of options to ezcConsoleOutput, ezcConsoleTable,
+ ezcConsoleProgressbar and ezcConsoleStatusbar to be an array.
+- Changed value "step" to be an option in ezcConsoleProgressbar with default
+ value = 1 (was a setting before).
+- Changed "successChar" and "failureChar" to be options in
+ ezcConsoleStatusbar (were properties before).
+- Changed getSuccesses() to getSuccessCount() and getFailures() to
+ getFailureCount() in ezcConsoleStatusbar.
+
+- Fixed unreported bug regarding rounding problems when calculating different
+ measures.
+
+
+1.0beta2 - Friday 23 December 2005
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Added convenience method ezcConsoleOutput::outputLine().
+ This one adds a line break after outputting the desired text and works also
+ without any text to print a blank line (similar to Pascals writeln()).
+- Added option filter parameter to eczConsoleParameter::getHelp().
+ This allows you to filter which parameters the information will return
+ information about.
+- Added a new class ezcConsoleOption.
+ This represents a single option. Before this was named parameter and an
array was
+ used to structure option properties.
+ Therefore changed / removed the following methods in ezcConsoleParameter
+ (now ezcConsoleInput):
+
+ * getParamDef() -> Deprecated & removed, since getOption() now returns the
+ complete option object, including settings and value.
+ * getDefaults() -> Deprecated & removed, since getOption() now returns the
+ complete option object including the default.
+
+- Added new setting "mandatory" to ezcConsoleOption.
+ This indicates that an option should always have submitted. Normally all
+ options are optional.
+- Added method getSynopsis().
+ This generates a synopsis string for the program autonmatically.
+- Added cell, row and table based format and alignment settings to
+ ezcConsoleTable. This allows you to let rows and cells inherit their format
+ and alignment settings. Rows inherit the format, align and (new)
+ borderFormat value that were set globally, but only if they have no explicit
+ value set. Cells inherit their row's format and alignment settings if they
+ are not explicitly set.
+- Added <borderFormat> property to rows.
+ This allows a more flexible way to specify the format that a border of a row
+ should have, instead of just saying: "this is a headline row".
+- Added new alignment constant ALIGN_DEFAULT to ezcConsoleTable.
+ This is the default alignment used in ezcConsoleTable objects (cell, row) to
+ indicate, that the alignment setting should be inherited from the parent.
+
+- Refactored the whole package to fit into the unified layout and provide a
+ much more convenient API.
+- Renamed the class ezcConsoleParameter to ezcConsoleInput.
+ Reflects it's purpose much better and avoids conflicts with the acronym
+ "option", which is now used in ezcConsoleOption.
+ Renamed the cooperating types and methods:
+
+ * ezcConsoleParameter::registerParam() to ezcConsoleInput::registerOption().
+ * ezcConsoleParameter::unregisterParam()
+ to ezcConsoleInput::unregisterOption().
+ * ezcConsoleParameter::getParam() to ezcConsoleInput::getOption().
+ * ezcConsoleParameter::getParams() to ezcConsoleInput::getOptions().
+
+- Changed to the use of structs instead of complex array structures:
+
+ * ezcConsoleOptionRule (replaces old handling of dependencies and exclusions
+ between options - former parameters).
+ * ezcConsoleOutputFormat (to define format options).
+ * ezcConsoleOutputOptions (stores the options for ezcConsoleOutput).
+ * ezcConsoleProgressbarOptions (stores the options for
+ ezcConsoleProgressbar).
+ * eczConsoleTableOptions (stores the options for ezcConsoleTable).
+
+- Changed to the use of "extended structs" where it made sense to avoid
+ complex arrays:
+
+ * ezcConsoleOutputFormats (iteration and on-the-fly creation of format
+ definitions in ezcConsoleOutput through
+ $out->formats->{formatname}->{formatoption} = ...;)
+
+- Changed handling of parameter names in ezcConsoleInput.
+ Short and long parameters are now also handled without their prefixes ("-"
+ for short names and "--" for long names) everywhere.
+- Changed to use overloading property access - __get(),__set(),__isset().
+ To unify access to object properties and in different other places, which
+ are explicitly mentioned above (see e.g. ezcConsoleTable) where possible.
+- Changed handling of default values for ezcConsoleOption.
+ Default values are now set if the parameter is not submitted at all. If an
+ option that expects a value is submitted without, this results in an
+ exception.
+- Changed "colAlign" option to "defaultAlign".
+- Changed handling of table structure to classes ezcConsoleTableRow and
+ ezcConsoleTableCell. These allow a convenient way to create and customize
+ console based tables:
+
+ * $table[0][]; // creates a new cell
+ * $table[2][]->format = 'important'; // creates a new cell and set's it's
+ format to 'important',
+ * $table[2]->align = ezcConsoleTable::ALIGN_CENTER; // sets the default
+ align
+
+- Removed $cols setting from ezcConsoleTable.
+ The table now knows on its own how many columns it has, when it is
+ rendered.
+- Renamed ezcConsoleParameter to ezcConsoleInput.
+- Renamed methods (consistency):
+
+ * ezcConsoleOutput::styleText() to ezcConsoleOutput::formatText().
+ * ezcConsoleInput::fromString() to ezcConsoleInput::registerOptionString().
+ * ezcConsoleInput::getValues() to ezcConsoleInput::getOptionsValues().
+
+- Fixed bug with argument handling and non-value parameters in
+ ezcConsoleInput. It was not possible to sumit the name of a parameter as an
+ argument after the argument seperator "-- ".
+- Fixed bug with submitting multiple parameters of the same name without
+ value.
+
+
+1.0beta1 - Friday 25 November 2005
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Initial release of this package.
Modified: packages/ConsoleTools/releases/1.0/docs/example_input.php
===================================================================
--- packages/ConsoleTools/trunk/docs/example_input.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/docs/example_input.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Example for the usage of eczConsoleParameter class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright ( C ) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/docs/example_output.php
===================================================================
--- packages/ConsoleTools/trunk/docs/example_output.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/docs/example_output.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Example for the usage of eczConsoleOutput class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/docs/example_progressbar.php
===================================================================
--- packages/ConsoleTools/trunk/docs/example_progressbar.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/docs/example_progressbar.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Example for the usage of eczConsoleProgressbar class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/docs/example_table.php
===================================================================
--- packages/ConsoleTools/trunk/docs/example_table.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/docs/example_table.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Example for the usage of eczConsoleTable class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/docs/example_table_2.php
===================================================================
--- packages/ConsoleTools/trunk/docs/example_table_2.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/docs/example_table_2.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Example for the usage of eczConsoleTable class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/src/console_autoload.php
===================================================================
--- packages/ConsoleTools/trunk/src/console_autoload.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/console_autoload.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Autoload map for ConsoleTools package.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
Modified: packages/ConsoleTools/releases/1.0/src/exceptions/exception.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/exception.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/exception.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Base exception for the ConsoleTools package.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -12,7 +12,7 @@
* General exception container for the ConsoleTools component.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
abstract class ezcConsoleException extends ezcBaseException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/no_position_stored.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/no_position_stored.php
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/no_position_stored.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleNoPositionStoredException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -12,7 +12,7 @@
* 'Cannot restore position, if no position has been stored before.'.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleNoPositionStoredException extends ezcConsoleException
{
Modified: packages/ConsoleTools/releases/1.0/src/exceptions/option.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/option.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* Base option exception for the ConsoleTools package.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -14,7 +14,7 @@
* errors produced by invalid user submitted options [EMAIL PROTECTED]
ezcConsoleInput::process()}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
abstract class ezcConsoleOptionException extends ezcConsoleException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_already_registered.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_already_registered.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_already_registered.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionAlreadyRegisteredException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -12,7 +12,7 @@
* The option name you tried to register is already in use.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionAlreadyRegisteredException extends ezcConsoleException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_arguments_violation.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_arguments_violation.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_arguments_violation.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionArgumentsViolationException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionArgumentsViolationException extends
ezcConsoleOptionException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_dependency_violation.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_dependency_violation.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_dependency_violation.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionDependencyViolationException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionDependencyViolationException extends
ezcConsoleOptionException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_exclusion_violation.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_exclusion_violation.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_exclusion_violation.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionExclusionViolationException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionExclusionViolationException extends
ezcConsoleOptionException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_mandatory_violation.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_mandatory_violation.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_mandatory_violation.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionMandatoryViolationException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionMandatoryViolationException extends
ezcConsoleOptionException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_missing_value.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_missing_value.php
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/option_missing_value.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionMissingValueException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionMissingValueException extends ezcConsoleOptionException
{
Modified: packages/ConsoleTools/releases/1.0/src/exceptions/option_no_alias.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_no_alias.php
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/option_no_alias.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionNoAliasException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -12,7 +12,7 @@
* The alias you tried to unregister is a real option.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionNoAliasException extends ezcConsoleException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_not_exists.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_not_exists.php
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/option_not_exists.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionNotExistsException
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionNotExistsException extends ezcConsoleOptionException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_string_not_wellformed.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_string_not_wellformed.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_string_not_wellformed.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionStringNotWellformedException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -12,7 +12,7 @@
* The option definition string supplied is not wellformed.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionStringNotWellformedException extends ezcConsoleException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_too_many_values.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_too_many_values.php
2006-01-30 07:48:01 UTC (rev 2111)
+++
packages/ConsoleTools/releases/1.0/src/exceptions/option_too_many_values.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionTooManyValuesException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionTooManyValuesException extends ezcConsoleOptionException
{
Modified:
packages/ConsoleTools/releases/1.0/src/exceptions/option_type_violation.php
===================================================================
--- packages/ConsoleTools/trunk/src/exceptions/option_type_violation.php
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/exceptions/option_type_violation.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionTypeViolationException.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
@@ -13,7 +13,7 @@
* This exception can be caught using [EMAIL PROTECTED]
ezcConsoleOptionException}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionTypeViolationException extends ezcConsoleOptionException
{
Modified: packages/ConsoleTools/releases/1.0/src/input/option.php
===================================================================
--- packages/ConsoleTools/trunk/src/input/option.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/input/option.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOption class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -18,7 +18,7 @@
* class [EMAIL PROTECTED] ezcConsoleInput}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOption {
Modified: packages/ConsoleTools/releases/1.0/src/input.php
===================================================================
--- packages/ConsoleTools/trunk/src/input.php 2006-01-30 07:48:01 UTC (rev
2111)
+++ packages/ConsoleTools/releases/1.0/src/input.php 2006-01-30 08:16:00 UTC
(rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleInput class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -105,7 +105,7 @@
* </code>
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleInput
{
Modified: packages/ConsoleTools/releases/1.0/src/output.php
===================================================================
--- packages/ConsoleTools/trunk/src/output.php 2006-01-30 07:48:01 UTC (rev
2111)
+++ packages/ConsoleTools/releases/1.0/src/output.php 2006-01-30 08:16:00 UTC
(rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOutput class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -63,7 +63,7 @@
* refer to [EMAIL PROTECTED] ezcConsoleOutputFormat}.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOutput
{
Modified: packages/ConsoleTools/releases/1.0/src/progressbar.php
===================================================================
--- packages/ConsoleTools/trunk/src/progressbar.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/progressbar.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleProgressbar class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -40,7 +40,7 @@
*
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleProgressbar
{
Modified: packages/ConsoleTools/releases/1.0/src/statusbar.php
===================================================================
--- packages/ConsoleTools/trunk/src/statusbar.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/statusbar.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleStatusbar class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -34,7 +34,7 @@
*
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleStatusbar
{
Modified: packages/ConsoleTools/releases/1.0/src/structs/option_rule.php
===================================================================
--- packages/ConsoleTools/trunk/src/structs/option_rule.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/structs/option_rule.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOptionRule class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -24,7 +24,7 @@
* @see ezcConsoleOption
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOptionRule
{
Modified: packages/ConsoleTools/releases/1.0/src/structs/output_format.php
===================================================================
--- packages/ConsoleTools/trunk/src/structs/output_format.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/structs/output_format.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOutputFormat class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -66,7 +66,7 @@
*
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOutputFormat
{
Modified: packages/ConsoleTools/releases/1.0/src/structs/output_formats.php
===================================================================
--- packages/ConsoleTools/trunk/src/structs/output_formats.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/structs/output_formats.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOutputFormats class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -32,7 +32,7 @@
* </code>
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOutputFormats
{
Modified: packages/ConsoleTools/releases/1.0/src/structs/output_options.php
===================================================================
--- packages/ConsoleTools/trunk/src/structs/output_options.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/structs/output_options.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleOutputOptions class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -15,7 +15,7 @@
* This class stores the options for the [EMAIL PROTECTED] ezcConsoleOutput}
class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleOutputOptions
{
Modified: packages/ConsoleTools/releases/1.0/src/structs/progressbar_options.php
===================================================================
--- packages/ConsoleTools/trunk/src/structs/progressbar_options.php
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/structs/progressbar_options.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleProgressbarOptions class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -23,7 +23,7 @@
* - <b>fractionFormat</b> <i>string</i>, contains an sprintf() format for the
fraction display.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleProgressbarOptions
{
Modified: packages/ConsoleTools/releases/1.0/src/structs/table_options.php
===================================================================
--- packages/ConsoleTools/trunk/src/structs/table_options.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/structs/table_options.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleTableOptions class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -15,7 +15,7 @@
* This class stores the options for the [EMAIL PROTECTED] ezcConsoleTable}
class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleTableOptions
{
Modified: packages/ConsoleTools/releases/1.0/src/table/cell.php
===================================================================
--- packages/ConsoleTools/trunk/src/table/cell.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/table/cell.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleTableCell class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -19,7 +19,7 @@
* @see ezcConsoleTableRow
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleTableCell {
Modified: packages/ConsoleTools/releases/1.0/src/table/row.php
===================================================================
--- packages/ConsoleTools/trunk/src/table/row.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/src/table/row.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleTableRow class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -44,7 +44,7 @@
* This class stores the rows for the [EMAIL PROTECTED] ezcConsoleTable} class.
*
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleTableRow implements Countable, Iterator, ArrayAccess {
Modified: packages/ConsoleTools/releases/1.0/src/table.php
===================================================================
--- packages/ConsoleTools/trunk/src/table.php 2006-01-30 07:48:01 UTC (rev
2111)
+++ packages/ConsoleTools/releases/1.0/src/table.php 2006-01-30 08:16:00 UTC
(rev 2115)
@@ -3,7 +3,7 @@
* File containing the ezcConsoleTable class.
*
* @package ConsoleTools
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @filesource
@@ -55,7 +55,7 @@
*
* @see ezcConsoleOutput
* @package ConsoleTools
- * @version //autogen//
+ * @version 1.0
*/
class ezcConsoleTable implements Countable, Iterator, ArrayAccess
{
Modified: packages/ConsoleTools/releases/1.0/tests/input_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/input_test.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/input_test.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/output_format_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/output_format_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/output_format_test.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/output_formats_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/output_formats_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/output_formats_test.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/output_options_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/output_options_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/output_options_test.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/output_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/output_test.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/output_test.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/progressbar_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/progressbar_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/progressbar_test.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/statusbar_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/statusbar_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/statusbar_test.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/suite.php
===================================================================
--- packages/ConsoleTools/trunk/tests/suite.php 2006-01-30 07:48:01 UTC (rev
2111)
+++ packages/ConsoleTools/releases/1.0/tests/suite.php 2006-01-30 08:16:00 UTC
(rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/table_cell_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/table_cell_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/table_cell_test.php
2006-01-30 08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/table_row_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/table_row_test.php 2006-01-30
07:48:01 UTC (rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/table_row_test.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/releases/1.0/tests/table_test.php
===================================================================
--- packages/ConsoleTools/trunk/tests/table_test.php 2006-01-30 07:48:01 UTC
(rev 2111)
+++ packages/ConsoleTools/releases/1.0/tests/table_test.php 2006-01-30
08:16:00 UTC (rev 2115)
@@ -4,7 +4,7 @@
*
* @package ConsoleTools
* @subpackage Tests
- * @version //autogentag//
+ * @version 1.0
* @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
Modified: packages/ConsoleTools/trunk/ChangeLog
===================================================================
--- packages/ConsoleTools/trunk/ChangeLog 2006-01-30 08:15:17 UTC (rev
2114)
+++ packages/ConsoleTools/trunk/ChangeLog 2006-01-30 08:16:00 UTC (rev
2115)
@@ -1,4 +1,4 @@
-1.0 - [RELEASEDATE]
+1.0 - Monday 30 January 2006
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Fixed unreported bug: ezcConsoleTableOptions struct caried deprecated
--
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components