Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/templates/api.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed some markup in docs/ref/templates/api.txtTim Graham2013-07-151-7/+12
|
* Add missing imports and models to the examples in the ↵Silvan Spross2013-05-191-0/+7
| | | | template layer documentation
* Adapted uses of versionchanged/versionadded to the new form.Juan Catalano2013-04-201-0/+1
| | | | Refs #20104.
* Fixed #19516 - Fixed remaining broken links.Tim Graham2013-01-031-3/+19
| | | | Added -n to sphinx builds to catch issues going forward.
* Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin2012-12-291-7/+6
|
* Fix docs for context_processors.authAndrew Badr2012-09-251-1/+1
| | | Copy said it created three context variables, but only lists two. ("messages" was removed.)
* Fixed #18934 - Removed versionadded/changed annotations ↵Tim Graham2012-09-211-12/+0
| | | | for Django 1.3
* Fixed #13608 - Noted that template lookups use literal ↵Tim Graham2012-09-011-0/+4
| | | | values.
* Fixed #18642 - Added a note suggesting the use of ↵Tim Graham2012-09-011-0/+4
| | | | render() rather than render_to_response() if you need RequestContext in your template.
* Fixed #16744 -- Class based view should have the view ↵Marc Tamlyn2012-08-181-0/+2
| | | | | | | object in the context Updated the most recent patch from @claudep to apply again and updated the documentation location.
* Fixed #18617 -- Highlighted that the app_directories ↵Aymeric Augustin2012-07-121-5/+15
| | | | | | template loader depends on the order of INSTALLED_APPS. Thanks evildmp for the patch.
* Updated obsolete links in the documentationClaude Paroz2012-06-281-1/+1
|
* Updated TEMPLATE_CONTEXT_PROCESSORS defaults in the docs.jnns2012-06-231-0/+1
| | | | | django.core.context_processors.tz was missing from default TEMPLATE_CONTEXT_PROCESSORS in the template api documentation.
* Removed references to changes made in 1.2.Aymeric Augustin2012-06-071-37/+5
| | | | Thanks Florian Apolloner for the patch.
* Fixed #18259 -- Specified that ROOT_URLCONF might be needed.Claude Paroz2012-06-021-3/+4
| | | | | | When using the template system in standalone mode and if the url template tag is used, ROOT_URLCONF has to be defined. Thanks techtonik for the report.
* Replaced print statement by print function (forward ↵Claude Paroz2012-04-301-1/+1
| | | | compatibility syntax).
* Very minor Python formatting change to template ↵Chris Beaven2012-04-201-1/+1
| | | | | | documentation git-svn-id: http://code.djangoproject.com/svn/django/trunk@17916 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17229 -- Allow 'True', 'False' and 'None' to ↵Aymeric Augustin2012-04-101-1/+13
| | | | | | resolve to the corresponding Python objects in templates. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17894 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17618 - Documented that variable names in ↵Timo Graham2012-02-111-1/+1
| | | | | | template must not start with an underscore; thanks guillemette and krzysiumed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17504 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed many more ReST indentation errors, somehow ↵Luke Plant2011-10-141-108/+108
| | | | | | accidentally missed from [16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added some sphinx cross-reference links to the built-in ↵Julien Phalip2011-10-031-2/+3
| | | | | | template tags and filters in multiple areas of the documentation. Also fixed a few minor inconsistencies and did a little PEP8 cleanup while I was at it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16863 -- Corrected ReST markup to avoid errors ↵Carl Meyer2011-09-161-8/+10
| | | | | | | | | | | | | | building docs. Although directives such as "note" and "warning" will accept content immediately following the directive, this is technically where arguments to the directive should go (see http://sphinx.pocoo.org/rest.html#directives). Putting the content there means that any lines beginning with an inline text role (e.g. ":setting:`DEBUG`") will be mis-interpreted as an option block for the directive. To avoid this error, there should always be a blank line between the directive start and the directive content. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16050 -- BACKWARDS-INCOMPATIBLE CHANGE: Moved ↵Jannis Leidel2011-06-301-0/+2
| | | | | | | | | | static files of the admin to conventional file system location. This also removes the need for ADMIN_MEDIA_PREFIX and replaces it with the convention to find admin's static files at STATIC_URL + 'admin/'. Thanks to Jacob for the review and general help. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Tweaked some `render_to_response` links in the ↵Ramiro Morales2011-05-211-6/+7
| | | | | | documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16255 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15791 - method to signal that callable objects ↵Luke Plant2011-04-201-2/+12
| | | | | | | | should not be called in templates Thanks to ejucovy for the suggestion and patch! git-svn-id: http://code.djangoproject.com/svn/django/trunk@16045 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15757 - removed remaining instances of ↵Luke Plant2011-04-081-8/+0
| | | | | | | | get_and_delete_messages Thanks to void for the report, and julien for the bulk of the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Changed 'raise' statements to new style syntax in ↵Ramiro Morales2011-03-171-1/+1
| | | | | | documentation. Thanks DaNmarner. Refs #15635. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15874 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15299 -- Started the process of migrating the ↵Russell Keith-Magee2011-02-231-1/+6
| | | | | | auth context processor support classes into the auth context processor module. Thanks to shailesh for the report, and v1v3kn for the draft patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15635 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14038 -- Added information to release notes and ↵Ramiro Morales2011-01-251-2/+7
| | | | | | version changed|added markers to documentation additions for the new template loeaders API introduced in version 1.2. Thanks 3point2 for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15309 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15057 - documented change in [14992]Luke Plant2011-01-131-26/+31
| | | | | | | | Thanks to Tai Lee for the patch. Refs #15025, #7153 git-svn-id: http://code.djangoproject.com/svn/django/trunk@15188 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14000 - remove versionadded/changed tags for ↵Timo Graham2010-12-261-2/+0
| | | | | | Django 1.0 and 1.1 git-svn-id: http://code.djangoproject.com/svn/django/trunk@15055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11152 - Add some classes to the template docs. ↵Timo Graham2010-11-291-20/+36
| | | | | | Thanks adamv for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14744 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixes #3529 -- more explicit documentation about ↵Chris Beaven2010-11-241-0/+16
| | | | | | Context.update. Thanks for the patch, ggetzie. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14689 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14693, #14709 -- Backwards incompatible change to ↵Jannis Leidel2010-11-171-2/+11
| | | | | | | | | | | | | | | | rectify the confusion around the STATICFILES_URL and STATICFILES_ROOT settings. * Two new global settings that will be used by -- **but are not limited to** -- the staticfiles app: STATIC_ROOT and STATIC_URL. * Moving the 'django.contrib.staticfiles.templatetags.staticfiles' template tag to the core ('django.templatetags.static') and renaming it to 'get_static_prefix'. * Moving the context processor 'django.contrib.staticfiles.context_processors.staticfiles' to the core ('django.core.context_processors.static') and renaming it to 'static'. * Paths in media definitions will use STATIC_URL as the prefix if the value is not None, and falls back to the previously used MEDIA_URL. Thanks again to the community for constructive criticism and Carl and Russ for sanity-inducing discussions on IRC. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14592 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Reverted deprecation of media context processor (from ↵Jannis Leidel2010-11-111-8/+3
| | | | | | r14293) to separate static files and media files a bit more. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14535 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Corrected to markup problems with docs added for recent ↵Russell Keith-Magee2010-10-281-2/+3
| | | | | | features. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14388 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12323 and #11582 -- Extended the ability to ↵Jannis Leidel2010-10-201-1/+8
| | | | | | handle static files. Thanks to all for helping with the original app, the patch, documentation and general support. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14293 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14112 -- Various Markup fixes for the docs. ↵Russell Keith-Magee2010-08-231-1/+1
| | | | | | Thanks to ramiro for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14141: docs now use the :doc: construct for links ↵Jacob Kaplan-Moss2010-08-191-10/+8
| | | | | | | | between documents. Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13072: Corrected a few markup and formatting ↵James Bennett2010-03-111-1/+1
| | | | | | errors in the documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12759 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed three small doc markup errors.Malcolm Tredinnick2010-03-101-0/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@12741 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11889: Documented the fact that context ↵James Bennett2010-03-031-0/+7
| | | | | | processors will overwrite pre-existing context variables of the same names. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12669 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12968 - Added missing versionadded/-changed doc ↵Jannis Leidel2010-02-261-0/+9
| | | | | | markers for r12466. Thanks, Karen and Ramiro. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12612 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12066 - Moved auth context processor from core to ↵Jannis Leidel2010-02-221-3/+3
| | | | | | the auth app. Thanks, Rob Hudson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12466 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10800 -- Made a small improvement to ↵Adrian Holovaty2010-01-101-1/+2
| | | | | | render_to_string() docs. Thanks, p.patruno@iperbole.bologna.it and timo git-svn-id: http://code.djangoproject.com/svn/django/trunk@12161 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12497 -- Fixed Sphinx errors in docs. Thanks, ramiroAdrian Holovaty2010-01-091-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@12129 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added a few Sphinx directives to the form API and ↵Gary Wilson Jr2009-12-251-2/+4
| | | | | | template API docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11984 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #6262 -- Added a cached template loader, and ↵Russell Keith-Magee2009-12-141-6/+102
| | | | | | modified existing template loaders and tag to be cacheable. Thanks to Mike Malone for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11862 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #4604 - Configurable message passing system, ↵Luke Plant2009-12-091-7/+32
| | | | | | | | | | | | | | | | | | supporting anonymous users This deprecates User.message_set in favour of a configurable messaging system, with backends provided for cookie storage, session storage and backward compatibility. Many thanks to Tobias McNulty for the bulk of the work here, with contributions from Chris Beaven (SmileyChris) and lots of code review from Russell Keith-Magee, and input from many others. Also credit to the authors of various messaging systems for Django whose ideas may have been pinched :-) git-svn-id: http://code.djangoproject.com/svn/django/trunk@11804 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Moved contrib.csrf.* to core code.Luke Plant2009-10-271-3/+3
| | | | | | | | | | | | There is stub code for backwards compatiblity with Django 1.1 imports. The documentation has been updated, but has been left in docs/contrib/csrf.txt for now, in order to avoid dead links to documentation on the website. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11661 bcc190cf-cafb-0310-a4f2-bffc1f526a37