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
e726d01d
Commit
e726d01d
authored
Oct 26, 2015
by
Nimisha Asthagiri
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10360 from edx/mobile/start_date_reuse
Reuse DEFAULT_START_DATE
parents
03236cbf
cdab4266
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
common/lib/xmodule/xmodule/modulestore/inheritance.py
+4
-2
No files found.
common/lib/xmodule/xmodule/modulestore/inheritance.py
View file @
e726d01d
...
@@ -4,12 +4,14 @@ Support for inheritance of fields down an XBlock hierarchy.
...
@@ -4,12 +4,14 @@ Support for inheritance of fields down an XBlock hierarchy.
from
__future__
import
absolute_import
from
__future__
import
absolute_import
from
datetime
import
datetime
from
datetime
import
datetime
from
django.conf
import
settings
from
pytz
import
UTC
from
pytz
import
UTC
from
xmodule.partitions.partitions
import
UserPartition
from
xmodule.partitions.partitions
import
UserPartition
from
xblock.fields
import
Scope
,
Boolean
,
String
,
Float
,
XBlockMixin
,
Dict
,
Integer
,
List
from
xblock.fields
import
Scope
,
Boolean
,
String
,
Float
,
XBlockMixin
,
Dict
,
Integer
,
List
from
xblock.runtime
import
KeyValueStore
,
KvsFieldData
from
xblock.runtime
import
KeyValueStore
,
KvsFieldData
from
xmodule.fields
import
Date
,
Timedelta
from
xmodule.fields
import
Date
,
Timedelta
from
django.conf
import
settings
from
..course_metadata_utils
import
DEFAULT_START_DATE
# Make '_' a no-op so we can scrape strings
# Make '_' a no-op so we can scrape strings
...
@@ -36,7 +38,7 @@ class InheritanceMixin(XBlockMixin):
...
@@ -36,7 +38,7 @@ class InheritanceMixin(XBlockMixin):
)
)
start
=
Date
(
start
=
Date
(
help
=
"Start time when this module is visible"
,
help
=
"Start time when this module is visible"
,
default
=
datetime
(
2030
,
1
,
1
,
tzinfo
=
UTC
)
,
default
=
DEFAULT_START_DATE
,
scope
=
Scope
.
settings
scope
=
Scope
.
settings
)
)
due
=
Date
(
due
=
Date
(
...
...
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