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
32a7b9f6
Commit
32a7b9f6
authored
6 years ago
by
Ned Batchelder
Browse files
Options
Downloads
Patches
Plain Diff
Use XBlock services to get translation at runtime
parent
73abc25b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/lib/xmodule/xmodule/seq_module.py
+5
-0
5 additions, 0 deletions
common/lib/xmodule/xmodule/seq_module.py
common/lib/xmodule/xmodule/tests/test_sequence.py
+2
-2
2 additions, 2 deletions
common/lib/xmodule/xmodule/tests/test_sequence.py
with
7 additions
and
2 deletions
common/lib/xmodule/xmodule/seq_module.py
+
5
−
0
View file @
32a7b9f6
...
...
@@ -165,6 +165,7 @@ class ProctoringFields(object):
@XBlock.wants
(
'
completion
'
)
@XBlock.needs
(
'
user
'
)
@XBlock.needs
(
'
bookmarks
'
)
@XBlock.needs
(
'
i18n
'
)
class
SequenceModule
(
SequenceFields
,
ProctoringFields
,
XModule
):
"""
Layout module which lays out content in a temporal sequence
...
...
@@ -238,6 +239,7 @@ class SequenceModule(SequenceFields, ProctoringFields, XModule):
)
def
student_view
(
self
,
context
):
_
=
self
.
runtime
.
service
(
self
,
"
i18n
"
).
ugettext
context
=
context
or
{}
self
.
_capture_basic_metrics
()
banner_text
=
None
...
...
@@ -265,6 +267,7 @@ class SequenceModule(SequenceFields, ProctoringFields, XModule):
a banner_text or the fragment to display depending on whether
staff is masquerading.
"""
_
=
self
.
runtime
.
service
(
self
,
"
i18n
"
).
ugettext
if
self
.
is_time_limited
:
special_exam_html
=
self
.
_time_limited_student_view
()
if
special_exam_html
:
...
...
@@ -277,6 +280,7 @@ class SequenceModule(SequenceFields, ProctoringFields, XModule):
runtime user. If so, returns a banner_text or the fragment to
display depending on whether staff is masquerading.
"""
_
=
self
.
runtime
.
service
(
self
,
"
i18n
"
).
ugettext
course
=
self
.
_get_course
()
if
not
self
.
_can_user_view_content
(
course
):
if
course
.
self_paced
:
...
...
@@ -315,6 +319,7 @@ class SequenceModule(SequenceFields, ProctoringFields, XModule):
sequential. If banner_text is given, it is added to the
content.
"""
_
=
self
.
runtime
.
service
(
self
,
"
i18n
"
).
ugettext
display_items
=
self
.
get_display_items
()
self
.
_update_position
(
context
,
len
(
display_items
))
...
...
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/tests/test_sequence.py
+
2
−
2
View file @
32a7b9f6
...
...
@@ -166,7 +166,7 @@ class SequenceBlockTestCase(XModuleXmlImportTest):
)
self
.
assertIn
(
"
seq_module.html
"
,
html
)
self
.
assertIn
(
"'
banner_text
'
:
'
Because the due date has passed,
"
"'
banner_text
'
:
u
'
Because the due date has passed,
"
"
this assignment is hidden from the learner.
'"
,
html
)
...
...
@@ -208,7 +208,7 @@ class SequenceBlockTestCase(XModuleXmlImportTest):
"""
self
.
assertIn
(
"
seq_module.html
"
,
html
)
self
.
assertIn
(
"'
banner_text
'
:
'
This section is a prerequisite.
"
"'
banner_text
'
:
u
'
This section is a prerequisite.
"
"
You must complete this section in order to unlock additional content.
'"
,
html
)
...
...
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