Commit Graph

6451 Commits

Author SHA1 Message Date
Justin Bronn 73d32af430 [1.0.X] Added GeoDjango template and test data directories to the manifest template so that they are included when building the release tarball with `sdist`.
Backport of r9473 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9474 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-16 16:39:06 +00:00
Malcolm Tredinnick f42df5fc3f [1.0.X] Fixed #9472 -- Fixed a couple of URL patterns to be more consistent (and remove a misleading initial slash). Thanks, daveyjoe.
Backport of r9471 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9472 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-16 09:38:40 +00:00
Malcolm Tredinnick aed11333f1 [1.0.X] Fixed #6052 -- Worked around a bug in MySQLdb with regards to handling
SafeUnicode (handle SafeString similarly, just to be safe). Based on a patch
from sfllaw.

Backport of r9467 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9469 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-16 08:57:10 +00:00
Malcolm Tredinnick d7e1856776 [1.0.X] Fixed #3501 -- Fixed date filtering in querysets for nullable date fields. Only affects SQLite.
Backport of r9466 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9468 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-16 08:55:10 +00:00
James Bennett 197892ab6c [1.0.X] Now that this branch is 1.0.2 pre-alpha, it shouldn't have a download_url set in the setup.py.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9462 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 12:31:36 +00:00
James Bennett 137d27ada6 [1.0.X] With 1.0.1 out the door, branches/releases/1.0.X is now 1.0.2 pre-alpha.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9461 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 06:28:20 +00:00
James Bennett 13f63f051b Django 1.0.1.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9459 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 06:00:26 +00:00
James Bennett 08ae5910b0 New download URL
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9458 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 06:00:14 +00:00
James Bennett 9b93e49ae5 [1.0.X] One more correction to the release notes.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9457 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 05:58:08 +00:00
Malcolm Tredinnick c0feb2fad9 [1.0.x] Fixed #9477 -- Removed and edited a bunch of references to "development
version". Some were replaced with versionadded or versionchanged directives.
Other, more minor ones, were removed altogether.

Based on a patch from James Bennett.

Backport of r9454 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9455 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 05:56:01 +00:00
James Bennett a4782f0581 [1.0.X] Ensure generated package name does not contain spaces; this will make Django easy_installable from the Cheese Shop. This is [9452] on trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9453 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 05:39:58 +00:00
James Bennett a703cc9970 Actually we didn't port that one to 1.0.1.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 05:35:52 +00:00
James Bennett 0cee58d750 [1.0.X] Add 1.0.1 release notes and link them from the releases index page.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9448 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 05:20:08 +00:00
Malcolm Tredinnick 087f8aa781 [1.0.X] Fixed a bug introduced in r9443.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9447 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 02:51:10 +00:00
Brian Rosner 781a1763d9 [1.0.X] Fixed #9258 -- Use _default_manager in ForeignKeyRawIdWidget.label_for_value. Thanks nullie for the patch.
Backport of r9444 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9445 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 02:21:32 +00:00
Malcolm Tredinnick 014c563662 [1.0.X] Fixed #6948 -- The join filter was escaping the literal value
that was passed in for the connector. This was contrary to what the
documentation for autoescaping said and to what every other filter does
with literal strings as arguments.

This is backwards incompatible for the situation of the literal string
containing one of the five special HTML characters: if you were writing
{{ foo|join:"&" }}, you now have to write {{ foo| join:"&" }}.
Previous behaviour was, as noted, a bug and contrary to what was
documented and expected.

Backport of r9442 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9443 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-15 01:24:53 +00:00
Karen Tracey 385f2fe2b5 [1.0.X] Fixed #9076 -- Changed BaseInlineFormSet to not override BaseModelFormSet's get_queryset method. BaseInlineFormSet's method did not include a couple of fixes/enhancements that were made to the parent's method, resulting in excessive queries (some of which can return bad data due to #9006) for admin pages with inlines. Thanks bthomas for the initial patch.
r9440 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9441 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 15:40:26 +00:00
Karen Tracey dbe18ce542 [1.0.X] Fixed #9592 -- Create data for the generic_inline_admin test during setup instead of via a fixutre since it uses a content type id which will vary depending on what other tests have been run.
r9438 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9439 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 14:52:55 +00:00
Malcolm Tredinnick 51dabd2819 [django-1.0.X] Fixed #9377 -- Clarified when cmemcached support was included in Django.
Backport of r9435 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9437 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 08:07:39 +00:00
Malcolm Tredinnick 1b68c6a50f [django-1.0.X] Fixed #9531 -- Fixed some awkward wording in the docs. Thanks, gsf.
Backport of r9434 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9436 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 08:07:11 +00:00
Malcolm Tredinnick 659f982150 [django-1.0.X] Fixed #9507 -- Correct an example in the admin docs. Thanks,
john_scott and SmileyChris.

Backport of r9432 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9433 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 07:51:16 +00:00
Malcolm Tredinnick 539d947ad4 [django-1.0.X] Fixed #9594 -- Typo fix in the testing example.
Backport of r9429 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9431 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 07:43:26 +00:00
Malcolm Tredinnick 68a74843d7 [django-1.0.X] Fixed #9468 -- Fixed a misleading FAQ answer.
Backport of r9428 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9430 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 07:42:50 +00:00
Malcolm Tredinnick 1c6f2b9ec8 [django-1.0.X] Fixed #9570 -- Updated Arabic translation from Ossama M. Khayat.
Backport of r9423 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9427 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 07:23:10 +00:00
Malcolm Tredinnick 28ad811329 [Django-1.0.X] Fixed #9574 -- Hindi translation from Thejaswi Puthraya.
Backport of r9422 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9426 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 07:22:12 +00:00
Nicola Larosa dab02d4f84 Italian translation updated
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9424 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 07:14:58 +00:00
Ramiro Morales c1fdbb0efe [1.0.X] Updated Argentinian spanish translations, refs #9506 and related commits.
Port of [9420] from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9421 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 02:48:29 +00:00
Ian Kelly aef9663625 [1.0.X] Removed support for passing params as dicts in the oracle backend. Wasn't documented, didn't work, isn't necessary. Backport of [9418] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9419 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-14 00:56:12 +00:00
Karen Tracey 4007ac09e4 [1.0.X] Updated svnmerge metadata and added myself to committers (r9416 from trunk).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9417 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-13 23:53:52 +00:00
Karen Tracey ac832a285f [1.0.X] Fixed #9579 -- Properly handle apps running with (and specifically, loading templates from) a current working directory path that contains non-ASCII characters. Thanks for the report to gonzalodelgado and for advice on how to fix it to Daniel Pope.
r9411 from trunk.



git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9414 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-13 19:11:08 +00:00
Brian Rosner f219136e11 [1.0.X] Fixed #9498 -- Handle a formset correctly when the foreign key is not available (for now).
This case pops up with generic foreign key inlines after [9297]. Added tests
to handle future regressions with generic foreign key inlines in the admin.

Thanks markus and danielr for patches.

Backport of [9412] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9413 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-13 19:05:49 +00:00
Marc Fargas c8dcbb038a [1.0.X] Updated Catalan translation.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9408 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-13 18:07:51 +00:00
Marc Fargas fd0c24b876 [1.0.X] Updated Spanish translation.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9407 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-13 18:07:06 +00:00
Jannis Leidel 7d3450ddee [1.0.X] Updated German translation. Thanks bartTC and flosch.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9406 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12 23:29:24 +00:00
Karen Tracey a2e02a5830 [1.0.X] Fixed #106 -- Refrain from generating popup window names that IE refuses to pop up. Thanks for the reports and initial patches nbstrite and jsmullyan.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9404 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12 16:25:36 +00:00
Russell Keith-Magee 8ec6b87c42 [1.0.X] Fixed #9572 -- Corrected some documentation that misleadingly gave the extension for YAML fixtures as YML. Thanks to django@i-sh.me.uk for the report.
Merge from trunk of [9401]


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9402 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12 11:53:16 +00:00
Russell Keith-Magee cecbed5ac9 [1.0.X] Fixed #8646 -- Modified test client to set a fully WSGI compliant environment. Thanks to Adam Lofts for the report.
Merge from trunk of [9396]


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12 11:35:34 +00:00
Russell Keith-Magee 7a1421189c [1.0.X] Blocked [9397] and [9398] from merging into the 1.0.X branch.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9399 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12 11:29:50 +00:00
Karen Tracey 2a1c9072fb [1.0.X] Fixed #5079 -- Avoid converting Decimals to floats during save to the database.
[9394] from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9395 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12 00:38:48 +00:00
Justin Bronn 11736980a4 [1.0.X] Fixed #9566 -- made GeoJSON regex more robust.
Backport of r9392 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9393 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-11 17:28:43 +00:00
Karen Tracey 1ea0057296 [1.0.X] Fixed #9567 - Removed an extraneous 'are'.
[9390] from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9391 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-11 03:00:27 +00:00
Karen Tracey 21e0efcd64 [1.0.X] Fixed #7064: Made DemicmalField validation support max_digits equal to decimal_places.
r9387 and r9388 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9389 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 20:04:42 +00:00
Karen Tracey 8c31bb7ca3 [1.0.X] Fixed #6035 -- Gave the SplitDateTimeField the proper default widget. Thanks dtulig.
r9385 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9386 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 19:46:13 +00:00
Karen Tracey 4a3dcd7f5e [1.0.X] Fixed #8910 -- Added force_unicode during admin log message creation to avoid triggering a Python 2.3 bug. Thanks for the report joshg and patch nfg.
[9383] from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9384 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 17:26:13 +00:00
Malcolm Tredinnick df8cb5016d Fixed #9544 -- Updated Danish translation from Finn Gruwier Larsen.
Backport of r9381 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9382 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 10:37:03 +00:00
Marc Fargas 24860ccbd4 [1.0.X] Refs #9537, Updated Polish translation; Thanks Jarek Zgoda.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9378 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 10:22:24 +00:00
Malcolm Tredinnick 6b7f2bdad2 [Django-1.0.X] New Thai translation from Kowito Charoenratchatabhan and Kadesarin Sanjek. Fixed #9542.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9377 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 10:21:50 +00:00
Malcolm Tredinnick e6c2f496eb [django-1.0.X] Updated French translation from David Larlet. Fixed #9512.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9375 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-10 09:57:23 +00:00
Karen Tracey a24d80f193 [1.0.X] Fixed #9556 - typos in syndication docs. Thanks sedden.
[9373] from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9374 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-09 19:02:54 +00:00
Karen Tracey 3ced836c73 [1.0.X] Fixed #9514 -- Made admin change_form template correctly recognize/report when a form has only a single error.
[9371] from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9372 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-09 18:54:12 +00:00