summaryrefslogtreecommitdiff
path: root/framework/Web/THttpRequest.php
diff options
context:
space:
mode:
authorxue <>2006-04-01 14:57:03 +0000
committerxue <>2006-04-01 14:57:03 +0000
commit2febfa7d8b152ff8d540242bec354c92c9f2f73c (patch)
tree1831d6689651d50c4c379ae522880870dddf7100 /framework/Web/THttpRequest.php
parent0090de89b8b23069c1dd71801389dfa063e610b4 (diff)
Fixed #111.
Diffstat (limited to 'framework/Web/THttpRequest.php')
-rw-r--r--framework/Web/THttpRequest.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php
index 2fd02d1d..5ec09fc9 100644
--- a/framework/Web/THttpRequest.php
+++ b/framework/Web/THttpRequest.php
@@ -40,6 +40,14 @@
* To construct a URL that can be recognized by Prado, use {@link constructUrl()}.
* THttpRequest also provides the cookies sent by the user, user information such
* as his browser capabilities, accepted languages, etc.
+ * Currently, THttpRequest recognizes the following URL format:
+ * <code>
+ * /index.php?ServiceID=ServiceParameter
+ * </code>
+ * where ServiceID is as defined in the application configuration (e.g.
+ * the default page service's service ID is 'page').
+ * Therefore, your GET variable names should not conflict with the service
+ * IDs that your application supports.
*
* By default, THttpRequest is registered with {@link TApplication} as the
* request module. It can be accessed via {@link TApplication::getRequest()}.
@@ -52,10 +60,6 @@
class THttpRequest extends TApplicationComponent implements IteratorAggregate,ArrayAccess,IModule
{
/**
- * GET variable name to store service information
- */
- const SERVICE_VAR='sp';
- /**
* @var boolean whether the module is initialized
*/
private $_initialized=false;
@@ -431,7 +435,7 @@ class THttpRequest extends TApplicationComponent implements IteratorAggregate,Ar
* Constructs a URL that is recognizable by Prado.
* You may override this method to provide your own way of URL formatting.
* The URL is constructed as the following format:
- * /entryscript.php?sp=serviceID.serviceParameter&get1=value1&...
+ * /entryscript.php?serviceID=serviceParameter&get1=value1&...
* @param string service ID
* @param string service parameter
* @param array GET parameters, null if not needed