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
a16f5487
Commit
a16f5487
authored
10 years ago
by
Andy Armstrong
Browse files
Options
Downloads
Patches
Plain Diff
First attempt to fix split test
parent
356da9ca
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
cms/djangoapps/contentstore/views/preview.py
+15
-0
15 additions, 0 deletions
cms/djangoapps/contentstore/views/preview.py
common/lib/xmodule/xmodule/split_test_module.py
+3
-1
3 additions, 1 deletion
common/lib/xmodule/xmodule/split_test_module.py
with
18 additions
and
1 deletion
cms/djangoapps/contentstore/views/preview.py
+
15
−
0
View file @
a16f5487
...
...
@@ -95,6 +95,20 @@ class PreviewModuleSystem(ModuleSystem): # pylint: disable=abstract-method
return
local_resource_url
(
block
,
uri
)
class
StudioUserService
(
object
):
"""
Provides a Studio implementation of the XBlock user service.
"""
def
__init__
(
self
,
request
):
super
(
StudioUserService
,
self
).
__init__
()
self
.
_request
=
request
@property
def
user_id
(
self
):
return
self
.
_request
.
user
.
id
def
_preview_module_system
(
request
,
descriptor
):
"""
Returns a ModuleSystem for the specified descriptor that is specialized for
...
...
@@ -139,6 +153,7 @@ def _preview_module_system(request, descriptor):
descriptor_runtime
=
descriptor
.
runtime
,
services
=
{
"
i18n
"
:
ModuleI18nService
(),
"
user
"
:
StudioUserService
(
request
),
},
)
...
...
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/split_test_module.py
+
3
−
1
View file @
a16f5487
...
...
@@ -343,6 +343,7 @@ class SplitTestModule(SplitTestFields, XModule, StudioEditableModule):
@XBlock.needs
(
'
user_tags
'
)
# pylint: disable=abstract-method
@XBlock.wants
(
'
partitions
'
)
@XBlock.needs
(
'
user
'
)
class
SplitTestDescriptor
(
SplitTestFields
,
SequenceDescriptor
,
StudioEditableDescriptor
):
# the editing interface can be the same as for sequences -- just a container
module_class
=
SplitTestModule
...
...
@@ -553,7 +554,8 @@ class SplitTestDescriptor(SplitTestFields, SequenceDescriptor, StudioEditableDes
for
group
in
user_partition
.
groups
:
str_group_id
=
unicode
(
group
.
id
)
if
str_group_id
not
in
self
.
group_id_to_child
:
self
.
_create_vertical_for_group
(
group
,
request
.
user
.
id
)
user_id
=
self
.
runtime
.
service
(
self
,
'
user
'
).
user_id
self
.
_create_vertical_for_group
(
group
,
user_id
)
changed
=
True
if
changed
:
...
...
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