root/trunk/apps/main/config/settings.yml

Revision 56, 1.8 kB (checked in by nperriault, 7 months ago)

trunk still broken at this time, but work has progressed:

  • updated sfGuardAuth local module to use 1.1 forms
  • added FormTemplateListener? to listen for filter_parameters event, and handle passed sfForm object instances
  • moved from cryptographp to recpatcha
  • moved sfValidatorBlacklist to sfFormExtraPlugin
  • lib/ folder layout
  • removed jQueryHelper (unused)
Line 
1 prod:
2   .settings:
3     logging_enabled:        on
4     no_script_name:         on
5     cache:                  on
6
7 dev:
8   .settings:
9     error_reporting:        <?php echoln(E_ALL | E_STRICT) ?>
10     web_debug:              on
11     cache:                  off
12     no_script_name:         off
13     etag:                   off
14
15 search:
16   .settings:
17     error_reporting:        <?php echoln(E_ALL | E_STRICT) ?>
18     web_debug:              off
19     cache:                  off
20     no_script_name:         off
21     etag:                   off
22
23 staging:
24   .settings:
25     error_reporting:        <?php echoln(E_ALL | E_STRICT) ?>
26     web_debug:              on
27     cache:                  on
28     no_script_name:         off
29     etag:                   off
30
31 test:
32   .settings:
33     error_reporting:        <?php echoln(E_ALL | E_STRICT & ~E_NOTICE) ?>
34     cache:                  on
35     web_debug:              off
36     no_script_name:         off
37     etag:                   off
38
39 all:
40   .actions:
41     default_module:         applications
42     default_action:         home
43
44     error_404_module:       utils
45     error_404_action:       error404
46
47     login_module:           sfGuardAuth
48     login_action:           signin
49
50     secure_module:          sfGuardAuth
51     secure_action:          secure
52
53     module_disabled_module: default
54     module_disabled_action: disabled
55
56     unavailable_module:     default
57     unavailable_action:     unavailable
58
59   .settings:
60     available:              on
61     default_culture:        en
62     i18n:                   on
63     escaping_strategy:      on
64     escaping_method:        ESC_ENTITIES
65     standard_helpers:       [Partial, Cache, Form, MoreForm, I18N, Button, ObjectUrl, Breadcrumb, Image, Event, MoreDate]
66     enabled_modules:        [cryptographp, sfGuardAuth, sfLucene]
67     charset:                utf-8
68     csrf_secret:            symf0n14n5
Note: See TracBrowser for help on using the browser.