當前位置: 首頁>>代碼示例>>Python>>正文


Python safestring.SafeData方法代碼示例

本文整理匯總了Python中django.utils.safestring.SafeData方法的典型用法代碼示例。如果您正苦於以下問題:Python safestring.SafeData方法的具體用法?Python safestring.SafeData怎麽用?Python safestring.SafeData使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在django.utils.safestring的用法示例。


在下文中一共展示了safestring.SafeData方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: render

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def render(self, context):
        try:
            output = self.filter_expression.resolve(context)
            output = template_localtime(output, use_tz=context.use_tz)
            output = localize(output, use_l10n=context.use_l10n)
            output = force_text(output)
        except UnicodeDecodeError:
            return ''
        except Exception as e:
            if not hasattr(e, 'django_template_source'):
                e.django_template_source = self.source
            raise
        if (context.autoescape and not isinstance(output, SafeData)) or isinstance(output, EscapeData):
            return conditional_escape(output)
        else:
            return output 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:18,代碼來源:debug.py

示例2: render

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def render(self, context):
        self.filter_expression.var.translate = not self.noop
        if self.message_context:
            self.filter_expression.var.message_context = (
                self.message_context.resolve(context))
        output = self.filter_expression.resolve(context)
        value = render_value_in_context(output, context)
        # Restore percent signs. Percent signs in template text are doubled
        # so they are not interpreted as string format flags.
        is_safe = isinstance(value, SafeData)
        value = value.replace('%%', '%')
        value = mark_safe(value) if is_safe else value
        if self.asvar:
            context[self.asvar] = value
            return ''
        else:
            return value 
開發者ID:reBiocoder,項目名稱:bioforum,代碼行數:19,代碼來源:i18n.py

示例3: gettext

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def gettext(message):
    """
    Translate the 'message' string. It uses the current thread to find the
    translation object to use. If no current translation is activated, the
    message will be run through the default translation object.
    """
    global _default

    eol_message = message.replace('\r\n', '\n').replace('\r', '\n')

    if len(eol_message) == 0:
        # Return an empty value of the corresponding type if an empty message
        # is given, instead of metadata, which is the default gettext behavior.
        result = type(message)("")
    else:
        _default = _default or translation(settings.LANGUAGE_CODE)
        translation_object = getattr(_active, "value", _default)

        result = translation_object.gettext(eol_message)

    if isinstance(message, SafeData):
        return mark_safe(result)

    return result 
開發者ID:reBiocoder,項目名稱:bioforum,代碼行數:26,代碼來源:trans_real.py

示例4: stringfilter

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def stringfilter(func):
    """
    Decorator for filters which should only receive strings. The object
    passed as the first positional argument will be converted to a string.
    """
    def _dec(*args, **kwargs):
        if args:
            args = list(args)
            args[0] = str(args[0])
            if (isinstance(args[0], SafeData) and
                    getattr(_dec._decorated_function, 'is_safe', False)):
                return mark_safe(func(*args, **kwargs))
        return func(*args, **kwargs)

    # Include a reference to the real function (used to check original
    # arguments by the template parser, and to bear the 'is_safe' attribute
    # when multiple decorators are applied).
    _dec._decorated_function = getattr(func, '_decorated_function', func)

    return wraps(func)(_dec)


###################
# STRINGS         #
################### 
開發者ID:reBiocoder,項目名稱:bioforum,代碼行數:27,代碼來源:defaultfilters.py

示例5: do_translate

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def do_translate(message, translation_function):
        """Copied from django.utils.translation.trans_real"""
        # str() is allowing a bytestring message to remain bytestring on Python 2
        eol_message = message.replace(str('\r\n'), str('\n')).replace(str('\r'), str('\n'))

        if len(eol_message) == 0:
            # Returns an empty value of the corresponding type if an empty message
            # is given, instead of metadata, which is the default gettext behavior.
            result = ''
        else:
            translation_object = translation(get_language())
            result = getattr(translation_object, translation_function)(eol_message)
            if not isinstance(result, six.text_type):
                result = result.decode('utf-8')

        if isinstance(message, SafeData):
            return mark_safe(result)

        return result 
開發者ID:DMOJ,項目名稱:online-judge,代碼行數:21,代碼來源:user_translations.py

示例6: gettext

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def gettext(message):
    """
    Translate the 'message' string. It uses the current thread to find the
    translation object to use. If no current translation is activated, the
    message will be run through the default translation object.
    """
    global _default

    eol_message = message.replace('\r\n', '\n').replace('\r', '\n')

    if eol_message:
        _default = _default or translation(settings.LANGUAGE_CODE)
        translation_object = getattr(_active, "value", _default)

        result = translation_object.gettext(eol_message)
    else:
        # Return an empty value of the corresponding type if an empty message
        # is given, instead of metadata, which is the default gettext behavior.
        result = type(message)('')

    if isinstance(message, SafeData):
        return mark_safe(result)

    return result 
開發者ID:PacktPublishing,項目名稱:Hands-On-Application-Development-with-PyCharm,代碼行數:26,代碼來源:trans_real.py

示例7: stringfilter

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def stringfilter(func):
    """
    Decorator for filters which should only receive strings. The object
    passed as the first positional argument will be converted to a string.
    """
    def _dec(*args, **kwargs):
        args = list(args)
        args[0] = str(args[0])
        if (isinstance(args[0], SafeData) and
                getattr(_dec._decorated_function, 'is_safe', False)):
            return mark_safe(func(*args, **kwargs))
        return func(*args, **kwargs)

    # Include a reference to the real function (used to check original
    # arguments by the template parser, and to bear the 'is_safe' attribute
    # when multiple decorators are applied).
    _dec._decorated_function = getattr(func, '_decorated_function', func)

    return wraps(func)(_dec)


###################
# STRINGS         #
################### 
開發者ID:PacktPublishing,項目名稱:Hands-On-Application-Development-with-PyCharm,代碼行數:26,代碼來源:defaultfilters.py

示例8: do_translate

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def do_translate(message, translation_function):
    """
    Translates 'message' using the given 'translation_function' name -- which
    will be either gettext or ugettext. It uses the current thread to find the
    translation object to use. If no current translation is activated, the
    message will be run through the default translation object.
    """
    global _default

    # str() is allowing a bytestring message to remain bytestring on Python 2
    eol_message = message.replace(str('\r\n'), str('\n')).replace(str('\r'), str('\n'))
    t = getattr(_active, "value", None)
    if t is not None:
        result = getattr(t, translation_function)(eol_message)
    else:
        if _default is None:
            from django.conf import settings
            _default = translation(settings.LANGUAGE_CODE)
        result = getattr(_default, translation_function)(eol_message)
    if isinstance(message, SafeData):
        return mark_safe(result)
    return result 
開發者ID:blackye,項目名稱:luscan-devel,代碼行數:24,代碼來源:trans_real.py

示例9: render

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def render(self, context):
        try:
            output = self.filter_expression.resolve(context)
            output = template_localtime(output, use_tz=context.use_tz)
            output = localize(output, use_l10n=context.use_l10n)
            output = force_text(output)
        except UnicodeDecodeError:
            return ''
        except Exception as e:
            if not hasattr(e, 'django_template_source'):
                e.django_template_source = self.source
            raise
        if (context.autoescape and not isinstance(output, SafeData)) or isinstance(output, EscapeData):
            return escape(output)
        else:
            return output 
開發者ID:blackye,項目名稱:luscan-devel,代碼行數:18,代碼來源:debug.py

示例10: conditional_escape

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def conditional_escape(text):
    """
    Similar to escape(), except that it doesn't operate on pre-escaped strings.

    This function relies on the __html__ convention used both by Django's
    SafeData class and by third-party libraries like markupsafe.
    """
    if hasattr(text, '__html__'):
        return text.__html__()
    else:
        return escape(text) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:13,代碼來源:html.py

示例11: do_translate

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def do_translate(message, translation_function):
    """
    Translates 'message' using the given 'translation_function' name -- which
    will be either gettext or ugettext. It uses the current thread to find the
    translation object to use. If no current translation is activated, the
    message will be run through the default translation object.
    """
    global _default

    # str() is allowing a bytestring message to remain bytestring on Python 2
    eol_message = message.replace(str('\r\n'), str('\n')).replace(str('\r'), str('\n'))

    if len(eol_message) == 0:
        # Returns an empty value of the corresponding type if an empty message
        # is given, instead of metadata, which is the default gettext behavior.
        result = type(message)("")
    else:
        _default = _default or translation(settings.LANGUAGE_CODE)
        translation_object = getattr(_active, "value", _default)

        result = getattr(translation_object, translation_function)(eol_message)

    if isinstance(message, SafeData):
        return mark_safe(result)

    return result 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:28,代碼來源:trans_real.py

示例12: stringfilter

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def stringfilter(func):
    """
    Decorator for filters which should only receive unicode objects. The object
    passed as the first positional argument will be converted to a unicode
    object.
    """
    def _dec(*args, **kwargs):
        if args:
            args = list(args)
            args[0] = force_text(args[0])
            if (isinstance(args[0], SafeData) and
                    getattr(_dec._decorated_function, 'is_safe', False)):
                return mark_safe(func(*args, **kwargs))
        return func(*args, **kwargs)

    # Include a reference to the real function (used to check original
    # arguments by the template parser, and to bear the 'is_safe' attribute
    # when multiple decorators are applied).
    _dec._decorated_function = getattr(func, '_decorated_function', func)

    return wraps(func)(_dec)


###################
# STRINGS         #
################### 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:28,代碼來源:defaultfilters.py

示例13: linenumbers

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def linenumbers(value, autoescape=True):
    """Displays text with line numbers."""
    lines = value.split('\n')
    # Find the maximum width of the line count, for use with zero padding
    # string format command
    width = six.text_type(len(six.text_type(len(lines))))
    if not autoescape or isinstance(value, SafeData):
        for i, line in enumerate(lines):
            lines[i] = ("%0" + width + "d. %s") % (i + 1, line)
    else:
        for i, line in enumerate(lines):
            lines[i] = ("%0" + width + "d. %s") % (i + 1, escape(line))
    return mark_safe('\n'.join(lines)) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:15,代碼來源:defaultfilters.py

示例14: linebreaks_filter

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def linebreaks_filter(value, autoescape=True):
    """
    Replaces line breaks in plain text with appropriate HTML; a single
    newline becomes an HTML line break (``<br />``) and a new line
    followed by a blank line becomes a paragraph break (``</p>``).
    """
    autoescape = autoescape and not isinstance(value, SafeData)
    return mark_safe(linebreaks(value, autoescape)) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:10,代碼來源:defaultfilters.py

示例15: linebreaksbr

# 需要導入模塊: from django.utils import safestring [as 別名]
# 或者: from django.utils.safestring import SafeData [as 別名]
def linebreaksbr(value, autoescape=True):
    """
    Converts all newlines in a piece of plain text to HTML line breaks
    (``<br />``).
    """
    autoescape = autoescape and not isinstance(value, SafeData)
    value = normalize_newlines(value)
    if autoescape:
        value = escape(value)
    return mark_safe(value.replace('\n', '<br />')) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:12,代碼來源:defaultfilters.py


注:本文中的django.utils.safestring.SafeData方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。