-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.py
executable file
·48 lines (37 loc) · 1.45 KB
/
configuration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/python2.5
#
# Copyright 2008 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""System-wide configuration variables."""
import datetime
# This HTML block will be printed in the footer of every page.
FOOTER_HTML = (
'<a href="http://code.google.com/appengine">Powered by '
'Google App Engine</a> | '
'<a href="http://code.google.com/p/app-engine-site-creator/"> '
'App Engine Site Creator</a> ')
# File caching controls
FILE_CACHE_CONTROL = 'private, max-age=86400'
FILE_CACHE_TIME = datetime.timedelta(days=1)
# Title for the website
SYSTEM_TITLE = 'App Engine Site Creator'
# Description for the website
SYSTEM_DESCRIPTION = 'This site was built using App Engine Site Creator'
# Unique identifier from Google Analytics (ie. UA-xxxxxxx-x)
ANALYTICS_ID = ''
# Name of theme for your site, must be located in
# 'templates/themes/{FOLDER NAME}' where your customized
# base and page files should be located
SYSTEM_THEME_NAME = 'yui'