Author: Derick Rethans Date: 2007-05-07 09:58:46 +0200 (Mon, 07 May 2007) New Revision: 5112
Log: - Released SystemInformation version 1.0.3 Added: releases/SystemInformation/1.0.3/ Modified: release-info/latest releases/SystemInformation/1.0.3/ChangeLog releases/SystemInformation/1.0.3/src/system/exceptions/cant_scan.php releases/SystemInformation/1.0.3/src/system/info.php releases/SystemInformation/1.0.3/src/system/interfaces/info_reader.php releases/SystemInformation/1.0.3/src/system/readers/info_freebsd.php releases/SystemInformation/1.0.3/src/system/readers/info_linux.php releases/SystemInformation/1.0.3/src/system/readers/info_windows.php releases/SystemInformation/1.0.3/src/system/structs/accelerator_info.php releases/SystemInformation/1.0.3/src/system_autoload.php releases/SystemInformation/1.0.3/tests/suite.php releases/SystemInformation/1.0.3/tests/sysinfo_test.php Modified: release-info/latest =================================================================== --- release-info/latest 2007-05-07 07:58:04 UTC (rev 5111) +++ release-info/latest 2007-05-07 07:58:46 UTC (rev 5112) @@ -22,7 +22,7 @@ PersistentObjectDatabaseSchemaTiein: 1.2beta1 PhpGenerator: 1.0.2 SignalSlot: 1.1beta1 -SystemInformation: 1.0.2 +SystemInformation: 1.0.3 Template: 1.1 Translation: 1.1.2 TranslationCacheTiein: 1.1.1 Copied: releases/SystemInformation/1.0.3 (from rev 5098, trunk/SystemInformation) Modified: releases/SystemInformation/1.0.3/ChangeLog =================================================================== --- trunk/SystemInformation/ChangeLog 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/ChangeLog 2007-05-07 07:58:46 UTC (rev 5112) @@ -1,4 +1,4 @@ -1.0.3 - [RELEASEDATE] +1.0.3 - Monday 07 May 2007 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Fixed issue #9838: ezcSystemInformation doesn't have Modified: releases/SystemInformation/1.0.3/src/system/exceptions/cant_scan.php =================================================================== --- trunk/SystemInformation/src/system/exceptions/cant_scan.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/exceptions/cant_scan.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfoReaderCantScanOSException class * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -16,7 +16,7 @@ * * @package SystemInformation * @author - * @version //autogen// + * @version 1.0.3 */ class ezcSystemInfoReaderCantScanOSException extends Exception { Modified: releases/SystemInformation/1.0.3/src/system/info.php =================================================================== --- trunk/SystemInformation/src/system/info.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/info.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfo class. * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -65,7 +65,7 @@ * </code> * * @package SystemInformation - * @version //autogentag// + * @version 1.0.3 * @mainclass */ class ezcSystemInfo Modified: releases/SystemInformation/1.0.3/src/system/interfaces/info_reader.php =================================================================== --- trunk/SystemInformation/src/system/interfaces/info_reader.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/interfaces/info_reader.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfoReader class * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * The ezcSystemInfoReader represents common interface of OS info reader. * * @package SystemInformation - * @version //autogentag// + * @version 1.0.3 */ abstract class ezcSystemInfoReader { Modified: releases/SystemInformation/1.0.3/src/system/readers/info_freebsd.php =================================================================== --- trunk/SystemInformation/src/system/readers/info_freebsd.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/readers/info_freebsd.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfoFreeBsdReader class * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 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.3 */ class ezcSystemInfoFreeBsdReader extends ezcSystemInfoReader { Modified: releases/SystemInformation/1.0.3/src/system/readers/info_linux.php =================================================================== --- trunk/SystemInformation/src/system/readers/info_linux.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/readers/info_linux.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfoLinuxReader class * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 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.3 */ class ezcSystemInfoLinuxReader extends ezcSystemInfoReader { Modified: releases/SystemInformation/1.0.3/src/system/readers/info_windows.php =================================================================== --- trunk/SystemInformation/src/system/readers/info_windows.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/readers/info_windows.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfoWindowsReader class * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 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.3 */ class ezcSystemInfoWindowsReader extends ezcSystemInfoReader { Modified: releases/SystemInformation/1.0.3/src/system/structs/accelerator_info.php =================================================================== --- trunk/SystemInformation/src/system/structs/accelerator_info.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system/structs/accelerator_info.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * File containing the ezcSystemInfoAccelerator structure. * * @package SystemInformation - * @version //autogentag// + * @version 1.0.3 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @filesource Modified: releases/SystemInformation/1.0.3/src/system_autoload.php =================================================================== --- trunk/SystemInformation/src/system_autoload.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/src/system_autoload.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -4,7 +4,7 @@ * * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License - * @version //autogentag// + * @version 1.0.3 * @filesource * @package SystemInformation */ Modified: releases/SystemInformation/1.0.3/tests/suite.php =================================================================== --- trunk/SystemInformation/tests/suite.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/tests/suite.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -4,7 +4,7 @@ * * @package SystemInformation * @subpackage Tests -* @version //autogentag// +* @version 1.0.3 * @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.3/tests/sysinfo_test.php =================================================================== --- trunk/SystemInformation/tests/sysinfo_test.php 2007-05-07 07:37:03 UTC (rev 5098) +++ releases/SystemInformation/1.0.3/tests/sysinfo_test.php 2007-05-07 07:58:46 UTC (rev 5112) @@ -3,7 +3,7 @@ * ezcSystemInfoTest * * @package SystemInformation - * @version //autogen// + * @version 1.0.3 * @subpackage Tests * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
