Commit 2f0e6635 by Renzo Lucioni Committed by Sarina Canelake

Use ugettext_noop instead of lambdas assigned to the underscore

Replaces instances of an old hack with the more clear ugettext_noop.
parent 68182b13
...@@ -471,6 +471,8 @@ class ChoiceGroup(InputTypeBase): ...@@ -471,6 +471,8 @@ class ChoiceGroup(InputTypeBase):
@classmethod @classmethod
def get_attributes(cls): def get_attributes(cls):
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
return [Attribute("show_correctness", "always"), return [Attribute("show_correctness", "always"),
Attribute('label', ''), Attribute('label', ''),
...@@ -1707,6 +1709,8 @@ class ChoiceTextGroup(InputTypeBase): ...@@ -1707,6 +1709,8 @@ class ChoiceTextGroup(InputTypeBase):
""" """
Returns a list of `Attribute` for this problem type Returns a list of `Attribute` for this problem type
""" """
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
return [ return [
Attribute("show_correctness", "always"), Attribute("show_correctness", "always"),
......
...@@ -58,7 +58,8 @@ registry = TagRegistry() ...@@ -58,7 +58,8 @@ registry = TagRegistry()
CorrectMap = correctmap.CorrectMap # pylint: disable=invalid-name CorrectMap = correctmap.CorrectMap # pylint: disable=invalid-name
CORRECTMAP_PY = None CORRECTMAP_PY = None
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
QUESTION_HINT_CORRECT_STYLE = 'feedback-hint-correct' QUESTION_HINT_CORRECT_STYLE = 'feedback-hint-correct'
......
...@@ -10,7 +10,8 @@ import textwrap ...@@ -10,7 +10,8 @@ import textwrap
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -32,10 +32,10 @@ from django.conf import settings ...@@ -32,10 +32,10 @@ from django.conf import settings
log = logging.getLogger("edx.courseware") log = logging.getLogger("edx.courseware")
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
# Generate this many different variants of problems with rerandomize=per_student # Generate this many different variants of problems with rerandomize=per_student
NUM_RANDOMIZATION_BINS = 20 NUM_RANDOMIZATION_BINS = 20
# Never produce more than this many different seeds, no matter what. # Never produce more than this many different seeds, no matter what.
......
"""
ORA1. Deprecated.
"""
import logging import logging
from lxml import etree from lxml import etree
...@@ -15,7 +18,8 @@ import textwrap ...@@ -15,7 +18,8 @@ import textwrap
log = logging.getLogger("edx.courseware") log = logging.getLogger("edx.courseware")
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
V1_SETTINGS_ATTRIBUTES = [ V1_SETTINGS_ATTRIBUTES = [
......
...@@ -28,7 +28,8 @@ from django.utils.timezone import UTC ...@@ -28,7 +28,8 @@ from django.utils.timezone import UTC
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
CATALOG_VISIBILITY_CATALOG_AND_ABOUT = "both" CATALOG_VISIBILITY_CATALOG_AND_ABOUT = "both"
......
"""
Definition of the Discussion module.
"""
import json
from pkg_resources import resource_string from pkg_resources import resource_string
import json
from xblock.core import XBlock from xblock.core import XBlock
from xmodule.x_module import XModule from xmodule.x_module import XModule
from xmodule.raw_module import RawDescriptor from xmodule.raw_module import RawDescriptor
from xmodule.editing_module import MetadataOnlyEditingDescriptor from xmodule.editing_module import MetadataOnlyEditingDescriptor
from xblock.fields import String, Scope, UNIQUE_ID from xblock.fields import String, Scope, UNIQUE_ID
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -23,7 +23,8 @@ from xblock.fields import Scope, String, Boolean, List ...@@ -23,7 +23,8 @@ from xblock.fields import Scope, String, Boolean, List
log = logging.getLogger("edx.courseware") log = logging.getLogger("edx.courseware")
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -13,7 +13,8 @@ from xblock.fragment import Fragment ...@@ -13,7 +13,8 @@ from xblock.fragment import Fragment
import textwrap import textwrap
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -22,11 +22,10 @@ from xmodule.studio_editable import StudioEditableModule, StudioEditableDescript ...@@ -22,11 +22,10 @@ from xmodule.studio_editable import StudioEditableModule, StudioEditableDescript
from .xml_module import XmlDescriptor from .xml_module import XmlDescriptor
from pkg_resources import resource_string # pylint: disable=no-name-in-module from pkg_resources import resource_string # pylint: disable=no-name-in-module
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# Make '_' a no-op so we can scrape strings # `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
ANY_CAPA_TYPE_VALUE = 'any' ANY_CAPA_TYPE_VALUE = 'any'
......
...@@ -11,7 +11,8 @@ from xblock.core import XBlock ...@@ -11,7 +11,8 @@ from xblock.core import XBlock
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -76,14 +76,15 @@ from xblock.fields import Boolean, Float ...@@ -76,14 +76,15 @@ from xblock.fields import Boolean, Float
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings
_ = lambda text: text
DOCS_ANCHOR_TAG_OPEN = ( DOCS_ANCHOR_TAG_OPEN = (
"<a target='_blank' " "<a target='_blank' "
"href='http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/lti_component.html'>" "href='http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/lti_component.html'>"
) )
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text
class LTIFields(object): class LTIFields(object):
""" """
......
""" """
Reusable mixins for XBlocks and/or XModules Reusable mixins for XBlocks and/or XModules
""" """
from xblock.fields import Scope, String, XBlockMixin from xblock.fields import Scope, String, XBlockMixin
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -15,6 +15,7 @@ from ..course_metadata_utils import DEFAULT_START_DATE ...@@ -15,6 +15,7 @@ from ..course_metadata_utils import DEFAULT_START_DATE
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings
# Using lambda instead of `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
import json import json
import logging import logging
import traceback import traceback
from lxml import etree from lxml import etree
from xmodule.timeinfo import TimeInfo from xmodule.timeinfo import TimeInfo
from xmodule.capa_module import ComplexEncoder from xmodule.capa_module import ComplexEncoder
from xmodule.progress import Progress from xmodule.progress import Progress
...@@ -34,6 +36,8 @@ ACCEPT_FILE_UPLOAD = False ...@@ -34,6 +36,8 @@ ACCEPT_FILE_UPLOAD = False
# Contains all reasonable bool and case combinations of True # Contains all reasonable bool and case combinations of True
TRUE_DICT = ["True", True, "TRUE", "true"] TRUE_DICT = ["True", True, "TRUE", "true"]
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
HUMAN_TASK_TYPE = { HUMAN_TASK_TYPE = {
......
import logging import logging
from lxml import etree from lxml import etree
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
...@@ -11,6 +12,8 @@ GRADER_TYPE_IMAGE_DICT = { ...@@ -11,6 +12,8 @@ GRADER_TYPE_IMAGE_DICT = {
'BC': '/static/images/ml_grading_icon.png', 'BC': '/static/images/ml_grading_icon.png',
} }
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
HUMAN_GRADER_TYPE = { HUMAN_GRADER_TYPE = {
......
"""
ORA1. Deprecated.
"""
from datetime import datetime
import json import json
import logging import logging
import re import re
import bleach import bleach
from boto.s3.connection import S3Connection
from boto.s3.key import Key
from html5lib.tokenizer import HTMLTokenizer from html5lib.tokenizer import HTMLTokenizer
from pytz import UTC
from xmodule.progress import Progress from xmodule.progress import Progress
import capa.xqueue_interface as xqueue_interface import capa.xqueue_interface as xqueue_interface
from capa.util import * from capa.util import *
from .peer_grading_service import PeerGradingService, MockPeerGradingService from .peer_grading_service import PeerGradingService, MockPeerGradingService
import controller_query_service import controller_query_service
from datetime import datetime
from pytz import UTC
from boto.s3.connection import S3Connection
from boto.s3.key import Key
log = logging.getLogger("edx.courseware") log = logging.getLogger("edx.courseware")
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text
# Set the default number of max attempts. Should be 1 for production # Set the default number of max attempts. Should be 1 for production
# Set higher for debugging/testing # Set higher for debugging/testing
# attempts specified in xml definition overrides this. # attempts specified in xml definition overrides this.
...@@ -88,7 +97,6 @@ class OpenEndedChild(object): ...@@ -88,7 +97,6 @@ class OpenEndedChild(object):
DONE = 'done' DONE = 'done'
# This is used to tell students where they are at in the module # This is used to tell students where they are at in the module
_ = lambda text: text
HUMAN_NAMES = { HUMAN_NAMES = {
# Translators: "Not started" communicates to a student that their response # Translators: "Not started" communicates to a student that their response
# has not yet been graded # has not yet been graded
......
"""
ORA1. Deprecated.
"""
import json import json
import logging import logging
...@@ -23,10 +26,10 @@ from open_ended_grading_classes import combined_open_ended_rubric ...@@ -23,10 +26,10 @@ from open_ended_grading_classes import combined_open_ended_rubric
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
EXTERNAL_GRADER_NO_CONTACT_ERROR = "Failed to contact external graders. Please notify course staff." EXTERNAL_GRADER_NO_CONTACT_ERROR = "Failed to contact external graders. Please notify course staff."
MAX_ALLOWED_FEEDBACK_LENGTH = 5000 MAX_ALLOWED_FEEDBACK_LENGTH = 5000
......
...@@ -6,14 +6,13 @@ xModule implementation of a learning sequence ...@@ -6,14 +6,13 @@ xModule implementation of a learning sequence
import json import json
import logging import logging
from pkg_resources import resource_string
import warnings import warnings
from lxml import etree from lxml import etree
from xblock.core import XBlock from xblock.core import XBlock
from xblock.fields import Integer, Scope, Boolean from xblock.fields import Integer, Scope, Boolean
from xblock.fragment import Fragment from xblock.fragment import Fragment
from pkg_resources import resource_string
from .exceptions import NotFoundError from .exceptions import NotFoundError
from .fields import Date from .fields import Date
...@@ -28,7 +27,8 @@ log = logging.getLogger(__name__) ...@@ -28,7 +27,8 @@ log = logging.getLogger(__name__)
# OBSOLETE: This obsoletes 'type' # OBSOLETE: This obsoletes 'type'
class_priority = ['video', 'problem'] class_priority = ['video', 'problem']
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -23,7 +23,8 @@ from xblock.fragment import Fragment ...@@ -23,7 +23,8 @@ from xblock.fragment import Fragment
log = logging.getLogger('edx.' + __name__) log = logging.getLogger('edx.' + __name__)
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
DEFAULT_GROUP_NAME = _(u'Group ID {group_id}') DEFAULT_GROUP_NAME = _(u'Group ID {group_id}')
......
""" """
Implement CourseTab Implement CourseTab
""" """
from abc import ABCMeta from abc import ABCMeta
import logging import logging
from xblock.fields import List from xblock.fields import List
from openedx.core.lib.api.plugins import PluginError from openedx.core.lib.api.plugins import PluginError
# We should only scrape strings for i18n in this file, since the target language is known only when
# they are rendered in the template. So ugettext gets called in the template.
_ = lambda text: text
log = logging.getLogger("edx.courseware") log = logging.getLogger("edx.courseware")
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text
class CourseTab(object): class CourseTab(object):
""" """
......
''' Text annotation module ''' """Text annotation module"""
from lxml import etree from lxml import etree
from pkg_resources import resource_string from pkg_resources import resource_string
...@@ -11,7 +10,8 @@ from xmodule.annotator_token import retrieve_token ...@@ -11,7 +10,8 @@ from xmodule.annotator_token import retrieve_token
from xblock.fragment import Fragment from xblock.fragment import Fragment
import textwrap import textwrap
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -83,6 +83,9 @@ except ImportError: ...@@ -83,6 +83,9 @@ except ImportError:
BrandingInfoConfig = None BrandingInfoConfig = None
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -4,10 +4,10 @@ XFields for video module. ...@@ -4,10 +4,10 @@ XFields for video module.
import datetime import datetime
from xblock.fields import Scope, String, Float, Boolean, List, Dict, DateTime from xblock.fields import Scope, String, Float, Boolean, List, Dict, DateTime
from xmodule.fields import RelativeTime from xmodule.fields import RelativeTime
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -13,7 +13,8 @@ from xblock.fragment import Fragment ...@@ -13,7 +13,8 @@ from xblock.fragment import Fragment
import textwrap import textwrap
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
...@@ -8,8 +8,8 @@ If student have answered - words he entered and cloud. ...@@ -8,8 +8,8 @@ If student have answered - words he entered and cloud.
import json import json
import logging import logging
from pkg_resources import resource_string from pkg_resources import resource_string
from xmodule.raw_module import EmptyDataRawDescriptor from xmodule.raw_module import EmptyDataRawDescriptor
from xmodule.editing_module import MetadataOnlyEditingDescriptor from xmodule.editing_module import MetadataOnlyEditingDescriptor
from xmodule.x_module import XModule from xmodule.x_module import XModule
...@@ -18,7 +18,8 @@ from xblock.fields import Scope, Dict, Boolean, List, Integer, String ...@@ -18,7 +18,8 @@ from xblock.fields import Scope, Dict, Boolean, List, Integer, String
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
# Make '_' a no-op so we can scrape strings # Make '_' a no-op so we can scrape strings. Using lambda instead of
# `django.utils.translation.ugettext_noop` because Django cannot be imported in this file
_ = lambda text: text _ = lambda text: text
......
""" """
Namespace that defines fields common to all blocks used in the LMS Namespace that defines fields common to all blocks used in the LMS
""" """
from django.utils.translation import ugettext_noop as _
from lazy import lazy from lazy import lazy
from xblock.fields import Boolean, Scope, String, XBlockMixin, Dict from xblock.fields import Boolean, Scope, String, XBlockMixin, Dict
...@@ -8,9 +9,6 @@ from xblock.validation import ValidationMessage ...@@ -8,9 +9,6 @@ from xblock.validation import ValidationMessage
from xmodule.modulestore.inheritance import UserPartitionList from xmodule.modulestore.inheritance import UserPartitionList
from xmodule.partitions.partitions import NoSuchUserPartitionError, NoSuchUserPartitionGroupError from xmodule.partitions.partitions import NoSuchUserPartitionError, NoSuchUserPartitionGroupError
# Make '_' a no-op so we can scrape strings
_ = lambda text: text
class GroupAccessDict(Dict): class GroupAccessDict(Dict):
"""Special Dict class for serializing the group_access field""" """Special Dict class for serializing the group_access field"""
......
...@@ -3,8 +3,6 @@ Tabs for courseware. ...@@ -3,8 +3,6 @@ Tabs for courseware.
""" """
from openedx.core.lib.api.plugins import PluginManager from openedx.core.lib.api.plugins import PluginManager
_ = lambda text: text
# Stevedore extension point namespaces # Stevedore extension point namespaces
COURSE_TAB_NAMESPACE = 'openedx.course_tab' COURSE_TAB_NAMESPACE = 'openedx.course_tab'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment