| 5 |
* |
* |
| 6 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 7 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 8 |
* @module Application::Request::HttpController |
* @name Application::Request::HttpController |
| 9 |
* |
* |
| 10 |
*/ |
*/ |
| 11 |
|
|
| 13 |
* $Id$ |
* $Id$ |
| 14 |
* |
* |
| 15 |
* $Log$ |
* $Log$ |
| 16 |
|
* Revision 1.3 2003/03/05 18:54:42 joko |
| 17 |
|
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 18 |
|
* |
| 19 |
* Revision 1.2 2003/03/03 21:13:59 joko |
* Revision 1.2 2003/03/03 21:13:59 joko |
| 20 |
* + request translation |
* + request translation |
| 21 |
* mungled namespaces |
* mungled namespaces |
| 29 |
|
|
| 30 |
|
|
| 31 |
/** |
/** |
| 32 |
* --- |
* This requires the Application::Request::BaseController base class |
| 33 |
|
* |
| 34 |
|
*/ |
| 35 |
|
loadModule('Application::Request::BaseController'); |
| 36 |
|
|
| 37 |
|
/** |
| 38 |
|
* --- Application::Request::HttpController |
| 39 |
* |
* |
| 40 |
|
* Responsible for GET and POST argument handling. |
| 41 |
|
* Does an array_join_merge for now. |
| 42 |
* |
* |
| 43 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 44 |
* @copyright (c) 2003 - All Rights reserved. |
* @copyright (c) 2003 - All Rights reserved. |
| 45 |
* @license GNU LGPL (GNU Lesser General Public License) |
* @license GNU LGPL (GNU Lesser General Public License) |
| 46 |
* |
* |
| 47 |
* @author-url http://www.netfrag.org/~joko/ |
* @link http://www.netfrag.org/~joko/ |
| 48 |
* @license-url http://www.gnu.org/licenses/lgpl.txt |
* @link http://www.gnu.org/licenses/lgpl.txt |
| 49 |
* |
* |
| 50 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 51 |
* @module Application::Request::HttpController |
* @subpackage Application |
| 52 |
|
* @name Application::Request::HttpController |
| 53 |
* |
* |
| 54 |
*/ |
*/ |
|
|
|
|
/** |
|
|
* Todo: |
|
|
* |
|
|
* o xyz |
|
|
* o bla, bli, blub |
|
|
* |
|
|
* |
|
|
*/ |
|
|
|
|
|
|
|
|
loadModule('Application::Request::BaseController'); |
|
| 55 |
class Application_Request_HttpController extends Application_Request_BaseController { |
class Application_Request_HttpController extends Application_Request_BaseController { |
| 56 |
|
|
| 57 |
/** |
/** |