utils.txt 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158
  1. ============
  2. Django Utils
  3. ============
  4. .. module:: django.utils
  5. :synopsis: Django's built-in utilities.
  6. This document covers all stable modules in ``django.utils``. Most of the
  7. modules in ``django.utils`` are designed for internal use and only the
  8. following parts can be considered stable and thus backwards compatible as per
  9. the :ref:`internal release deprecation policy <internal-release-deprecation-policy>`.
  10. ``django.utils.cache``
  11. ======================
  12. .. module:: django.utils.cache
  13. :synopsis: Helper functions for controlling caching.
  14. This module contains helper functions for controlling caching. It does so by
  15. managing the ``Vary`` header of responses. It includes functions to patch the
  16. header of response objects directly and decorators that change functions to do
  17. that header-patching themselves.
  18. For information on the ``Vary`` header, see :rfc:`2616#section-14.44` section
  19. 14.44.
  20. Essentially, the ``Vary`` HTTP header defines which headers a cache should take
  21. into account when building its cache key. Requests with the same path but
  22. different header content for headers named in ``Vary`` need to get different
  23. cache keys to prevent delivery of wrong content.
  24. For example, :doc:`internationalization </topics/i18n/index>` middleware would
  25. need to distinguish caches by the ``Accept-language`` header.
  26. .. function:: patch_cache_control(response, **kwargs)
  27. This function patches the ``Cache-Control`` header by adding all keyword
  28. arguments to it. The transformation is as follows:
  29. * All keyword parameter names are turned to lowercase, and underscores
  30. are converted to hyphens.
  31. * If the value of a parameter is ``True`` (exactly ``True``, not just a
  32. true value), only the parameter name is added to the header.
  33. * All other parameters are added with their value, after applying
  34. ``str()`` to it.
  35. .. function:: get_max_age(response)
  36. Returns the max-age from the response Cache-Control header as an integer
  37. (or ``None`` if it wasn't found or wasn't an integer).
  38. .. function:: patch_response_headers(response, cache_timeout=None)
  39. Adds some useful headers to the given ``HttpResponse`` object:
  40. * ``ETag``
  41. * ``Last-Modified``
  42. * ``Expires``
  43. * ``Cache-Control``
  44. Each header is only added if it isn't already set.
  45. ``cache_timeout`` is in seconds. The :setting:`CACHE_MIDDLEWARE_SECONDS`
  46. setting is used by default.
  47. .. function:: add_never_cache_headers(response)
  48. Adds a ``Cache-Control: max-age=0, no-cache, no-store, must-revalidate``
  49. header to a response to indicate that a page should never be cached.
  50. .. versionchanged:: 1.9
  51. Before Django 1.9, ``Cache-Control: max-age=0`` was sent. This didn't
  52. reliably prevent caching in all browsers.
  53. .. function:: patch_vary_headers(response, newheaders)
  54. Adds (or updates) the ``Vary`` header in the given ``HttpResponse`` object.
  55. ``newheaders`` is a list of header names that should be in ``Vary``.
  56. Existing headers in ``Vary`` aren't removed.
  57. .. function:: get_cache_key(request, key_prefix=None)
  58. Returns a cache key based on the request path. It can be used in the
  59. request phase because it pulls the list of headers to take into account
  60. from the global path registry and uses those to build a cache key to
  61. check against.
  62. If there is no headerlist stored, the page needs to be rebuilt, so this
  63. function returns ``None``.
  64. .. function:: learn_cache_key(request, response, cache_timeout=None, key_prefix=None)
  65. Learns what headers to take into account for some request path from the
  66. response object. It stores those headers in a global path registry so that
  67. later access to that path will know what headers to take into account
  68. without building the response object itself. The headers are named in
  69. the ``Vary`` header of the response, but we want to prevent response
  70. generation.
  71. The list of headers to use for cache key generation is stored in the same
  72. cache as the pages themselves. If the cache ages some data out of the
  73. cache, this just means that we have to build the response once to get at
  74. the Vary header and so at the list of headers to use for the cache key.
  75. ``django.utils.dateparse``
  76. ==========================
  77. .. module:: django.utils.dateparse
  78. :synopsis: Functions to parse datetime objects.
  79. The functions defined in this module share the following properties:
  80. - They raise :exc:`ValueError` if their input is well formatted but isn't a
  81. valid date or time.
  82. - They return ``None`` if it isn't well formatted at all.
  83. - They accept up to picosecond resolution in input, but they truncate it to
  84. microseconds, since that's what Python supports.
  85. .. function:: parse_date(value)
  86. Parses a string and returns a :class:`datetime.date`.
  87. .. function:: parse_time(value)
  88. Parses a string and returns a :class:`datetime.time`.
  89. UTC offsets aren't supported; if ``value`` describes one, the result is
  90. ``None``.
  91. .. function:: parse_datetime(value)
  92. Parses a string and returns a :class:`datetime.datetime`.
  93. UTC offsets are supported; if ``value`` describes one, the result's
  94. ``tzinfo`` attribute is a :class:`~django.utils.timezone.FixedOffset`
  95. instance.
  96. .. function:: parse_duration(value)
  97. .. versionadded:: 1.8
  98. Parses a string and returns a :class:`datetime.timedelta`.
  99. Expects data in the format ``"DD HH:MM:SS.uuuuuu"`` or as specified by ISO
  100. 8601 (e.g. ``P4DT1H15M20S`` which is equivalent to ``4 1:15:20``).
  101. ``django.utils.decorators``
  102. ===========================
  103. .. module:: django.utils.decorators
  104. :synopsis: Functions that help with creating decorators for views.
  105. .. function:: method_decorator(decorator, name='')
  106. Converts a function decorator into a method decorator. It can be used to
  107. decorate methods or classes; in the latter case, ``name`` is the name
  108. of the method to be decorated and is required. See :ref:`decorating
  109. class based views<decorating-class-based-views>` for example usage.
  110. .. versionchanged:: 1.9
  111. The ability to decorate classes and the ``name`` parameter were added.
  112. .. function:: decorator_from_middleware(middleware_class)
  113. Given a middleware class, returns a view decorator. This lets you use
  114. middleware functionality on a per-view basis. The middleware is created
  115. with no params passed.
  116. .. function:: decorator_from_middleware_with_args(middleware_class)
  117. Like ``decorator_from_middleware``, but returns a function
  118. that accepts the arguments to be passed to the middleware_class.
  119. For example, the :func:`~django.views.decorators.cache.cache_page`
  120. decorator is created from the ``CacheMiddleware`` like this::
  121. cache_page = decorator_from_middleware_with_args(CacheMiddleware)
  122. @cache_page(3600)
  123. def my_view(request):
  124. pass
  125. ``django.utils.encoding``
  126. =========================
  127. .. module:: django.utils.encoding
  128. :synopsis: A series of helper functions to manage character encoding.
  129. .. function:: python_2_unicode_compatible
  130. A decorator that defines ``__unicode__`` and ``__str__`` methods under
  131. Python 2. Under Python 3 it does nothing.
  132. To support Python 2 and 3 with a single code base, define a ``__str__``
  133. method returning text and apply this decorator to the class.
  134. .. function:: smart_text(s, encoding='utf-8', strings_only=False, errors='strict')
  135. Returns a text object representing ``s`` -- ``unicode`` on Python 2 and
  136. ``str`` on Python 3. Treats bytestrings using the ``encoding`` codec.
  137. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  138. objects.
  139. .. function:: smart_unicode(s, encoding='utf-8', strings_only=False, errors='strict')
  140. Historical name of :func:`smart_text`. Only available under Python 2.
  141. .. function:: is_protected_type(obj)
  142. Determine if the object instance is of a protected type.
  143. Objects of protected types are preserved as-is when passed to
  144. ``force_text(strings_only=True)``.
  145. .. function:: force_text(s, encoding='utf-8', strings_only=False, errors='strict')
  146. Similar to ``smart_text``, except that lazy instances are resolved to
  147. strings, rather than kept as lazy objects.
  148. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  149. objects.
  150. .. function:: force_unicode(s, encoding='utf-8', strings_only=False, errors='strict')
  151. Historical name of :func:`force_text`. Only available under Python 2.
  152. .. function:: smart_bytes(s, encoding='utf-8', strings_only=False, errors='strict')
  153. Returns a bytestring version of ``s``, encoded as specified in
  154. ``encoding``.
  155. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  156. objects.
  157. .. function:: force_bytes(s, encoding='utf-8', strings_only=False, errors='strict')
  158. Similar to ``smart_bytes``, except that lazy instances are resolved to
  159. bytestrings, rather than kept as lazy objects.
  160. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  161. objects.
  162. .. function:: smart_str(s, encoding='utf-8', strings_only=False, errors='strict')
  163. Alias of :func:`smart_bytes` on Python 2 and :func:`smart_text` on Python
  164. 3. This function returns a ``str`` or a lazy string.
  165. For instance, this is suitable for writing to :data:`sys.stdout` on
  166. Python 2 and 3.
  167. .. function:: force_str(s, encoding='utf-8', strings_only=False, errors='strict')
  168. Alias of :func:`force_bytes` on Python 2 and :func:`force_text` on Python
  169. 3. This function always returns a ``str``.
  170. .. function:: iri_to_uri(iri)
  171. Convert an Internationalized Resource Identifier (IRI) portion to a URI
  172. portion that is suitable for inclusion in a URL.
  173. This is the algorithm from section 3.1 of :rfc:`3987#section-3.1`. However,
  174. since we are assuming input is either UTF-8 or unicode already, we can
  175. simplify things a little from the full method.
  176. Takes an IRI in UTF-8 bytes and returns ASCII bytes containing the encoded
  177. result.
  178. .. function:: uri_to_iri(uri)
  179. .. versionadded:: 1.8
  180. Converts a Uniform Resource Identifier into an Internationalized Resource
  181. Identifier.
  182. This is an algorithm from section 3.2 of :rfc:`3987#section-3.2`.
  183. Takes a URI in ASCII bytes and returns a unicode string containing the
  184. encoded result.
  185. .. function:: filepath_to_uri(path)
  186. Convert a file system path to a URI portion that is suitable for inclusion
  187. in a URL. The path is assumed to be either UTF-8 or unicode.
  188. This method will encode certain characters that would normally be
  189. recognized as special characters for URIs. Note that this method does not
  190. encode the ' character, as it is a valid character within URIs. See
  191. ``encodeURIComponent()`` JavaScript function for more details.
  192. Returns an ASCII string containing the encoded result.
  193. .. function:: escape_uri_path(path)
  194. .. versionadded:: 1.8
  195. Escapes the unsafe characters from the path portion of a Uniform Resource
  196. Identifier (URI).
  197. ``django.utils.feedgenerator``
  198. ==============================
  199. .. module:: django.utils.feedgenerator
  200. :synopsis: Syndication feed generation library -- used for generating RSS, etc.
  201. Sample usage::
  202. >>> from django.utils import feedgenerator
  203. >>> feed = feedgenerator.Rss201rev2Feed(
  204. ... title="Poynter E-Media Tidbits",
  205. ... link="http://www.poynter.org/column.asp?id=31",
  206. ... description="A group Weblog by the sharpest minds in online media/journalism/publishing.",
  207. ... language="en",
  208. ... )
  209. >>> feed.add_item(
  210. ... title="Hello",
  211. ... link="http://www.holovaty.com/test/",
  212. ... description="Testing."
  213. ... )
  214. >>> with open('test.rss', 'w') as fp:
  215. ... feed.write(fp, 'utf-8')
  216. For simplifying the selection of a generator use ``feedgenerator.DefaultFeed``
  217. which is currently ``Rss201rev2Feed``
  218. For definitions of the different versions of RSS, see:
  219. http://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004/02/04/incompatible-rss
  220. .. function:: get_tag_uri(url, date)
  221. Creates a TagURI.
  222. See http://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id
  223. SyndicationFeed
  224. ---------------
  225. .. class:: SyndicationFeed
  226. Base class for all syndication feeds. Subclasses should provide write().
  227. .. method:: __init__(title, link, description, language=None, author_email=None, author_name=None, author_link=None, subtitle=None, categories=None, feed_url=None, feed_copyright=None, feed_guid=None, ttl=None, **kwargs)
  228. Initialize the feed with the given dictionary of metadata, which applies
  229. to the entire feed.
  230. Any extra keyword arguments you pass to ``__init__`` will be stored in
  231. ``self.feed``.
  232. All parameters should be Unicode objects, except ``categories``, which
  233. should be a sequence of Unicode objects.
  234. .. method:: add_item(title, link, description, author_email=None, author_name=None, author_link=None, pubdate=None, comments=None, unique_id=None, enclosure=None, categories=(), item_copyright=None, ttl=None, updateddate=None, **kwargs)
  235. Adds an item to the feed. All args are expected to be Python ``unicode``
  236. objects except ``pubdate`` and ``updateddate``, which are ``datetime.datetime``
  237. objects, and ``enclosure``, which is an instance of the ``Enclosure`` class.
  238. .. method:: num_items()
  239. .. method:: root_attributes()
  240. Return extra attributes to place on the root (i.e. feed/channel)
  241. element. Called from ``write()``.
  242. .. method:: add_root_elements(handler)
  243. Add elements in the root (i.e. feed/channel) element.
  244. Called from ``write()``.
  245. .. method:: item_attributes(item)
  246. Return extra attributes to place on each item (i.e. item/entry)
  247. element.
  248. .. method:: add_item_elements(handler, item)
  249. Add elements on each item (i.e. item/entry) element.
  250. .. method:: write(outfile, encoding)
  251. Outputs the feed in the given encoding to ``outfile``, which is a
  252. file-like object. Subclasses should override this.
  253. .. method:: writeString(encoding)
  254. Returns the feed in the given encoding as a string.
  255. .. method:: latest_post_date()
  256. Returns the latest ``pubdate`` or ``updateddate`` for all items in the
  257. feed. If no items have either of these attributes this returns the
  258. current date/time.
  259. Enclosure
  260. ---------
  261. .. class:: Enclosure
  262. Represents an RSS enclosure
  263. RssFeed
  264. -------
  265. .. class:: RssFeed(SyndicationFeed)
  266. Rss201rev2Feed
  267. --------------
  268. .. class:: Rss201rev2Feed(RssFeed)
  269. Spec: http://cyber.law.harvard.edu/rss/rss.html
  270. RssUserland091Feed
  271. ------------------
  272. .. class:: RssUserland091Feed(RssFeed)
  273. Spec: http://backend.userland.com/rss091
  274. Atom1Feed
  275. ---------
  276. .. class:: Atom1Feed(SyndicationFeed)
  277. Spec: http://tools.ietf.org/html/rfc4287
  278. ``django.utils.functional``
  279. ===========================
  280. .. module:: django.utils.functional
  281. :synopsis: Functional programming tools.
  282. .. class:: cached_property(object, name)
  283. The ``@cached_property`` decorator caches the result of a method with a
  284. single ``self`` argument as a property. The cached result will persist
  285. as long as the instance does, so if the instance is passed around and the
  286. function subsequently invoked, the cached result will be returned.
  287. Consider a typical case, where a view might need to call a model's method
  288. to perform some computation, before placing the model instance into the
  289. context, where the template might invoke the method once more::
  290. # the model
  291. class Person(models.Model):
  292. def friends(self):
  293. # expensive computation
  294. ...
  295. return friends
  296. # in the view:
  297. if person.friends():
  298. ...
  299. And in the template you would have:
  300. .. code-block:: html+django
  301. {% for friend in person.friends %}
  302. Here, ``friends()`` will be called twice. Since the instance ``person`` in
  303. the view and the template are the same, ``@cached_property`` can avoid
  304. that::
  305. from django.utils.functional import cached_property
  306. @cached_property
  307. def friends(self):
  308. # expensive computation
  309. ...
  310. return friends
  311. Note that as the method is now a property, in Python code it will need to
  312. be invoked appropriately::
  313. # in the view:
  314. if person.friends:
  315. ...
  316. The cached value can be treated like an ordinary attribute of the instance::
  317. # clear it, requiring re-computation next time it's called
  318. del person.friends # or delattr(person, "friends")
  319. # set a value manually, that will persist on the instance until cleared
  320. person.friends = ["Huckleberry Finn", "Tom Sawyer"]
  321. As well as offering potential performance advantages, ``@cached_property``
  322. can ensure that an attribute's value does not change unexpectedly over the
  323. life of an instance. This could occur with a method whose computation is
  324. based on ``datetime.now()``, or simply if a change were saved to the
  325. database by some other process in the brief interval between subsequent
  326. invocations of a method on the same instance.
  327. .. versionadded:: 1.8
  328. You can use the ``name`` argument to make cached properties of other
  329. methods. For example, if you had an expensive ``get_friends()`` method and
  330. wanted to allow calling it without retrieving the cached value, you could
  331. write::
  332. friends = cached_property(get_friends, name='friends')
  333. While ``person.get_friends()`` will recompute the friends on each call, the
  334. value of the cached property will persist until you delete it as described
  335. above::
  336. x = person.friends # calls first time
  337. y = person.get_friends() # calls again
  338. z = person.friends # does not call
  339. x is z # is True
  340. .. function:: allow_lazy(func, *resultclasses)
  341. Django offers many utility functions (particularly in ``django.utils``)
  342. that take a string as their first argument and do something to that string.
  343. These functions are used by template filters as well as directly in other
  344. code.
  345. If you write your own similar functions and deal with translations, you'll
  346. face the problem of what to do when the first argument is a lazy
  347. translation object. You don't want to convert it to a string immediately,
  348. because you might be using this function outside of a view (and hence the
  349. current thread's locale setting will not be correct).
  350. For cases like this, use the ``django.utils.functional.allow_lazy()``
  351. decorator. It modifies the function so that *if* it's called with a lazy
  352. translation as one of its arguments, the function evaluation is delayed
  353. until it needs to be converted to a string.
  354. For example::
  355. from django.utils.functional import allow_lazy
  356. def fancy_utility_function(s, ...):
  357. # Do some conversion on string 's'
  358. ...
  359. # Replace unicode by str on Python 3
  360. fancy_utility_function = allow_lazy(fancy_utility_function, unicode)
  361. The ``allow_lazy()`` decorator takes, in addition to the function to
  362. decorate, a number of extra arguments (``*args``) specifying the type(s)
  363. that the original function can return. Usually, it's enough to include
  364. ``unicode`` (or ``str`` on Python 3) here and ensure that your function
  365. returns only Unicode strings.
  366. Using this decorator means you can write your function and assume that the
  367. input is a proper string, then add support for lazy translation objects at
  368. the end.
  369. ``django.utils.html``
  370. =====================
  371. .. module:: django.utils.html
  372. :synopsis: HTML helper functions
  373. Usually you should build up HTML using Django's templates to make use of its
  374. autoescape mechanism, using the utilities in :mod:`django.utils.safestring`
  375. where appropriate. This module provides some additional low level utilities for
  376. escaping HTML.
  377. .. function:: escape(text)
  378. Returns the given text with ampersands, quotes and angle brackets encoded
  379. for use in HTML. The input is first passed through
  380. :func:`~django.utils.encoding.force_text` and the output has
  381. :func:`~django.utils.safestring.mark_safe` applied.
  382. .. function:: conditional_escape(text)
  383. Similar to ``escape()``, except that it doesn't operate on pre-escaped
  384. strings, so it will not double escape.
  385. .. function:: format_html(format_string, *args, **kwargs)
  386. This is similar to `str.format`_, except that it is appropriate for
  387. building up HTML fragments. All args and kwargs are passed through
  388. :func:`conditional_escape` before being passed to ``str.format``.
  389. For the case of building up small HTML fragments, this function is to be
  390. preferred over string interpolation using ``%`` or ``str.format`` directly,
  391. because it applies escaping to all arguments - just like the Template system
  392. applies escaping by default.
  393. So, instead of writing::
  394. mark_safe("%s <b>%s</b> %s" % (some_html,
  395. escape(some_text),
  396. escape(some_other_text),
  397. ))
  398. You should instead use::
  399. format_html("{} <b>{}</b> {}",
  400. mark_safe(some_html), some_text, some_other_text)
  401. This has the advantage that you don't need to apply :func:`escape` to each
  402. argument and risk a bug and an XSS vulnerability if you forget one.
  403. Note that although this function uses ``str.format`` to do the
  404. interpolation, some of the formatting options provided by `str.format`_
  405. (e.g. number formatting) will not work, since all arguments are passed
  406. through :func:`conditional_escape` which (ultimately) calls
  407. :func:`~django.utils.encoding.force_text` on the values.
  408. .. function:: format_html_join(sep, format_string, args_generator)
  409. A wrapper of :func:`format_html`, for the common case of a group of
  410. arguments that need to be formatted using the same format string, and then
  411. joined using ``sep``. ``sep`` is also passed through
  412. :func:`conditional_escape`.
  413. ``args_generator`` should be an iterator that returns the sequence of
  414. ``args`` that will be passed to :func:`format_html`. For example::
  415. format_html_join('\n', "<li>{} {}</li>", ((u.first_name, u.last_name)
  416. for u in users))
  417. .. function:: strip_tags(value)
  418. Tries to remove anything that looks like an HTML tag from the string, that
  419. is anything contained within ``<>``.
  420. Absolutely NO guarantee is provided about the resulting string being
  421. HTML safe. So NEVER mark safe the result of a ``strip_tag`` call without
  422. escaping it first, for example with :func:`~django.utils.html.escape`.
  423. For example::
  424. strip_tags(value)
  425. If ``value`` is ``"<b>Joel</b> <button>is</button> a <span>slug</span>"``
  426. the return value will be ``"Joel is a slug"``.
  427. If you are looking for a more robust solution, take a look at the `bleach`_
  428. Python library.
  429. .. function:: remove_tags(value, tags)
  430. .. deprecated:: 1.8
  431. ``remove_tags()`` cannot guarantee HTML safe output and has been
  432. deprecated due to security concerns. Consider using `bleach`_ instead.
  433. Removes a space-separated list of [X]HTML tag names from the output.
  434. Absolutely NO guarantee is provided about the resulting string being HTML
  435. safe. In particular, it doesn't work recursively, so the output of
  436. ``remove_tags("<sc<script>ript>alert('XSS')</sc</script>ript>", "script")``
  437. won't remove the "nested" script tags. So if the ``value`` is untrusted,
  438. NEVER mark safe the result of a ``remove_tags()`` call without escaping it
  439. first, for example with :func:`~django.utils.html.escape`.
  440. For example::
  441. remove_tags(value, "b span")
  442. If ``value`` is ``"<b>Joel</b> <button>is</button> a <span>slug</span>"``
  443. the return value will be ``"Joel <button>is</button> a slug"``.
  444. Note that this filter is case-sensitive.
  445. If ``value`` is ``"<B>Joel</B> <button>is</button> a <span>slug</span>"``
  446. the return value will be ``"<B>Joel</B> <button>is</button> a slug"``.
  447. .. _str.format: https://docs.python.org/library/stdtypes.html#str.format
  448. .. _bleach: https://pypi.python.org/pypi/bleach
  449. .. function:: html_safe()
  450. .. versionadded:: 1.8
  451. The ``__html__()`` method on a class helps non-Django templates detect
  452. classes whose output doesn't require HTML escaping.
  453. This decorator defines the ``__html__()`` method on the decorated class
  454. by wrapping the ``__unicode__()`` (Python 2) or ``__str__()`` (Python 3)
  455. in :meth:`~django.utils.safestring.mark_safe`. Ensure the ``__unicode__()``
  456. or ``__str__()`` method does indeed return text that doesn't require HTML
  457. escaping.
  458. ``django.utils.http``
  459. =====================
  460. .. module:: django.utils.http
  461. :synopsis: HTTP helper functions. (URL encoding, cookie handling, ...)
  462. .. function:: urlquote(url, safe='/')
  463. A version of Python's ``urllib.quote()`` function that can operate on
  464. unicode strings. The url is first UTF-8 encoded before quoting. The
  465. returned string can safely be used as part of an argument to a subsequent
  466. ``iri_to_uri()`` call without double-quoting occurring. Employs lazy
  467. execution.
  468. .. function:: urlquote_plus(url, safe='')
  469. A version of Python's urllib.quote_plus() function that can operate on
  470. unicode strings. The url is first UTF-8 encoded before quoting. The
  471. returned string can safely be used as part of an argument to a subsequent
  472. ``iri_to_uri()`` call without double-quoting occurring. Employs lazy
  473. execution.
  474. .. function:: urlencode(query, doseq=0)
  475. A version of Python's urllib.urlencode() function that can operate on
  476. unicode strings. The parameters are first cast to UTF-8 encoded strings
  477. and then encoded as per normal.
  478. .. function:: cookie_date(epoch_seconds=None)
  479. Formats the time to ensure compatibility with Netscape's cookie standard.
  480. Accepts a floating point number expressed in seconds since the epoch in
  481. UTC--such as that outputted by ``time.time()``. If set to ``None``,
  482. defaults to the current time.
  483. Outputs a string in the format ``Wdy, DD-Mon-YYYY HH:MM:SS GMT``.
  484. .. function:: http_date(epoch_seconds=None)
  485. Formats the time to match the :rfc:`1123` date format as specified by HTTP
  486. :rfc:`2616#section-3.3.1` section 3.3.1.
  487. Accepts a floating point number expressed in seconds since the epoch in
  488. UTC--such as that outputted by ``time.time()``. If set to ``None``,
  489. defaults to the current time.
  490. Outputs a string in the format ``Wdy, DD Mon YYYY HH:MM:SS GMT``.
  491. .. function:: base36_to_int(s)
  492. Converts a base 36 string to an integer. On Python 2 the output is
  493. guaranteed to be an ``int`` and not a ``long``.
  494. .. function:: int_to_base36(i)
  495. Converts a positive integer to a base 36 string. On Python 2 ``i`` must be
  496. smaller than `sys.maxint`_.
  497. .. _sys.maxint: https://docs.python.org/2/library/sys.html#sys.maxint
  498. .. function:: urlsafe_base64_encode(s)
  499. Encodes a bytestring in base64 for use in URLs, stripping any trailing
  500. equal signs.
  501. .. function:: urlsafe_base64_decode(s)
  502. Decodes a base64 encoded string, adding back any trailing equal signs that
  503. might have been stripped.
  504. ``django.utils.module_loading``
  505. ===============================
  506. .. module:: django.utils.module_loading
  507. :synopsis: Functions for working with Python modules.
  508. Functions for working with Python modules.
  509. .. function:: import_string(dotted_path)
  510. Imports a dotted module path and returns the attribute/class designated by
  511. the last name in the path. Raises ``ImportError`` if the import failed. For
  512. example::
  513. from django.utils.module_loading import import_string
  514. ValidationError = import_string('django.core.exceptions.ValidationError')
  515. is equivalent to::
  516. from django.core.exceptions import ValidationError
  517. ``django.utils.safestring``
  518. ===========================
  519. .. module:: django.utils.safestring
  520. :synopsis: Functions and classes for working with strings that can be displayed safely without further escaping in HTML.
  521. Functions and classes for working with "safe strings": strings that can be
  522. displayed safely without further escaping in HTML. Marking something as a "safe
  523. string" means that the producer of the string has already turned characters
  524. that should not be interpreted by the HTML engine (e.g. '<') into the
  525. appropriate entities.
  526. .. class:: SafeBytes
  527. A ``bytes`` subclass that has been specifically marked as "safe"
  528. (requires no further escaping) for HTML output purposes.
  529. .. class:: SafeString
  530. A ``str`` subclass that has been specifically marked as "safe"
  531. (requires no further escaping) for HTML output purposes. This is
  532. :class:`SafeBytes` on Python 2 and :class:`SafeText` on Python 3.
  533. .. class:: SafeText
  534. A ``str`` (in Python 3) or ``unicode`` (in Python 2) subclass
  535. that has been specifically marked as "safe" for HTML output purposes.
  536. .. class:: SafeUnicode
  537. Historical name of :class:`SafeText`. Only available under Python 2.
  538. .. function:: mark_safe(s)
  539. Explicitly mark a string as safe for (HTML) output purposes. The returned
  540. object can be used everywhere a string or unicode object is appropriate.
  541. Can be called multiple times on a single string.
  542. For building up fragments of HTML, you should normally be using
  543. :func:`django.utils.html.format_html` instead.
  544. String marked safe will become unsafe again if modified. For example::
  545. >>> mystr = '<b>Hello World</b> '
  546. >>> mystr = mark_safe(mystr)
  547. >>> type(mystr)
  548. <class 'django.utils.safestring.SafeBytes'>
  549. >>> mystr = mystr.strip() # removing whitespace
  550. >>> type(mystr)
  551. <type 'str'>
  552. .. function:: mark_for_escaping(s)
  553. Explicitly mark a string as requiring HTML escaping upon output. Has no
  554. effect on ``SafeData`` subclasses.
  555. Can be called multiple times on a single string (the resulting escaping is
  556. only applied once).
  557. ``django.utils.text``
  558. =====================
  559. .. module:: django.utils.text
  560. :synopsis: Text manipulation.
  561. .. function:: slugify(allow_unicode=False)
  562. Converts to ASCII if ``allow_unicode`` is ``False`` (default). Converts spaces to
  563. hyphens. Removes characters that aren't alphanumerics, underscores, or
  564. hyphens. Converts to lowercase. Also strips leading and trailing whitespace.
  565. For example::
  566. slugify(value)
  567. If ``value`` is ``"Joel is a slug"``, the output will be
  568. ``"joel-is-a-slug"``.
  569. You can set the ``allow_unicode`` parameter to ``True``, if you want to
  570. allow Unicode characters::
  571. slugify(value, allow_unicode=True)
  572. If ``value`` is ``"你好 World"``, the output will be ``"你好-world"``.
  573. .. versionchanged:: 1.9
  574. The ``allow_unicode`` parameter was added.
  575. .. _time-zone-selection-functions:
  576. ``django.utils.timezone``
  577. =========================
  578. .. module:: django.utils.timezone
  579. :synopsis: Timezone support.
  580. .. data:: utc
  581. :class:`~datetime.tzinfo` instance that represents UTC.
  582. .. class:: FixedOffset(offset=None, name=None)
  583. A :class:`~datetime.tzinfo` subclass modeling a fixed offset from UTC.
  584. ``offset`` is an integer number of minutes east of UTC.
  585. .. function:: get_fixed_timezone(offset)
  586. Returns a :class:`~datetime.tzinfo` instance that represents a time zone
  587. with a fixed offset from UTC.
  588. ``offset`` is a :class:`datetime.timedelta` or an integer number of
  589. minutes. Use positive values for time zones east of UTC and negative
  590. values for west of UTC.
  591. .. function:: get_default_timezone()
  592. Returns a :class:`~datetime.tzinfo` instance that represents the
  593. :ref:`default time zone <default-current-time-zone>`.
  594. .. function:: get_default_timezone_name()
  595. Returns the name of the :ref:`default time zone
  596. <default-current-time-zone>`.
  597. .. function:: get_current_timezone()
  598. Returns a :class:`~datetime.tzinfo` instance that represents the
  599. :ref:`current time zone <default-current-time-zone>`.
  600. .. function:: get_current_timezone_name()
  601. Returns the name of the :ref:`current time zone
  602. <default-current-time-zone>`.
  603. .. function:: activate(timezone)
  604. Sets the :ref:`current time zone <default-current-time-zone>`. The
  605. ``timezone`` argument must be an instance of a :class:`~datetime.tzinfo`
  606. subclass or, if pytz_ is available, a time zone name.
  607. .. function:: deactivate()
  608. Unsets the :ref:`current time zone <default-current-time-zone>`.
  609. .. function:: override(timezone)
  610. This is a Python context manager that sets the :ref:`current time zone
  611. <default-current-time-zone>` on entry with :func:`activate()`, and restores
  612. the previously active time zone on exit. If the ``timezone`` argument is
  613. ``None``, the :ref:`current time zone <default-current-time-zone>` is unset
  614. on entry with :func:`deactivate()` instead.
  615. .. versionchanged:: 1.8
  616. ``override`` is now usable as a function decorator.
  617. .. function:: localtime(value, timezone=None)
  618. Converts an aware :class:`~datetime.datetime` to a different time zone,
  619. by default the :ref:`current time zone <default-current-time-zone>`.
  620. This function doesn't work on naive datetimes; use :func:`make_aware`
  621. instead.
  622. .. function:: now()
  623. Returns a :class:`~datetime.datetime` that represents the
  624. current point in time. Exactly what's returned depends on the value of
  625. :setting:`USE_TZ`:
  626. * If :setting:`USE_TZ` is ``False``, this will be a
  627. :ref:`naive <naive_vs_aware_datetimes>` datetime (i.e. a datetime
  628. without an associated timezone) that represents the current time
  629. in the system's local timezone.
  630. * If :setting:`USE_TZ` is ``True``, this will be an
  631. :ref:`aware <naive_vs_aware_datetimes>` datetime representing the
  632. current time in UTC. Note that :func:`now` will always return
  633. times in UTC regardless of the value of :setting:`TIME_ZONE`;
  634. you can use :func:`localtime` to convert to a time in the current
  635. time zone.
  636. .. function:: is_aware(value)
  637. Returns ``True`` if ``value`` is aware, ``False`` if it is naive. This
  638. function assumes that ``value`` is a :class:`~datetime.datetime`.
  639. .. function:: is_naive(value)
  640. Returns ``True`` if ``value`` is naive, ``False`` if it is aware. This
  641. function assumes that ``value`` is a :class:`~datetime.datetime`.
  642. .. function:: make_aware(value, timezone=None, is_dst=None)
  643. Returns an aware :class:`~datetime.datetime` that represents the same
  644. point in time as ``value`` in ``timezone``, ``value`` being a naive
  645. :class:`~datetime.datetime`. If ``timezone`` is set to ``None``, it
  646. defaults to the :ref:`current time zone <default-current-time-zone>`.
  647. When pytz_ is installed, the exception ``pytz.AmbiguousTimeError``
  648. will be raised if you try to make ``value`` aware during a DST transition
  649. where the same time occurs twice (when reverting from DST). Setting
  650. ``is_dst`` to ``True`` or ``False`` will avoid the exception by choosing if
  651. the time is pre-transition or post-transition respectively.
  652. When pytz_ is installed, the exception ``pytz.NonExistentTimeError``
  653. will be raised if you try to make ``value`` aware during a DST transition
  654. such that the time never occurred (when entering into DST). Setting
  655. ``is_dst`` to ``True`` or ``False`` will avoid the exception by moving the
  656. hour backwards or forwards by 1 respectively. For example, ``is_dst=True``
  657. would change a non-existent time of 2:30 to 1:30 and ``is_dst=False``
  658. would change the time to 3:30.
  659. ``is_dst`` has no effect when ``pytz`` is not installed.
  660. .. versionchanged:: 1.8
  661. In older versions of Django, ``timezone`` was a required argument.
  662. .. versionchanged:: 1.9
  663. The ``is_dst`` argument was added.
  664. .. function:: make_naive(value, timezone=None)
  665. Returns an naive :class:`~datetime.datetime` that represents in
  666. ``timezone`` the same point in time as ``value``, ``value`` being an
  667. aware :class:`~datetime.datetime`. If ``timezone`` is set to ``None``, it
  668. defaults to the :ref:`current time zone <default-current-time-zone>`.
  669. .. versionchanged:: 1.8
  670. In older versions of Django, ``timezone`` was a required argument.
  671. .. _pytz: http://pytz.sourceforge.net/
  672. ``django.utils.translation``
  673. ============================
  674. .. module:: django.utils.translation
  675. :synopsis: Internationalization support.
  676. For a complete discussion on the usage of the following see the
  677. :doc:`translation documentation </topics/i18n/translation>`.
  678. .. function:: gettext(message)
  679. Translates ``message`` and returns it in a UTF-8 bytestring
  680. .. function:: ugettext(message)
  681. Translates ``message`` and returns it in a unicode string
  682. .. function:: pgettext(context, message)
  683. Translates ``message`` given the ``context`` and returns
  684. it in a unicode string.
  685. For more information, see :ref:`contextual-markers`.
  686. .. function:: gettext_lazy(message)
  687. .. function:: ugettext_lazy(message)
  688. .. function:: pgettext_lazy(context, message)
  689. Same as the non-lazy versions above, but using lazy execution.
  690. See :ref:`lazy translations documentation <lazy-translations>`.
  691. .. function:: gettext_noop(message)
  692. .. function:: ugettext_noop(message)
  693. Marks strings for translation but doesn't translate them now. This can be
  694. used to store strings in global variables that should stay in the base
  695. language (because they might be used externally) and will be translated
  696. later.
  697. .. function:: ngettext(singular, plural, number)
  698. Translates ``singular`` and ``plural`` and returns the appropriate string
  699. based on ``number`` in a UTF-8 bytestring.
  700. .. function:: ungettext(singular, plural, number)
  701. Translates ``singular`` and ``plural`` and returns the appropriate string
  702. based on ``number`` in a unicode string.
  703. .. function:: npgettext(context, singular, plural, number)
  704. Translates ``singular`` and ``plural`` and returns the appropriate string
  705. based on ``number`` and the ``context`` in a unicode string.
  706. .. function:: ngettext_lazy(singular, plural, number)
  707. .. function:: ungettext_lazy(singular, plural, number)
  708. .. function:: npgettext_lazy(context, singular, plural, number)
  709. Same as the non-lazy versions above, but using lazy execution.
  710. See :ref:`lazy translations documentation <lazy-translations>`.
  711. .. function:: string_concat(*strings)
  712. Lazy variant of string concatenation, needed for translations that are
  713. constructed from multiple parts.
  714. .. function:: activate(language)
  715. Fetches the translation object for a given language and activates it as
  716. the current translation object for the current thread.
  717. .. function:: deactivate()
  718. Deactivates the currently active translation object so that further _ calls
  719. will resolve against the default translation object, again.
  720. .. function:: deactivate_all()
  721. Makes the active translation object a ``NullTranslations()`` instance.
  722. This is useful when we want delayed translations to appear as the original
  723. string for some reason.
  724. .. function:: override(language, deactivate=False)
  725. A Python context manager that uses
  726. :func:`django.utils.translation.activate` to fetch the translation object
  727. for a given language, activates it as the translation object for the
  728. current thread and reactivates the previous active language on exit.
  729. Optionally, it can simply deactivate the temporary translation on exit with
  730. :func:`django.utils.translation.deactivate` if the ``deactivate`` argument
  731. is ``True``. If you pass ``None`` as the language argument, a
  732. ``NullTranslations()`` instance is activated within the context.
  733. .. versionchanged:: 1.8
  734. ``override`` is now usable as a function decorator.
  735. .. function:: get_language()
  736. Returns the currently selected language code. Returns ``None`` if
  737. translations are temporarily deactivated (by :func:`deactivate_all()` or
  738. when ``None`` is passed to :func:`override()`).
  739. .. versionchanged:: 1.8
  740. Before Django 1.8, ``get_language()`` always returned
  741. :setting:`LANGUAGE_CODE` when translations were deactivated.
  742. .. function:: get_language_bidi()
  743. Returns selected language's BiDi layout:
  744. * ``False`` = left-to-right layout
  745. * ``True`` = right-to-left layout
  746. .. function:: get_language_from_request(request, check_path=False)
  747. Analyzes the request to find what language the user wants the system to
  748. show. Only languages listed in settings.LANGUAGES are taken into account.
  749. If the user requests a sublanguage where we have a main language, we send
  750. out the main language.
  751. If ``check_path`` is ``True``, the function first checks the requested URL
  752. for whether its path begins with a language code listed in the
  753. :setting:`LANGUAGES` setting.
  754. .. function:: to_locale(language)
  755. Turns a language name (en-us) into a locale name (en_US).
  756. .. function:: templatize(src)
  757. Turns a Django template into something that is understood by ``xgettext``.
  758. It does so by translating the Django translation tags into standard
  759. ``gettext`` function invocations.
  760. .. data:: LANGUAGE_SESSION_KEY
  761. Session key under which the active language for the current session is
  762. stored.