Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/templates
Commit message (Collapse)AuthorAgeFilesLines
...
* Moved doc on the DTL's syntax to the ref/ section.Aymeric Augustin2015-01-103-1/+706
| | | | | | | This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL.
* Fixed #24022 -- Deprecated the ssi tag.Preston Timmons2015-01-061-2/+5
|
* Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin2014-12-281-39/+46
|
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-281-17/+26
|
* Deprecated TEMPLATE_LOADERS.Aymeric Augustin2014-12-281-20/+46
|
* Deprecated TEMPLATE_STRING_IF_INVALID.Aymeric Augustin2014-12-281-19/+17
|
* Deprecated ALLOWED_INCLUDE_ROOTS.Aymeric Augustin2014-12-281-2/+2
|
* Moved context_processors from django.core to ↵Aymeric Augustin2014-12-281-19/+19
| | | | django.template.
* Supported multiple template engines in render_to_string.Aymeric Augustin2014-12-281-4/+13
| | | | Adjusted its API through a deprecation path according to the DEP.
* Used https for most *.python.org linksClaude Paroz2014-12-191-1/+1
|
* Fixed display of lists after website redesignMarkus Holtermann2014-12-171-10/+24
| | | | Thanks Brian Jacobel for the report. refs django/djangoproject.com#197
* Fixed #23914 -- Improved {% now %} to allow storing its ↵Baptiste Mispelon2014-11-251-0/+12
| | | | | | result in the context. Thanks to Tim for the review.
* Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin2014-11-231-6/+8
| | | | Cancels 2f0566fa. Refs #4278.
* Fixed #23849 -- Documented the locmem.Loader class.Preston Timmons2014-11-191-2/+20
|
* Moved all template loaders under django.template.loaders.Aymeric Augustin2014-11-161-1/+6
| | | | | | | | | | | | Reformatted the code of base.Loader according to modern standards. Turned the test template loader into a regular locmem.Loader -- but didn't document it. Added a normal deprecation path for BaseLoader which is a public API. Added an accelerated deprecation path for TestTemplateLoader which is a private API.
* Fixed versionchanged indentation in docs/.Berker Peksag2014-11-041-2/+4
|
* Moved CSRF docs out of contrib.Thomas Chaumeny2014-11-032-2/+2
|
* Fixed #23736 -- Corrected the description of the value ↵Tim Graham2014-10-301-2/+4
| | | | | | that silent_variable_failure uses. Thanks Aymeric Augustin for the report.
* Fixed #23737 -- Recommended the render() shortcut more ↵Tim Graham2014-10-301-19/+2
| | | | | | strongly. Thanks Aymeric Augustin for the report.
* Fixed #23558 -- documented slugify limitationsDavid Hoffman2014-10-301-3/+3
|
* Fixed firstof docs error introduced in 1ea44a; refs #17906.Ralph Broenink2014-10-211-3/+3
|
* Fixed #12008 -- Clarified relationship between template ↵mcgeeco2014-10-161-0/+5
| | | | | | blocks and includes. Thanks Daniele Procida for suggested wording.
* Fixed #17638 -- Added crosslinks between topic and ↵Duane Hilton2014-09-301-1/+2
| | | | | | reference guides. Thanks oinopion for the suggestion and jarus for the initial patch.
* Fixed #23527 -- Removed Cheetah references in docsOla Sitarska2014-09-211-1/+1
| | | | Thanks to @aaugustin for submitting the ticket.
* Fixed #23499 -- Error in built-in template tag "now" ↵Joseph Dougherty2014-09-171-4/+4
| | | | documentation
* Avoid the word "stupid".Aymeric Augustin2014-09-091-3/+1
| | | | There's always a better word.
* Converted sql_queries into a lazily evaluated list.Bas Peschier2014-08-301-1/+2
| | | | Fixed #23364. Thanks Markush2010 for the report.
* Fixed #17719 -- Documented that template syntax ↵Tim Graham2014-08-261-0/+25
| | | | sequences cannot be used as string literals.
* Fixed some doc errors that caused syntax highlighting to ↵Tim Graham2014-08-192-2/+2
| | | | fail.
* Fixed #23269 -- Deprecated django.utils.remove_tags() ↵Tim Graham2014-08-151-0/+7
| | | | | | and removetags filter. Also the unused, undocumented django.utils.html.strip_entities() function.
* Added a warning that remove_tags() output shouldn't be ↵Tim Graham2014-08-111-7/+19
| | | | considered safe.
* Fixed #23261 -- Deprecated old style list support for ↵Jaap Roes2014-08-111-2/+5
| | | | unordered_list filter.
* Fixed #22789 -- Deprecated django.contrib.webdesign.Tim Graham2014-07-141-0/+38
| | | | Moved the {% lorem %} tag to built-in tags.
* Fixed #22941 - Added support for domain-only links with ↵LarryBrid2014-07-031-0/+6
| | | | | | chars after the TLD to urlize. It now works with something like google.com/foo/bar
* Close autoescape tag in template documentation.Andreas Damgaard Pedersen2014-06-101-1/+1
|
* Fixed #18400 -- Modified length template filter to ↵Susan Tan2014-06-051-0/+5
| | | | | | | return 0 for unknown variables. Thanks Florian for the bug report, luyikei for the initial code patch, and Bouke for the code review feedback.
* Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham2014-06-031-6/+13
|
* Fixed #22753 -- Documented ability to use a note with ↵Bryce Nesbitt2014-06-031-1/+3
| | | | the {% comment %} tag.
* Fixed #22167 -- Improved documentation on context processorsMoritz2014-05-161-5/+9
| | | | | | Clarified the explanation on the order in which user provided variables to render_to_response, RequestContext and context processors are loaded.
* Updated the messages context processor docsClaude Paroz2014-05-061-3/+8
| | | | Refs #20610.
* Updated doc links to point to Python 3 documentationClaude Paroz2014-04-261-1/+1
|
* Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of ↵chriscauley2014-04-171-1/+1
| | | | | | docs and tests. Thanks tomwys for the suggestion.
* Removed versionadded/changed annotations for 1.6.Tim Graham2014-03-241-6/+2
|
* Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz2014-03-221-2/+2
|
* Fixed #22294 -- Prevented converting length filter ↵Claude Paroz2014-03-221-2/+4
| | | | | | output to string Thanks Steve Pike for the report.
* Improved strip_tags and clarified documentationClaude Paroz2014-03-221-1/+11
| | | | | | The fact that strip_tags cannot guarantee to really strip all non-safe HTML content was not clear enough. Also see: https://www.djangoproject.com/weblog/2014/mar/22/strip-tags-advisory/
* Switched {% cycle %} and {% firstof %} tags to ↵Tim Graham2014-03-211-47/+11
| | | | | | auto-escape their variables per deprecation timeline. refs #17906.
* Removed fix_ampersands template filter per deprecation ↵Tim Graham2014-03-211-29/+0
| | | | | | | | timeline. Also removed related utility functions: * django.utils.html.fix_ampersands * django.utils.html.clean_html
* Fixed some typos and formatting issues in docs.Rodolfo Carvalho2014-03-031-1/+1
|
* Fixed #22130 -- Deprecated fix_ampersands, removed ↵Erik Romijn2014-03-011-0/+3
| | | | utils.clean_html()