summaryrefslogtreecommitdiff
path: root/tests/regressiontests
AgeCommit message (Collapse)Author
2007-03-31Fixed #3882 -- Added Brazilian localflavor. Thanks, Wiliam Alves de Souza.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4874 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-30Fixed #3733 -- Fixed up quote parsing in smart_split(). Thanks, Ivan Chelubeev.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4870 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-30Fixed #3847 -- Added validation support for Finnish social security numbers.Malcolm Tredinnick
Thanks, karsu. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4868 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-30Fixed #3847 -- Added Finnish localflavor contribution from Ville Säävuori.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4867 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-30Fixed #3799 -- Added django.contrib.webdesign and moved 'lorem' template tag ↵Adrian Holovaty
into there git-svn-id: http://code.djangoproject.com/svn/django/trunk@4857 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-29Fixed #3799 -- Added Lorem template tag for generation of random latin ↵Russell Keith-Magee
content. Thanks to SmileyChris for the implementation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-27Fixed #3826: added a {% with %}. Thanks, SmileyChris.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4830 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-25Fixed #3715 -- Added Japanese package to django.contrib.localflavor. Thanks, ↵Adrian Holovaty
Makoto Tsuyuki git-svn-id: http://code.djangoproject.com/svn/django/trunk@4822 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-25Fixed #3813 -- Added French package to django.contrib.localflavor. Thanks, ↵Adrian Holovaty
Fabrice Aneche git-svn-id: http://code.djangoproject.com/svn/django/trunk@4820 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-20Fixed #3714 -- Fixed handling of indented text in wordwrap template filter. ↵Russell Keith-Magee
Thanks for the fix, Ian Clelland. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4753 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-19Fixed #3741 -- Fixed serialization of GenericRelations. Thanks for the ↵Russell Keith-Magee
report, Alexander Solovyov. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4752 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-14Fixed #2635 -- Added improved MySQL backend support from Andy Dustman. AlsoMalcolm Tredinnick
added database.txt documentation; currently only describing Django-related features of MySQL versions. As of this commit, there are four known test failures due to (a) no transaction support with MyISAM storage engine and (b) MySQLdb automatically creating decimal types for Django's "float" field. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4724 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-13Added unit tests to fully check the performance of the serializer engines.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4719 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-09Fixed #3670 -- Fixed template argument parsing so that it understands negativeMalcolm Tredinnick
floats and integers as numeric types. Patch from SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4690 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-09Fixed #3678 -- Implemented SortedDict.copy().Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4688 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-08Fixed #3616 -- Added some more data structure tests from Chris McAvoy.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4684 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-08Fixed #1839, #2415, #2536 -- Fixed a generated name clash that was common inMalcolm Tredinnick
self-referential and circular relations. A lot of community debugging went into this fix, so thanks to bmurdock@gmail.com, Marek Kubica, ramiro, Michael Radziej (the last two giving test cases showing the problem) and James Bennett (who did the hard work to actually diagnose the true problem and fix it). git-svn-id: http://code.djangoproject.com/svn/django/trunk@4676 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-06Fixed #3654 -- Fixed test failure from [4665].Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4666 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-01Added a tearDown to the tests for #639 so that the "uploaded" image doesn't ↵Jacob Kaplan-Moss
clog /tmp. Sorry, Joseph! git-svn-id: http://code.djangoproject.com/svn/django/trunk@4656 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-28Fixed #3488: Added "b" option to date format filter. Thanks, Gary Wilson.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4647 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-28Fixed #2779: added a copy() method to MergeDict, along with some new tests ↵Jacob Kaplan-Moss
for django.utils.datastructures. Thanks, Chris McAvoy. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4640 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-27Fixed #3465: template variable lookups like {{ foobar.13 }} now (correctly) ↵Jacob Kaplan-Moss
fail silently on unsubscriptable objects. Thanks, Gary Wilson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4639 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-26Modified the test from [4609] to use a FileField instead of an ImageField ↵Jacob Kaplan-Moss
(so that you don't have to have PIL installed to run the unit tests). git-svn-id: http://code.djangoproject.com/svn/django/trunk@4613 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-26Objects with FileFields no longer get save() called multiple times from the ↵Jacob Kaplan-Moss
AutomaticManipulator! This fixes #639, #572, and likely others I don't know of. This may be slightly backwards-incompatible: if you've been relying on the multiple-save behavior (why?), then you'll no longer see that happen. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-26Updated the dispatch unit tests to be consistant with our coding style.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4589 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-26Fixed #3439: vastly improved the performance of django.dispatch (and added ↵Jacob Kaplan-Moss
tests!). Thanks to Brian Harring for the patch. Note that one of the new tests fails under sqlite currently; it's not clear if this is a sqlite problem or a problem with the tests, but it appears not to be a problem with the dispatcher itself. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4588 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-25Fixed #3518: Added unit tests for the humanize filters. Major thanks to ↵Jacob Kaplan-Moss
Jyrki Pulliainen for the tests. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-23Fixed #343: filters that take strings now handle non-strings correctly. ↵Jacob Kaplan-Moss
Thanks to Boffbowsh for the original patch, and to SmileyChris for the updated patch and tests. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4558 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-21Added newforms USPhoneNumberField in django.contrib.localflavor.usaAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4554 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-21Added small newforms unit testAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4551 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-20Fixed #3490 -- Fixed issue with newforms ChoiceField and generators as ↵Adrian Holovaty
choices. Thanksfor the patch, Chris.Wesseling@cwi.nl git-svn-id: http://code.djangoproject.com/svn/django/trunk@4549 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-20Fixed #2455 -- Added newforms USStateSelect widget in ↵Adrian Holovaty
django.contrib.localflavor.usa git-svn-id: http://code.djangoproject.com/svn/django/trunk@4545 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-19Fixed #3510 -- newforms validation errors are now HTML-escaped for HTML ↵Adrian Holovaty
output. Thanks, scott@staplefish.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@4544 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-19Improved newforms to handle wacky characters in Field help_textAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Fixed #3506 -- Changed newforms BoundField.help_text to an empty string if ↵Adrian Holovaty
None. Thanks for the patch, Thomas Steinacher git-svn-id: http://code.djangoproject.com/svn/django/trunk@4528 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Fixed #3503 -- Added newforms UKPostcodeField in ↵Adrian Holovaty
django.contrib.localflavor.uk. Thanks for the patch, Jonathan Buchanan git-svn-id: http://code.djangoproject.com/svn/django/trunk@4527 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Implented newforms USStateField in django.contrib.localflavor.usa. Refs #2455Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4525 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Created django.contrib.localflavor, for country- and culture-specific ↵Adrian Holovaty
functionality. Moved django/newforms/extras/usa.py into there git-svn-id: http://code.djangoproject.com/svn/django/trunk@4524 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Fixed #3409 -- Added render_value argument to newforms PasswordInput. Thanks ↵Adrian Holovaty
for the patch, scott@staplefish.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@4523 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Fixed #3314 -- Fixed a bug in newforms smart_unicode. Thanks for the patch, neshAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4522 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Fixed #3456 -- Made it easier/more intuitive to render newforms help_text in ↵Adrian Holovaty
templates git-svn-id: http://code.djangoproject.com/svn/django/trunk@4521 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-15Fixed #1466 -- Added newforms USZipCodeFieldAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4519 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-14Implemented subclassing Forms in newformsAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4506 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-13Fixed #3489 -- Changed newforms to use copy.copy() in constructing ↵Adrian Holovaty
self.fields, so changes to self.fields in a given form instance do not affect other instances git-svn-id: http://code.djangoproject.com/svn/django/trunk@4504 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-13Fixed #3155 -- Allow an integer to be passed to the urlencode filter. PatchMalcolm Tredinnick
based on one from SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4496 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-13Fixed #2606 -- Added tag for working out the URL of a particular view function.Malcolm Tredinnick
All work done by Ivan Sagalaev. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4494 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-13Changed one of the named endblock tests to test that nesting in the wrong orderMalcolm Tredinnick
is caught as an error. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4493 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-12Fixed #3351 -- Added optional naming of the block in "endblock" tags to ensureMalcolm Tredinnick
correct nesting. Thanks for the patch, SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4489 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-11Revert [4485] in order to fix accidental mod_python breakage. Refs #2920.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4486 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-11Refs #2920 -- Replaced implicit uses of _() with explicit imports or calls ↵Russell Keith-Magee
to gettext(). At some point post 0.96, we need to remove the calls that put _ into the builtins. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4485 bcc190cf-cafb-0310-a4f2-bffc1f526a37