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
ad7c3f93
Commit
ad7c3f93
authored
Oct 04, 2013
by
Nick Parlante
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix - text_customization should not show in settings
Also change test to not expect text_customization
parent
cce37583
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
cms/djangoapps/contentstore/features/problem-editor.py
+0
-2
common/lib/xmodule/xmodule/capa_module.py
+2
-1
No files found.
cms/djangoapps/contentstore/features/problem-editor.py
View file @
ad7c3f93
...
...
@@ -10,7 +10,6 @@ MAXIMUM_ATTEMPTS = "Maximum Attempts"
PROBLEM_WEIGHT
=
"Problem Weight"
RANDOMIZATION
=
'Randomization'
SHOW_ANSWER
=
"Show Answer"
TEXT_CUSTOMIZATION
=
"text_customization"
@step
(
'I have created a Blank Common Problem$'
)
...
...
@@ -38,7 +37,6 @@ def i_see_advanced_settings_with_values(step):
[
PROBLEM_WEIGHT
,
""
,
False
],
[
RANDOMIZATION
,
"Never"
,
False
],
[
SHOW_ANSWER
,
"Finished"
,
False
],
[
TEXT_CUSTOMIZATION
,
"[object Object]"
,
False
]
])
...
...
common/lib/xmodule/xmodule/capa_module.py
View file @
ad7c3f93
...
...
@@ -1190,5 +1190,6 @@ class CapaDescriptor(CapaFields, RawDescriptor):
def
non_editable_metadata_fields
(
self
):
non_editable_fields
=
super
(
CapaDescriptor
,
self
)
.
non_editable_metadata_fields
non_editable_fields
.
extend
([
CapaDescriptor
.
due
,
CapaDescriptor
.
graceperiod
,
CapaDescriptor
.
force_save_button
,
CapaDescriptor
.
markdown
])
CapaDescriptor
.
force_save_button
,
CapaDescriptor
.
markdown
,
CapaDescriptor
.
text_customization
])
return
non_editable_fields
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