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
d45c490b
Commit
d45c490b
authored
Dec 19, 2012
by
Alexander Kryklia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plot now not required
parent
9b500a15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
common/lib/xmodule/xmodule/gst_module.py
+13
-11
No files found.
common/lib/xmodule/xmodule/gst_module.py
View file @
d45c490b
...
...
@@ -73,17 +73,19 @@ class GraphicalSliderToolModule(XModule):
plot_div
=
'<div class="{element_class}_plot" id="{element_id}_plot"
\
style="{style}"></div>'
# extract css style from plot
plot_def
=
re
.
search
(
r'\$plot[^\$]*\$'
,
html_string
)
.
group
()
style
=
re
.
search
(
r'(?=.*style\=[\"\'](.*)[\"\'])'
,
plot_def
)
if
style
:
style
=
style
.
groups
()[
0
]
else
:
# no style parameter
style
=
''
replacement
=
plot_div
.
format
(
element_class
=
self
.
html_class
,
element_id
=
self
.
html_id
,
style
=
style
)
html_string
=
re
.
sub
(
r'\$plot[^\$]*\$'
,
replacement
,
html_string
,
flags
=
re
.
UNICODE
)
plot_def
=
re
.
search
(
r'\$plot[^\$]*\$'
,
html_string
)
if
plot_def
:
plot_def
=
plot_def
.
group
()
style
=
re
.
search
(
r'(?=.*style\=[\"\'](.*)[\"\'])'
,
plot_def
)
if
style
:
style
=
style
.
groups
()[
0
]
else
:
# no style parameter
style
=
''
replacement
=
plot_div
.
format
(
element_class
=
self
.
html_class
,
element_id
=
self
.
html_id
,
style
=
style
)
html_string
=
re
.
sub
(
r'\$plot[^\$]*\$'
,
replacement
,
html_string
,
flags
=
re
.
UNICODE
)
# get variables
if
json
.
loads
(
self
.
configuration_json
)[
'root'
]
.
get
(
'parameters'
):
...
...
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