~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/config/app.cfg

  • Committer: Michael Hudson
  • Date: 2008-06-20 03:46:24 UTC
  • mfrom: (159.2.51 wsgi-ify)
  • Revision ID: michael.hudson@canonical.com-20080620034624-p46dvwbhppj2pojw
merge wsgi-ify
this removes the dependency on turbogears and cherrypy in favour of one on
paste (http://pythonpaste.org).
it adds a new executable, serve-branches.py, that serves branches following the
structure of the file system, but also converts start-loggerhead.py to serve
things from a loggerhead.conf file the 'old-fashioned' way.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
# The sitetemplate is used for overall styling of a site that
12
 
# includes multiple TurboGears applications
13
 
# tg.sitetemplate="<packagename.templates.templatename>"
14
 
 
15
 
# Allow every exposed function to be called as json,
16
 
# tg.allow_json = False
17
 
 
18
 
# List of Widgets to include on every page.
19
 
# for exemple ['turbogears.mochikit']
20
 
# tg.include_widgets = []
21
 
 
22
 
# Set to True if the scheduler should be started
23
 
# tg.scheduler = False
24
 
 
25
 
[/static]
26
 
static_filter.on = True
27
 
static_filter.dir = "%(top_level_dir)s/static"
28
 
 
29
 
[/favicon.ico]
30
 
static_filter.on = True
31
 
static_filter.file = "%(top_level_dir)s/static/images/favicon.ico"