Django

Code

root/django/trunk/django/template/__init__.py


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @8769 [8769] 08/31/08 13:28:06 jacob Fixed #7027: template tags now corectly break tokens around strings marked …
(edit) @8393 [8393] 08/15/08 16:08:11 gwilson Fixed #5270 -- Allow template tags and filters to accept an emtpy string, …
(edit) @7580 [7580] 06/06/08 08:58:42 russellm Fixed #7293 -- Corrected some doctests strings internal to the template …
(edit) @7260 [7260] 03/17/08 09:21:09 mtredinnick Fixed #5884 -- Added better display error handling for template …
(edit) @7089 [7089] 02/05/08 17:41:48 mtredinnick Tweaked [7082] and [7084] a little bit to also allow comment nodes prior …
(edit) @7084 [7084] 02/03/08 22:52:37 mtredinnick Fixed #5124 -- Added a reasonable error when "extends" is not the first …
(edit) @6974 [6974] 12/22/07 13:30:13 adrian Negligible changes to django.template -- removed a useless docstring, …
(edit) @6973 [6973] 12/22/07 13:28:21 adrian Removed lexer_factory() and parser_factory() functions in django.template, …
(edit) @6972 [6972] 12/22/07 13:20:02 adrian Removed a comment in django/template/init.py that suggests we would do …
(edit) @6971 [6971] 12/22/07 13:16:39 adrian Negligible formatting changes to django/template/init.py -- fixed some …
(edit) @6970 [6970] 12/22/07 13:12:58 adrian Changed an '== None' to 'is None' in Template.init()
(edit) @6969 [6969] 12/22/07 13:10:03 adrian Moved the various Debug classes in django.template to a new module, …
(edit) @6778 [6778] 11/30/07 09:32:01 mtredinnick Fixed #6057 -- Mark rendered template output as safe for auto-escaping …
(edit) @6724 [6724] 11/28/07 15:04:05 mtredinnick Fixed #5890 -- fixed the far edge-case of allowing constant strings …
(edit) @6680 [6680] 11/17/07 06:11:26 mtredinnick Fixed #5945 -- Treat string literals in template filter arguments as …
(edit) @6679 [6679] 11/16/07 22:04:12 mtredinnick Fixed #4713 -- Fixed handling of _() in template tag arguments. Based …
(edit) @6671 [6671] 11/14/07 06:58:53 mtredinnick Implemented auto-escaping of variable output in templates. Fully …
(edit) @6399 [6399] 09/20/07 23:00:32 jacob Fixed #3453: introduced a new template variable resolution system by Brian …
(edit) @6268 [6268] 09/15/07 03:29:56 russellm Fixed #3036 -- Fixed some doctest strings that were failing. Thanks to …
(edit) @6211 [6211] 09/14/07 14:55:24 jacob Fixed #5445: added some compatibility code for the lack of iter in …
(edit) @5630 [5630] 07/07/07 13:24:27 mtredinnick Fixed #4772 -- Fixed reverse URL creation to work with non-ASCII …
(edit) @5609 [5609] 07/04/07 07:11:04 mtredinnick Merged Unicode branch into trunk (r4952:5608). This should be …
(edit) @5511 [5511] 06/22/07 02:15:04 mtredinnick Backed out the changes in [5482] for a bit whilst some more investigation …
(edit) @5486 [5486] 06/17/07 04:46:04 mtredinnick Trivial formatting changes.
(edit) @5482 [5482] 06/17/07 02:11:37 mtredinnick Fixed #4565 -- Changed template rendering to use iterators, rather …
(edit) @5333 [5333] 05/24/07 07:28:53 mtredinnick Fixed #4378 -- Fixed a broken format string.
(edit) @5167 [5167] 05/07/07 22:36:16 mtredinnick Fixed #3753 -- Allow optional display of invalid variable name …
(edit) @5117 [5117] 04/28/07 08:31:44 mtredinnick Fixed #4180 -- Fixed docstring typo noticed by Gary Wilson.
(edit) @5116 [5116] 04/27/07 23:45:38 mtredinnick Fixed #4176 -- Fixed unintended change introduced in [5104]. …
(edit) @5105 [5105] 04/27/07 07:27:19 mtredinnick Minor tweak. Removed unnecessary argument default.
(edit) @5104 [5104] 04/27/07 07:16:22 mtredinnick Fixed #4164, #4171 -- Reworked some of the template lexer logic to ensure …
(edit) @5091 [5091] 04/26/07 08:30:48 mtredinnick Fixed #4040 -- Changed uses of has_key() to "in". Slight …
(edit) @5067 [5067] 04/25/07 02:05:31 mtredinnick Fixed #3948 -- Added some extra relevant information to …
(edit) @4690 [4690] 03/09/07 00:12:15 mtredinnick Fixed #3670 -- Fixed template argument parsing so that it understands …
(edit) @4639 [4639] 02/27/07 14:25:27 jacob Fixed #3465: template variable lookups like {{ foobar.13 }} now …
(edit) @4562 [4562] 02/23/07 17:05:16 jacob Fixed #3558: [4558] broken in Python 2.3; this fixes that breakage. Thanks …
(edit) @4558 [4558] 02/23/07 12:02:51 jacob Fixed #343: filters that take strings now handle non-strings correctly. …
(edit) @4465 [4465] 02/09/07 16:01:13 mtredinnick Fixed #3468 -- fixed typo in VariableDoesNotExist?.str. Pointed out …
(edit) @4461 [4461] 02/06/07 07:59:24 jacob Fixed #3441: VariableDoesNotExist? is now a bit lazier about rendering its …
(edit) @4161 [4161] 12/05/06 13:48:46 adrian Template system now supports variables whose str() returns a Unicode …
(edit) @4038 [4038] 11/06/06 22:13:06 jacob Fixed #2343: Library.inclusion_tag now accepts a list of template names …
(edit) @3951 [3951] 10/30/06 14:50:27 adrian Fixed #2968 -- Changed arguments to import to use empty dictionary …
(edit) @3931 [3931] 10/24/06 16:30:38 adrian Fixed #648 -- Added comment syntax to template system: {# #}. Thanks for …
(edit) @3852 [3852] 09/26/06 02:26:07 mtredinnick Fixed #2208 -- Allow empty arguments to be passed to filters. Thanks, …
(edit) @3720 [3720] 09/04/06 19:19:50 adrian Fixed #2645 -- Fixed format-string error in exception call in …
(edit) @3714 [3714] 09/04/06 09:02:11 russellm Fixes #2637 -- Clarified handling of TEMPLATE_STRING_IF_INVALID, …
(edit) @3711 [3711] 09/02/06 21:44:15 russellm Refs #2333 - Added documentation for the test Client, and removed a stray …
(edit) @3709 [3709] 09/02/06 04:40:59 russellm Refs #2333 - Removed a call to the signal dispatcher that was mistakenly …
(edit) @3707 [3707] 09/02/06 04:26:24 russellm Refs #2333 - Re-added the template rendering signal for testing purposes; …
(edit) @3680 [3680] 08/29/06 19:54:08 russellm Refs #1400 - Reverted r3269. Template variable evalution should follow …
(edit) @3666 [3666] 08/27/06 13:10:32 adrian Reverted [3659], the 'name' field on Template objects and the signal …
(edit) @3659 [3659] 08/27/06 07:35:07 russellm Refs #2333 - Added a signal that is emitted whenever a template is …
(edit) @3449 [3449] 07/25/06 13:53:27 adrian Negligible formatting change to django/template/init.py
(edit) @3414 [3414] 07/21/06 15:39:17 jacob Second half of little cleanup tweaks suggested by pyflakes.
(edit) @3375 [3375] 07/19/06 07:32:32 mtredinnick Fixed #1647 -- Included slightly more information in template syntax …
(edit) @3308 [3308] 07/10/06 05:48:08 mtredinnick Fixed #2320 -- corrected numerous errors in the custom tag examples …
(edit) @3294 [3294] 07/07/06 17:20:07 adrian Fixed #2303 -- Fixed bug in [3269] with regard to True and False …
(edit) @3269 [3269] 07/03/06 22:44:56 russellm Refs #1400 -- Variable resolver now converts literal strings 'False' and …
(edit) @3268 [3268] 07/03/06 22:21:44 russellm Fixes #1338, Refs #1400, #2237 -- Modified variable resolution to allow …
(edit) @3138 [3138] 06/17/06 23:12:55 mtredinnick Fixed #2181 -- allow '{' and '}' to be escaped via {% templatetag ... %}.
(edit) @3113 [3113] 06/08/06 00:00:13 adrian Fixed #2109 -- Convert old-style classes to new-style classes throughout …
(edit) @3112 [3112] 06/07/06 23:29:10 adrian Added django.template.Token.split_contents() and used it to add support …
(edit) @3098 [3098] 06/06/06 23:12:39 adrian Small improvement to django.template.resolve_variable -- isdigit() instead …
(edit) @3070 [3070] 06/03/06 08:37:34 lukeplant Eliminated lots of mutable default arguments (since they are bugs waiting …
(edit) @2906 [2906] 05/14/06 23:24:48 adrian Fixed #1852 -- Improved TemplateSyntaxError? to display the original …
(copy) @2809 [2809] 05/01/06 20:31:56 adrian MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly …
copied from django/branches/magic-removal/django/template/__init__.py:
(edit) @2771 [2771] 04/28/06 15:56:58 lukeplant magic-removal: Fixed negligible indentation errors.
Note: See TracRevisionLog for help on using the revision log.