summaryrefslogtreecommitdiff
path: root/django/contrib
AgeCommit message (Collapse)Author
2007-09-20Fixed #5548 -- Reintroduced Jython workaround for os.getpid(), which was ↵Adrian Holovaty
lost in [6270]. Thanks, leosoto git-svn-id: http://code.djangoproject.com/svn/django/trunk@6386 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-19Fixed $5457 - the auth system now delegates permission checking to auth ↵Jacob Kaplan-Moss
backend(s). As an added bonus, the auth backends now have some unit tests! Thanks, Florian Apolloner. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6375 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-16Refs #5513: improved session performance after [6333]'s session refactoring. ↵Jacob Kaplan-Moss
Thanks, msaelices. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6365 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-16Fixed #1394 -- Fixed an admin crash when saving models with pk db column != ↵Malcolm Tredinnick
pk attname. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-16Fixed #5501 -- Fixed Python 2.3 and 2.4 incompatibility. Thanks, brosner.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6348 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #2066: session data can now be stored in the cache or on the ↵Jacob Kaplan-Moss
filesystem. This should be fully backwards-compatible (the database cache store is still the default). A big thanks to John D'Agostino for the bulk of this code. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6333 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #3604 -- django.contrib.auth password checking now uses hashlib if ↵Adrian Holovaty
it's available. Thanks, Rob Hudson git-svn-id: http://code.djangoproject.com/svn/django/trunk@6318 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Small change to modpython auth handler to support Apache 2.2Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6305 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #3032 -- Added some useful methods and attributes so that ↵Malcolm Tredinnick
AnonymousUser can proxy for a User a bit more logically. Patch from semenov. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6299 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Added a get_host() method to HttpRequest. There is still an http.get_host() ↵Malcolm Tredinnick
version in place, so this is fully backwards compatible. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6296 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #5177 -- Changed content type creation to also remove the types for ↵Malcolm Tredinnick
any orphaned entries (so it's now an "update" feature). Thanks, Rob Hudson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6287 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #5462 -- Added Peruvian localflavor. Thanks, xbito.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6283 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #5486 -- Worked around the lack of os.getpid() in Jython, whilst still ↵Malcolm Tredinnick
using it for CPython. Patch from Leo Soto. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6270 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-15Fixed #1888 -- Fixed small interface inaccuracy when using ↵Adrian Holovaty
filter_interface=models.VERTICAL. Thanks, ryankanno, wnielson and SmileyChris git-svn-id: http://code.djangoproject.com/svn/django/trunk@6262 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5432 -- Added docs/form_preview.txt. Thanks, ryankannoAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #3091 -- django.contrib.comments views now accept extra_context and ↵Adrian Holovaty
context_processors arguments. Thanks, Eric Floehr and __hawkeye__ git-svn-id: http://code.djangoproject.com/svn/django/trunk@6236 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5478 -- Fixed bug in lorem template tag. Thanks, racterAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6228 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5308 -- Redirect from pages that need login and have Unicode URL no ↵Adrian Holovaty
longer causes error. Thanks, webjunkie git-svn-id: http://code.djangoproject.com/svn/django/trunk@6226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #4448: the calendar widget now refreshes if the date field is changed. ↵Jacob Kaplan-Moss
THanks, gkelly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6214 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed 3136: Set .clockbox admin widget to auto width to allow for longer ↵Wilson Miner
headers in other languages. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6210 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #4542: added a generic localflavor DateField. Thanks, Nick Lane.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6208 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5394 -- REDIRECT_FIELD_NAME is now configurable. Thanks, Petr ↵Adrian Holovaty
Marhoun, DavidReynolds and effbot git-svn-id: http://code.djangoproject.com/svn/django/trunk@6206 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Added missing files from [6202] - sorry.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6203 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14 Fixes #2086: Added null.css file to avoid spurious 404s due to the "high ↵Wilson Miner
pass filter" which hides admin CSS from IE5/Win. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6197 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed a bunch of Python 2.3 issues. Two tests still fail, but this fixes the ↵Malcolm Tredinnick
bulk of things. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6183 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #3766 -- Added in-memory caching for the sites framework. Will speed ↵Malcolm Tredinnick
up all the "current site" lookups. Thanks, Matt Riggott. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6180 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #4964 -- Added Brazilian state field to localflavors. Thanks, William ↵Malcolm Tredinnick
Alves de Souza. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6176 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #4951 -- Improved host retrieval in sites.models.RequestSite. Thanks, ↵Malcolm Tredinnick
Caleb. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6174 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5067 -- Fixed a problem with javascript popup widgets appearing in ↵Russell Keith-Magee
the wrong place if they were in a overflow=scroll block. Thanks to Erich Schmid for the original fix, and Robert Coup for the updated patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6172 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #208 -- Modernized the syntax of the cycle tag to allow for spaces and ↵Russell Keith-Magee
variables in cycle values. Thanks to SmileyChris and Chris McAvoy for their work on this. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6153 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5431 -- Added Argentinean localflavor. Thanks, Ramiro Morales.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6145 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-13Fixed #5326 -- Added Ukrainian map for Javascript slug generation. Thanks, ↵Malcolm Tredinnick
Artyom Gnilov. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6141 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-13Fixed #5403 -- Added Dutch localflavor. Thanks, Jan Rademaker.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6139 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-13Fixed #5410 -- Added a __unicode__() method to RequestSite. Thanks, bosAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6125 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-03Fixed #5292 -- Changed CSRF middleware to check for request.method == 'POST' ↵Adrian Holovaty
instead of request.POST dictionary not being empty. Thanks, Jakub Wilk git-svn-id: http://code.djangoproject.com/svn/django/trunk@6038 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-02Fixed #5318 -- Corrected typo in it_province localflavor. Thanks, ↵Adrian Holovaty
francescod.calabrese@tiscali.it git-svn-id: http://code.djangoproject.com/svn/django/trunk@6033 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-25Fixed #348 -- Fixed bug in admin JavaScript filter interface. Thanks for the ↵Adrian Holovaty
patch, Gary Wilson git-svn-id: http://code.djangoproject.com/svn/django/trunk@6015 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-25Fixed #5227 -- Made the redirect security check in ↵Adrian Holovaty
django.contrib.auth.views.login() tighter. Thanks, Sander Dijkhuis git-svn-id: http://code.djangoproject.com/svn/django/trunk@6004 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-20Fixed #3311 -- Added naturalday filter to contrib.humanize. Thanks, Jyrki ↵Malcolm Tredinnick
Pulliainen. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5985 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-19Fixed #4125 -- Added some small fixes to contrib.databrowse: fixed calendar ↵Malcolm Tredinnick
views, added a summary of the number of objects in each list, and added a template entry point for the customisation enthusiasts. Nice work, SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5947 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-19Fixed #5200 -- Added Polish localflavor. Thanks, Slawek Mikula.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-19Fixed #5155 -- Translated the model name (when available) in the Recent ↵Malcolm Tredinnick
Actions log. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-14Fixed bug in [5885]Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-14Changed django.contrib.auth.views.login to use RequestSite if the sites ↵Adrian Holovaty
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-12Fixed #5019 -- Fixed broken links in navigation of 'change password' admin ↵Adrian Holovaty
page. Thanks, hpxchan@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@5863 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-12Moved in_ directory to its correct location under localflavor. I committed ↵Malcolm Tredinnick
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-11Fixed #4902 -- Added Czech support to urlify.js. Thanks, Honza Král.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-11Fixed #4189 -- Fixed crashes in a couple of corner cases in the comments ↵Malcolm Tredinnick
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-11Fixed #3986 -- Added Indian localflavor. Thanks, pradeep.gowda@gmail.com.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5847 bcc190cf-cafb-0310-a4f2-bffc1f526a37