summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added django.views.generic.simple.redirect_to view for issuing simple ↵Jacob Kaplan-Moss2005-11-152-9/+65
| | | | | | redirects. Also updated direct_to_template to use render_to_response to be consistant with coding style, and documented the simple generic views. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1249 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added django.views.generic.simple.direct_to_template which renders a given ↵Jacob Kaplan-Moss2005-11-151-0/+9
| | | | | | template along with any other params from the URL pattern. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #796 -- Gave AnonymousUser a has_module_perms method.Adrian Holovaty2005-11-151-0/+3
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1243 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #799: any setting with "SECRET" or "PASSWORD" in the name is escaped ↵Jacob Kaplan-Moss2005-11-151-2/+15
| | | | | | in the debug view output (this can be expanded if there are other "naughty words" we want to strip out in the future. Thanks, Ian git-svn-id: http://code.djangoproject.com/svn/django/trunk@1242 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* added missing docstring to the blocktrans template tagGeorg Bauer2005-11-151-0/+17
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Followup faq change to [1237]Adrian Holovaty2005-11-151-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1238 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added extra paragraphs to 'Why did you write all of Django from scratch' FAQ ↵Adrian Holovaty2005-11-151-0/+10
| | | | | | question git-svn-id: http://code.djangoproject.com/svn/django/trunk@1237 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed bug in postgresql backend that prevented the user of passwords with ↵Jacob Kaplan-Moss2005-11-151-1/+1
| | | | | | | | | spaces in them. Use pass *phrases*, folks, they're grrrrreat! git-svn-id: http://code.djangoproject.com/svn/django/trunk@1236 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added NOINDEX tag to debug 500 page (for robots)Jacob Kaplan-Moss2005-11-141-0/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1234 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added "pretty" error pages to be used when DEBUG is True.Jacob Kaplan-Moss2005-11-142-26/+446
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1233 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes #790 and #791 - updated cs and sk translationsGeorg Bauer2005-11-144-274/+97
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1232 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes bug with blocktrans and parameters not actually doing the translation ↵Georg Bauer2005-11-141-2/+2
| | | | | | (thx. nesh for the report) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1230 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* added the missing icenlandic message file (didn't svn add last time and ↵Georg Bauer2005-11-142-0/+1013
| | | | | | didn't notice) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1229 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #787 -- High-level syndication framework now picks up author details. ↵Adrian Holovaty2005-11-143-3/+123
| | | | | | Also updated documentation. Thanks, mattycakes git-svn-id: http://code.djangoproject.com/svn/django/trunk@1228 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Improved Atom feed-generating framework to output <link rel='self'>. Added a ↵Adrian Holovaty2005-11-144-6/+28
| | | | | | feed_url hook to feedgenerator for this purpose, and changed the syndication Feed and views to use it. Also updated docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1227 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #784 -- Atom feeds now use RFC3339 datetime formatAdrian Holovaty2005-11-141-2/+5
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #786 -- Atom feeds now put links in a href element. Thanks, mattycakesAdrian Holovaty2005-11-141-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1225 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #121 -- Django now quotes all names in SQL queries. Also added unit ↵Adrian Holovaty2005-11-149-116/+295
| | | | | | tests to confirm. Thanks, Robin Munn and Sune. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1224 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #783 -- Added AnonymousUser.id = None. Thanks, EABinGAAdrian Holovaty2005-11-132-0/+3
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1221 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added Icelandic and Swedish translations to docs/settings.txt LANGUAGES sectionAdrian Holovaty2005-11-131-0/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1220 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #782 -- Fixed broken link in docs/overview.txt. Thanks, frederikAdrian Holovaty2005-11-131-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1219 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added 'Safety and security' section to docs/design_philosophies.txtAdrian Holovaty2005-11-131-2/+17
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes #751, added new icelandic translation (thx Dagur), updated the serbian ↵Georg Bauer2005-11-1335-169/+236
| | | | | | translation and updated .po files for updated global_settings (because of the new language) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1217 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* added swedish to the global settings LANGUAGESGeorg Bauer2005-11-1335-1422/+1490
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1216 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes #751 - new swedish translation. thx Robin.Georg Bauer2005-11-132-0/+1010
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1215 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #780 -- Fixed typo in docs/modpython.txt. Thanks, jhernandezAdrian Holovaty2005-11-131-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1214 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Moved db.quote_name from a model-level function to a method of ↵Adrian Holovaty2005-11-135-21/+20
| | | | | | DatabaseWrapper for all database backends, so quote_name will be accessible in a 'from django.core.db import db' context git-svn-id: http://code.djangoproject.com/svn/django/trunk@1213 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added 'Limiting access to generic views' section to docs/authentication.txtAdrian Holovaty2005-11-131-0/+15
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1212 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Changed slightly misleading example in docs/sessions.txt to use baggage-less ↵Adrian Holovaty2005-11-131-6/+6
| | | | | | 'members' instead of 'users' git-svn-id: http://code.djangoproject.com/svn/django/trunk@1211 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed typo in docs/tutorial03.txt. Thanks, Dave HodderAdrian Holovaty2005-11-131-3/+3
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1210 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Grammar cleanups for recent documentation and docstring changes.Adrian Holovaty2005-11-133-14/+38
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1209 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes #109 - added translation possibilities for date and time formats (and ↵Georg Bauer2005-11-1234-199/+426
| | | | | | updated translation files for the new message IDs) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1208 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes #764 - the TokenParser now respects string parameters to filters that ↵Georg Bauer2005-11-121-0/+7
| | | | | | contain blanks. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1207 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* added the LANGUAGES setting to the settings documentationGeorg Bauer2005-11-121-0/+10
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1206 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* updated i18n documentation for the LANGUAGES settingGeorg Bauer2005-11-121-0/+12
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1205 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixes #750 - languages for language-selection can now be restricted by ↵Georg Bauer2005-11-121-19/+26
| | | | | | setting LANGUAGES in the projects setting file to some subset of the global_settings provided list. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1204 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixed #777 and #775 - updated bn and sk translationsGeorg Bauer2005-11-124-182/+191
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1203 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #778 -- Improved isExistingURL validator not to raise ValidationError ↵Adrian Holovaty2005-11-121-1/+5
| | | | | | for URLs that exist but require authorization. Thanks for the report, lakin wrecker. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1202 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added mime_type attributes to feedgenerator RssFeed and Atom1Feed, and made ↵Adrian Holovaty2005-11-122-1/+3
| | | | | | the syndication view use that mime_type. Thanks, James git-svn-id: http://code.djangoproject.com/svn/django/trunk@1201 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #773 -- Removed reference to CACHE_MIDDLEWARE_GZIP in docs/cache.txt. ↵Adrian Holovaty2005-11-121-6/+0
| | | | | | Thanks, Eugene git-svn-id: http://code.djangoproject.com/svn/django/trunk@1200 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #774 -- Fixed typos in docs/authentication.txt. Thanks, footless and ↵Adrian Holovaty2005-11-121-2/+2
| | | | | | jbennett git-svn-id: http://code.djangoproject.com/svn/django/trunk@1199 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* More small tweaks to docs/syndication_feeds.txtAdrian Holovaty2005-11-121-15/+17
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1197 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed ReST bug in docs/syndication_feeds.txtAdrian Holovaty2005-11-121-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed ReST bugs in docs/syndication_feeds.txtAdrian Holovaty2005-11-121-12/+16
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1195 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Completely refactored legacy RSS framework to the new ↵Adrian Holovaty2005-11-128-303/+822
| | | | | | django.contrib.syndication package. Also added Atom support, changed the way feeds are registered and added documentation for the whole lot. This is backwards-incompatible, but the RSS framework had not yet been documented, so this should only affect tinkerers and WorldOnline. Fixes #329, #498, #502 and #554. Thanks for various patches/ideas to alastair, ismael, hugo, eric moritz and garthk git-svn-id: http://code.djangoproject.com/svn/django/trunk@1194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added 'Install Python' section to docs/install.txtAdrian Holovaty2005-11-121-0/+10
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1193 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fixed the "recent actions" list not pointing to the objects detail page - ↵Georg Bauer2005-11-121-1/+1
| | | | | | backport of rjwittams fix from new_admin git-svn-id: http://code.djangoproject.com/svn/django/trunk@1191 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added README.TXT to contrib.redirects and contrib.flatpagesAdrian Holovaty2005-11-122-0/+16
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1189 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* fix a problem that masks errors in settings files for some users - in those ↵Georg Bauer2005-11-111-8/+8
| | | | | | cases you only got "INSTALLED_APPS not defined", but in reality your settings file was broken. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1185 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added INSTALLED_APPS to global_settings. It's an empty tuple by default.Adrian Holovaty2005-11-112-1/+4
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1184 bcc190cf-cafb-0310-a4f2-bffc1f526a37