Author: Derick Rethans
Date: 2006-06-12 09:41:05 +0200 (Mon, 12 Jun 2006)
New Revision: 3105

Log:
- Released SystemInformation version 1.0
Added:
   releases/SystemInformation/1.0/
   releases/SystemInformation/1.0/ChangeLog
   releases/SystemInformation/1.0/docs/tutorial_autoload.php
Removed:
   releases/SystemInformation/1.0/ChangeLog
   releases/SystemInformation/1.0/docs/tutorial_autoload.php
Modified:
   release-info/latest
   releases/SystemInformation/1.0/src/system/exceptions/cant_scan.php
   releases/SystemInformation/1.0/src/system/info.php
   releases/SystemInformation/1.0/src/system/interfaces/info_reader.php
   releases/SystemInformation/1.0/src/system/readers/info_freebsd.php
   releases/SystemInformation/1.0/src/system/readers/info_linux.php
   releases/SystemInformation/1.0/src/system/readers/info_windows.php
   releases/SystemInformation/1.0/src/system/structs/accelerator_info.php
   releases/SystemInformation/1.0/src/system_autoload.php
   releases/SystemInformation/1.0/tests/suite.php
   releases/SystemInformation/1.0/tests/sysinfo_test.php
   trunk/SystemInformation/ChangeLog

Modified: release-info/latest
===================================================================
--- release-info/latest 2006-06-12 07:40:40 UTC (rev 3104)
+++ release-info/latest 2006-06-12 07:41:05 UTC (rev 3105)
@@ -18,7 +18,7 @@
 PersistentObject: 1.1
 PersistentObjectDatabaseSchemaTiein: 1.0rc1
 PhpGenerator: 1.0
-SystemInformation: 1.0rc1
+SystemInformation: 1.0
 Template: 1.0rc1
 Translation: 1.1rc1
 TranslationCacheTiein: 1.1rc1

Copied: releases/SystemInformation/1.0 (from rev 3078, trunk/SystemInformation)

Deleted: releases/SystemInformation/1.0/ChangeLog
===================================================================
--- trunk/SystemInformation/ChangeLog   2006-06-09 16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/ChangeLog    2006-06-12 07:41:05 UTC (rev 
3105)
@@ -1,18 +0,0 @@
-1.0rc1 - Monday 29 May 2006
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Fixed bug #8251: Fatal error caused by ezcSystemInfoWindowsReader.
-
-
-1.0beta2 - Tuesday 09 May 2006
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Added the cpuCount property that shows the number of CPUs in a machine.
-- Changed the cpuSpeed property to always return a floating point in MHz.
-- Removed the cpuUnit property which would return 'MHz' or 'GHz'.
-
-
-1.0beta1 - Wednesday 19 April 2006
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Initial release of this package.

Copied: releases/SystemInformation/1.0/ChangeLog (from rev 3104, 
trunk/SystemInformation/ChangeLog)
===================================================================
--- trunk/SystemInformation/ChangeLog   2006-06-12 07:40:40 UTC (rev 3104)
+++ releases/SystemInformation/1.0/ChangeLog    2006-06-12 07:41:05 UTC (rev 
3105)
@@ -0,0 +1,24 @@
+1.0 - Monday 12 June 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Fixed small CS issues.
+
+
+1.0rc1 - Monday 29 May 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Fixed bug #8251: Fatal error caused by ezcSystemInfoWindowsReader.
+
+
+1.0beta2 - Tuesday 09 May 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Added the cpuCount property that shows the number of CPUs in a machine.
+- Changed the cpuSpeed property to always return a floating point in MHz.
+- Removed the cpuUnit property which would return 'MHz' or 'GHz'.
+
+
+1.0beta1 - Wednesday 19 April 2006
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Initial release of this package.

Deleted: releases/SystemInformation/1.0/docs/tutorial_autoload.php
===================================================================
--- trunk/SystemInformation/docs/tutorial_autoload.php  2006-06-09 16:55:22 UTC 
(rev 3078)
+++ releases/SystemInformation/1.0/docs/tutorial_autoload.php   2006-06-12 
07:41:05 UTC (rev 3105)
@@ -1,20 +0,0 @@
-<?php
-$dir = dirname( __FILE__ );
-$dirParts = split( '/', $dir );
-switch ( $dirParts[count( $dirParts ) - 3] )
-{
-       case 'doc': require_once 'ezc/Base/base.php'; break; // pear
-       case 'trunk': require_once "$dir/../../Base/src/base.php"; break; // svn
-       default: require_once "$dir/../../Base/src/base.php"; break; // bundle
-}
-
-/**
- * Autoload ezc classes 
- * 
- * @param string $className 
- */
-function __autoload( $className )
-{
-       ezcBase::autoload( $className );
-}
-?>

Copied: releases/SystemInformation/1.0/docs/tutorial_autoload.php (from rev 
3079, trunk/SystemInformation/docs/tutorial_autoload.php)

Modified: releases/SystemInformation/1.0/src/system/exceptions/cant_scan.php
===================================================================
--- trunk/SystemInformation/src/system/exceptions/cant_scan.php 2006-06-09 
16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/src/system/exceptions/cant_scan.php  
2006-06-12 07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfoReaderCantScanOSException class
  * 
  * @package SystemInformation
- * @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 @@
  * 
  * @package SystemInformation
  * @author
- * @version //autogen//
+ * @version 1.0
  */
 class ezcSystemInfoReaderCantScanOSException extends Exception
 {

Modified: releases/SystemInformation/1.0/src/system/info.php
===================================================================
--- trunk/SystemInformation/src/system/info.php 2006-06-09 16:55:22 UTC (rev 
3078)
+++ releases/SystemInformation/1.0/src/system/info.php  2006-06-12 07:41:05 UTC 
(rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfo class
  *
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @copyright Copyright (C) 2006 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -52,7 +52,7 @@
  *  </code>
  *
  * @package SystemInformation
- * @version //autogentag//
+ * @version 1.0
  */
 class ezcSystemInfo
 {

Modified: releases/SystemInformation/1.0/src/system/interfaces/info_reader.php
===================================================================
--- trunk/SystemInformation/src/system/interfaces/info_reader.php       
2006-06-09 16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/src/system/interfaces/info_reader.php        
2006-06-12 07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfoReader class
  *
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @copyright Copyright (C) 2005 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -15,7 +15,7 @@
  *
  * 
  * @package SystemInformation
- * @version //autogentag//
+ * @version 1.0
  */
 abstract class ezcSystemInfoReader
 {

Modified: releases/SystemInformation/1.0/src/system/readers/info_freebsd.php
===================================================================
--- trunk/SystemInformation/src/system/readers/info_freebsd.php 2006-06-09 
16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/src/system/readers/info_freebsd.php  
2006-06-12 07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfoFreeBsdReader class
  *
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @copyright Copyright (C) 2005 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -15,7 +15,7 @@
  * correspondent values.
  *
  * @package SystemInformation
- * @version //autogentag//
+ * @version 1.0
  */
 class ezcSystemInfoFreeBsdReader extends ezcSystemInfoReader
 {

Modified: releases/SystemInformation/1.0/src/system/readers/info_linux.php
===================================================================
--- trunk/SystemInformation/src/system/readers/info_linux.php   2006-06-09 
16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/src/system/readers/info_linux.php    
2006-06-12 07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfoLinuxReader class
  *
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @copyright Copyright (C) 2005 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -15,7 +15,7 @@
  * correspondent values.
  *
  * @package SystemInformation
- * @version //autogentag//
+ * @version 1.0
  */
 class ezcSystemInfoLinuxReader extends ezcSystemInfoReader
 {

Modified: releases/SystemInformation/1.0/src/system/readers/info_windows.php
===================================================================
--- trunk/SystemInformation/src/system/readers/info_windows.php 2006-06-09 
16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/src/system/readers/info_windows.php  
2006-06-12 07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfoWindowsReader class
  *
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @copyright Copyright (C) 2005 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -16,7 +16,7 @@
  * Memory size received using functions in php_win32ps.dll PHP extension.
  *
  * @package SystemInformation
- * @version //autogentag//
+ * @version 1.0
  */
 class ezcSystemInfoWindowsReader extends ezcSystemInfoReader
 {

Modified: releases/SystemInformation/1.0/src/system/structs/accelerator_info.php
===================================================================
--- trunk/SystemInformation/src/system/structs/accelerator_info.php     
2006-06-09 16:55:22 UTC (rev 3078)
+++ releases/SystemInformation/1.0/src/system/structs/accelerator_info.php      
2006-06-12 07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * File containing the ezcSystemInfoAccelerator structure.
  *
  * @package SystemInformation
- * @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: releases/SystemInformation/1.0/src/system_autoload.php
===================================================================
--- trunk/SystemInformation/src/system_autoload.php     2006-06-09 16:55:22 UTC 
(rev 3078)
+++ releases/SystemInformation/1.0/src/system_autoload.php      2006-06-12 
07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * Autoload definition for classes in SystemInformation package.
  *
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @copyright Copyright (C) 2006 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */

Modified: releases/SystemInformation/1.0/tests/suite.php
===================================================================
--- trunk/SystemInformation/tests/suite.php     2006-06-09 16:55:22 UTC (rev 
3078)
+++ releases/SystemInformation/1.0/tests/suite.php      2006-06-12 07:41:05 UTC 
(rev 3105)
@@ -4,7 +4,7 @@
 *
 * @package SystemInformation
 * @subpackage Tests
-* @version //autogentag//
+* @version 1.0
 * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
 * @license LGPL [EMAIL PROTECTED] http://www.gnu.org/copyleft/lesser.html}
 */

Modified: releases/SystemInformation/1.0/tests/sysinfo_test.php
===================================================================
--- trunk/SystemInformation/tests/sysinfo_test.php      2006-06-09 16:55:22 UTC 
(rev 3078)
+++ releases/SystemInformation/1.0/tests/sysinfo_test.php       2006-06-12 
07:41:05 UTC (rev 3105)
@@ -3,7 +3,7 @@
  * ezcSystemInfoTest
  * 
  * @package SystemInformation
- * @version //autogen//
+ * @version 1.0
  * @subpackage Tests
  * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License

Modified: trunk/SystemInformation/ChangeLog
===================================================================
--- trunk/SystemInformation/ChangeLog   2006-06-12 07:40:40 UTC (rev 3104)
+++ trunk/SystemInformation/ChangeLog   2006-06-12 07:41:05 UTC (rev 3105)
@@ -1,4 +1,4 @@
-1.0 - [RELEASEDATE]
+1.0 - Monday 12 June 2006
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 - Fixed small CS issues.

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to