mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-26 19:43:59 +03:00
Merge pull request #1841 from jpadilla/view-description-as-promise
Supported translated text view descriptions
This commit is contained in:
commit
c419fb0f9e
|
@ -2,11 +2,12 @@
|
||||||
Utility functions to return a formatted name and description for a given view.
|
Utility functions to return a formatted name and description for a given view.
|
||||||
"""
|
"""
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
import re
|
||||||
|
|
||||||
from django.utils.html import escape
|
from django.utils.html import escape
|
||||||
from django.utils.safestring import mark_safe
|
from django.utils.safestring import mark_safe
|
||||||
from rest_framework.compat import apply_markdown
|
|
||||||
import re
|
from rest_framework.compat import apply_markdown, force_text
|
||||||
|
|
||||||
|
|
||||||
def remove_trailing_string(content, trailing):
|
def remove_trailing_string(content, trailing):
|
||||||
|
@ -28,6 +29,7 @@ def dedent(content):
|
||||||
as it fails to dedent multiline docstrings that include
|
as it fails to dedent multiline docstrings that include
|
||||||
unindented text on the initial line.
|
unindented text on the initial line.
|
||||||
"""
|
"""
|
||||||
|
content = force_text(content)
|
||||||
whitespace_counts = [len(line) - len(line.lstrip(' '))
|
whitespace_counts = [len(line) - len(line.lstrip(' '))
|
||||||
for line in content.splitlines()[1:] if line.lstrip()]
|
for line in content.splitlines()[1:] if line.lstrip()]
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,30 @@ class TestViewNamesAndDescriptions(TestCase):
|
||||||
pass
|
pass
|
||||||
self.assertEqual(MockView().get_view_description(), '')
|
self.assertEqual(MockView().get_view_description(), '')
|
||||||
|
|
||||||
|
def test_view_description_can_be_promise(self):
|
||||||
|
"""
|
||||||
|
Ensure a view may have a docstring that is actually a lazily evaluated
|
||||||
|
class that can be converted to a string.
|
||||||
|
|
||||||
|
See: https://github.com/tomchristie/django-rest-framework/issues/1708
|
||||||
|
"""
|
||||||
|
# use a mock object instead of gettext_lazy to ensure that we can't end
|
||||||
|
# up with a test case string in our l10n catalog
|
||||||
|
class MockLazyStr(object):
|
||||||
|
def __init__(self, string):
|
||||||
|
self.s = string
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.s
|
||||||
|
|
||||||
|
def __unicode__(self):
|
||||||
|
return self.s
|
||||||
|
|
||||||
|
class MockView(APIView):
|
||||||
|
__doc__ = MockLazyStr("a gettext string")
|
||||||
|
|
||||||
|
self.assertEqual(MockView().get_view_description(), 'a gettext string')
|
||||||
|
|
||||||
def test_markdown(self):
|
def test_markdown(self):
|
||||||
"""
|
"""
|
||||||
Ensure markdown to HTML works as expected.
|
Ensure markdown to HTML works as expected.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user