Frederik Holljen | 27 Nov 2005 18:37
Picon
Favicon

1206 - in packages/PersistentObject/trunk: src src/structs tests tests/data [eZComponents: Trunk]

Author: Frederik Holljen
Date: 2005-11-27 18:36:53 +0100 (Sun, 27 Nov 2005)
New Revision: 1206

Log:
- Removed PersistentRecordTest
- Updated design of PersistentObject
- Implementation of fetchFromRow
- Implementation of constructor

Added:
   packages/PersistentObject/trunk/tests/persistent_object_test.php
Removed:
   packages/PersistentObject/trunk/tests/persistent_record_test.php
Modified:
   packages/PersistentObject/trunk/src/persistent_object.php
   packages/PersistentObject/trunk/src/structs/persistent_object_definition.php
   packages/PersistentObject/trunk/src/structs/persistent_object_field.php
   packages/PersistentObject/trunk/tests/data/table-def.dba
   packages/PersistentObject/trunk/tests/suite.php
   packages/PersistentObject/trunk/tests/test_class_types.php

Modified: packages/PersistentObject/trunk/src/persistent_object.php
===================================================================
--- packages/PersistentObject/trunk/src/persistent_object.php	2005-11-25 13:53:05 UTC (rev 1205)
+++ packages/PersistentObject/trunk/src/persistent_object.php	2005-11-27 17:36:53 UTC (rev 1206)
 <at>  <at>  -26,17 +26,24  <at>  <at> 
  * }
  * </code>
  *  <at> todo Mention the various limits of the databases. (e.g No CLOB in conditions)
(Continue reading)

Frederik Holljen | 28 Nov 2005 15:15
Picon
Favicon

1207 - in packages/Database/trunk/src/sqlabstraction: . implementations [eZComponents: Trunk]

Author: Frederik Holljen
Date: 2005-11-28 15:15:20 +0100 (Mon, 28 Nov 2005)
New Revision: 1207

Log:
Add package descriptions

Modified:
   packages/Database/trunk/src/sqlabstraction/implementations/query_oracle.php
   packages/Database/trunk/src/sqlabstraction/implementations/query_pgsql.php
   packages/Database/trunk/src/sqlabstraction/query.php

Modified: packages/Database/trunk/src/sqlabstraction/implementations/query_oracle.php
===================================================================
--- packages/Database/trunk/src/sqlabstraction/implementations/query_oracle.php	2005-11-27
17:36:53 UTC (rev 1206)
+++ packages/Database/trunk/src/sqlabstraction/implementations/query_oracle.php	2005-11-28
14:15:20 UTC (rev 1207)
 <at>  <at>  -1,5 +1,14  <at>  <at> 
 <?php
 /**
+ * File containing the ezcQueryOracle class.
+ *
+ *  <at> package Database
+ *  <at> version //autogentag//
+ *  <at> copyright Copyright (C) 2005 eZ systems as. All rights reserved.
+ *  <at> license http://ez.no/licenses/new_bsd New BSD License
+ */
+
+/**
(Continue reading)

Frederik Holljen | 28 Nov 2005 15:55
Picon
Favicon

1208 - packages/Debug/trunk/src [eZComponents: Trunk]

Author: Frederik Holljen
Date: 2005-11-28 15:55:10 +0100 (Mon, 28 Nov 2005)
New Revision: 1208

Log:
Documentation fixes

Modified:
   packages/Debug/trunk/src/debug_autoload.php
   packages/Debug/trunk/src/debug_structure.php

Modified: packages/Debug/trunk/src/debug_autoload.php
===================================================================
--- packages/Debug/trunk/src/debug_autoload.php	2005-11-28 14:15:20 UTC (rev 1207)
+++ packages/Debug/trunk/src/debug_autoload.php	2005-11-28 14:55:10 UTC (rev 1208)
 <at>  <at>  -1,4 +1,12  <at>  <at> 
 <?php
+/**
+ * File containing the autoload structure.
+ *
+ *  <at> package Debug
+ *  <at> version //autogentag//
+ *  <at> copyright Copyright (C) 2005 eZ systems as. All rights reserved.
+ *  <at> license http://ez.no/licenses/new_bsd New BSD License
+ */

 return array(
     'ezcDebug'             => 'Debug/debug.php',

Modified: packages/Debug/trunk/src/debug_structure.php
(Continue reading)

Raymond Bosman | 28 Nov 2005 15:57
Picon
Favicon

1209 - packages/Archive/trunk/src [eZComponents: Trunk]

Author: Raymond Bosman
Date: 2005-11-28 15:57:51 +0100 (Mon, 28 Nov 2005)
New Revision: 1209

Log:
- Updated documention.

Modified:
   packages/Archive/trunk/src/archive.php

Modified: packages/Archive/trunk/src/archive.php
===================================================================
--- packages/Archive/trunk/src/archive.php	2005-11-28 14:55:10 UTC (rev 1208)
+++ packages/Archive/trunk/src/archive.php	2005-11-28 14:57:51 UTC (rev 1209)
 <at>  <at>  -18,29 +18,35  <at>  <at> 
 abstract class ezcArchive implements Iterator
 {
     /**
-     * The current file number.
+     *  <at> var integer  The entry or file number to which the iterator points. 
+     *
+     * The first $fileNumber starts with 0.
      */
     protected $fileNumber = 0; 

     /**
-     * Number of entries currently read.
+     *  <at> var integer  The number of entries currently read from the archive.
+     *
      */
(Continue reading)

Vadym Savchuk | 28 Nov 2005 16:08
Picon
Favicon

1211 - packages/Http/trunk/src [eZComponents: Trunk]

Author: Vadym Savchuk
Date: 2005-11-28 16:08:46 +0100 (Mon, 28 Nov 2005)
New Revision: 1211

Log:
- Fixed stupid cut&paste errors.
- Added ability to show application identifier in X-Powered-By header. 

Modified:
   packages/Http/trunk/src/passthrough.php

Modified: packages/Http/trunk/src/passthrough.php
===================================================================
--- packages/Http/trunk/src/passthrough.php	2005-11-28 15:07:41 UTC (rev 1210)
+++ packages/Http/trunk/src/passthrough.php	2005-11-28 15:08:46 UTC (rev 1211)
 <at>  <at>  -23,6 +23,25  <at>  <at> 
 class ezcHttpPassthrough
 {
     /**
+     * Application identifier.
+     *
+     * Used in X-Powered-By: header.
+     *  <at> see setApplication()
+     */
+    private static $application;
+
+    /**
+     * Set application identifier to expose in HTTP headers.
+     *
+     *  <at> param string $app Application identifier.
(Continue reading)

Raymond Bosman | 28 Nov 2005 16:07
Picon
Favicon

1210 - in packages/Archive/trunk/src: . exceptions tar/headers zip zip/headers [eZComponents: Trunk]

Author: Raymond Bosman
Date: 2005-11-28 16:07:41 +0100 (Mon, 28 Nov 2005)
New Revision: 1210

Log:
- Updated documentation.

Modified:
   packages/Archive/trunk/src/checksums.php
   packages/Archive/trunk/src/exceptions/archive_exception.php
   packages/Archive/trunk/src/file_structure.php
   packages/Archive/trunk/src/tar/headers/tar_gnu.php
   packages/Archive/trunk/src/tar/headers/tar_pax.php
   packages/Archive/trunk/src/tar/headers/tar_ustar.php
   packages/Archive/trunk/src/tar/headers/tar_v7.php
   packages/Archive/trunk/src/zip/headers/zip_central_directory.php
   packages/Archive/trunk/src/zip/headers/zip_central_directory_end.php
   packages/Archive/trunk/src/zip/headers/zip_local_file.php
   packages/Archive/trunk/src/zip/zip.php

Modified: packages/Archive/trunk/src/checksums.php
===================================================================
--- packages/Archive/trunk/src/checksums.php	2005-11-28 14:57:51 UTC (rev 1209)
+++ packages/Archive/trunk/src/checksums.php	2005-11-28 15:07:41 UTC (rev 1210)
 <at>  <at>  -1,5 +1,19  <at>  <at> 
 <?php
+/**
+ * File containing the ezcArchiveChecksum class.
+ *
+ *  <at> package Archive
(Continue reading)

Frederik Holljen | 28 Nov 2005 16:27
Picon
Favicon

1212 - packages/Archive/trunk/src [eZComponents: Trunk]

Author: Frederik Holljen
Date: 2005-11-28 16:27:45 +0100 (Mon, 28 Nov 2005)
New Revision: 1212

Log:
Documentation

Modified:
   packages/Archive/trunk/src/archive_mime.php

Modified: packages/Archive/trunk/src/archive_mime.php
===================================================================
--- packages/Archive/trunk/src/archive_mime.php	2005-11-28 15:08:46 UTC (rev 1211)
+++ packages/Archive/trunk/src/archive_mime.php	2005-11-28 15:27:45 UTC (rev 1212)
 <at>  <at>  -1,5 +1,4  <at>  <at> 
 <?php
-
 /**
  *
  *  <at> package Archive
 <at>  <at>  -8,24 +7,59  <at>  <at> 
  *  <at> license http://ez.no/licenses/new_bsd New BSD License
  */

-/** 
+/**
+ * This class provides methods to detect various archive types.
  *
  *  <at> package Archive
  *  <at> version //autogentag//
(Continue reading)

Raymond Bosman | 28 Nov 2005 16:33
Picon
Favicon

1213 - packages/Archive/trunk/src [eZComponents: Trunk]

Author: Raymond Bosman
Date: 2005-11-28 16:31:53 +0100 (Mon, 28 Nov 2005)
New Revision: 1213

Log:
- Updated documentation 

Modified:
   packages/Archive/trunk/src/archive_entry.php

Modified: packages/Archive/trunk/src/archive_entry.php
===================================================================
--- packages/Archive/trunk/src/archive_entry.php	2005-11-28 15:27:45 UTC (rev 1212)
+++ packages/Archive/trunk/src/archive_entry.php	2005-11-28 15:31:53 UTC (rev 1213)
 <at>  <at>  -69,7 +69,7  <at>  <at> 
 	}

     /**
-     * Returns true when this entry represents a link.
+     * Returns true when this entry represents a hard link.
      * 
      *  <at> returns boolean
      */
 <at>  <at>  -78,26 +78,53  <at>  <at> 
         return ( $this->fileStructure->type == self::IS_LINK );
 	}

+    /**
+     * Returns true when this entry represents a symbolic link.
+     * 
(Continue reading)

Raymond Bosman | 29 Nov 2005 15:22
Picon
Favicon

1214 - packages/Archive/trunk/src [eZComponents: Trunk]

Author: Raymond Bosman
Date: 2005-11-29 15:22:53 +0100 (Tue, 29 Nov 2005)
New Revision: 1214

Log:
- Documentation update.

Modified:
   packages/Archive/trunk/src/checksums.php

Modified: packages/Archive/trunk/src/checksums.php
===================================================================
--- packages/Archive/trunk/src/checksums.php	2005-11-28 15:31:53 UTC (rev 1213)
+++ packages/Archive/trunk/src/checksums.php	2005-11-29 14:22:53 UTC (rev 1214)
 <at>  <at>  -16,8 +16,25  <at>  <at> 
  */ 
 class ezcArchiveChecksums
 {
+    /**
+     *  <at> var array(integer) The CRC-32 lookup table. 
+     */
     private static $crc32Table = false;

+    /**
+     * Calculates the total-byte-value checksum from a string. 
+     *
+     * Returns the total ASCII value from all characters in the data string. 
+     * For example:
+     *
+     * <code>
(Continue reading)

Raymond Bosman | 29 Nov 2005 20:13
Picon
Favicon

1215 - docs/guidelines [eZComponents: Docs]

Author: Raymond Bosman
Date: 2005-11-29 20:13:42 +0100 (Tue, 29 Nov 2005)
New Revision: 1215

Log:
- Updated the manual.

Modified:
   docs/guidelines/source_documentation.txt

Modified: docs/guidelines/source_documentation.txt
===================================================================
--- docs/guidelines/source_documentation.txt	2005-11-29 14:22:53 UTC (rev 1214)
+++ docs/guidelines/source_documentation.txt	2005-11-29 19:13:42 UTC (rev 1215)
 <at>  <at>  -9,20 +9,19  <at>  <at> 

 - Source that is required to be documented.
 - The tags that are required to be used in the various contexts.
-- Optional documentation
-- Wording rules
+- Optional documentation.
+- Wording rules.

 In general the examples show in what order the various tags should be used.

-File  documentation
-=====================
-Required in all source files without a class. This includes autoload.php files,
-and the files that make up your testsuite. Should never be used in a source
-file that contains a class.
(Continue reading)


Gmane