Reported bug with utf-8 strings
[be.git] / interfaces / web / Bugs-Everywhere-Web / beweb / config / app.cfg
1 [global]
2 # The settings in this file should not vary depending on the deployment
3 # environment. dev.cfg and prod.cfg are the locations for
4 # the different deployment settings. Settings in this file will
5 # be overridden by settings in those other files.
6
7 # The commented out values below are the defaults
8
9 # VIEW
10
11 # which view (template engine) to use if one is not specified in the
12 # template name
13 # tg.defaultview = "kid"
14
15 # The following kid settings determine the settings used by the kid serializer.
16
17 # One of (html|xml|json)
18 # kid.outputformat="html"
19
20 # kid.encoding="utf-8"
21
22 # The sitetemplate is used for overall styling of a site that
23 # includes multiple TurboGears applications
24 # tg.sitetemplate="<packagename.templates.templatename>"
25
26 # Allow every exposed function to be called as json,
27 # tg.allow_json = False
28
29 # List of Widgets to include on every page.
30 # for exemple ['turbogears.mochikit']
31 # tg.include_widgets = []
32
33 # Set to True if the scheduler should be started
34 # tg.scheduler = False
35
36 # IDENTITY
37 # General configuration of the TurboGears Identity management module
38 # --------
39
40 # Switch to turn on or off the Identity management module
41 identity.on=True
42
43 # [REQUIRED] URL to which CherryPy will internally redirect when an access
44 # control check fails. If Identity management is turned on, a value for this
45 # option must be specified.
46 identity.failure_url="/login"
47
48 # identity.provider='sqlobject'
49
50 # The names of the fields on the login form containing the visitor's user ID
51 # and password. In addition, the submit button is specified simply so its
52 # existence may be stripped out prior to passing the form data to the target
53 # controller.
54 # identity.form.user_name="user_name"
55 # identity.form.password="password"
56 # identity.form.submit="login"
57
58 # What sources should the identity provider consider when determining the
59 # identity associated with a request? Comma separated list of identity sources.
60 # Valid sources: form, visit, http_auth
61 # identity.source="form,http_auth,visit"
62
63 # SqlObjectIdentityProvider
64 # Configuration options for the default IdentityProvider
65 # -------------------------
66
67 # The classes you wish to use for your Identity model. Remember to not use reserved
68 # SQL keywords for class names (at least unless you specify a different table
69 # name using sqlmeta).
70 identity.soprovider.model.user="stfa.model.User"
71 identity.soprovider.model.group="stfa.model.Group"
72 identity.soprovider.model.permission="stfa.model.Permission"
73
74 # The password encryption algorithm used when comparing passwords against what's
75 # stored in the database. Valid values are 'md5' or 'sha1'. If you do not
76 # specify an encryption algorithm, passwords are expected to be clear text.
77 # The SqlObjectProvider *will* encrypt passwords supplied as part of your login
78 # form.  If you set the password through the password property, like:
79 # my_user.password = 'secret'
80 # the password will be encrypted in the database, provided identity is up and
81 # running, or you have loaded the configuration specifying what encryption to
82 # use (in situations where identity may not yet be running, like tests).
83
84 # identity.soprovider.encryption_algorithm=None
85
86 [/static]
87 static_filter.on = True
88 static_filter.dir = "%(top_level_dir)s/static"
89
90 [/favicon.ico]
91 static_filter.on = True
92 static_filter.file = "%(top_level_dir)s/static/images/favicon.ico"