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
40545441
Commit
40545441
authored
11 years ago
by
Chris Dodge
Browse files
Options
Downloads
Patches
Plain Diff
handle exceptions inside the outer exception handling
parent
69c34a65
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cms/djangoapps/contentstore/views/assets.py
+14
-7
14 additions, 7 deletions
cms/djangoapps/contentstore/views/assets.py
with
14 additions
and
7 deletions
cms/djangoapps/contentstore/views/assets.py
+
14
−
7
View file @
40545441
...
...
@@ -346,13 +346,20 @@ def generate_export_course(request, org, course, name):
try
:
export_to_xml
(
modulestore
(
'
direct
'
),
contentstore
(),
loc
,
root_dir
,
name
,
modulestore
())
except
SerializationError
,
e
:
failed_item
=
modulestore
().
get_instance
(
course_module
.
location
.
course_id
,
e
.
location
)
parent_locs
=
modulestore
().
get_parent_locations
(
failed_item
.
location
,
course_module
.
location
.
course_id
)
unit
=
None
if
len
(
parent_locs
)
>
0
:
parent
=
modulestore
().
get_item
(
parent_locs
[
0
])
if
parent
.
location
.
category
==
'
vertical
'
:
unit
=
parent
failed_item
=
None
parent
=
None
try
:
failed_item
=
modulestore
().
get_instance
(
course_module
.
location
.
course_id
,
e
.
location
)
parent_locs
=
modulestore
().
get_parent_locations
(
failed_item
.
location
,
course_module
.
location
.
course_id
)
if
len
(
parent_locs
)
>
0
:
parent
=
modulestore
().
get_item
(
parent_locs
[
0
])
if
parent
.
location
.
category
==
'
vertical
'
:
unit
=
parent
except
:
# if we have a nested exception, then we'll show the more generic error message
pass
return
render_to_response
(
'
export.html
'
,
{
'
context_course
'
:
course_module
,
...
...
@@ -363,7 +370,7 @@ def generate_export_course(request, org, course, name):
'
unit
'
:
unit
,
'
edit_unit_url
'
:
reverse
(
'
edit_unit
'
,
kwargs
=
{
'
location
'
:
parent
.
location
}),
})
if
parent
else
''
,
'
course_home_url
'
:
reverse
(
'
course_index
'
,
kwargs
=
{
'
org
'
:
org
,
'
course
'
:
course
,
...
...
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