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
0107525d
Commit
0107525d
authored
Oct 07, 2015
by
Peter Fogg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable self-paced courses behind a feature flag.
parent
9d88bef1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
3 deletions
+25
-3
cms/djangoapps/models/settings/course_details.py
+7
-3
cms/envs/bok_choy.py
+3
-0
cms/envs/common.py
+3
-0
cms/envs/test.py
+3
-0
lms/envs/bok_choy.py
+3
-0
lms/envs/common.py
+3
-0
lms/envs/test.py
+3
-0
No files found.
cms/djangoapps/models/settings/course_details.py
View file @
0107525d
...
@@ -54,7 +54,8 @@ class CourseDetails(object):
...
@@ -54,7 +54,8 @@ class CourseDetails(object):
'50'
'50'
)
# minimum passing score for entrance exam content module/tree,
)
# minimum passing score for entrance exam content module/tree,
self
.
has_cert_config
=
None
# course has active certificate configuration
self
.
has_cert_config
=
None
# course has active certificate configuration
self
.
self_paced
=
None
if
settings
.
FEATURES
.
get
(
'ENABLE_SELF_PACED_COURSES'
):
self
.
self_paced
=
None
@classmethod
@classmethod
def
_fetch_about_attribute
(
cls
,
course_key
,
attribute
):
def
_fetch_about_attribute
(
cls
,
course_key
,
attribute
):
...
@@ -87,7 +88,8 @@ class CourseDetails(object):
...
@@ -87,7 +88,8 @@ class CourseDetails(object):
# Default course license is "All Rights Reserved"
# Default course license is "All Rights Reserved"
course_details
.
license
=
getattr
(
descriptor
,
"license"
,
"all-rights-reserved"
)
course_details
.
license
=
getattr
(
descriptor
,
"license"
,
"all-rights-reserved"
)
course_details
.
has_cert_config
=
has_active_web_certificate
(
descriptor
)
course_details
.
has_cert_config
=
has_active_web_certificate
(
descriptor
)
course_details
.
self_paced
=
descriptor
.
self_paced
if
settings
.
FEATURES
.
get
(
'ENABLE_SELF_PACED_COURSES'
):
course_details
.
self_paced
=
descriptor
.
self_paced
for
attribute
in
ABOUT_ATTRIBUTES
:
for
attribute
in
ABOUT_ATTRIBUTES
:
value
=
cls
.
_fetch_about_attribute
(
course_key
,
attribute
)
value
=
cls
.
_fetch_about_attribute
(
course_key
,
attribute
)
...
@@ -190,7 +192,9 @@ class CourseDetails(object):
...
@@ -190,7 +192,9 @@ class CourseDetails(object):
descriptor
.
language
=
jsondict
[
'language'
]
descriptor
.
language
=
jsondict
[
'language'
]
dirty
=
True
dirty
=
True
if
'self_paced'
in
jsondict
and
jsondict
[
'self_paced'
]
!=
descriptor
.
self_paced
:
if
(
settings
.
FEATURES
.
get
(
'ENABLE_SELF_PACED_COURSES'
)
and
'self_paced'
in
jsondict
and
jsondict
[
'self_paced'
]
!=
descriptor
.
self_paced
):
descriptor
.
self_paced
=
jsondict
[
'self_paced'
]
descriptor
.
self_paced
=
jsondict
[
'self_paced'
]
dirty
=
True
dirty
=
True
...
...
cms/envs/bok_choy.py
View file @
0107525d
...
@@ -106,6 +106,9 @@ FEATURES['ENTRANCE_EXAMS'] = True
...
@@ -106,6 +106,9 @@ FEATURES['ENTRANCE_EXAMS'] = True
FEATURES
[
'ENABLE_PROCTORED_EXAMS'
]
=
True
FEATURES
[
'ENABLE_PROCTORED_EXAMS'
]
=
True
# Enable self-paced courses
FEATURES
[
'ENABLE_SELF_PACED_COURSES'
]
=
True
# Point the URL used to test YouTube availability to our stub YouTube server
# Point the URL used to test YouTube availability to our stub YouTube server
YOUTUBE_PORT
=
9080
YOUTUBE_PORT
=
9080
YOUTUBE
[
'API'
]
=
"http://127.0.0.1:{0}/get_youtube_api/"
.
format
(
YOUTUBE_PORT
)
YOUTUBE
[
'API'
]
=
"http://127.0.0.1:{0}/get_youtube_api/"
.
format
(
YOUTUBE_PORT
)
...
...
cms/envs/common.py
View file @
0107525d
...
@@ -182,6 +182,9 @@ FEATURES = {
...
@@ -182,6 +182,9 @@ FEATURES = {
# Timed or Proctored Exams
# Timed or Proctored Exams
'ENABLE_PROCTORED_EXAMS'
:
False
,
'ENABLE_PROCTORED_EXAMS'
:
False
,
# Enable self-paced courses.
'ENABLE_SELF_PACED_COURSES'
:
False
,
}
}
ENABLE_JASMINE
=
False
ENABLE_JASMINE
=
False
...
...
cms/envs/test.py
View file @
0107525d
...
@@ -279,3 +279,6 @@ FEATURES['ENABLE_TEAMS'] = True
...
@@ -279,3 +279,6 @@ FEATURES['ENABLE_TEAMS'] = True
# Dummy secret key for dev/test
# Dummy secret key for dev/test
SECRET_KEY
=
'85920908f28904ed733fe576320db18cabd7b6cd'
SECRET_KEY
=
'85920908f28904ed733fe576320db18cabd7b6cd'
# Enable self-paced courses
FEATURES
[
'ENABLE_SELF_PACED_COURSES'
]
=
True
lms/envs/bok_choy.py
View file @
0107525d
...
@@ -131,6 +131,9 @@ FEATURES['LICENSING'] = True
...
@@ -131,6 +131,9 @@ FEATURES['LICENSING'] = True
# Use the auto_auth workflow for creating users and logging them in
# Use the auto_auth workflow for creating users and logging them in
FEATURES
[
'AUTOMATIC_AUTH_FOR_TESTING'
]
=
True
FEATURES
[
'AUTOMATIC_AUTH_FOR_TESTING'
]
=
True
# Enable self-paced courses
FEATURES
[
'ENABLE_SELF_PACED_COURSES'
]
=
True
########################### Entrance Exams #################################
########################### Entrance Exams #################################
FEATURES
[
'MILESTONES_APP'
]
=
True
FEATURES
[
'MILESTONES_APP'
]
=
True
FEATURES
[
'ENTRANCE_EXAMS'
]
=
True
FEATURES
[
'ENTRANCE_EXAMS'
]
=
True
...
...
lms/envs/common.py
View file @
0107525d
...
@@ -408,6 +408,9 @@ FEATURES = {
...
@@ -408,6 +408,9 @@ FEATURES = {
# Enable LTI Provider feature.
# Enable LTI Provider feature.
'ENABLE_LTI_PROVIDER'
:
False
,
'ENABLE_LTI_PROVIDER'
:
False
,
# Enable self-paced courses.
'ENABLE_SELF_PACED_COURSES'
:
False
,
}
}
# Ignore static asset files on import which match this pattern
# Ignore static asset files on import which match this pattern
...
...
lms/envs/test.py
View file @
0107525d
...
@@ -532,3 +532,6 @@ AUTHENTICATION_BACKENDS += ('lti_provider.users.LtiBackend',)
...
@@ -532,3 +532,6 @@ AUTHENTICATION_BACKENDS += ('lti_provider.users.LtiBackend',)
# ORGANIZATIONS
# ORGANIZATIONS
FEATURES
[
'ORGANIZATIONS_APP'
]
=
True
FEATURES
[
'ORGANIZATIONS_APP'
]
=
True
# Enable self-paced courses
FEATURES
[
'ENABLE_SELF_PACED_COURSES'
]
=
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