Author: Derick Rethans
Date: 2006-01-30 13:27:20 +0100 (Mon, 30 Jan 2006)
New Revision: 2139

Log:
- Released Debug version 1.0
Added:
   packages/Debug/releases/1.0/
   packages/Debug/releases/1.0/ChangeLog
Removed:
   packages/Debug/releases/1.0/ChangeLog
Modified:
   packages/Debug/releases/1.0/docs/examples/trigger_error.php
   packages/Debug/releases/1.0/src/debug.php
   packages/Debug/releases/1.0/src/debug_autoload.php
   packages/Debug/releases/1.0/src/debug_message.php
   packages/Debug/releases/1.0/src/debug_timer.php
   packages/Debug/releases/1.0/src/formatters/html_formatter.php
   packages/Debug/releases/1.0/src/interfaces/formatter.php
   packages/Debug/releases/1.0/src/structs/debug_structure.php
   packages/Debug/releases/1.0/src/structs/switch_timer.php
   packages/Debug/releases/1.0/src/structs/timer.php
   packages/Debug/releases/1.0/src/writers/memory_writer.php
   packages/Debug/trunk/ChangeLog

Copied: packages/Debug/releases/1.0 (from rev 2136, packages/Debug/trunk)

Deleted: packages/Debug/releases/1.0/ChangeLog
===================================================================
--- packages/Debug/trunk/ChangeLog      2006-01-30 12:19:31 UTC (rev 2136)
+++ packages/Debug/releases/1.0/ChangeLog       2006-01-30 12:27:20 UTC (rev 
2139)
@@ -1,55 +0,0 @@
-1.0 - [RELEASEDATE]
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-ezcDebug
-========
-
-- Fixed PHP warning in switchTimer() when the given oldTimer does not exist. 
-- Fixed problem in switchTimer() when oldTimer and newTimer are the same.
-
-ezcDebugHtmlFormatter
-=====================
-
-- Improved the timing information output.  
-- Changed the access from protected to private in the methods: getGroups() and
-  addElement().
-
-1.0rc1 - Monday 16 January 2006
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Changed Debug that it uses the ezcLogFilterSet mapping. 
-- Changed exception behavior. All errors will now throw a different exception
-  class.
-- Added property checks. Adding or reading a property throws an exception.
-- Fixed bug #7676: ezcDebugHtmlFormatter::getLog is buggy.
-
-ezcDebug
-========
-
-- Removed the source parameter from the startTimer() method.
-- Removed the verbosity constants.
-
-ezcDebugTimer
-=============
-
-- Changed the timing information structure. The more specific structures
-  ezcDebugTimerStruct and ezcDebugSwitchTimerStruct are used instead. 
-
-
-1.0beta2 - Thursday 22 December 2005
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Renamed the class ezcDebugReporter to ezcDebugOutputFormatter.
-- Renamed the class ezcDebugHtmlReporter to ezcDebugHtmlFormatter.
-
-ezcDebug
-========
-
-- Renamed the method getOutput() to generateOutput().
-- Renamed the method setReporter() to setOutputFormatter().
-
-
-1.0beta1 - Friday 25 November 2005
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Initial release of this package.

Copied: packages/Debug/releases/1.0/ChangeLog (from rev 2138, 
packages/Debug/trunk/ChangeLog)
===================================================================
--- packages/Debug/trunk/ChangeLog      2006-01-30 12:26:51 UTC (rev 2138)
+++ packages/Debug/releases/1.0/ChangeLog       2006-01-30 12:27:20 UTC (rev 
2139)
@@ -0,0 +1,56 @@
+1.0 - Monday 30 January 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+ezcDebug
+========
+
+- Fixed PHP warning in switchTimer() when the given oldTimer does not exist. 
+- Fixed problem in switchTimer() when oldTimer and newTimer are the same.
+
+ezcDebugHtmlFormatter
+=====================
+
+- Improved the timing information output.  
+- Changed the access from protected to private in the methods: getGroups() and
+  addElement().
+
+
+1.0rc1 - Monday 16 January 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Changed Debug that it uses the ezcLogFilterSet mapping. 
+- Changed exception behavior. All errors will now throw a different exception
+  class.
+- Added property checks. Adding or reading a property throws an exception.
+- Fixed bug #7676: ezcDebugHtmlFormatter::getLog is buggy.
+
+ezcDebug
+========
+
+- Removed the source parameter from the startTimer() method.
+- Removed the verbosity constants.
+
+ezcDebugTimer
+=============
+
+- Changed the timing information structure. The more specific structures
+  ezcDebugTimerStruct and ezcDebugSwitchTimerStruct are used instead. 
+
+
+1.0beta2 - Thursday 22 December 2005
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Renamed the class ezcDebugReporter to ezcDebugOutputFormatter.
+- Renamed the class ezcDebugHtmlReporter to ezcDebugHtmlFormatter.
+
+ezcDebug
+========
+
+- Renamed the method getOutput() to generateOutput().
+- Renamed the method setReporter() to setOutputFormatter().
+
+
+1.0beta1 - Friday 25 November 2005
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Initial release of this package.

Modified: packages/Debug/releases/1.0/docs/examples/trigger_error.php
===================================================================
--- packages/Debug/trunk/docs/examples/trigger_error.php        2006-01-30 
12:19:31 UTC (rev 2136)
+++ packages/Debug/releases/1.0/docs/examples/trigger_error.php 2006-01-30 
12:27:20 UTC (rev 2139)
@@ -4,7 +4,7 @@
  * combination with the trigger_error.
  *
  * @package Debug
- * @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/Debug/releases/1.0/src/debug.php
===================================================================
--- packages/Debug/trunk/src/debug.php  2006-01-30 12:19:31 UTC (rev 2136)
+++ packages/Debug/releases/1.0/src/debug.php   2006-01-30 12:27:20 UTC (rev 
2139)
@@ -4,7 +4,7 @@
  * File containing the ezcDebug class.
  *
  * @package Debug
- * @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
  */
@@ -65,7 +65,7 @@
  * </code>
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  */
 class ezcDebug
 {

Modified: packages/Debug/releases/1.0/src/debug_autoload.php
===================================================================
--- packages/Debug/trunk/src/debug_autoload.php 2006-01-30 12:19:31 UTC (rev 
2136)
+++ packages/Debug/releases/1.0/src/debug_autoload.php  2006-01-30 12:27:20 UTC 
(rev 2139)
@@ -3,7 +3,7 @@
  * File containing the autoload structure.
  *
  * @package Debug
- * @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/Debug/releases/1.0/src/debug_message.php
===================================================================
--- packages/Debug/trunk/src/debug_message.php  2006-01-30 12:19:31 UTC (rev 
2136)
+++ packages/Debug/releases/1.0/src/debug_message.php   2006-01-30 12:27:20 UTC 
(rev 2139)
@@ -3,7 +3,7 @@
  * File containing the ezcDebugMessage class.
  *
  * @package Debug
- * @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
  * @access private
@@ -13,7 +13,7 @@
  * Holds a debug message and provides functionality to manipulate it.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @access private
  */
 class ezcDebugMessage extends ezcLogMessage

Modified: packages/Debug/releases/1.0/src/debug_timer.php
===================================================================
--- packages/Debug/trunk/src/debug_timer.php    2006-01-30 12:19:31 UTC (rev 
2136)
+++ packages/Debug/releases/1.0/src/debug_timer.php     2006-01-30 12:27:20 UTC 
(rev 2139)
@@ -4,7 +4,7 @@
  * File containing the ezcDebugTimer class.
  *
  * @package Debug
- * @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
  * @access private
@@ -17,7 +17,7 @@
  * with the getStructure method.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @access private
  */
 class ezcDebugTimer

Modified: packages/Debug/releases/1.0/src/formatters/html_formatter.php
===================================================================
--- packages/Debug/trunk/src/formatters/html_formatter.php      2006-01-30 
12:19:31 UTC (rev 2136)
+++ packages/Debug/releases/1.0/src/formatters/html_formatter.php       
2006-01-30 12:27:20 UTC (rev 2139)
@@ -3,7 +3,7 @@
  * File containing the ezcDebugHtmlFormatter class.
  *
  * @package Debug
- * @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
  */
@@ -13,7 +13,7 @@
  * debug information nicely formated for inclusion on your web page.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  */
 class ezcDebugHtmlFormatter implements ezcDebugOutputFormatter
 {

Modified: packages/Debug/releases/1.0/src/interfaces/formatter.php
===================================================================
--- packages/Debug/trunk/src/interfaces/formatter.php   2006-01-30 12:19:31 UTC 
(rev 2136)
+++ packages/Debug/releases/1.0/src/interfaces/formatter.php    2006-01-30 
12:27:20 UTC (rev 2139)
@@ -3,7 +3,7 @@
  * File containing the ezcDebugOutputFormatter class.
  *
  * @package Debug
- * @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
  */
@@ -12,7 +12,7 @@
  * ezcDebugOutputFormatter provides the common interface for all classes 
writing debug output.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  */
 interface ezcDebugOutputFormatter
 {

Modified: packages/Debug/releases/1.0/src/structs/debug_structure.php
===================================================================
--- packages/Debug/trunk/src/structs/debug_structure.php        2006-01-30 
12:19:31 UTC (rev 2136)
+++ packages/Debug/releases/1.0/src/structs/debug_structure.php 2006-01-30 
12:27:20 UTC (rev 2139)
@@ -3,7 +3,7 @@
  * File containing the ezcDebugStructure class.
  *
  * @package Debug
- * @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
  * @access private
@@ -14,7 +14,7 @@
  * debug messages.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @access private
  */
 class ezcDebugStructure

Modified: packages/Debug/releases/1.0/src/structs/switch_timer.php
===================================================================
--- packages/Debug/trunk/src/structs/switch_timer.php   2006-01-30 12:19:31 UTC 
(rev 2136)
+++ packages/Debug/releases/1.0/src/structs/switch_timer.php    2006-01-30 
12:27:20 UTC (rev 2139)
@@ -4,7 +4,7 @@
  * File containing the ezcDebugSwitchTimerStruct.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @copyright Copyright (C) 2005 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  * @access private
@@ -14,7 +14,7 @@
  *
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @access private
  */
 class ezcDebugSwitchTimerStruct

Modified: packages/Debug/releases/1.0/src/structs/timer.php
===================================================================
--- packages/Debug/trunk/src/structs/timer.php  2006-01-30 12:19:31 UTC (rev 
2136)
+++ packages/Debug/releases/1.0/src/structs/timer.php   2006-01-30 12:27:20 UTC 
(rev 2139)
@@ -4,7 +4,7 @@
  * File containing the ezcDebugTimerStruct.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @copyright Copyright (C) 2005 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  * @access private
@@ -15,7 +15,7 @@
  * The ezcDebugTimerStruct structure keeps track of the timing data.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @access private
  */
 class ezcDebugTimerStruct

Modified: packages/Debug/releases/1.0/src/writers/memory_writer.php
===================================================================
--- packages/Debug/trunk/src/writers/memory_writer.php  2006-01-30 12:19:31 UTC 
(rev 2136)
+++ packages/Debug/releases/1.0/src/writers/memory_writer.php   2006-01-30 
12:27:20 UTC (rev 2139)
@@ -4,7 +4,7 @@
  * File containing the ezcDebugWriterMemory class.
  *
  * @package Debug
- * @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
  * @access private
@@ -16,7 +16,7 @@
  * to an formatter when the getLogEntries() method is called.
  *
  * @package Debug
- * @version //autogentag//
+ * @version 1.0
  * @access private
  */
 class ezcDebugMemoryWriter implements ezcLogWriter

Modified: packages/Debug/trunk/ChangeLog
===================================================================
--- packages/Debug/trunk/ChangeLog      2006-01-30 12:26:51 UTC (rev 2138)
+++ packages/Debug/trunk/ChangeLog      2006-01-30 12:27:20 UTC (rev 2139)
@@ -1,4 +1,4 @@
-1.0 - [RELEASEDATE]
+1.0 - Monday 30 January 2006
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 ezcDebug

-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to