Author: Derick Rethans
Date: 2006-01-30 09:17:22 +0100 (Mon, 30 Jan 2006)
New Revision: 2117

Log:
- Released Cache version 1.0
Added:
   packages/Cache/releases/1.0/
   packages/Cache/releases/1.0/ChangeLog
Removed:
   packages/Cache/releases/1.0/ChangeLog
Modified:
   packages/Cache/releases/1.0/docs/example_ezpublish.php
   packages/Cache/releases/1.0/docs/example_general.php
   packages/Cache/releases/1.0/src/cache_autoload.php
   packages/Cache/releases/1.0/src/exceptions/exception.php
   packages/Cache/releases/1.0/src/exceptions/invalid_data.php
   packages/Cache/releases/1.0/src/exceptions/invalid_id.php
   packages/Cache/releases/1.0/src/exceptions/invalid_storage_class.php
   packages/Cache/releases/1.0/src/exceptions/used_location.php
   packages/Cache/releases/1.0/src/manager.php
   packages/Cache/releases/1.0/src/storage.php
   packages/Cache/releases/1.0/src/storage/file.php
   packages/Cache/releases/1.0/src/storage/file/array.php
   packages/Cache/releases/1.0/src/storage/file/eval_array.php
   packages/Cache/releases/1.0/src/storage/file/plain.php
   packages/Cache/releases/1.0/tests/manager_test.php
   packages/Cache/releases/1.0/tests/storage_array_test.php
   packages/Cache/releases/1.0/tests/storage_evalarray_test.php
   packages/Cache/releases/1.0/tests/storage_file_test.php
   packages/Cache/releases/1.0/tests/storage_plain_test.php
   packages/Cache/releases/1.0/tests/storage_test.php
   packages/Cache/releases/1.0/tests/suite.php
   packages/Cache/trunk/ChangeLog

Copied: packages/Cache/releases/1.0 (from rev 2111, packages/Cache/trunk)

Deleted: packages/Cache/releases/1.0/ChangeLog
===================================================================
--- packages/Cache/trunk/ChangeLog      2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/Cache/releases/1.0/ChangeLog       2006-01-30 08:17:22 UTC (rev 
2117)
@@ -1,31 +0,0 @@
-1.0 - [RELEASEDATE]
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Fixed unreported bug: ezcCacheStorageFile::countDataItems() was intended to
-return int (number of cache items matching certain criteria) but returned bool.
-
-
-1.0rc1 - Monday 16 January 2006
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Added value checks for options provided to ezcCacheStorage classes.
-
-- Changed exception behavior. All errors will now throw a different exception
-  class.
-
-
-1.0beta2 - Friday 23 December 2005
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Changed method names:
-
-  * ezcCacheStorage::hasData() to countDataItems().
-  * ezcCacheStorage::remainingLifeTime() to getRemainingLifeTime().
-
-- Fixed bug #7469: "Missing PHP closing tags in cache file".
-
-
-1.0beta1 - Friday 25 November 2005
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Initial release of this package.

Copied: packages/Cache/releases/1.0/ChangeLog (from rev 2116, 
packages/Cache/trunk/ChangeLog)
===================================================================
--- packages/Cache/trunk/ChangeLog      2006-01-30 08:16:52 UTC (rev 2116)
+++ packages/Cache/releases/1.0/ChangeLog       2006-01-30 08:17:22 UTC (rev 
2117)
@@ -0,0 +1,32 @@
+1.0 - Monday 30 January 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Fixed unreported bug: ezcCacheStorageFile::countDataItems() was intended to
+  return int (number of cache items matching certain criteria) but returned
+  bool.
+
+
+1.0rc1 - Monday 16 January 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Added value checks for options provided to ezcCacheStorage classes.
+
+- Changed exception behavior. All errors will now throw a different exception
+  class.
+
+
+1.0beta2 - Friday 23 December 2005
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Changed method names:
+
+  * ezcCacheStorage::hasData() to countDataItems().
+  * ezcCacheStorage::remainingLifeTime() to getRemainingLifeTime().
+
+- Fixed bug #7469: "Missing PHP closing tags in cache file".
+
+
+1.0beta1 - Friday 25 November 2005
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Initial release of this package.

Modified: packages/Cache/releases/1.0/docs/example_ezpublish.php
===================================================================
--- packages/Cache/trunk/docs/example_ezpublish.php     2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/docs/example_ezpublish.php      2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * General example for the Cache component.
  *
  * @package Cache
- * @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/Cache/releases/1.0/docs/example_general.php
===================================================================
--- packages/Cache/trunk/docs/example_general.php       2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/docs/example_general.php        2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * General example for the Cache component.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/cache_autoload.php
===================================================================
--- packages/Cache/trunk/src/cache_autoload.php 2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/src/cache_autoload.php  2006-01-30 08:17:22 UTC 
(rev 2117)
@@ -3,7 +3,7 @@
  * Autoload map for Cache package.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/exceptions/exception.php
===================================================================
--- packages/Cache/trunk/src/exceptions/exception.php   2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/src/exceptions/exception.php    2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * Base exception for the Cache package.
  *
  * @package Cache
- * @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 Cache component.
  *
  * @package Cache
- * @version //autogen//
+ * @version 1.0
  */
 abstract class ezcCacheException extends ezcBaseException
 {

Modified: packages/Cache/releases/1.0/src/exceptions/invalid_data.php
===================================================================
--- packages/Cache/trunk/src/exceptions/invalid_data.php        2006-01-30 
07:48:01 UTC (rev 2111)
+++ packages/Cache/releases/1.0/src/exceptions/invalid_data.php 2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheInvalidDataException
  * 
  * @package Cache
- * @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
  */
@@ -22,7 +22,7 @@
  * [EMAIL PROTECTED] ezcCacheStorageFilePlain::prepareData()}
  *
  * @package Cache
- * @version //autogen//
+ * @version 1.0
  */
 class ezcCacheInvalidDataException extends ezcCacheException
 {

Modified: packages/Cache/releases/1.0/src/exceptions/invalid_id.php
===================================================================
--- packages/Cache/trunk/src/exceptions/invalid_id.php  2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/src/exceptions/invalid_id.php   2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheInvalidIdException
  * 
  * @package Cache
- * @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
  */
@@ -15,7 +15,7 @@
  * access a non-existent cache ID, this exception will be thrown.
  *
  * @package Cache
- * @version //autogen//
+ * @version 1.0
  */
 class ezcCacheInvalidIdException extends ezcCacheException
 {

Modified: packages/Cache/releases/1.0/src/exceptions/invalid_storage_class.php
===================================================================
--- packages/Cache/trunk/src/exceptions/invalid_storage_class.php       
2006-01-30 07:48:01 UTC (rev 2111)
+++ packages/Cache/releases/1.0/src/exceptions/invalid_storage_class.php        
2006-01-30 08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheInvalidStorageClassException.
  * 
  * @package Cache
- * @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
  */
@@ -16,7 +16,7 @@
  * [EMAIL PROTECTED] ezcCacheStorage}, this exception will be thrown.
  *
  * @package Cache
- * @version //autogen//
+ * @version 1.0
  */
 class ezcCacheInvalidStorageClassException extends ezcCacheException
 {

Modified: packages/Cache/releases/1.0/src/exceptions/used_location.php
===================================================================
--- packages/Cache/trunk/src/exceptions/used_location.php       2006-01-30 
07:48:01 UTC (rev 2111)
+++ packages/Cache/releases/1.0/src/exceptions/used_location.php        
2006-01-30 08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheUsedLocationException.
  * 
  * @package Cache
- * @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
  */
@@ -17,7 +17,7 @@
  * cachein ezcCacheManager::createCache(), this exception will be thrown.
  *
  * @package Cache
- * @version //autogen//
+ * @version 1.0
  */
 class ezcCacheUsedLocationException extends ezcCacheException
 {

Modified: packages/Cache/releases/1.0/src/manager.php
===================================================================
--- packages/Cache/trunk/src/manager.php        2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/src/manager.php 2006-01-30 08:17:22 UTC (rev 
2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheManager class.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/storage/file/array.php
===================================================================
--- packages/Cache/trunk/src/storage/file/array.php     2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/src/storage/file/array.php      2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheStorageArray class.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/storage/file/eval_array.php
===================================================================
--- packages/Cache/trunk/src/storage/file/eval_array.php        2006-01-30 
07:48:01 UTC (rev 2111)
+++ packages/Cache/releases/1.0/src/storage/file/eval_array.php 2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheStorageEvalarray class.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/storage/file/plain.php
===================================================================
--- packages/Cache/trunk/src/storage/file/plain.php     2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/src/storage/file/plain.php      2006-01-30 
08:17:22 UTC (rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheStoragePlain class.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/storage/file.php
===================================================================
--- packages/Cache/trunk/src/storage/file.php   2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/src/storage/file.php    2006-01-30 08:17:22 UTC 
(rev 2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheStorageFile class.
  *
  * @package Cache
- * @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/Cache/releases/1.0/src/storage.php
===================================================================
--- packages/Cache/trunk/src/storage.php        2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/src/storage.php 2006-01-30 08:17:22 UTC (rev 
2117)
@@ -3,7 +3,7 @@
  * File containing the ezcCacheStorage class.
  *
  * @package Cache
- * @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/Cache/releases/1.0/tests/manager_test.php
===================================================================
--- packages/Cache/trunk/tests/manager_test.php 2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/tests/manager_test.php  2006-01-30 08:17:22 UTC 
(rev 2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/releases/1.0/tests/storage_array_test.php
===================================================================
--- packages/Cache/trunk/tests/storage_array_test.php   2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/tests/storage_array_test.php    2006-01-30 
08:17:22 UTC (rev 2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/releases/1.0/tests/storage_evalarray_test.php
===================================================================
--- packages/Cache/trunk/tests/storage_evalarray_test.php       2006-01-30 
07:48:01 UTC (rev 2111)
+++ packages/Cache/releases/1.0/tests/storage_evalarray_test.php        
2006-01-30 08:17:22 UTC (rev 2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/releases/1.0/tests/storage_file_test.php
===================================================================
--- packages/Cache/trunk/tests/storage_file_test.php    2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/tests/storage_file_test.php     2006-01-30 
08:17:22 UTC (rev 2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/releases/1.0/tests/storage_plain_test.php
===================================================================
--- packages/Cache/trunk/tests/storage_plain_test.php   2006-01-30 07:48:01 UTC 
(rev 2111)
+++ packages/Cache/releases/1.0/tests/storage_plain_test.php    2006-01-30 
08:17:22 UTC (rev 2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/releases/1.0/tests/storage_test.php
===================================================================
--- packages/Cache/trunk/tests/storage_test.php 2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/tests/storage_test.php  2006-01-30 08:17:22 UTC 
(rev 2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/releases/1.0/tests/suite.php
===================================================================
--- packages/Cache/trunk/tests/suite.php        2006-01-30 07:48:01 UTC (rev 
2111)
+++ packages/Cache/releases/1.0/tests/suite.php 2006-01-30 08:17:22 UTC (rev 
2117)
@@ -4,7 +4,7 @@
  * 
  * @package Cache
  * @subpackage Tests
- * @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/Cache/trunk/ChangeLog
===================================================================
--- packages/Cache/trunk/ChangeLog      2006-01-30 08:16:52 UTC (rev 2116)
+++ packages/Cache/trunk/ChangeLog      2006-01-30 08:17:22 UTC (rev 2117)
@@ -1,4 +1,4 @@
-1.0 - [RELEASEDATE]
+1.0 - Monday 30 January 2006
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 - Fixed unreported bug: ezcCacheStorageFile::countDataItems() was intended to

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

Reply via email to