Show
Ignore:
Timestamp:
03/01/06 16:44:16 (6 years ago)
Author:
haas
Message:

skeleton regression tests for all classes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/dispatcher.php

    r155 r159  
    4141     *  Called from file dispatch.php, which is invoked by 
    4242     *  {@link http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html Apache mod_rewrite} 
    43      *  whenever a client makes a request. 
    44      *  Filter ???, start a session, construct an ActionController and 
    45      *  process the route. 
     43     *  whenever a client makes a request.  Actions: 
     44     *  <ol> 
     45     *    <li>Remove forbidden tags and attributes from 
     46     *      {@link http://www.php.net/reserved.variables#reserved.variables.get $_GET}, 
     47     *      {@link http://www.php.net/reserved.variables#reserved.variables.post $_POST} and 
     48     *      {@link http://www.php.net/reserved.variables#reserved.variables.request $_REQUEST}. 
     49</li> 
     50     *    <li>Start a session to keep track of state between requests from 
     51     *      the client.</li> 
     52     *    <li>Construct an ActionController to process the action.</li> 
     53     *    <li>Process the route</li> 
     54     *  </ol> 
    4655     *  @uses ActionController::__construct() 
    4756     *  @uses ActionController::process_route()