utils.txt 38 KB

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