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
5e11708e
Commit
5e11708e
authored
5 years ago
by
Awais Jibran
Browse files
Options
Downloads
Patches
Plain Diff
Adding `ContextualizeTextError`.
parent
cb2a2471
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
common/lib/capa/capa/util.py
+22
-1
22 additions, 1 deletion
common/lib/capa/capa/util.py
with
22 additions
and
1 deletion
common/lib/capa/capa/util.py
+
22
−
1
View file @
5e11708e
...
...
@@ -4,6 +4,7 @@ Utility functions for capa.
from
__future__
import
absolute_import
import
re
import
logging
import
six
from
cmath
import
isinf
,
isnan
from
decimal
import
Decimal
...
...
@@ -18,6 +19,7 @@ from openedx.core.djangolib.markup import HTML
#
# Utility functions used in CAPA responsetypes
default_tolerance
=
'
0.001%
'
log
=
logging
.
getLogger
(
__name__
)
def
compare_with_tolerance
(
student_complex
,
instructor_complex
,
tolerance
=
default_tolerance
,
relative_tolerance
=
False
):
...
...
@@ -108,6 +110,24 @@ def contextualize_text(text, context): # private
except
UnicodeEncodeError
:
return
value
.
encode
(
'
utf8
'
,
errors
=
'
ignore
'
)
def
replace_or_log_error
(
data_string
,
old_value
,
new_value
):
"""
Tries to replace context variable with value and logs exception if there is an error
"""
try
:
data_string
=
data_string
.
replace
(
old_value
,
new_value
)
return
data_string
except
Exception
as
error
:
log
.
exception
(
u
'
ContextualizeTextError: text(%s): %s, context_key(%s): %s, context_value(%s): %s, Error: %s
'
,
type
(
text
),
text
,
type
(
context_key
),
context_key
,
type
(
context_value
),
context_value
,
six
.
text_type
(
error
)
)
raise
if
not
text
:
return
text
...
...
@@ -121,7 +141,8 @@ def contextualize_text(text, context): # private
if
context_key
in
(
text
.
decode
(
'
utf-8
'
)
if
six
.
PY3
and
isinstance
(
text
,
bytes
)
else
text
):
text
=
convert_to_str
(
text
)
context_value
=
convert_to_str
(
context
[
key
])
text
=
text
.
replace
(
context_key
,
context_value
)
text
=
replace_or_log_error
(
text
,
context_key
,
context_value
)
return
text
...
...
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