Ignore:
Timestamp:
08/22/10 19:35:26 (21 months ago)
Author:
vain
Message:
  • fix bugs on subcontroller recognition and enabled subcontroller dispatching
  • added method dispatchable() to test the routing, before dispatching
  • added method reset() to set default values to the TargetRoute? object
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/httpresponse.core.php

    r4578 r4597  
    2727    * @copyright  Copyleft: All rights reserved. Jens-André Koch (2005 - onwards) 
    2828    * @link       http://www.clansuite.com 
    29     *  
     29    * 
    3030    * @version    SVN: $Id$ 
    3131    */ 
     
    101101 
    102102    /** 
    103      * Get-Method for HTTP 1.1 status code and its meaning. 
    104      * 
    105      * used in (@link $this->flush ) 
    106      * @see $this->flush() 
     103     * Get HTTP 1.1 status code description by status code. 
     104     * 
    107105     * @link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html 
    108106     */ 
     
    129127                                       '404'    => 'Not Found', 
    130128                                       # Server Error 
    131                                        '500'    => 'Internal Server Error' 
     129                                       '500'    => 'Internal Server Error', 
     130                                       '503'    => 'Service Temporarily Unavailable' 
    132131                                      ); 
    133132 
Note: See TracChangeset for help on using the changeset viewer.