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
61c2b96a
Commit
61c2b96a
authored
10 years ago
by
Brian Wilson
Browse files
Options
Downloads
Patches
Plain Diff
Only permit ascii characters in filenames generated from course_ids.
parent
e26b86de
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/djangoapps/courseware/management/commands/export_course.py
+3
-2
3 additions, 2 deletions
...jangoapps/courseware/management/commands/export_course.py
with
3 additions
and
2 deletions
lms/djangoapps/courseware/management/commands/export_course.py
+
3
−
2
View file @
61c2b96a
...
...
@@ -83,10 +83,11 @@ def export_course_to_directory(course_key, root_dir):
raise
CommandError
(
"
Invalid course_id
"
)
# The safest characters are A-Z, a-z, 0-9, <underscore>, <period> and <hyphen>.
# We represent the first four with \w, but generalize to all unicode alphanumerics.
# We represent the first four with \w.
# TODO: Once we support courses with unicode characters, we will need to revisit this.
replacement_char
=
u
'
-
'
course_dir
=
replacement_char
.
join
([
course
.
id
.
org
,
course
.
id
.
course
,
course
.
id
.
run
])
course_dir
=
re
.
sub
(
r
'
[^\w\.\-]
'
,
replacement_char
,
course_dir
,
flags
=
re
.
UNICODE
)
course_dir
=
re
.
sub
(
r
'
[^\w\.\-]
'
,
replacement_char
,
course_dir
)
export_to_xml
(
store
,
None
,
course
.
id
,
root_dir
,
course_dir
)
...
...
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