summaryrefslogtreecommitdiff
path: root/docs/django-admin.txt
AgeCommit message (Collapse)Author
2008-08-23Massive reorganization of the docs. See the new docs online at ↵Jacob Kaplan-Moss
http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-08Fixed #5463 -- Allow alternate file extensions on files that are translated.Malcolm Tredinnick
Patch from Jannis Leidel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8234 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-22Fixed #7814 -- Fixed a number of style inconsistencies in the docs. Thanks, ↵Adrian Holovaty
uzi and programmerq git-svn-id: http://code.djangoproject.com/svn/django/trunk@8043 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-06Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into ↵Malcolm Tredinnick
django-admin.py. They are now called "makemessages", "compilemessages" and "cleanup". This is backwards incompatible for make-messages.py and compile-messages.py, although the old executables still exist for now and print an error pointing the caller to the right command to call. This reduces the number of binaries and man pages Django needs to install. Patch from Janis Leidel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7844 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-19Fixed #6719 -- Added a --traceback option to syncdb to provide a stack trace ↵Russell Keith-Magee
when custom SQL loading fails. Also added documentation for the --traceback option. Thanks to guettli for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7704 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-16Fixed #6980 -- Removed duplicate stuff in docs/django-admin.txt. Thanks, ↵Adrian Holovaty
Evan Jones git-svn-id: http://code.djangoproject.com/svn/django/trunk@7648 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-12Fixed #7194 -- Fixed typo in django-admin.txt. Thanks, jhlywaAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7621 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-12Various documentation edits from the past few changesetsAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7619 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-11Fixed #7254 -- Added an '--exclude' option to dumpdata, allowing specific ↵Russell Keith-Magee
applications to be removed from the dump output. Thanks to Carl Karsten for the idea and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7615 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-11Fixed #7397: corrected order of command names in docs/django-admin.txtJames Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7614 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-08Added a note about manage.py createsuperuser requiring django.contrib.auth. ↵Jacob Kaplan-Moss
Thanks, Alex Gaynor git-svn-id: http://code.djangoproject.com/svn/django/trunk@7599 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-08Move "createsuperuser" docs down one slot to maintain alphabetical ordering ↵James Bennett
of commands git-svn-id: http://code.djangoproject.com/svn/django/trunk@7594 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-08Add documentation for the creatsuperuser target (added in [7590]) to ↵James Bennett
doc/django-admin.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@7593 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-02-15Made a bunch of tiny documentation formatting and typo fixes.Malcolm Tredinnick
Thanks, quicklizard, adamv, Gary Wilson, superjudge and David Pretty. Fixed #6554, #6573 ,#6592, #6595, #6608. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7119 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-01-02Fixed #6252 -- Clarified the --settings option in docs/django-admin.txt. ↵Adrian Holovaty
Thanks, whiskybar git-svn-id: http://code.djangoproject.com/svn/django/trunk@6983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-12-17Typo fix.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-12-17Fixed #6155 -- Fixed dumpdata to work with the default model manager (necessaryMalcolm Tredinnick
for the rare cases when the 'objects' manager might not even exist). Based on a patch from Michael Trier. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6932 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-11-29Fixed #6006 -- Typo fixing in the description of verbosity. Pointed out byMalcolm Tredinnick
NorbertK. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6747 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-11-29Fixed #5955 -- Made a bunch of ReST fixes. Thanks, SmileyChris.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6743 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-10-23Edited docs/django-admin.txt changes from [6400]. (I'm behind on editing!)Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6602 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-21Fixed #5516 -- Added the ability for applications to define their own ↵Russell Keith-Magee
management commands. Pieces of this patch taken from a contribution by Todd O'Bryan. Thanks Todd. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-16FIxed #5376 -- Fixed typo in testserver docsAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6363 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-14Fixed #5376 -- Added --addrport option to the 'testserver' command. Thanks, ↵Adrian Holovaty
toddobryan git-svn-id: http://code.djangoproject.com/svn/django/trunk@6204 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-09Fixed broken link in docs/django-admin.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6077 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-09Improved 'Examples of using different ports and addresses' section in ↵Adrian Holovaty
docs/django-admin.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@6076 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-09Fixed #5369 -- Refactored the django-admin.py help system, allowing each ↵Adrian Holovaty
subcommand to register its own options. Thanks for the patch, Todd O'Bryan git-svn-id: http://code.djangoproject.com/svn/django/trunk@6075 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-05Refs #5343 -- Reverted [6047]. Loading custom commands was causing the ↵Russell Keith-Magee
settings file to get read before the options could be processed to determine if a --settings option was present. Back to the drawing board (again)... git-svn-id: http://code.djangoproject.com/svn/django/trunk@6050 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-04Fixed #5212, #5222 -- Added the ability for users to register their own ↵Russell Keith-Magee
commands with django-admin. A previous attempt at this was introduced in [5923]-[5925], and rolled out in [5929]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6047 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-25Added note to docs/django-admin.txt section on 'testserver' that the server ↵Adrian Holovaty
does not detect changes to Python code git-svn-id: http://code.djangoproject.com/svn/django/trunk@6017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-25Fixed #5086 -- The 'flush' and 'sqlflush' management commands no longer ↵Adrian Holovaty
touch tables that Django is not aware of (tables that are not in INSTALLED_APPS and/or do not have associated models. Thanks for bringing this up, shaun@cuttshome.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@6013 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-18Rolled out [5923]-[5925] due to breaking call_command().Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5929 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-18Added some initial documentation on adding customized commands to ↵Russell Keith-Magee
django-admin.py. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-08-16Added 'django-admin.py testserver' command and docsAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-14Fixed #4869 -- Added a note that syncdb does not alter existing tables. Thanks,Malcolm Tredinnick
James Bennett. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5692 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-01Fixed #4690 -- Fixed a bunch of ReST errors in docs. Thanks, Paul B.Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-06-02Fixed #4455 -- Small typo fix.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5418 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-06-01Fixed #4370 -- Clarified how syncdb searches for initial data files. Thanks,Malcolm Tredinnick
Simon Greenhill and gsf@perfectlygood.net. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5405 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-20Changed all references to tutorial1/ to be tutorial01/ (and similarly forMalcolm Tredinnick
tutorials 2, 3 and 4). This matches the canonical name we use under djangoproject.com/documentation/ as well as the source filename. Should avoid problems with archived documentation and missing HTTP redirects. Refs #4013. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5039 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-13Fixed #3786 -- Fixed sqlinitialdata references in some docs. Thanks, Ramiro ↵Adrian Holovaty
Morales git-svn-id: http://code.djangoproject.com/svn/django/trunk@5004 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-09Fixed #3909 -- Added a couple of small clarifications to django-admin.pyMalcolm Tredinnick
documentation. Thanks, adurdin@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4978 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-09Added note to docs/django-admin.txt about the examples using ↵Adrian Holovaty
django-admin.txt but the examples being just as relevant for manage.py. Refs #3893 git-svn-id: http://code.djangoproject.com/svn/django/trunk@4964 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-06Fixed #3790 -- Fixed a problem with sequence resetting during fixture loads ↵Russell Keith-Magee
when using Postgres. Thanks to Jon Ballard and scott@staplefish.com for the report, and to Zach Thompson for suggesting a solution. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-25Fixed typo in docs/django-admin.txt. Refs #3786Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-23Remove notes about things added/removed in development version, since the ↵James Bennett
development version is about to become 0.96 git-svn-id: http://code.djangoproject.com/svn/django/trunk@4804 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-16Fixed small typo in docs/django-admin.txt. Thanks, CortAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4742 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-02Added option to pretty-print dumped fixture outputRussell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4661 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-03-01Fixes #2333 -- Added test fixtures framework.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4659 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-28Fixed #3610: typo in django-admin.txt. Thanks, Yasushi Masuda.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4651 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-26Fixed #3319: Added docs to django-admin.txt about reset and runfcgi. Thanks, ↵Jacob Kaplan-Moss
Ubernostrum. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4623 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-11Made negligible change to docs/django-admin.txt -- 'MS Windows' to 'Windows'Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4484 bcc190cf-cafb-0310-a4f2-bffc1f526a37