Malcolm Tredinnick
|
54f9a98713
|
Fixed #8351 -- Fixed the returned value when we attempt to load a cache-backed session object that doesn't alreayd exist.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8410 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 15:54:36 +00:00 |
James Bennett
|
6bcb4935f2
|
Fixed #8007: removed mention of admin options in models from docs/design_philosophies.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8409 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 14:41:28 +00:00 |
James Bennett
|
df284da44f
|
Fixed #8267: Corrected documentation for default value of DEFAULT_FILE_STORAGE setting
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8408 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 14:35:17 +00:00 |
Russell Keith-Magee
|
3afa4a4626
|
Fixed #8178: Cleaned up the rendering of exceptions on the error template. Thanks to Marinho Brandão for the fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8407 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 12:33:36 +00:00 |
James Bennett
|
ceb8fc56af
|
Fixed #6915: Documented the fact that QuerySet.delete() may not call delete() methods of individual objects
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8406 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 10:17:46 +00:00 |
Russell Keith-Magee
|
cbcc415934
|
Fixed #8229: Added handling for a special case in the validation of Spanish ID numbers. Thanks to Marc Garcia for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8405 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 07:00:30 +00:00 |
Russell Keith-Magee
|
77c949289e
|
Fixed #7285: Improved inspectdb handling of dashes in table and field names. Thanks to redalastor@gmail.com for the report and Justin Bronn for the first part of a fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8404 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 05:03:40 +00:00 |
Russell Keith-Magee
|
eab705f623
|
Fixed #6935: Modified inspectdb to provide better handling for table names with spaces. Thanks to adamv for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8403 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 04:51:21 +00:00 |
Russell Keith-Magee
|
7299b39752
|
Fixed #8355: Removed some whitespace that was apparently causing difficulty with script compilation. Thanks to bear330 for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8402 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 04:48:57 +00:00 |
Russell Keith-Magee
|
0345fec71b
|
Fixes #7845: Removed a piece of stale code that was causing ./manage.py reset to fail with apps that don't have any models. Thanks to miracle2k for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8401 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 04:11:38 +00:00 |
Russell Keith-Magee
|
fc2c03b55c
|
Fixed #8268: Modified admin scripts tests to use JYTHONPATH when appropriate. Thanks to leosoto for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 02:29:10 +00:00 |
Gary Wilson Jr
|
2b82a3bcfc
|
Fixed #7331 -- Made `QueryDict.iteritems` behave like `QueryDict.items`, thanks jurev.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8399 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-16 02:17:55 +00:00 |
Gary Wilson Jr
|
ddc156bca2
|
Fixed #6970 -- Raise the original `IntegrityError` when all required fields aren't specified in `get_or_create` instead of a misleading `DoesNotExist` error, thanks deadwisdom.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8398 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 23:29:55 +00:00 |
Malcolm Tredinnick
|
3b45a40c54
|
Fixed #8219 -- More robust date to string conversion in syndication feeds.
(Sometimes) Affects people running in locales that use non-ASCII date strings.
Patch from alperkanat.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8397 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 22:13:50 +00:00 |
Brian Rosner
|
f67fb604ea
|
Fixed #8341 -- Allow simpler subclassing of ModelAdmin and InlineModelAdmin when overriding get_form and get_formset and needing to pass keyword argument on to the factory functions. Thanks ciantic for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8396 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 21:57:36 +00:00 |
Brian Rosner
|
8edb4f97c7
|
Fixed #8299 -- Clarified the ModelAdmin.form option. Also added an inner Meta class to the ModelForm example in adding custom validation to the admin. Thanks jarrow for the report and initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8395 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 21:37:34 +00:00 |
Brian Rosner
|
6a71c768bc
|
Fixed #8352 -- Corrected a typo in the contenttypes.txt documentation. Thanks cjs for the ticket.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8394 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 21:14:22 +00:00 |
Gary Wilson Jr
|
6d863fef8a
|
Fixed #5270 -- Allow template tags and filters to accept an emtpy string, patch from jdunck.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8393 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 21:08:11 +00:00 |
Brian Rosner
|
0ca738363a
|
Fixed #8292 -- Honor filter_horizontal and filter_vertical in inlines correctly. It now adds the right Javascript to handle them when they are the only ones on the page. Thanks dakrauth for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8392 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 20:33:45 +00:00 |
Gary Wilson Jr
|
727133109c
|
Fixed #8290 -- Fixed DecimalField's cleaning of values with a large number of decimal places, based on patch from dgouldin.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8391 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 20:09:47 +00:00 |
Brian Rosner
|
9d1ec0b5ec
|
Fixed #5385 -- Made the date returned from the calendar picker consistent with the usual format of dates in the admin. Thanks Petr Marhoun for the ticket and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8390 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 19:51:45 +00:00 |
Jarek Zgoda
|
4cfa5afcc7
|
Polish locales updated
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8389 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 19:33:49 +00:00 |
Brian Rosner
|
417a4d66df
|
Removed some checks for Model._meta.one_to_one_field to prevent list_filter and the show_result_count in search_form.html. Fixes #2145.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8388 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 19:15:20 +00:00 |
Gary Wilson Jr
|
c0d862d638
|
Fixed a typo and added a bit more ReST markup to cache middleware docstring.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8387 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 17:47:03 +00:00 |
Gary Wilson Jr
|
3bb50169d9
|
Removed unused and redefined imports.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8386 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 17:42:13 +00:00 |
Brian Rosner
|
d7467a0bfc
|
Fixed #957 -- prepopulated_fields now works correctly on inlines.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8385 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 17:38:39 +00:00 |
Brian Rosner
|
f586c0b039
|
Fixed media creation in the add_view. It was not pulling media from the correct place.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8384 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 17:36:33 +00:00 |
Gary Wilson Jr
|
415bf3efb3
|
Fixed #7364 -- Never cache the contrib.auth login view.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8383 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 17:10:14 +00:00 |
Gary Wilson Jr
|
90c67e0f55
|
Fixed typo in comment.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8382 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 16:38:41 +00:00 |
Malcolm Tredinnick
|
0d48087a53
|
Made a few small tweaks to reduce persistent storage accesses in the session
backend. Refs #8311, although doesn't fix the problem there.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8381 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 14:59:11 +00:00 |
Malcolm Tredinnick
|
93462f9516
|
Reverted [8318] and [8329], since the change turned out to have no effect, upon
closer examination of the C-library layer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8380 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 14:58:59 +00:00 |
Malcolm Tredinnick
|
4881a4ffb0
|
Use failIf() instead of assertFalse() so that tests work with python 2.3.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8379 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 14:58:47 +00:00 |
Gary Wilson Jr
|
01dd602150
|
Fixed a ReST error in cache docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8378 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 14:17:24 +00:00 |
Gary Wilson Jr
|
a44439e880
|
Fixed #8137 -- Replaced an outdated link in the transactions docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8377 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 13:44:43 +00:00 |
Russell Keith-Magee
|
06ea872b20
|
Fixed #8244: Modified the temporary directory used by file storage tests so that mutliple test runs can be performed in parallel without conflict.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8376 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 13:16:16 +00:00 |
Jannis Leidel
|
6eb0dea21c
|
Fixed 8186: Updated German locale, thanks benjixx
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8375 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 12:42:57 +00:00 |
James Bennett
|
6564bfec85
|
Fixed #6551: clarify the meaning of ``DATABASE_NAME`` for SQLite in docs/tutorial01.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8374 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 12:16:10 +00:00 |
James Bennett
|
57aa1fd351
|
Fixed #6765: Changed docs/model-apit.txt to better indicate what's expected of initial SQL files.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 12:12:29 +00:00 |
Russell Keith-Magee
|
50b548d01b
|
Fixed #7416: Modified test client to preserve session when a user logs in. Thanks to lakin.wecker@gmail.com for the report and Eric Holscher for the patch and test case.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8372 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 12:08:29 +00:00 |
James Bennett
|
d8bfabe98d
|
Fixed #8154: Added note to docs/db-api.txt indicating that reverse() is only useful when the QuerySet has some prior ordering
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 12:02:24 +00:00 |
Russell Keith-Magee
|
0c115f12d7
|
Fixed #7676 -- Modified serializer registration to be thread safe. Thanks to mrts for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8370 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 11:53:49 +00:00 |
James Bennett
|
188f131813
|
Fixed #8262: Corrected typo in docs/settings.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8369 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 11:53:20 +00:00 |
James Bennett
|
b92b1791e9
|
Fixed #8234: Corrected typo in docs/cache.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8368 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 11:52:18 +00:00 |
James Bennett
|
e149bee93e
|
Fixed #8277: corrected minor typo in docs/forms.txt.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8367 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 11:50:22 +00:00 |
Russell Keith-Magee
|
ece6e166e2
|
Fixed #8337 -- Corrected typo introduced in [8365]. Thanks to julien for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8366 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 08:48:06 +00:00 |
Russell Keith-Magee
|
7eb44e32dc
|
Refs #8319 -- Added documentation note on the limitations of limit_choices_to.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8365 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 07:55:41 +00:00 |
Russell Keith-Magee
|
1691c22821
|
Fixed #8331 -- Added style parameter to sqlite backend implementation of sql_remove_table_constraints, missed in recent db backend refactor. Thanks to d00gs for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8364 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 07:35:47 +00:00 |
James Bennett
|
8683468007
|
One more minor typo
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8363 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 04:14:26 +00:00 |
James Bennett
|
5f373b380b
|
And one more typo
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8361 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 03:59:46 +00:00 |
James Bennett
|
002ab38636
|
reST fix in release notes
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2008-08-15 03:59:32 +00:00 |