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
5043b465
Commit
5043b465
authored
Nov 24, 2015
by
Peter Fogg
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10602 from edx/peter-fogg/update-footer-config
Update LMS footer links.
parents
347bfcbb
c5fac6ce
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
10 deletions
+14
-10
lms/djangoapps/branding/api.py
+2
-2
lms/djangoapps/courseware/features/homepage.feature
+6
-6
lms/envs/aws.py
+1
-0
lms/envs/common.py
+2
-0
lms/envs/test.py
+3
-2
No files found.
lms/djangoapps/branding/api.py
View file @
5043b465
...
...
@@ -178,9 +178,9 @@ def _footer_navigation_links():
(
"about"
,
marketing_link
(
"ABOUT"
),
_
(
"About"
)),
(
"blog"
,
marketing_link
(
"BLOG"
),
_
(
"Blog"
)),
(
"news"
,
marketing_link
(
"NEWS"
),
_
(
"News"
)),
(
"
faq"
,
marketing_link
(
"FAQ"
),
_
(
"FAQs
"
)),
(
"
help-center"
,
settings
.
SUPPORT_SITE_LINK
,
_
(
"Help Center
"
)),
(
"contact"
,
marketing_link
(
"CONTACT"
),
_
(
"Contact"
)),
(
"
jobs"
,
marketing_link
(
"JOBS"
),
_
(
"Job
s"
)),
(
"
careers"
,
marketing_link
(
"CAREERS"
),
_
(
"Career
s"
)),
(
"donate"
,
marketing_link
(
"DONATE"
),
_
(
"Donate"
)),
(
"sitemap"
,
marketing_link
(
"SITE_MAP"
),
_
(
"Sitemap"
)),
]
...
...
lms/djangoapps/courseware/features/homepage.feature
View file @
5043b465
...
...
@@ -15,9 +15,9 @@ Feature: LMS.Homepage for web users
Scenario Outline
:
User can see main parts of the page
Given
I visit the homepage
Then
I should see the following links and ids
|
id
|
Link
|
|
about
|
About
|
|
jobs
|
Jobs
|
|
faq
|
FAQs
|
|
contact
|
Contact
|
|
news
|
News
|
|
id
|
Link
|
|
about
|
About
|
|
careers
|
Careers
|
|
help-center
|
Help
Center
|
|
contact
|
Contact
|
|
news
|
News
|
lms/envs/aws.py
View file @
5043b465
...
...
@@ -242,6 +242,7 @@ COMP_THEME_DIR = path(ENV_TOKENS.get('COMP_THEME_DIR', COMP_THEME_DIR))
# Marketing link overrides
MKTG_URL_LINK_MAP
.
update
(
ENV_TOKENS
.
get
(
'MKTG_URL_LINK_MAP'
,
{}))
SUPPORT_SITE_LINK
=
ENV_TOKENS
.
get
(
'SUPPORT_SITE_LINK'
,
SUPPORT_SITE_LINK
)
# Mobile store URL overrides
MOBILE_STORE_URLS
=
ENV_TOKENS
.
get
(
'MOBILE_STORE_URLS'
,
MOBILE_STORE_URLS
)
...
...
lms/envs/common.py
View file @
5043b465
...
...
@@ -2049,6 +2049,8 @@ MKTG_URL_LINK_MAP = {
'WHAT_IS_VERIFIED_CERT'
:
'verified-certificate'
,
}
SUPPORT_SITE_LINK
=
''
############################# SOCIAL MEDIA SHARING #############################
# Social Media Sharing on Student Dashboard
SOCIAL_SHARING_SETTINGS
=
{
...
...
lms/envs/test.py
View file @
5043b465
...
...
@@ -337,13 +337,13 @@ CELERY_RESULT_BACKEND = 'djcelery.backends.cache:CacheBackend'
MKTG_URL_LINK_MAP
=
{
'ABOUT'
:
'about'
,
'CONTACT'
:
'contact'
,
'
FAQ'
:
'help
'
,
'
HELP_CENTER'
:
'help-center
'
,
'COURSES'
:
'courses'
,
'ROOT'
:
'root'
,
'TOS'
:
'tos'
,
'HONOR'
:
'honor'
,
'PRIVACY'
:
'privacy'
,
'
JOBS'
:
'job
s'
,
'
CAREERS'
:
'career
s'
,
'NEWS'
:
'news'
,
'PRESS'
:
'press'
,
'BLOG'
:
'blog'
,
...
...
@@ -353,6 +353,7 @@ MKTG_URL_LINK_MAP = {
'WHAT_IS_VERIFIED_CERT'
:
'verified-certificate'
,
}
SUPPORT_SITE_LINK
=
'https://support.example.com'
############################ STATIC FILES #############################
DEFAULT_FILE_STORAGE
=
'django.core.files.storage.FileSystemStorage'
...
...
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