Changeset 7632
- Timestamp:
- 02/27/08 17:43:34 (6 months ago)
- Files:
-
- branches/1.1/lib/config/config/factories.yml (modified) (1 diff)
- branches/1.1/lib/config/config/filters.yml (modified) (1 diff)
- branches/1.1/lib/config/config/settings.yml (modified) (3 diffs)
- branches/1.1/lib/task/generator/skeleton/app/app/config/settings.yml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/config/config/factories.yml
r7627 r7632 17 17 timeout: 1800 18 18 logging: %SF_LOGGING_ENABLED% 19 use_flash: %SF_USE_FLASH%19 use_flash: true 20 20 default_culture: %SF_DEFAULT_CULTURE% 21 21 branches/1.1/lib/config/config/filters.yml
r6509 r7632 9 9 class: sfBasicSecurityFilter 10 10 param: 11 type: security 12 condition: %SF_USE_SECURITY% 11 type: security 13 12 14 13 # generally, you will want to insert your own filters here branches/1.1/lib/config/config/settings.yml
r7518 r7632 16 16 # Optional features. Deactivating unused features boots performance a bit. 17 17 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.20 18 i18n: off # Enable interface translation. Set to off if your application should not be translated. 21 19 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. … … 28 26 29 27 # 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. 30 29 no_script_name: off # Enable the front controller name in generated URLs 31 30 … … 42 41 # Logging and debugging settings 43 42 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. 45 44 46 45 # Assets paths branches/1.1/lib/task/generator/skeleton/app/app/config/settings.yml
r7518 r7632 37 37 # # Optional features. Deactivating unused features boots performance a bit. 38 38 # 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.41 39 # i18n: off # Enable interface translation. Set to off if your application should not be translated. 42 40 # 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. … … 64 62 # # Logging and debugging settings 65 63 # 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. 67 65 # 68 66 # # Assets paths … … 71 69 # admin_web_dir: /sf/sf_admin 72 70 # web_debug_web_dir: /sf/sf_web_debug 71 # calendar_web_dir: /sf/calendar 73 72 # 74 73 # # Helpers included in all templates by default