Re: Feature proposal: escape hatch for colliding template syntax in django templates

2011-02-05 Thread Mantas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I propose this solution: {!x x} Or at least: {% verbatim x %} {% x %} Where 'x' can be replaced by any other string: {!! {!x x} !} {!xx {!x x} xx} {!maystring {!x x} maystring} {% verbatim - %} {% verbatim x %} {

Re: r15401 and removing star imports

2011-02-05 Thread Florian Apolloner
In previous Django versions it was necessary to import those; that's no longer the case. Cheers, Florian On Feb 5, 11:21 am, lucky wrote: > Look at > thehttp://code.djangoproject.com/browser/django/trunk/django/conf/urls/d... > . > There are __all__ = ['handler404', 'handler500', 'include', > '

Re: r15401 and removing star imports

2011-02-05 Thread lucky
Look at the http://code.djangoproject.com/browser/django/trunk/django/conf/urls/defaults.py#L4 . There are __all__ = ['handler404', 'handler500', 'include', 'patterns', 'url'] It seems as you forgot to add 'handler404' and 'handler500'. Whats about handlers? On Feb 4, 10:50 pm, Carl Meyer wrote: