Commit Graph

752 Commits

Author SHA1 Message Date
Adrian Holovaty eb25411407 Added 'Please do not put your name in the code' section to docs/contributing.txt. Thanks to OSCON presentation for the inspiration
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3455 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-27 00:46:32 +00:00
Adrian Holovaty f65cede313 Added note to docs/tutorial02.txt about which username to use in admin login
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-26 21:30:14 +00:00
Adrian Holovaty e427d5bc15 Fixed #2420 -- Fixed typo in docs/syndication_feeds.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3451 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-26 00:15:01 +00:00
Adrian Holovaty e5c40514fb Fixed typo in docs/i18n.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3439 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 02:52:52 +00:00
Adrian Holovaty 0991cd004c Fixed grammar: Designate -> Differentiate in docs/design_philosophies.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3438 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 02:43:09 +00:00
Adrian Holovaty 91bf6e5765 Added note to docs/contributing.txt about post-commit hook, for the curious
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3437 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 02:41:44 +00:00
Adrian Holovaty d43e6fc97a Added 'Transactions in MySQL' section to docs/transactions.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3436 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 02:39:50 +00:00
Adrian Holovaty ed80500a30 Added link to Luke Plant's current-user hack from docs/faq.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3435 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 02:28:09 +00:00
Adrian Holovaty 45076bf871 Fixed adverse -> averse typo in docs/faq.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3434 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 02:25:41 +00:00
Adrian Holovaty 571ee77dfe Fixed legacy mention of DjangoContext in docs/templates_python.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3433 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-24 01:51:15 +00:00
Jacob Kaplan-Moss 1687b025dc Part 3 of pedant day: replaced all tabs in Django with spaces. Python the way Guido intended it, baby!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3415 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-21 20:48:17 +00:00
Jacob Kaplan-Moss e9a236d86c Fixed #2092: added a "is_secure()" method to HttpRequest which correctly handles the subtleties of mod_python's interaction with os.environ. This one's been bugging me for about a *year*, so many many thanks to k.shaposhnikov@gmail.com for figuring it out, and Tim Shaffer for pointing out this ticket.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3410 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-21 16:20:22 +00:00
Jacob Kaplan-Moss aa8b34cb92 Argh - fixed another typo in the docs for [3395]. One of these days I'll learn to proofread better, but don't hold your breath.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3399 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-20 16:06:02 +00:00
Jacob Kaplan-Moss a0a7378c50 Another quick doc fix -- I must have "nodes" on the brain
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3398 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-20 15:48:07 +00:00
Adrian Holovaty 6ab20c5475 Small style fixes to docs from [3395]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3397 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-20 15:45:16 +00:00
Jacob Kaplan-Moss 2a8a32c449 Added a CACHE_MIDDLEWARE_ANONYMOUS_ONLY setting which makes the cache ignore pages served to authenticated users. Fixes #1509 (thanks, Matt).
Also added a FAQ entry about using this setting to avoid caching of the admin interface. 


git-svn-id: http://code.djangoproject.com/svn/django/trunk@3395 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-20 15:37:12 +00:00
Malcolm Tredinnick e6e663371b Fixed #2354 -- Added a note about "manage.py validate" to the list of useful
commands.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@3362 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-19 02:28:35 +00:00
Malcolm Tredinnick 51705f60b1 Fixed #2332 -- Introduced is_authenticated() method on User and AnonymousUser classes. Recommended its use over is_anonymous in the docs. Changed internal Django use to match this recommendation. Thanks to SmileyChris and Gary Wilson for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-19 02:09:26 +00:00
Malcolm Tredinnick 533594d1a5 Fixed #2355 -- Corrected a couple of small typos in code examples in tutorial03.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3359 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-19 01:35:58 +00:00
Adrian Holovaty c6cbfb3d7c Documented allow_tags attribute for admin change list methods
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3358 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-17 14:59:41 +00:00
Adrian Holovaty e26f288823 Added 'Turning off auto-reload' section to docs/django-admin.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3357 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-17 14:58:39 +00:00
Adrian Holovaty 6870edf2a0 Fixed #2356 -- Removed references to get_object() from docs/tutorial03.txt. Thanks, toddobryan
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3356 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-17 14:16:17 +00:00
Malcolm Tredinnick 50448de634 Fixed #2347 -- documented the use of "and" in the blocktrans template tag.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3345 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-14 02:57:10 +00:00
Adrian Holovaty cb19acf6fb Changed masochistic to sadistic in docs/templates.txt. Thanks, hedronist
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3340 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-14 00:56:03 +00:00
Adrian Holovaty 36e4e5a938 Proofread docs/settings.txt changes from [3336]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3337 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-13 03:52:41 +00:00
Malcolm Tredinnick e88a9cc9a4 Made it clear that we do not alter the process environment when manual settings
configuration is used.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@3336 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-12 07:40:28 +00:00
Adrian Holovaty 93b21610b9 Added note to docs/settings.txt and docs/i18n.txt about not importing from django.utils.translation in the settings file
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3318 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-11 02:49:56 +00:00
Adrian Holovaty 4872e16d1c Decimated 'whilst' in docs/templates_python.txt from [3308]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3312 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-10 14:22:04 +00:00
Malcolm Tredinnick 9af47730da Typo fixing.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3309 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-10 10:50:04 +00:00
Malcolm Tredinnick 927d87d732 Fixed #2320 -- corrected numerous errors in the custom tag examples in
python_templates.txt. Also fixed an argument parsing error for such tags.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@3308 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-10 10:48:08 +00:00
Adrian Holovaty c1847294b8 Fixed #2301 -- Added list_display_links option to 'class Admin', which regulates which fields in the change list have links. Thanks, kilian
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3307 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-10 04:16:26 +00:00
Russell Keith-Magee c431ade5f5 Refs #2217 -- Updated DB API docs to discuss filtering using objects rather than IDs. Second attempt - forgot to save before commit last time.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3302 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-09 03:53:11 +00:00
Russell Keith-Magee 88189399b1 Refs #2217 -- Updated DB API docs to discuss filtering using objects rather than IDs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-09 03:51:37 +00:00
Adrian Holovaty 2eb492ba60 Fixed django.utils.httpwrappers call in docs/outputting_pdf.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3299 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-08 14:14:28 +00:00
Adrian Holovaty 8daddd4fae Fixed #1977 -- Added clarification about TIME_ZONE setting.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3297 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-07 22:39:43 +00:00
Adrian Holovaty 1c3689ccd5 Fixed ReST error in docs/settings.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3296 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-07 22:29:02 +00:00
Adrian Holovaty 5f33157f62 Fixed #2295 -- Improved docs/sessions.txt to note INSTALLED_APPS requirement.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3295 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-07 22:25:32 +00:00
Adrian Holovaty 49e5f5450d Fixed #2272 -- Improved SQLite database introspection. Thanks, dne@mayonnaise.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3285 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-07 04:06:00 +00:00
Adrian Holovaty 930929e2b9 Fixed small typo in docs/forms.txt. Thanks, Antonio Cavedoni
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3280 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-06 14:23:37 +00:00
Russell Keith-Magee b9d9351e85 Fixes #2202 -- Added ability to customize output of pluralize filter to handle irregular cases (walrus/walruses, cherry/cherries). Thanks to gid for the suggestion and the initial patch
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3272 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-04 06:18:39 +00:00
Adrian Holovaty 37aeabe71f Proofread newest changes to docs/authentication.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3256 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-03 02:12:24 +00:00
Adrian Holovaty b3debd80ed Small cleanups to docs/authentication.txt, but still not properly reworded/proofread
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3255 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-02 15:24:49 +00:00
Adrian Holovaty e37bb07bc6 Fixed #2274 -- Fixed error in settings documentation. Thanks, Le Roux Bodenstein
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3252 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-01 03:31:14 +00:00
Adrian Holovaty bd6a758e5c Added note to docs/add_ons.txt about reading the source code.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3251 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-01 03:25:48 +00:00
Adrian Holovaty 4a324ba7ac Added USE_I18N setting, which lets you turn off internationalization overhead with a single setting. Defaults to True. Currently only affects the admin i18n JavaScript, but I'll be adding other optimizations.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-01 03:09:14 +00:00
Jacob Kaplan-Moss c9032ab07f Added a JSON serializer, a few more tests, and a couple more lines of docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3237 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-29 16:42:49 +00:00
Adrian Holovaty 963d88a809 Added 'How do I add database-specific options to my CREATE TABLE statements, such as specifying MyISAM as the table type?' to faq.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3236 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-29 03:57:19 +00:00
Adrian Holovaty 07687c516e Fixed #2263 -- Fixed typo in docs/authentication.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3235 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-29 03:57:01 +00:00
Jacob Kaplan-Moss aab3a418ac Merged multi-auth branch to trunk. See the authentication docs for the ramifications of this change. Many, many thanks to Joseph Kocherhans for the hard work!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-28 16:37:02 +00:00
Jacob Kaplan-Moss 4ea7a11659 Added initial cut at serialization framework, along with some basic tests and a stab at some docs. This is all a bit rough right now, so expect some bumps.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3225 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-28 16:00:37 +00:00