Reported bug with utf-8 strings
[be.git] / interfaces / web / Bugs-Everywhere-Web / beweb / app.cfg
1 [global]
2 # The settings in this file should not vary depending on the deployment
3 # environment. devcfg.py and prodcfg.py 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 # kid.outputformat="html"
16 # kid.encoding="utf-8"
17
18 # The sitetemplate is used for overall styling of a site that
19 # includes multiple TurboGears applications
20 # tg.sitetemplate="<packagename.templates.templatename>"
21
22 # Allow every exposed function to be called as json,
23 # tg.allow_json = False
24
25 # Set to True if you'd like all of your pages to include MochiKit
26 # tg.mochikit_all = False
27
28 # VISIT TRACKING
29 # Each visit to your application will be assigned a unique visit ID tracked via
30 # a cookie sent to the visitor's browser.
31 # --------------
32
33 # Enable Visit tracking
34 visit.on=True
35
36 # Number of minutes a visit may be idle before it expires.
37 # visit.timeout=20
38
39 # The name of the cookie to transmit to the visitor's browser.
40 # visit.cookie.name="tg-visit"
41
42 # Domain name to specify when setting the cookie (must begin with . according to
43 # RFC 2109). The default (None) should work for most cases and will default to
44 # the machine to which the request was made. NOTE: localhost is NEVER a valid
45 # value and will NOT WORK.
46 # visit.cookie.domain=None
47
48 # Specific path for the cookie
49 # visit.cookie.path="/"
50
51 # The name of the VisitManager plugin to use for visitor tracking.
52 # visit.manager="sqlobject"
53
54
55 # IDENTITY
56 # General configuration of the TurboGears Identity management module
57 # --------
58
59 # Switch to turn on or off the Identity management module
60 identity.on=True
61
62 # [REQUIRED] URL to which CherryPy will internally redirect when an access
63 # control check fails. If Identity management is turned on, a value for this
64 # option must be specified.
65 identity.failure_url="/login"
66
67 # The IdentityProvider to use -- defaults to the SqlObjectIdentityProvider which
68 # pulls User, Group, and Permission data out of your model database.
69 identity.provider="sqlobject"
70
71 # The names of the fields on the login form containing the visitor's user ID
72 # and password. In addition, the submit button is specified simply so its
73 # existence may be stripped out prior to passing the form data to the target
74 # controller.
75 identity.form.user_name="user_name"
76 identity.form.password="password"
77 identity.form.submit="login"
78
79 # What sources should the identity provider consider when determining the
80 # identity associated with a request? Comma separated list of identity sources.
81 # Valid sources: form, visit, http_auth
82 identity.source="form,http_auth,visit"
83
84
85 # SqlObjectIdentityProvider
86 # Configuration options for the default IdentityProvider
87 # -------------------------
88
89 # The classes you wish to use for your Identity model. Leave these commented out
90 # to use the default classes for SqlObjectIdentityProvider. Or set them to the
91 # classes in your model. NOTE: These aren't TG_* because the TG prefix is
92 # reserved for classes created by TurboGears.
93 # identity.soprovider.model.user="beweb.model.User"
94 # identity.soprovider.model.group="beweb.model.Group"
95 # identity.soprovider.model.permission="beweb.model.Permission"
96
97 # The password encryption algorithm used when comparing passwords against what's
98 # stored in the database. Valid values are 'md5' or 'sha1'. If you do not
99 # specify an encryption algorithm, passwords are expected to be clear text.
100 #
101 # The SqlObjectProvider *will* encrypt passwords supplied as part of your login
102 # form.  If you set the password through the password property, like:
103 # my_user.password = 'secret'
104 # the password will be encrypted in the database, provided identity is up and 
105 # running, or you have loaded the configuration specifying what encryption to
106 # use (in situations where identity may not yet be running, like tests).
107
108 # identity.soprovider.encryption_algorithm=None
109
110 [/static]
111 static_filter.on = True
112 static_filter.dir = "."
113
114 [/favicon.ico]
115 static_filter.on = True
116 static_filter.file = "images/favicon.ico"
117
118 [/]
119 decodingFilter.on = True
120 static_filter.root = '%(package_dir)s/static'