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
2c90fd18
Commit
2c90fd18
authored
Oct 21, 2013
by
Alexander Kryklia
Committed by
polesye
Oct 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename IsoTime to RelativeTime.
parent
ece4cb66
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
35 deletions
+36
-35
cms/static/js/models/metadata.js
+1
-1
cms/static/js/views/metadata.js
+5
-4
common/lib/xmodule/xmodule/fields.py
+7
-7
common/lib/xmodule/xmodule/tests/test_fields.py
+14
-14
common/lib/xmodule/xmodule/tests/test_xml_module.py
+3
-3
common/lib/xmodule/xmodule/video_module.py
+3
-3
common/lib/xmodule/xmodule/x_module.py
+3
-3
No files found.
cms/static/js/models/metadata.js
View file @
2c90fd18
...
@@ -108,7 +108,7 @@ define(["backbone"], function(Backbone) {
...
@@ -108,7 +108,7 @@ define(["backbone"], function(Backbone) {
Metadata
.
GENERIC_TYPE
=
"Generic"
;
Metadata
.
GENERIC_TYPE
=
"Generic"
;
Metadata
.
LIST_TYPE
=
"List"
;
Metadata
.
LIST_TYPE
=
"List"
;
Metadata
.
VIDEO_LIST_TYPE
=
"VideoList"
;
Metadata
.
VIDEO_LIST_TYPE
=
"VideoList"
;
Metadata
.
ISO_TIME_TYPE
=
"Iso
Time"
;
Metadata
.
RELATIVE_TIME_TYPE
=
"Relative
Time"
;
return
Metadata
;
return
Metadata
;
});
});
cms/static/js/views/metadata.js
View file @
2c90fd18
...
@@ -38,8 +38,9 @@ function(Backbone, _, MetadataModel, AbstractEditor, VideoList) {
...
@@ -38,8 +38,9 @@ function(Backbone, _, MetadataModel, AbstractEditor, VideoList) {
}
}
else
if
(
model
.
getType
()
===
MetadataModel
.
VIDEO_LIST_TYPE
)
{
else
if
(
model
.
getType
()
===
MetadataModel
.
VIDEO_LIST_TYPE
)
{
new
VideoList
(
data
);
new
VideoList
(
data
);
else
if
(
model
.
getType
()
===
MetadataModel
.
ISO_TIME_TYPE
)
{
}
new
Metadata
.
IsoTime
(
data
);
else
if
(
model
.
getType
()
===
MetadataModel
.
RELATIVE_TIME_TYPE
)
{
new
Metadata
.
RelativeTime
(
data
);
}
}
else
{
else
{
// Everything else is treated as GENERIC_TYPE, which uses String editor.
// Everything else is treated as GENERIC_TYPE, which uses String editor.
...
@@ -293,7 +294,7 @@ function(Backbone, _, MetadataModel, AbstractEditor, VideoList) {
...
@@ -293,7 +294,7 @@ function(Backbone, _, MetadataModel, AbstractEditor, VideoList) {
}
}
});
});
Metadata
.
IsoTime
=
Metadata
.
AbstractEditor
.
extend
({
Metadata
.
RelativeTime
=
AbstractEditor
.
extend
({
events
:
{
events
:
{
"change input"
:
"updateModel"
,
"change input"
:
"updateModel"
,
...
@@ -304,7 +305,7 @@ function(Backbone, _, MetadataModel, AbstractEditor, VideoList) {
...
@@ -304,7 +305,7 @@ function(Backbone, _, MetadataModel, AbstractEditor, VideoList) {
templateName
:
"metadata-string-entry"
,
templateName
:
"metadata-string-entry"
,
initialize
:
function
()
{
initialize
:
function
()
{
Metadata
.
AbstractEditor
.
prototype
.
initialize
.
apply
(
this
);
AbstractEditor
.
prototype
.
initialize
.
apply
(
this
);
// This list of definitions is used for creating appropriate
// This list of definitions is used for creating appropriate
// time format mask;
// time format mask;
...
...
common/lib/xmodule/xmodule/fields.py
View file @
2c90fd18
...
@@ -118,7 +118,7 @@ class Timedelta(Field):
...
@@ -118,7 +118,7 @@ class Timedelta(Field):
return
' '
.
join
(
values
)
return
' '
.
join
(
values
)
class
Iso
Time
(
Field
):
class
Relative
Time
(
Field
):
"""
"""
Field for start_time and end_time video module properties.
Field for start_time and end_time video module properties.
...
@@ -134,8 +134,8 @@ class IsoTime(Field):
...
@@ -134,8 +134,8 @@ class IsoTime(Field):
In database we previously had float type for start_time and end_time fields,
In database we previously had float type for start_time and end_time fields,
so we are checking it also.
so we are checking it also.
Python object of
Iso
Time is datetime.timedelta.
Python object of
Relative
Time is datetime.timedelta.
JSONed representation of
Iso
Time is "HH:MM:SS"
JSONed representation of
Relative
Time is "HH:MM:SS"
"""
"""
# Timedeltas are immutable, see http://docs.python.org/2/library/datetime.html#available-types
# Timedeltas are immutable, see http://docs.python.org/2/library/datetime.html#available-types
MUTABLE
=
False
MUTABLE
=
False
...
@@ -151,7 +151,7 @@ class IsoTime(Field):
...
@@ -151,7 +151,7 @@ class IsoTime(Field):
obj_time
=
time
.
strptime
(
value
,
'
%
H:
%
M:
%
S'
)
obj_time
=
time
.
strptime
(
value
,
'
%
H:
%
M:
%
S'
)
except
ValueError
as
e
:
except
ValueError
as
e
:
raise
ValueError
(
raise
ValueError
(
"Incorrect
Iso
Time value {} was set in XML or serialized."
"Incorrect
Relative
Time value {} was set in XML or serialized."
"Original parse message is {}"
.
format
(
value
,
e
.
message
)
"Original parse message is {}"
.
format
(
value
,
e
.
message
)
)
)
return
datetime
.
timedelta
(
return
datetime
.
timedelta
(
...
@@ -177,7 +177,7 @@ class IsoTime(Field):
...
@@ -177,7 +177,7 @@ class IsoTime(Field):
if
isinstance
(
value
,
basestring
):
if
isinstance
(
value
,
basestring
):
return
self
.
_isotime_to_timedelta
(
value
)
return
self
.
_isotime_to_timedelta
(
value
)
msg
=
"
Iso
Time Field {0} has bad value '{1}'"
.
format
(
self
.
_name
,
value
)
msg
=
"
Relative
Time Field {0} has bad value '{1}'"
.
format
(
self
.
_name
,
value
)
raise
TypeError
(
msg
)
raise
TypeError
(
msg
)
def
to_json
(
self
,
value
):
def
to_json
(
self
,
value
):
...
@@ -201,9 +201,9 @@ class IsoTime(Field):
...
@@ -201,9 +201,9 @@ class IsoTime(Field):
if
isinstance
(
value
,
datetime
.
timedelta
):
if
isinstance
(
value
,
datetime
.
timedelta
):
if
value
.
total_seconds
()
>
86400
:
# sanity check
if
value
.
total_seconds
()
>
86400
:
# sanity check
raise
ValueError
(
raise
ValueError
(
"
Iso
Time max value is 23:59:59=86400.0 seconds, "
"
Relative
Time max value is 23:59:59=86400.0 seconds, "
"but {} seconds is passed"
.
format
(
value
.
total_seconds
())
"but {} seconds is passed"
.
format
(
value
.
total_seconds
())
)
)
return
str
(
value
)
return
str
(
value
)
raise
TypeError
(
"
Iso
Time: cannot convert {!r} to json"
.
format
(
value
))
raise
TypeError
(
"
Relative
Time: cannot convert {!r} to json"
.
format
(
value
))
common/lib/xmodule/xmodule/tests/test_fields.py
View file @
2c90fd18
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
import
datetime
import
datetime
import
unittest
import
unittest
from
django.utils.timezone
import
UTC
from
django.utils.timezone
import
UTC
from
xmodule.fields
import
Date
,
Timedelta
,
Iso
Time
from
xmodule.fields
import
Date
,
Timedelta
,
Relative
Time
from
xmodule.timeinfo
import
TimeInfo
from
xmodule.timeinfo
import
TimeInfo
import
time
import
time
...
@@ -118,52 +118,52 @@ class TimeInfoTest(unittest.TestCase):
...
@@ -118,52 +118,52 @@ class TimeInfoTest(unittest.TestCase):
due_date
+
Timedelta
()
.
from_json
(
grace_pd_string
))
due_date
+
Timedelta
()
.
from_json
(
grace_pd_string
))
class
Iso
TimeTest
(
unittest
.
TestCase
):
class
Relative
TimeTest
(
unittest
.
TestCase
):
delta
=
Iso
Time
()
delta
=
Relative
Time
()
def
test_from_json
(
self
):
def
test_from_json
(
self
):
self
.
assertEqual
(
self
.
assertEqual
(
Iso
TimeTest
.
delta
.
from_json
(
'0:05:07'
),
Relative
TimeTest
.
delta
.
from_json
(
'0:05:07'
),
datetime
.
timedelta
(
seconds
=
307
)
datetime
.
timedelta
(
seconds
=
307
)
)
)
self
.
assertEqual
(
self
.
assertEqual
(
Iso
TimeTest
.
delta
.
from_json
(
100.0
),
Relative
TimeTest
.
delta
.
from_json
(
100.0
),
datetime
.
timedelta
(
seconds
=
100
)
datetime
.
timedelta
(
seconds
=
100
)
)
)
self
.
assertEqual
(
self
.
assertEqual
(
Iso
TimeTest
.
delta
.
from_json
(
None
),
Relative
TimeTest
.
delta
.
from_json
(
None
),
datetime
.
timedelta
(
seconds
=
0
)
datetime
.
timedelta
(
seconds
=
0
)
)
)
with
self
.
assertRaises
(
TypeError
):
with
self
.
assertRaises
(
TypeError
):
Iso
TimeTest
.
delta
.
from_json
(
1234
)
# int
Relative
TimeTest
.
delta
.
from_json
(
1234
)
# int
with
self
.
assertRaises
(
ValueError
):
with
self
.
assertRaises
(
ValueError
):
Iso
TimeTest
.
delta
.
from_json
(
"77:77:77"
)
Relative
TimeTest
.
delta
.
from_json
(
"77:77:77"
)
def
test_to_json
(
self
):
def
test_to_json
(
self
):
self
.
assertEqual
(
self
.
assertEqual
(
"1:02:03"
,
"1:02:03"
,
Iso
TimeTest
.
delta
.
to_json
(
datetime
.
timedelta
(
seconds
=
3723
))
Relative
TimeTest
.
delta
.
to_json
(
datetime
.
timedelta
(
seconds
=
3723
))
)
)
self
.
assertEqual
(
self
.
assertEqual
(
"00:00:00"
,
"00:00:00"
,
Iso
TimeTest
.
delta
.
to_json
(
None
)
Relative
TimeTest
.
delta
.
to_json
(
None
)
)
)
self
.
assertEqual
(
self
.
assertEqual
(
"0:01:40"
,
"0:01:40"
,
Iso
TimeTest
.
delta
.
to_json
(
100.0
)
Relative
TimeTest
.
delta
.
to_json
(
100.0
)
)
)
with
self
.
assertRaises
(
ValueError
)
as
cm
:
with
self
.
assertRaises
(
ValueError
)
as
cm
:
Iso
TimeTest
.
delta
.
to_json
(
datetime
.
timedelta
(
seconds
=
90000
))
Relative
TimeTest
.
delta
.
to_json
(
datetime
.
timedelta
(
seconds
=
90000
))
self
.
assertEqual
(
self
.
assertEqual
(
cm
.
exception
.
message
,
cm
.
exception
.
message
,
"
Iso
Time max value is 23:59:59=86400.0 seconds, but 90000.0 seconds is passed"
"
Relative
Time max value is 23:59:59=86400.0 seconds, but 90000.0 seconds is passed"
)
)
with
self
.
assertRaises
(
TypeError
):
with
self
.
assertRaises
(
TypeError
):
Iso
TimeTest
.
delta
.
to_json
(
"123"
)
Relative
TimeTest
.
delta
.
to_json
(
"123"
)
common/lib/xmodule/xmodule/tests/test_xml_module.py
View file @
2c90fd18
...
@@ -10,7 +10,7 @@ from xblock.field_data import DictFieldData
...
@@ -10,7 +10,7 @@ from xblock.field_data import DictFieldData
from
xblock.fields
import
Scope
,
String
,
Dict
,
Boolean
,
Integer
,
Float
,
Any
,
List
from
xblock.fields
import
Scope
,
String
,
Dict
,
Boolean
,
Integer
,
Float
,
Any
,
List
from
xblock.runtime
import
DbModel
from
xblock.runtime
import
DbModel
from
xmodule.fields
import
Date
,
Timedelta
,
Iso
Time
from
xmodule.fields
import
Date
,
Timedelta
,
Relative
Time
from
xmodule.modulestore.inheritance
import
InheritanceKeyValueStore
,
InheritanceMixin
from
xmodule.modulestore.inheritance
import
InheritanceKeyValueStore
,
InheritanceMixin
from
xmodule.xml_module
import
XmlDescriptor
,
serialize_field
,
deserialize_field
from
xmodule.xml_module
import
XmlDescriptor
,
serialize_field
,
deserialize_field
from
xmodule.course_module
import
CourseDescriptor
from
xmodule.course_module
import
CourseDescriptor
...
@@ -389,10 +389,10 @@ class TestDeserializeTimedelta(TestDeserialize):
...
@@ -389,10 +389,10 @@ class TestDeserializeTimedelta(TestDeserialize):
self
.
assertDeserializeNonString
()
self
.
assertDeserializeNonString
()
class
TestDeserialize
Iso
Time
(
TestDeserialize
):
class
TestDeserialize
Relative
Time
(
TestDeserialize
):
""" Tests deserialize as related to Timedelta type. """
""" Tests deserialize as related to Timedelta type. """
test_field
=
Iso
Time
test_field
=
Relative
Time
def
test_deserialize
(
self
):
def
test_deserialize
(
self
):
"""
"""
...
...
common/lib/xmodule/xmodule/video_module.py
View file @
2c90fd18
...
@@ -29,7 +29,7 @@ from xmodule.raw_module import EmptyDataRawDescriptor
...
@@ -29,7 +29,7 @@ from xmodule.raw_module import EmptyDataRawDescriptor
from
xmodule.xml_module
import
is_pointer_tag
,
name_to_pathname
,
deserialize_field
from
xmodule.xml_module
import
is_pointer_tag
,
name_to_pathname
,
deserialize_field
from
xmodule.modulestore
import
Location
from
xmodule.modulestore
import
Location
from
xblock.fields
import
Scope
,
String
,
Boolean
,
List
,
Integer
,
ScopeIds
from
xblock.fields
import
Scope
,
String
,
Boolean
,
List
,
Integer
,
ScopeIds
from
xmodule.fields
import
Iso
Time
from
xmodule.fields
import
Relative
Time
from
xmodule.modulestore.inheritance
import
InheritanceKeyValueStore
from
xmodule.modulestore.inheritance
import
InheritanceKeyValueStore
from
xblock.runtime
import
DbModel
from
xblock.runtime
import
DbModel
...
@@ -80,13 +80,13 @@ class VideoFields(object):
...
@@ -80,13 +80,13 @@ class VideoFields(object):
scope
=
Scope
.
settings
,
scope
=
Scope
.
settings
,
default
=
""
default
=
""
)
)
start_time
=
Iso
Time
(
# datetime.timedelta object
start_time
=
Relative
Time
(
# datetime.timedelta object
help
=
"Start time for the video."
,
help
=
"Start time for the video."
,
display_name
=
"Start Time"
,
display_name
=
"Start Time"
,
scope
=
Scope
.
settings
,
scope
=
Scope
.
settings
,
default
=
datetime
.
timedelta
(
seconds
=
0
)
default
=
datetime
.
timedelta
(
seconds
=
0
)
)
)
end_time
=
Iso
Time
(
# datetime.timedelta object
end_time
=
Relative
Time
(
# datetime.timedelta object
help
=
"End time for the video."
,
help
=
"End time for the video."
,
display_name
=
"End Time"
,
display_name
=
"End Time"
,
scope
=
Scope
.
settings
,
scope
=
Scope
.
settings
,
...
...
common/lib/xmodule/xmodule/x_module.py
View file @
2c90fd18
...
@@ -13,7 +13,7 @@ from xmodule.modulestore.exceptions import ItemNotFoundError, InsufficientSpecif
...
@@ -13,7 +13,7 @@ from xmodule.modulestore.exceptions import ItemNotFoundError, InsufficientSpecif
from
xblock.core
import
XBlock
from
xblock.core
import
XBlock
from
xblock.fields
import
Scope
,
Integer
,
Float
,
List
,
XBlockMixin
,
String
from
xblock.fields
import
Scope
,
Integer
,
Float
,
List
,
XBlockMixin
,
String
from
xmodule.fields
import
Iso
Time
from
xmodule.fields
import
Relative
Time
from
xblock.fragment
import
Fragment
from
xblock.fragment
import
Fragment
from
xblock.runtime
import
Runtime
from
xblock.runtime
import
Runtime
from
xmodule.errortracker
import
exc_info_to_str
from
xmodule.errortracker
import
exc_info_to_str
...
@@ -709,8 +709,8 @@ class XModuleDescriptor(XModuleMixin, HTMLSnippet, ResourceTemplates, XBlock):
...
@@ -709,8 +709,8 @@ class XModuleDescriptor(XModuleMixin, HTMLSnippet, ResourceTemplates, XBlock):
editor_type
=
"Float"
editor_type
=
"Float"
elif
isinstance
(
field
,
List
):
elif
isinstance
(
field
,
List
):
editor_type
=
"List"
editor_type
=
"List"
elif
isinstance
(
field
,
Iso
Time
):
elif
isinstance
(
field
,
Relative
Time
):
editor_type
=
"
Iso
Time"
editor_type
=
"
Relative
Time"
metadata_fields
[
field
.
name
][
'type'
]
=
editor_type
metadata_fields
[
field
.
name
][
'type'
]
=
editor_type
metadata_fields
[
field
.
name
][
'options'
]
=
[]
if
values
is
None
else
values
metadata_fields
[
field
.
name
][
'options'
]
=
[]
if
values
is
None
else
values
...
...
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