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
c0f12e69
Commit
c0f12e69
authored
12 years ago
by
Chris Dodge
Browse files
Options
Downloads
Patches
Plain Diff
fixes on the export. There's some attributes not being handled correctly
parent
239b118a
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cms/templates/export.html
+4
-2
4 additions, 2 deletions
cms/templates/export.html
common/lib/xmodule/xmodule/html_module.py
+1
-1
1 addition, 1 deletion
common/lib/xmodule/xmodule/html_module.py
common/lib/xmodule/xmodule/xml_module.py
+9
-2
9 additions, 2 deletions
common/lib/xmodule/xmodule/xml_module.py
with
14 additions
and
5 deletions
cms/templates/export.html
+
4
−
2
View file @
c0f12e69
...
...
@@ -26,16 +26,17 @@
<!-- default state -->
<div
class=
"export-form-wrapper"
>
<form
action=
"${reverse('export_course', kwargs=dict(org=context_course.location.org, course=context_course.location.course, name=context_course.location.name))}"
method=
"post"
enctype=
"multipart/form-data"
class=
"export-form"
>
<form
action=
"${reverse('
generate_
export_course', kwargs=dict(org=context_course.location.org, course=context_course.location.course, name=context_course.location.name))}"
method=
"post"
enctype=
"multipart/form-data"
class=
"export-form"
>
<h2>
Export Course:
</h2>
<p
class=
"error-block"
></p>
<a
href=
"
#
"
class=
"button-export"
>
Download Files
</a>
<a
href=
"
${reverse('generate_export_course', kwargs=dict(org=context_course.location.org, course=context_course.location.course, name=context_course.location.name))}
"
class=
"button-export"
>
Download Files
</a>
</form>
</div>
<!-- download state: after user clicks download buttons -->
<
%
doc
>
<div
class=
"export-form-wrapper is-downloading"
>
<form
action=
"${reverse('export_course', kwargs=dict(org=context_course.location.org, course=context_course.location.course, name=context_course.location.name))}"
method=
"post"
enctype=
"multipart/form-data"
class=
"export-form"
>
<h2>
Export Course:
</h2>
...
...
@@ -46,6 +47,7 @@
<p
class=
"message-status"
>
Download not start?
<a
href=
"#"
class=
"text-export"
>
Try again
</a></p>
</form>
</div>
</
%
doc>
</article>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/html_module.py
+
1
−
1
View file @
c0f12e69
...
...
@@ -160,7 +160,7 @@ class HtmlDescriptor(XmlDescriptor, EditingDescriptor):
filepath
=
u
'
{category}/{pathname}.html
'
.
format
(
category
=
self
.
category
,
pathname
=
pathname
)
resource_fs
.
makedir
(
os
.
path
.
dirname
(
filepath
),
allow_recreate
=
True
)
resource_fs
.
makedir
(
os
.
path
.
dirname
(
filepath
),
recursive
=
True
,
allow_recreate
=
True
)
with
resource_fs
.
open
(
filepath
,
'
w
'
)
as
file
:
file
.
write
(
self
.
definition
[
'
data
'
])
...
...
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/xml_module.py
+
9
−
2
View file @
c0f12e69
...
...
@@ -99,6 +99,7 @@ class XmlDescriptor(XModuleDescriptor):
metadata_to_strip
=
(
'
data_dir
'
,
# cdodge: @TODO: We need to figure out a way to export out 'tabs' and 'grading_policy' which is on the course
'
tabs
'
,
'
grading_policy
'
,
'
is_draft
'
,
'
published_by
'
,
'
published_date
'
,
'
discussion_blackouts
'
,
# VS[compat] -- remove the below attrs once everything is in the CMS
'
course
'
,
'
org
'
,
'
url_name
'
,
'
filename
'
)
...
...
@@ -110,11 +111,17 @@ class XmlDescriptor(XModuleDescriptor):
to_bool
=
lambda
val
:
val
==
'
true
'
or
val
==
True
from_bool
=
lambda
val
:
str
(
val
).
lower
()
bool_map
=
AttrMap
(
to_bool
,
from_bool
)
to_int
=
lambda
val
:
int
(
val
)
from_int
=
lambda
val
:
str
(
val
)
int_map
=
AttrMap
(
to_int
,
from_int
)
xml_attribute_map
=
{
# type conversion: want True/False in python, "true"/"false" in xml
'
graded
'
:
bool_map
,
'
hide_progress_tab
'
:
bool_map
,
'
allow_anonymous
'
:
bool_map
'
allow_anonymous
'
:
bool_map
,
'
allow_anonymous_to_peers
'
:
bool_map
,
'
weight
'
:
int_map
}
...
...
@@ -364,7 +371,7 @@ class XmlDescriptor(XModuleDescriptor):
# don't want e.g. data_dir
if
attr
not
in
self
.
metadata_to_strip
and
attr
not
in
self
.
metadata_to_export_to_policy
:
val
=
val_for_xml
(
attr
)
#
logging.debug('location.category = {0}, attr = {1}'.format(self.location.category, attr))
#logging.debug('location.category = {0}, attr = {1}'.format(self.location.category, attr))
xml_object
.
set
(
attr
,
val
)
if
self
.
export_to_file
():
...
...
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