Jacob Kaplan-Moss
|
90acc8ff7e
|
Fixed #3438: improved the speed of Model.__init__ (about 1/3 faster, it appears). Thanks (a lot!) to Brian Harring.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4597 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 06:16:19 +00:00 |
Jacob Kaplan-Moss
|
abf79841fe
|
Fixed #3397: You can now order by non-DB fields in the admin by telling Django which field to actually order by. Thanks, marcink@elksoft.pl
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4596 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 05:37:24 +00:00 |
Jacob Kaplan-Moss
|
3d164ab04f
|
D'oh, fixed broken ReST in last commit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4595 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 05:16:52 +00:00 |
Jacob Kaplan-Moss
|
d7d73c9fac
|
Fixed #3354: added a message to tutorial 1 about where to go for help. Thanks to Marc Fargas for the original patch, but I ended up going with a somewhat softer wording just to be double-plus-ultra-sure not to turn anyone off.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4594 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 05:15:52 +00:00 |
Jacob Kaplan-Moss
|
ffb62e0c02
|
Fixed #3249: small doc fix to pagination documentation. Thanks, Nikolaus Schlemm.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4593 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 05:07:54 +00:00 |
Jacob Kaplan-Moss
|
6bd07383c0
|
Fixed #3172: Model.validate() no longer raises TypeErrors on empty Date*Fields. Thanks, floguy@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4592 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 05:07:12 +00:00 |
Jacob Kaplan-Moss
|
b7fa37f9b2
|
Fixed #3170: added first_on_page and last_on_page arguments to paginated generic views. Thanks, Grimboy.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4591 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 04:53:44 +00:00 |
Jacob Kaplan-Moss
|
530409369f
|
Small fix to admin CSS. Fixes #2205; thanks, treborhudson@gmail.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4590 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 04:37:52 +00:00 |
Jacob Kaplan-Moss
|
907e4f840e
|
Updated the dispatch unit tests to be consistant with our coding style.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4589 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-26 03:44:36 +00:00 |
Jacob Kaplan-Moss
|
357e26baf6
|
Fixed #3439: vastly improved the performance of django.dispatch (and added 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-26 03:17:04 +00:00 |
Adrian Holovaty
|
6871a455e2
|
Teeny weeny optimization to RegexURLPattern.resolve()
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4587 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 22:31:31 +00:00 |
Adrian Holovaty
|
25895623ff
|
Reverted [4578] because there's no such thing as a PasswordField database field type
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4579 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 19:51:33 +00:00 |
Jacob Kaplan-Moss
|
81bb3d9e74
|
Fixed #2071: added a smidge of docs on PasswordField. Thanks for the patch, asmodai.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4578 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 17:18:17 +00:00 |
Jacob Kaplan-Moss
|
cef2239086
|
Fixed #2104: allow somewhat nicer error messages in RequiredIfOtherFieldEquals validator. Thanks, Steven Armstrong
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4577 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 17:16:38 +00:00 |
Jacob Kaplan-Moss
|
5b66c74b32
|
Fixed #2620: made MergeDict.get() correctly work with the two-argument form of get(). Thanks for the patch, SmileyChris.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4576 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 16:37:31 +00:00 |
Jacob Kaplan-Moss
|
0a2155e5b3
|
Added completetion support for app names to django_base_completion, which closes #1240. Thanks for the patch, Rob Hudson
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4575 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 16:33:39 +00:00 |
Jacob Kaplan-Moss
|
3468fd01a9
|
Fixed #3488: send_mail no longer uses settings in function default arguments. Thanks to Per Jonsson for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4574 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 16:29:09 +00:00 |
Jacob Kaplan-Moss
|
dcdaa4ac3c
|
Fixed #3459: Django no longer runs SET TIME ZONE for every query when using Postgres. This should result in a pretty noticible speedup for Postgres users, so many thanks to Jack Moffitt for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4573 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 16:18:46 +00:00 |
Jacob Kaplan-Moss
|
5c17b42772
|
Fixed #3504: fixed a missing "self" in the authentication docs. Thanks, Robert Myers.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4572 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 16:11:46 +00:00 |
Jacob Kaplan-Moss
|
a0157da26f
|
Fixed #3518: Added unit tests for the humanize filters. Major thanks to Jyrki Pulliainen for the tests.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 16:09:30 +00:00 |
Jacob Kaplan-Moss
|
8546521d9b
|
Fixed #3554: django.core.mail now generates dates with the email module instead of the outdated rfc822 module. Thanks, real.human@mrmachine.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4570 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-25 15:55:31 +00:00 |
Jacob Kaplan-Moss
|
f2aa1b93e0
|
Fixed silly typo in [4651].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4563 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-23 23:05:25 +00:00 |
Jacob Kaplan-Moss
|
e7aab3a474
|
Fixed #3558: [4558] broken in Python 2.3; this fixes that breakage. Thanks for the heads-up, xian@mintchaos.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4562 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-23 23:05:16 +00:00 |
Jacob Kaplan-Moss
|
16bd0aa991
|
Fixed #3541: queryset.count() now respects the queryset cache.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4561 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-23 20:58:28 +00:00 |
Jacob Kaplan-Moss
|
ee5415e3dd
|
Fixed #3550 - updated Thomas Steinacher's entry in AUTHORS.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4560 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-23 20:55:21 +00:00 |
Jacob Kaplan-Moss
|
a01f852d2e
|
Fixed documentation from [4558] to be correct.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4559 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-23 20:50:53 +00:00 |
Jacob Kaplan-Moss
|
36512d5d73
|
Fixed #343: filters that take strings now handle non-strings correctly. 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-23 18:02:51 +00:00 |
Malcolm Tredinnick
|
1266766da4
|
Fixed #3550 -- Updated Peter Marić's entry in AUTHORS.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4557 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-22 11:17:50 +00:00 |
Adrian Holovaty
|
abc949f584
|
Changed database PhoneNumberField to use USPhoneNumberField as its newforms form field (instead of IntegerField)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4556 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-21 05:59:46 +00:00 |
Adrian Holovaty
|
ec2eb4d18f
|
Removed unimplemented allow_letters option from USPhoneNumberField
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4555 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-21 05:55:12 +00:00 |
Adrian Holovaty
|
08e406d146
|
Added newforms USPhoneNumberField in django.contrib.localflavor.usa
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4554 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-21 05:54:09 +00:00 |
Adrian Holovaty
|
e8f165f1f0
|
Added a comment to ModelChoiceField from [4552]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4553 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-21 05:18:34 +00:00 |
Adrian Holovaty
|
ee96c7eb2d
|
Fixed #3534 -- newforms ModelChoiceField and ModelMultipleChoiceField no longer cache choices. Instead, they calculate choices via a fresh database query each time the widget is rendered and clean() is called
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4552 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-21 05:14:28 +00:00 |
Adrian Holovaty
|
5bec651a61
|
Added small newforms unit test
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4551 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-21 03:47:03 +00:00 |
Malcolm Tredinnick
|
97256bc39c
|
Fixed #3536 -- Fixed setup.py so that it prints a usage message if you
accidently invoke it without any arguments.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4550 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-20 23:38:06 +00:00 |
Adrian Holovaty
|
a52cc03374
|
Fixed #3490 -- Fixed issue with newforms ChoiceField and generators as 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-20 03:05:09 +00:00 |
Adrian Holovaty
|
bdfbcb2cd5
|
Fixed #3247 -- newforms form_for_model() and form_for_instance() no longer create form fields for database fields with editable=False. Thanks for the patch, mssnlayam@yahoo.com and Philipp Keller
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4548 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-20 02:59:16 +00:00 |
Adrian Holovaty
|
e56934b9b9
|
Fixed #3257 -- Added newforms ModelChoiceField and ModelMultipleChoiceField, which are now used by form_for_model() and form_for_instance(). Thanks for the patch, Honza Kral, floguy@gmail.com and kilian.cavalotti
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4547 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-20 02:42:07 +00:00 |
Adrian Holovaty
|
907241e299
|
Fixed #2455 -- Added newforms USStateSelect widget in django.contrib.localflavor.usa
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4545 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-20 00:30:22 +00:00 |
Adrian Holovaty
|
b8fa80bd00
|
Fixed #3510 -- newforms validation errors are now HTML-escaped for HTML output. Thanks, scott@staplefish.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4544 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-19 23:54:55 +00:00 |
Adrian Holovaty
|
7cb7541971
|
Improved newforms to handle wacky characters in Field help_text
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-19 23:43:14 +00:00 |
Malcolm Tredinnick
|
babc0793e3
|
Fixed behaviour of admin interface (and AddManipulator) when
min/max_num_in_admin is specified without num_in_admin. A consequence of
changes in [4500].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4542 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-19 04:18:46 +00:00 |
Russell Keith-Magee
|
fb509ee8d3
|
Fixed #2916 -- Moved syncdb call out of simple test runner and into create_test_db, to match documentation and simplify testing process for people using other test frameworks. Thanks, remco@diji.biz.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4541 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-18 08:07:18 +00:00 |
Russell Keith-Magee
|
895633a80d
|
Fixed #3210 -- Modified test Client.login() to use urlparse, allowing absolute URLs in the Location header. Thanks, Ben Dean Kawamura.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4540 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-18 08:02:00 +00:00 |
Adrian Holovaty
|
2fe6476180
|
Copy edited new docs in docs/model-api.txt from [4535]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-18 04:44:17 +00:00 |
Adrian Holovaty
|
fa159c8de9
|
Copy edited new docs in docs/request_response.txt from [4534]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4538 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-18 04:42:15 +00:00 |
Malcolm Tredinnick
|
795d832a01
|
Fixed #3259 -- Fixed problem with prepopulate_from for fields containing
underscores in their name. Patch from Gary Wilson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4537 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-17 06:14:23 +00:00 |
Malcolm Tredinnick
|
f5ede9c5c8
|
Fixed #3067 -- Improved caching of machine hostname to increase server restart
times. Thanks SmileyChris.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4536 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-17 06:01:17 +00:00 |
Malcolm Tredinnick
|
ed3d787eda
|
Fixed #2568 -- Added documentation for the permalink() decorator. Based on a
patch from Joeboy.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4535 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-17 05:51:45 +00:00 |
Malcolm Tredinnick
|
369d9ffa3d
|
Fixed #2906 -- Added documentation about HTTP error code returns and the
default 404 and 500 code error handlers. Based on a patch from Marc Fargas.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4534 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-02-17 04:59:49 +00:00 |