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
84f531af
Commit
84f531af
authored
Jul 12, 2013
by
ichuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add export_all_courses management script to cms
parent
b7eb287a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
1 deletions
+50
-1
cms/djangoapps/contentstore/management/commands/export.py
+1
-1
cms/djangoapps/contentstore/management/commands/export_all_courses.py
+49
-0
No files found.
cms/djangoapps/contentstore/management/commands/export.py
View file @
84f531af
...
...
@@ -14,7 +14,7 @@ unnamed_modules = 0
class
Command
(
BaseCommand
):
help
=
'
Im
port the specified data directory into the default ModuleStore'
help
=
'
Ex
port the specified data directory into the default ModuleStore'
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
!=
2
:
...
...
cms/djangoapps/contentstore/management/commands/export_all_courses.py
0 → 100644
View file @
84f531af
###
### Script for exporting all courseware from Mongo to a directory
###
import
os
from
django.core.management.base
import
BaseCommand
,
CommandError
from
xmodule.modulestore.xml_exporter
import
export_to_xml
from
xmodule.modulestore.django
import
modulestore
from
xmodule.contentstore.django
import
contentstore
from
xmodule.course_module
import
CourseDescriptor
unnamed_modules
=
0
class
Command
(
BaseCommand
):
help
=
'Export all courses from mongo to the specified data directory'
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
!=
1
:
raise
CommandError
(
"import requires one argument: <output path>"
)
output_path
=
args
[
0
]
cs
=
contentstore
()
ms
=
modulestore
(
'direct'
)
root_dir
=
output_path
courses
=
ms
.
get_courses
()
print
"
%
d courses to export:"
%
len
(
courses
)
cids
=
[
x
.
id
for
x
in
courses
]
print
cids
for
course_id
in
cids
:
print
"-"
*
77
print
"Exporting course id = {0} to {1}"
.
format
(
course_id
,
output_path
)
if
1
:
try
:
location
=
CourseDescriptor
.
id_to_location
(
course_id
)
course_dir
=
course_id
.
replace
(
'/'
,
'...'
)
export_to_xml
(
ms
,
cs
,
location
,
root_dir
,
course_dir
)
except
Exception
as
err
:
print
"="
*
30
+
"> Oops, failed to export
%
s"
%
course_id
print
"Error:"
print
err
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