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
2a1e102f
Commit
2a1e102f
authored
Jan 09, 2013
by
Brian Talbot
Browse files
Options
Browse Files
Download
Plain Diff
studio - resolving merge conflict with cms/templates/unit.html
parents
f60a9d8d
c7feee5b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
4 deletions
+86
-4
cms/static/js/speed-editor.js
+0
-0
cms/templates/widgets/problem-edit.html
+57
-1
common/lib/xmodule/xmodule/js/src/problem/edit.coffee
+29
-3
No files found.
cms/static/js/speed-editor.js
deleted
100644 → 0
View file @
f60a9d8d
This diff is collapsed.
Click to expand it.
cms/templates/widgets/problem-edit.html
View file @
2a1e102f
...
...
@@ -25,4 +25,60 @@
%endif
<textarea
class=
"xml-box"
rows=
"8"
cols=
"40"
>
${data | h}
</textarea>
</div>
</section>
</section>
<script
type=
"text/template"
id=
"simple-editor-cheatsheet"
>
<
article
class
=
"simple-editor-cheatsheet"
>
<
div
class
=
"cheatsheet-wrapper"
>
<
div
class
=
"row"
>
<
h6
>
Multiple
Choice
<
/h6
>
<
div
class
=
"col sample"
>
<
img
src
=
"/static/img/choice-example.png"
/>
<
/div
>
<
div
class
=
"col"
>
<
pre
><
code
>
(
)
red
(
)
green
(
x
)
blue
<
/code></
pre
>
<
/div
>
<
/div
>
<
div
class
=
"row"
>
<
h6
>
Multiple
Check
<
/h6
>
<
div
class
=
"col sample"
>
<
img
src
=
"/static/img/multi-example.png"
/>
<
/div
>
<
div
class
=
"col"
>
<
pre
><
code
>
[
x
]
earth
[
]
wind
[
x
]
water
<
/code></
pre
>
<
/div
>
<
/div
>
<
div
class
=
"row"
>
<
h6
>
String
Response
<
/h6
>
<
div
class
=
"col sample"
>
<
img
src
=
"/static/img/string-example.png"
/>
<
/div
>
<
div
class
=
"col"
>
<
pre
><
code
>=
dog
<
/code></
pre
>
<
/div
>
<
/div
>
<
div
class
=
"row"
>
<
h6
>
Numerical
Response
<
/h6
>
<
div
class
=
"col sample"
>
<
img
src
=
"/static/img/number-example.png"
/>
<
/div
>
<
div
class
=
"col"
>
<
pre
><
code
>=
3.14
+-
2
%<
/code></
pre
>
<
/div
>
<
/div
>
<
div
class
=
"row"
>
<
h6
>
Option
Response
<
/h6
>
<
div
class
=
"col sample"
>
<
img
src
=
"/static/img/select-example.png"
/>
<
/div
>
<
div
class
=
"col"
>
<
pre
><
code
>
[[
wrong
,
(
right
)]]
<
/code></
pre
>
<
/div
>
<
/div
>
<
/div
>
<
/article
>
</script>
common/lib/xmodule/xmodule/js/src/problem/edit.coffee
View file @
2a1e102f
...
...
@@ -8,6 +8,7 @@ class @MarkdownEditingDescriptor extends XModule.Descriptor
constructor
:
(
element
)
->
$body
.
on
(
'click'
,
'.editor-tabs .tab'
,
@
changeEditor
)
$body
.
on
(
'click'
,
'.editor-bar a'
,
@
onToolbarButton
);
$body
.
on
(
'click'
,
'.cheatsheet-toggle'
,
@
toggleCheatsheet
);
@
xml_editor
=
CodeMirror
.
fromTextArea
(
$
(
".xml-box"
,
element
)[
0
],
{
mode
:
"xml"
...
...
@@ -51,6 +52,15 @@ class @MarkdownEditingDescriptor extends XModule.Descriptor
@
markdown_editor
.
replaceSelection
(
revisedSelection
)
@
markdown_editor
.
focus
()
toggleCheatsheet
:
(
e
)
=>
e
.
preventDefault
();
# TODO: don't base off of current_editor
if
!
$
(
@
current_editor
.
getWrapperElement
()).
find
(
'.simple-editor-cheatsheet'
)[
0
]
@
cheatsheet
=
$
(
$
(
'#simple-editor-cheatsheet'
).
html
())
$
(
@
current_editor
.
getWrapperElement
()).
append
(
@
cheatsheet
)
setTimeout
(
=>
@
cheatsheet
.
toggleClass
(
'shown'
)),
10
setCurrentEditor
:
(
editor
)
->
$
(
@
current_editor
.
getWrapperElement
()).
hide
()
...
...
@@ -60,15 +70,16 @@ class @MarkdownEditingDescriptor extends XModule.Descriptor
save
:
->
$body
.
off
(
'click'
,
'.editor-tabs .tab'
,
@
changeEditor
)
$body
.
off
(
'click'
,
'.editor-bar a'
,
@
onToolbarButton
);
$body
.
off
(
'click'
,
'.editor-bar a'
,
@
onToolbarButton
)
$body
.
off
(
'click'
,
'.cheatsheet-toggle'
,
@
toggleCheatsheet
)
# TODO when logic is in place to remove the markdown if xml is edited, ensure this doesn't overwrite that
if
@
current_editor
==
@
markdown_editor
{
data
:
MarkdownEditingDescriptor
.
markdownToXml
(
@
markdown_editor
.
getValue
())
metadata
:
metadata
:
markdown
:
@
markdown_editor
.
getValue
()
}
else
else
data
:
@
xml_editor
.
getValue
()
@
insertMultipleChoice
:
(
selectedText
)
->
...
...
@@ -119,6 +130,21 @@ class @MarkdownEditingDescriptor extends XModule.Descriptor
else
return
template
# We may wish to add insertHeader and insertVideo. Here is Tom's code.
# function makeHeader() {
# var selection = simpleEditor.getSelection();
# var revisedSelection = selection + '\n';
# for(var i = 0; i < selection.length; i++) {
#revisedSelection += '=';
# }
# simpleEditor.replaceSelection(revisedSelection);
#}
#
#function makeVideo() {
#var selection = simpleEditor.getSelection();
#simpleEditor.replaceSelection('{{video ' + selection + '}}');
#}
#
@
markdownToXml
:
(
markdown
)
->
toXml
=
`
function
(
markdown
)
{
var
xml
=
markdown
;
...
...
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