Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: frontend/settings.py

Issue 6821082: Integrate dynamic charts into autotest frontend. (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: Add license. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « frontend/croschart/views.py ('k') | frontend/urls.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frontend/settings.py
diff --git a/frontend/settings.py b/frontend/settings.py
index 3ac7f805944c6a93b7e26c5abe55951dec871018..57069df79f2ea22873a6fb760b94fe6eed7388b1 100644
--- a/frontend/settings.py
+++ b/frontend/settings.py
@@ -45,6 +45,7 @@ else:
URL_PREFIX = 'afe/server/'
TKO_URL_PREFIX = 'new_tko/server/'
PLANNER_URL_PREFIX = 'planner/server/'
+CROSCHART_URL_PREFIX = 'croschart/server/'
# Local time zone for this installation. Choices can be found here:
# http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
@@ -103,13 +104,15 @@ TEMPLATE_DIRS = (
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
- os.path.abspath(os.path.dirname(__file__) + '/templates')
+ os.path.abspath(os.path.dirname(__file__) + '/templates'),
+ os.path.abspath(os.path.dirname(__file__) + '/croschart/templates')
)
INSTALLED_APPS = (
'frontend.afe',
'frontend.tko',
'frontend.planner',
+ 'frontend.croschart',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
« no previous file with comments | « frontend/croschart/views.py ('k') | frontend/urls.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698