Development

Changeset 9027

You must first sign up to be able to contribute.

Changeset 9027

Show
Ignore:
Timestamp:
05/17/08 10:30:13 (5 months ago)
Author:
FabianLange
Message:

doc: removed web_debug from the filter chain and examples

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/book/06-Inside-the-Controller-Layer.txt

    r8671 r9027  
    870870 
    871871    rendering: ~ 
    872     web_debug: ~ 
    873872    security:  ~ 
    874873 
     
    892891You can customize the filter chain in various ways: 
    893892 
    894   * Disable some filters from the chain by adding an `enabled: off` parameter. For instance, to disable the web debug filter, write: 
    895  
    896         web_debug
     893  * Disable some filters from the chain by adding an `enabled: off` parameter. For instance, to disable the common filter, which inserts CSS and JavaScript into the head, write: 
     894 
     895        common
    897896          enabled: off 
    898897 
     
    902901 
    903902>**TIP** 
    904 >The `enabled: off` parameter works well to disable your own filters, but you can deactivate the default filters via the `settings.yml` file, by modifying the values of the `web_debug`, `use_security`, and `cache` settings. This is because each of the default filters has a `condition` parameter that tests the value of these settings. 
     903>The `enabled: off` parameter works well to disable your own filters, but you can deactivate the default filters via the `settings.yml` file, by modifying the values of the `use_security`, and `cache` settings. This is because each of the default filters has a `condition` parameter that tests the value of these settings. 
    905904 
    906905 
     
    955954 
    956955    rendering: ~ 
    957     web_debug: ~ 
    958956    security:  ~ 
    959957