Development

Changeset 7632

You must first sign up to be able to contribute.

Changeset 7632

Show
Ignore:
Timestamp:
02/27/08 17:43:34 (6 months ago)
Author:
fabien
Message:

removed sf_use_flash and sf_use_security from settings.yml (use is configurable in factories.yml and security can be disabled in filters.yml)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/config/config/factories.yml

    r7627 r7632  
    1717      timeout:         1800 
    1818      logging:         %SF_LOGGING_ENABLED% 
    19       use_flash:       %SF_USE_FLASH% 
     19      use_flash:       true 
    2020      default_culture: %SF_DEFAULT_CULTURE% 
    2121 
  • branches/1.1/lib/config/config/filters.yml

    r6509 r7632  
    99  class: sfBasicSecurityFilter 
    1010  param: 
    11     type:      security 
    12     condition: %SF_USE_SECURITY% 
     11    type: security 
    1312 
    1413# generally, you will want to insert your own filters here 
  • branches/1.1/lib/config/config/settings.yml

    r7518 r7632  
    1616    # Optional features. Deactivating unused features boots performance a bit. 
    1717    use_database:           on        # Enable database manager. Set to off if you don't use a database. 
    18     use_security:           on        # Enable security features (login and credentials). Set to off for public applications. 
    19     use_flash:              on        # Enable flash parameter feature. Set to off if you never use the set_flash() method in actions. 
    2018    i18n:                   off       # Enable interface translation. Set to off if your application should not be translated. 
    2119    check_symfony_version:  off       # Enable check of symfony version for every request. Set to on to have symfony clear the cache automatically when the framework is upgraded. Set to off if you always clear the cache after an upgrade. 
     
    2826 
    2927    # Routing settings 
     28    relative_url_root:      ~         # Default URL prefix. Use this when your symfony project is installed in a sub directory of the apache document root. 
    3029    no_script_name:         off       # Enable the front controller name in generated URLs 
    3130 
     
    4241    # Logging and debugging settings 
    4342    web_debug:              off       # Enable the web debug toolbar 
    44     error_reporting:        <?php echo (E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR)."\n" ?> # Determines which events are logged. 
     43    error_reporting:        <?php echo (E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR)."\n" ?> # Determines which events are logged. 
    4544 
    4645    # Assets paths 
  • branches/1.1/lib/task/generator/skeleton/app/app/config/settings.yml

    r7518 r7632  
    3737#    # Optional features. Deactivating unused features boots performance a bit. 
    3838#    use_database:           on        # Enable database manager. Set to off if you don't use a database. 
    39 #    use_security:           on        # Enable security features (login and credentials). Set to off for public applications. 
    40 #    use_flash:              on        # Enable flash parameter feature. Set to off if you never use the set_flash() method in actions. 
    4139#    i18n:                   off       # Enable interface translation. Set to off if your application should not be translated. 
    4240#    check_symfony_version:  off       # Enable check of symfony version for every request. Set to on to have symfony clear the cache automatically when the framework is upgraded. Set to off if you always clear the cache after an upgrade. 
     
    6462#    # Logging and debugging settings 
    6563#    web_debug:              off       # Enable the web debug toolbar 
    66 #    error_reporting:        <?php echo E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR ?> # Determines which events are logged. 
     64#    error_reporting:        <?php echo (E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR)."\n" ?> # Determines which events are logged. 
    6765# 
    6866#    # Assets paths 
     
    7169#    admin_web_dir:          /sf/sf_admin 
    7270#    web_debug_web_dir:      /sf/sf_web_debug 
     71#    calendar_web_dir:       /sf/calendar 
    7372# 
    7473#    # Helpers included in all templates by default