Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
08c9fd94
Commit
08c9fd94
authored
11 years ago
by
David Baumgold
Browse files
Options
Downloads
Patches
Plain Diff
Do theme post-processing in startup hook
parent
eeb5f812
Loading
Loading
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
lms/envs/aws.py
+0
-8
0 additions, 8 deletions
lms/envs/aws.py
lms/envs/common.py
+0
-27
0 additions, 27 deletions
lms/envs/common.py
lms/startup.py
+34
-0
34 additions, 0 deletions
lms/startup.py
lms/templates/main.html
+1
-1
1 addition, 1 deletion
lms/templates/main.html
with
35 additions
and
36 deletions
lms/envs/aws.py
+
0
−
8
View file @
08c9fd94
...
...
@@ -188,14 +188,6 @@ BULK_EMAIL_ROUTING_KEY = HIGH_PRIORITY_QUEUE
# Theme overrides
THEME_NAME
=
ENV_TOKENS
.
get
(
'
THEME_NAME
'
,
None
)
# Workaround for setting THEME_NAME to an empty
# string which is the default due to this ansible
# bug: https://github.com/ansible/ansible/issues/4812
if
THEME_NAME
==
""
:
THEME_NAME
=
None
if
not
THEME_NAME
is
None
:
enable_theme
(
THEME_NAME
)
FAVICON_PATH
=
'
themes/%s/images/favicon.ico
'
%
THEME_NAME
# Marketing link overrides
MKTG_URL_LINK_MAP
.
update
(
ENV_TOKENS
.
get
(
'
MKTG_URL_LINK_MAP
'
,
{}))
...
...
This diff is collapsed.
Click to expand it.
lms/envs/common.py
+
0
−
27
View file @
08c9fd94
...
...
@@ -1038,33 +1038,6 @@ MKTG_URL_LINK_MAP = {
}
############################### THEME ################################
def
enable_theme
(
theme_name
):
"""
Enable the settings for a custom theme, whose files should be stored
in ENV_ROOT/themes/THEME_NAME (e.g., edx_all/themes/stanford).
The THEME_NAME setting should be configured separately since it can
'
t
be set here (this function closes too early). An idiom for doing this
is:
THEME_NAME =
"
stanford
"
enable_theme(THEME_NAME)
"""
FEATURES
[
'
USE_CUSTOM_THEME
'
]
=
True
# Calculate the location of the theme's files
theme_root
=
ENV_ROOT
/
"
themes
"
/
theme_name
# Include the theme's templates in the template search paths
TEMPLATE_DIRS
.
append
(
theme_root
/
'
templates
'
)
MAKO_TEMPLATES
[
'
main
'
].
append
(
theme_root
/
'
templates
'
)
# Namespace the theme's static files to 'themes/<theme_name>' to
# avoid collisions with default edX static files
STATICFILES_DIRS
.
append
((
u
'
themes/%s
'
%
theme_name
,
theme_root
/
'
static
'
))
################# Student Verification #################
VERIFY_STUDENT
=
{
"
DAYS_GOOD_FOR
"
:
365
,
# How many days is a verficiation good for?
...
...
This diff is collapsed.
Click to expand it.
lms/startup.py
+
34
−
0
View file @
08c9fd94
...
...
@@ -22,3 +22,37 @@ def run():
if
settings
.
INIT_MODULESTORE_ON_STARTUP
:
for
store_name
in
settings
.
MODULESTORE
:
modulestore
(
store_name
)
if
settings
.
FEATURES
.
get
(
'
USE_CUSTOM_THEME
'
,
False
):
enable_theme
()
def
enable_theme
():
"""
Enable the settings for a custom theme, whose files should be stored
in ENV_ROOT/themes/THEME_NAME (e.g., edx_all/themes/stanford).
"""
# Workaround for setting THEME_NAME to an empty
# string which is the default due to this ansible
# bug: https://github.com/ansible/ansible/issues/4812
if
settings
.
THEME_NAME
==
""
:
settings
.
THEME_NAME
=
None
return
assert
settings
.
FEATURES
[
'
USE_CUSTOM_THEME
'
]
settings
.
FAVICON_PATH
=
'
themes/{name}/images/favicon.ico
'
.
format
(
name
=
settings
.
THEME_NAME
)
# Calculate the location of the theme's files
theme_root
=
settings
.
ENV_ROOT
/
"
themes
"
/
settings
.
THEME_NAME
# Include the theme's templates in the template search paths
settings
.
TEMPLATE_DIRS
.
append
(
theme_root
/
'
templates
'
)
settings
.
MAKO_TEMPLATES
[
'
main
'
].
append
(
theme_root
/
'
templates
'
)
# Namespace the theme's static files to 'themes/<theme_name>' to
# avoid collisions with default edX static files
settings
.
STATICFILES_DIRS
.
append
(
(
u
'
themes/{}
'
.
format
(
settings
.
THEME_NAME
),
theme_root
/
'
static
'
)
)
This diff is collapsed.
Click to expand it.
lms/templates/main.html
+
1
−
1
View file @
08c9fd94
...
...
@@ -8,7 +8,7 @@
## templates have access to these functions, and we can import these
## into non-inheriting templates via the %namespace tag.
<
%
def
name=
"theme_enabled()"
>
<
%
return
settings.FEATURES
[
"
USE_CUSTOM_THEME
"
]
%
>
<
%
return
settings.FEATURES
.get
(
"
USE_CUSTOM_THEME
"
,
False
)
%
>
</
%
def>
<
%
def
name=
"stanford_theme_enabled()"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment