Changeset 6896
- Timestamp:
- 12/05/07 03:40:16 (1 year ago)
- Files:
-
- django/branches/queryset-refactor/AUTHORS (modified) (2 diffs)
- django/branches/queryset-refactor/django/conf/locale/en/LC_MESSAGES/djangojs.mo (modified) (previous)
- django/branches/queryset-refactor/django/conf/locale/en/LC_MESSAGES/django.mo (modified) (previous)
- django/branches/queryset-refactor/README (modified) (1 diff)
- django/branches/queryset-refactor/tests/regressiontests/forms/tests.py (modified) (2 diffs)
- django/branches/queryset-refactor/tests/regressiontests/forms/util.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/AUTHORS
r6857 r6896 255 255 phil.h.smith@gmail.com 256 256 Gustavo Picon 257 pigletto258 257 Luke Plant <http://lukeplant.me.uk/> 259 258 plisk … … 336 335 Wang Chun <wangchun@exoweb.net> 337 336 Filip Wasilewski <filip.wasilewski@gmail.com> 338 Filip Wasilewski <filip.wasilewski@gmail.com>339 337 Dan Watson <http://theidioteque.net/> 340 338 Chris Wesseling <Chris.Wesseling@cwi.nl> django/branches/queryset-refactor/README
r3776 r6896 35 35 * Check out http://www.djangoproject.com/community/ for information 36 36 about getting involved. 37 django/branches/queryset-refactor/tests/regressiontests/forms/tests.py
r6857 r6896 3 3 from fields import tests as fields_tests 4 4 from forms import tests as form_tests 5 from error_messages import tests as custom_error_message_tests 5 6 from localflavor.ar import tests as localflavor_ar_tests 6 7 from localflavor.au import tests as localflavor_au_tests … … 31 32 'fields_tests': fields_tests, 32 33 'form_tests': form_tests, 34 'custom_error_message_tests': custom_error_message_tests, 33 35 'localflavor_ar_tests': localflavor_ar_tests, 34 36 'localflavor_au_tests': localflavor_au_tests, django/branches/queryset-refactor/tests/regressiontests/forms/util.py
r6382 r6896 43 43 >>> print ValidationError(["First error.", u"Not \u03C0.", ugettext_lazy("Error.")]).messages 44 44 <ul class="errorlist"><li>First error.</li><li>Not π.</li><li>Error.</li></ul> 45 46 >>> class VeryBadError: 47 ... def __unicode__(self): return u"A very bad error." 48 49 # Can take a non-string. 50 >>> print ValidationError(VeryBadError()).messages 51 <ul class="errorlist"><li>A very bad error.</li></ul> 45 52 """
