Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
838f4df6
Commit
838f4df6
authored
Oct 09, 2013
by
David Baumgold
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1269 from edx/db/clarify-debug
Clarify USE_I18N settings
parents
d42a3507
cbaa3089
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
8 deletions
+24
-8
cms/envs/acceptance.py
+5
-0
cms/envs/common.py
+6
-4
cms/envs/dev.py
+1
-0
lms/envs/acceptance.py
+5
-0
lms/envs/common.py
+6
-4
lms/envs/dev.py
+1
-0
No files found.
cms/envs/acceptance.py
View file @
838f4df6
...
...
@@ -82,6 +82,11 @@ DATABASES = {
# Use the auto_auth workflow for creating users and logging them in
MITX_FEATURES
[
'AUTOMATIC_AUTH_FOR_TESTING'
]
=
True
# HACK
# Setting this flag to false causes imports to not load correctly in the lettuce python files
# We do not yet understand why this occurs. Setting this to true is a stopgap measure
USE_I18N
=
True
# Include the lettuce app for acceptance testing, including the 'harvest' django-admin command
INSTALLED_APPS
+=
(
'lettuce.django'
,)
LETTUCE_APPS
=
(
'contentstore'
,)
...
...
cms/envs/common.py
View file @
838f4df6
...
...
@@ -218,10 +218,12 @@ STATICFILES_DIRS = [
TIME_ZONE
=
'America/New_York'
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
LANGUAGE_CODE
=
'en'
# http://www.i18nguy.com/unicode/language-identifiers.html
# We want i18n to be turned off in production, at least until we have full
# localizations. It's disconcerting for everything on the page to be in English
# except for one or two strings like "login" which are correctly localized.
USE_I18N
=
DEBUG
# We want i18n to be turned off in production, at least until we have full localizations.
# Thus we want the Django translation engine to be disabled. Otherwise even without
# localization files, if the user's browser is set to a language other than us-en,
# strings like "login" and "password" will be translated and the rest of the page will be
# in English, which is confusing.
USE_I18N
=
False
USE_L10N
=
True
# Localization strings (e.g. django.po) are under this directory
...
...
cms/envs/dev.py
View file @
838f4df6
...
...
@@ -9,6 +9,7 @@ from .common import *
from
logsettings
import
get_logger_config
DEBUG
=
True
USE_I18N
=
True
TEMPLATE_DEBUG
=
DEBUG
LOGGING
=
get_logger_config
(
ENV_ROOT
/
"log"
,
logging_env
=
"dev"
,
...
...
lms/envs/acceptance.py
View file @
838f4df6
...
...
@@ -109,6 +109,11 @@ CC_PROCESSOR['CyberSource']['MERCHANT_ID'] = "edx"
CC_PROCESSOR
[
'CyberSource'
][
'SERIAL_NUMBER'
]
=
"0123456789012345678901"
CC_PROCESSOR
[
'CyberSource'
][
'PURCHASE_ENDPOINT'
]
=
"/shoppingcart/payment_fake"
# HACK
# Setting this flag to false causes imports to not load correctly in the lettuce python files
# We do not yet understand why this occurs. Setting this to true is a stopgap measure
USE_I18N
=
True
MITX_FEATURES
[
'ENABLE_FEEDBACK_SUBMISSION'
]
=
True
FEEDBACK_SUBMISSION_EMAIL
=
'dummy@example.com'
...
...
lms/envs/common.py
View file @
838f4df6
...
...
@@ -455,10 +455,12 @@ FAVICON_PATH = 'images/favicon.ico'
TIME_ZONE
=
'America/New_York'
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
LANGUAGE_CODE
=
'en'
# http://www.i18nguy.com/unicode/language-identifiers.html
# We want i18n to be turned off in production, at least until we have full
# localizations. It's disconcerting for everything on the page to be in English
# except for one or two strings like "login" which are correctly localized.
USE_I18N
=
DEBUG
# We want i18n to be turned off in production, at least until we have full localizations.
# Thus we want the Django translation engine to be disabled. Otherwise even without
# localization files, if the user's browser is set to a language other than us-en,
# strings like "login" and "password" will be translated and the rest of the page will be
# in English, which is confusing.
USE_I18N
=
False
USE_L10N
=
True
# Localization strings (e.g. django.po) are under this directory
...
...
lms/envs/dev.py
View file @
838f4df6
...
...
@@ -16,6 +16,7 @@ from .common import *
from
logsettings
import
get_logger_config
DEBUG
=
True
USE_I18N
=
True
TEMPLATE_DEBUG
=
True
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment