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
c2197732
Commit
c2197732
authored
Jul 08, 2014
by
Diana Huang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test_import and unicode issues.
Handle unicode in get_course_index
parent
638a1aae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
common/lib/xmodule/xmodule/error_module.py
+1
-1
common/lib/xmodule/xmodule/modulestore/split_mongo/mongo_connection.py
+1
-1
common/lib/xmodule/xmodule/tests/test_import.py
+1
-1
common/lib/xmodule/xmodule/x_module.py
+1
-1
No files found.
common/lib/xmodule/xmodule/error_module.py
View file @
c2197732
...
...
@@ -99,7 +99,7 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
# real metadata stays in the content, but add a display name
field_data
=
DictFieldData
({
'error_msg'
:
str
(
error_msg
),
'error_msg'
:
unicode
(
error_msg
),
'contents'
:
contents
,
'location'
:
location
,
'category'
:
'error'
...
...
common/lib/xmodule/xmodule/modulestore/split_mongo/mongo_connection.py
View file @
c2197732
...
...
@@ -80,7 +80,7 @@ class MongoConnection(object):
"""
Get the course_index from the persistence mechanism whose id is the given key
"""
case_regex
=
r"(?i)^{}$"
if
ignore_case
else
r"{}"
case_regex
=
ur"(?i)^{}$"
if
ignore_case
else
u
r"{}"
return
self
.
course_index
.
find_one
(
son
.
SON
([
(
key_attr
,
re
.
compile
(
case_regex
.
format
(
getattr
(
key
,
key_attr
))))
...
...
common/lib/xmodule/xmodule/tests/test_import.py
View file @
c2197732
...
...
@@ -438,7 +438,7 @@ class ImportTestCase(BaseCourseTestCase):
print
(
"course errors:"
)
# Expect to find an error/exception about characters in "®esources"
expect
=
"
UnicodeEncode
Error"
expect
=
"
InvalidKey
Error"
errors
=
[
(
msg
.
encode
(
"utf-8"
),
err
.
encode
(
"utf-8"
))
for
msg
,
err
...
...
common/lib/xmodule/xmodule/x_module.py
View file @
c2197732
...
...
@@ -605,7 +605,7 @@ def policy_key(location):
Get the key for a location in a policy file. (Since the policy file is
specific to a course, it doesn't need the full location url).
"""
return
'{cat}/{name}'
.
format
(
cat
=
location
.
category
,
name
=
location
.
name
)
return
u
'{cat}/{name}'
.
format
(
cat
=
location
.
category
,
name
=
location
.
name
)
Template
=
namedtuple
(
"Template"
,
"metadata data children"
)
...
...
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