comparison examples/turbogears/markuptest/config/app.cfg @ 4:49364e784c47 trunk

Added first stab of an implementation of the !TurboGears [http://www.turbogears.org/docs/plugins/template.html plugin API for template engines], and also a !TurboGears-based example using this plugin. Both written by Matt Good.
author cmlenz
date Sat, 03 Jun 2006 12:31:58 +0000
parents
children 64ff134868c4
comparison
equal deleted inserted replaced
3:518a8520a6e1 4:49364e784c47
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 tg.defaultview = "markup"
15 markup.search_path = ["%(current_dir_uri)s"]
16 markup.outputformat = "xml"
17
18 # The following kid settings determine the settings used by the kid serializer.
19
20 # One of (html|xml|json)
21 # kid.outputformat="html"
22
23 # kid.encoding="utf-8"
24
25 # The sitetemplate is used for overall styling of a site that
26 # includes multiple TurboGears applications
27 # tg.sitetemplate="<packagename.templates.templatename>"
28
29 # Allow every exposed function to be called as json,
30 # tg.allow_json = False
31
32 # Set to True if you'd like all of your pages to include MochiKit
33 # tg.mochikit_all = False
34
35 # Set to True if the scheduler should be started
36 # tg.scheduler = False
37
38 [/static]
39 static_filter.on = True
40 static_filter.dir = "%(top_level_dir)s/static"
41
42 [/favicon.ico]
43 static_filter.on = True
44 static_filter.file = "%(top_level_dir)s/static/images/favicon.ico"
Copyright (C) 2012-2017 Edgewall Software