Author: as
Date: Mon Sep 24 11:11:01 2007
New Revision: 6241
Log:
- Fixed issue #11477: Fixed errors in documentation.
Modified:
trunk/Url/ChangeLog
trunk/Url/src/url.php
trunk/Url/src/url_configuration.php
Modified: trunk/Url/ChangeLog
==============================================================================
--- trunk/Url/ChangeLog [iso-8859-1] (original)
+++ trunk/Url/ChangeLog [iso-8859-1] Mon Sep 24 11:11:01 2007
@@ -1,3 +1,9 @@
+1.2alpha2 - [RELEASEDATE]
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+- Fixed issue #11477: Fixed errors in documentation.
+
+
1.2alpha1 - Tuesday 18 September 2007
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Modified: trunk/Url/src/url.php
==============================================================================
--- trunk/Url/src/url.php [iso-8859-1] (original)
+++ trunk/Url/src/url.php [iso-8859-1] Mon Sep 24 11:11:01 2007
@@ -69,7 +69,7 @@
*
* @property string $host
* Hostname or null
- * @property string $path
+ * @property array(string) $path
* Complete path as an array.
* @property string $user
* User or null.
@@ -79,17 +79,17 @@
* Port or null.
* @property string $scheme
* Protocol or null.
- * @property string $query
+ * @property array(string=>mixed) $query
* Complete query string as an associative array.
* @property string $fragment
* Anchor or null.
- * @property string $basedir
- * Base directory or null.
- * @property string $script
- * Script name or null.
- * @property string $params
+ * @property array(string) $basedir
+ * Base directory (the part before the script name) or null.
+ * @property array(string) $script
+ * Script name (eg. 'index.php') or null.
+ * @property array(string) $params
* Complete ordered parameters as array.
- * @property string $uparams
+ * @property array(string=>mixed) $uparams
* Complete unordered parameters as associative array.
* @property ezcUrlConfiguration $configuration
* The URL configuration defined for this URL, or null.
Modified: trunk/Url/src/url_configuration.php
==============================================================================
--- trunk/Url/src/url_configuration.php [iso-8859-1] (original)
+++ trunk/Url/src/url_configuration.php [iso-8859-1] Mon Sep 24 11:11:01 2007
@@ -68,16 +68,16 @@
* The default php script, which comes after the basedir. Can be null
* if the web server configuration is set to hide it.
* Example: $script = index.php in
http://www.example.com/shop/index.php
- * @property array $unorderedDelimiters
+ * @property array(string) $unorderedDelimiters
* The delimiters for the unordered parameters names.
* Example: $unorderedDelimiters = array( '(', ')' ) for
* url = http://www.example.com/doc/(file)/classtrees_Base.html
- * @property string $orderedParameters
+ * @property array(string=>int) $orderedParameters
* The ordered parameters of the URL.
* Example: $orderedParameters = array( 'section' => 0, 'module' =>
1, 'view' => 2, 'content' => 3 );
* url = http://www.example.com/doc/components/view/trunk
* The numbers in the array represent the indices for each parameter.
- * @property string $unorderedParameters
+ * @property array(string=>int) $unorderedParameters
* The unordered parameters of the URL.
* Example: $unorderedParameters = array( 'file' => SINGLE_ARGUMENT
);
* url = http://www.example.com/doc/(file)/classtrees_Base.html
--
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components