Adrian Holovaty
|
6aae9b2aa4
|
Changed django.contrib.auth.views.login to use RequestSite if the sites framework is not installed -- i.e., the sites framework is no longer required to use this view. See also [5654]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5885 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-14 22:08:11 +00:00 |
Adrian Holovaty
|
9b99a60cfa
|
Made some negligible formatting changes to django/core/management.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5884 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-14 21:44:39 +00:00 |
Adrian Holovaty
|
08c47803bb
|
Removed 'LIMIT 1' from the [5882] change, as it's not supported by Oracle
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5883 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-14 03:26:42 +00:00 |
Adrian Holovaty
|
947ca5123e
|
Fixed #5030 -- Removed 'COUNT()' from Model.save() when determining whether a row exists. We're now using a SELECT 1 LIMIT 1 instead, as it's more efficient in some databases. Thanks, zigiDev@mac.com and the various folks who verified this patch works
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5882 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-13 21:42:37 +00:00 |
Malcolm Tredinnick
|
478926ffde
|
Fixed #5141 -- Added Croation translation. Thanks, Aljosa Mohorovic.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5880 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-13 01:17:19 +00:00 |
Malcolm Tredinnick
|
d3b9a99d88
|
Removed unneeded directory.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5879 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-13 00:32:25 +00:00 |
Malcolm Tredinnick
|
0e7299e10a
|
Fixed #4994 -- Send back set-cookie headers in "not modified" responses. Well spotted, colin@owlfish.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5878 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 13:10:45 +00:00 |
Malcolm Tredinnick
|
56e28b4e8f
|
Fixed #5085 -- In generic views, set the default name for the slug field to 'slug'. Thanks, Trevor Caira.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5877 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 12:59:41 +00:00 |
Malcolm Tredinnick
|
f6e86c4286
|
Fixed #5111 -- Set svn:eol-style to 'native' on files that didn't have it
already.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5876 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 12:49:01 +00:00 |
Malcolm Tredinnick
|
c050b6a25a
|
Fixed #4946 -- Added some small improvements to Gzip middleware. Thanks, colin@owlfish.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 12:29:25 +00:00 |
Malcolm Tredinnick
|
3757f30c99
|
Fixed #4947 -- Avoid displaying uploaded file contents in the debug web page. Based on a patch from eibaan@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5874 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 12:02:08 +00:00 |
Malcolm Tredinnick
|
78dfdd5648
|
Clarified the reasoning in a comment.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5873 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 12:01:31 +00:00 |
Malcolm Tredinnick
|
9aa81c5401
|
Fixed #4942 -- Added an explanation that we see tickets as they are filed, automatically. Based on a suggestion from Nicola Larosa.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 10:47:10 +00:00 |
Malcolm Tredinnick
|
84bc65e137
|
Fixed #4941 -- Changed imports for interactive portion of the example to be consistent with the source code file, at the expense of slightly more typing required. This might help reduce some confusion. Thanks, John Shaffer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5871 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 10:37:56 +00:00 |
Malcolm Tredinnick
|
534671a46f
|
Fixed #4933 -- Fixed a typo and reformatted a fairly long line in passing. Thanks, Ludvig Ericson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5870 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 10:29:59 +00:00 |
Malcolm Tredinnick
|
a564adb8e1
|
Fixed #4914 -- Documented the Session.modified attribute for forcing session saves. Thanks, Thomas Güttler and SmileyChris.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5869 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 10:24:21 +00:00 |
Malcolm Tredinnick
|
6d31e431c3
|
Fixed #4909 -- Fixed a race condition with middleware initialisation in multi-threaded setups. Thanks, colin@owlfish.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5868 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 10:24:05 +00:00 |
Russell Keith-Magee
|
3d012a18ce
|
Added documentation for widgets in newforms.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5867 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 06:25:05 +00:00 |
Adrian Holovaty
|
dd0f5d9284
|
Fixed #4818 -- Improved 'Step 2' example in docs/databrowse.txt. Thanks, kevin@berndtgroup.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5866 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:59:09 +00:00 |
Malcolm Tredinnick
|
cc42b2fde8
|
Fixed #5015 -- Typo fix in oldforms. Thanks, teyc@cognoware.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:29:07 +00:00 |
Adrian Holovaty
|
f128c7bbb7
|
Fixed #5011 -- Fixed usage of ungettext in hasNoProfanities validator. Thanks, tzellman@gmail.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5864 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:27:57 +00:00 |
Adrian Holovaty
|
9ee6326cb6
|
Fixed #5019 -- Fixed broken links in navigation of 'change password' admin page. Thanks, hpxchan@gmail.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5863 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:26:35 +00:00 |
Adrian Holovaty
|
285cc6f101
|
Fixed #5046 -- Added 'Unicode error hint' section to debug page in the case of a UnicodeError. Thanks, Thomas Guttler
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5862 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:23:53 +00:00 |
Adrian Holovaty
|
babf25c11c
|
Fixed #5095 -- newforms now checks for EnvironmentError when importing settings. Thanks, SmileyChris
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5861 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:07:34 +00:00 |
Adrian Holovaty
|
d1bef59905
|
Fixed #5110 -- Made a small clarification in docs/model-api.txt. Thanks, Jarek Zgoda
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5860 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 03:01:37 +00:00 |
Malcolm Tredinnick
|
36be3febef
|
Fixed #4622 -- Fixed SelectDateWidget to work correctly when used as a hidden input field. Thanks, Bill Fenner.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5859 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 02:15:35 +00:00 |
Malcolm Tredinnick
|
9236d16b80
|
Fixed a Python 2.3 incompatibility.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5858 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 02:14:52 +00:00 |
Malcolm Tredinnick
|
3c64870a2c
|
Fixed #1984 -- Updated Italian translation from Nicola Larosa.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5857 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 01:25:18 +00:00 |
Malcolm Tredinnick
|
e5fb29140b
|
Moved in_ directory to its correct location under localflavor. I committed it in the wrong place in [5847]. Fixed #3986.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-12 01:19:54 +00:00 |
Malcolm Tredinnick
|
20e3ae5222
|
Fixed #4987 -- Added documentation for newforms.DecimalField. Based on a patch from james_027@yahoo.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5855 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 12:10:23 +00:00 |
Malcolm Tredinnick
|
1777e74d2a
|
Fixed #4910 -- Allow Unicode content to be passed in for text-based e-mail
attachments. Thanks, djoume@taket.org.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 12:10:07 +00:00 |
Malcolm Tredinnick
|
35ce8a2a8a
|
Fixed #4902 -- Added Czech support to urlify.js. Thanks, Honza Král.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 12:09:52 +00:00 |
Malcolm Tredinnick
|
01906de5c2
|
Fixed #4827 -- Fixed a problem when converting Unicode table names to upper-case in Oracle backend. Based on a patch from timchen119@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5852 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 11:11:16 +00:00 |
Malcolm Tredinnick
|
1d4a0054e3
|
Fixed #4762 -- Corrected an example. Thanks, Collin Grady and SmileyChris.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5851 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 11:06:14 +00:00 |
Malcolm Tredinnick
|
aca2761faf
|
Fixed #4611 -- Removed "new in development version" annotation for the permission_required decorator. It was in 0.96. Thanks, John Shaffer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5850 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 11:05:59 +00:00 |
Malcolm Tredinnick
|
537b16ca97
|
Fixed #4414 -- Fixed Javascript message translation to also work when there is more than one format marker in a string. Thanks, tobias@neuyork.de.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5849 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 10:51:02 +00:00 |
Malcolm Tredinnick
|
9d7dc0c4bf
|
Fixed #4189 -- Fixed crashes in a couple of corner cases in the comments app. Not a perfect fix (see ticket), but it will do as a holdover until the new comments framework is in place.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5848 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 10:50:39 +00:00 |
Malcolm Tredinnick
|
9309a8d6c3
|
Fixed #3986 -- Added Indian localflavor. Thanks, pradeep.gowda@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 10:04:19 +00:00 |
Malcolm Tredinnick
|
9864c9d8bf
|
Added "new in development version" annotation to HttpRequest.encoding documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 09:47:52 +00:00 |
Malcolm Tredinnick
|
df1f76ac02
|
Documented the encoding attribute on the HttpRequest class.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5845 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 09:47:38 +00:00 |
Malcolm Tredinnick
|
0afbca9c60
|
Fixed #3526 -- Added content_type as an alias for mimetype to the HttpResponse constructor. It's a slightly more accurate name. Based on a patch from Simon Willison. Fully backwards compatible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5844 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 09:37:42 +00:00 |
Malcolm Tredinnick
|
6fd2c25add
|
Fixed #5128 -- Ignore .pyc files in django/contrib/databrowse/.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 07:14:01 +00:00 |
Malcolm Tredinnick
|
8b128dddd1
|
Fixed #4899 -- Fixed a problem on Windows when generating message catalogs (caused by [5722]). Thanks, Ramiro Morales.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 07:01:46 +00:00 |
Malcolm Tredinnick
|
1e6ff907d5
|
Fixed #4962-- Updated Slovak translation. Thanks, vlado@labath.org.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5841 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 06:54:58 +00:00 |
Malcolm Tredinnick
|
ea1544e938
|
Fixed #4624 -- Added Persian ('fa') to the list of right-to-left languages.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5840 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 06:28:51 +00:00 |
Malcolm Tredinnick
|
e3f569989a
|
Fixed #4880 -- Updated Spanish translation. Thanks, Mario Gonzalez.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5839 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 06:28:34 +00:00 |
Malcolm Tredinnick
|
dd56de0851
|
Fixed #4973 -- Made a slight tweak to the French translation to try and accommodate indeterminate forms (plural and gender) in the resulting sentence. Thanks, Johann Queuniet.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5838 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 05:48:16 +00:00 |
Malcolm Tredinnick
|
200686ba4a
|
Fixed #4966 -- Fixed some typos in the French translation. Thanks, cedric@terramater.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5837 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 05:47:44 +00:00 |
Malcolm Tredinnick
|
a819988ec1
|
Fixed #5003 -- Small update to German translation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5836 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 05:47:13 +00:00 |
Malcolm Tredinnick
|
97e22f3d18
|
Fixed #5017 -- Fixed small error in German translation. Thanks, Thomas Steinacher.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5835 bcc190cf-cafb-0310-a4f2-bffc1f526a37
|
2007-08-11 05:46:17 +00:00 |