summaryrefslogtreecommitdiff
path: root/docs/tutorial02.txt
AgeCommit message (Collapse)Author
2006-10-24Fixed #2854 -- Fixed inconsistency in docs/tutorial02.txt. Thanks, ymasudaAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3928 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-10-23Fixed #2854 -- Incorporated a small suggestion which might make it clearer whereMalcolm Tredinnick
TEMPLATE_DIRS could point. Thanks, bonovoxmofo@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-07-26Added note to docs/tutorial02.txt about which username to use in admin loginAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed typo in docs/tutorial02.txt. Thanks, Nick FishmanAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3013 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-23Changed an overlooked occurrence of repr() to str(). Pointed out by JeremyMalcolm Tredinnick
Dunck on the mailing list. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-16Fixed #1833 -- Fixed some errors in tutorials. Thanks, quarkcool@yahoo.frAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2923 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly ↵Adrian Holovaty
backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-01-13Updated docs/tutorial02.txt to include extra sentence about remembering the ↵Adrian Holovaty
'admin' subdirectory git-svn-id: http://code.djangoproject.com/svn/django/trunk@1952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-01-11Updated tutorials 1-4 to use manage.py instead of django-admin.py, new ↵Adrian Holovaty
directory layout (no /apps/ subdirectory) and other various tweaks git-svn-id: http://code.djangoproject.com/svn/django/trunk@1901 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-11-20Fixed #850 -- Made clarification in docs/tutorial02.txt. Thanks, DanielAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1300 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-11-17Fixed #827 -- For admin list_display functions without a short_description, ↵Adrian Holovaty
Django now converts underscores to spaces. Thanks, Aaron Swartz git-svn-id: http://code.djangoproject.com/svn/django/trunk@1275 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-11-16Changed tutorial02 not to say redirects and flatpages are includedAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1262 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-19Fixed ReST bug in docs/tutorial02.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@950 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-19Fixed #627 -- BACKWARDS-INCOMPATIBLE CHANGE. Admin is now an app, not a ↵Adrian Holovaty
middleware. See BackwardsIncompatibleChanges for a full list of changes and information on how to update your code. git-svn-id: http://code.djangoproject.com/svn/django/trunk@948 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-09-01Fixed #417 -- Added clarification to docs/tutorial02.txt about ↵Adrian Holovaty
settings.admin vs. settings.main. Thanks, benno@jeamland.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@596 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-26Fixed bug in docs/tutorial02.txt related to model syntax change. Thanks, JeremyAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@555 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-25Fixed #122 -- BIG, BACKWARDS-INCOMPATIBLE CHANGE. Changed model syntax to ↵Adrian Holovaty
use fieldname=FieldClass() syntax. See ModelSyntaxChangeInstructions for important information on how to change your models git-svn-id: http://code.djangoproject.com/svn/django/trunk@549 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-21Fixed #383 -- Clarified tutorial 2. Thanks, ssteinerAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@542 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-17Made some tiny tweaks to docs/tutorial02.txt -- thanks, anonymousAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@527 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-10Fixed #118 -- Renamed 'flat files' to 'flat pages' in the admin. Didn't ↵Adrian Holovaty
rename it in the Python code, because too many things would break. git-svn-id: http://code.djangoproject.com/svn/django/trunk@477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-09Fixed #211 -- edit_inline_type is deprecated, in favor of edit_inline ↵Adrian Holovaty
itself. For example, instead of 'edit_inline=True, edit_inline_type=meta.TABULAR', use 'edit_inline=meta.TABULAR'. git-svn-id: http://code.djangoproject.com/svn/django/trunk@440 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-07Added explicit note to docs/tutorial02.txt that you should edit ↵Adrian Holovaty
TEMPLATE_DIRS in the *admin* settings file if you want to change admin template directories git-svn-id: http://code.djangoproject.com/svn/django/trunk@425 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-26Fixed #203 -- Added explicit comma to tutorial 2. Thanks, sirpete@iki.fiAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@315 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-21Changed tutorial docs to account for auto-reload on the development serverAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@274 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-21Fixed #92 -- meta.Admin 'fields' parameter is now optional. If it's not ↵Adrian Holovaty
given, Django will use all editable fields by default. This cuts down on redundancy. Also updated relevant docs to reflect the change. git-svn-id: http://code.djangoproject.com/svn/django/trunk@265 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-21Added 'django-admin createsuperuser' and updated tutorial to use it instead ↵Adrian Holovaty
of manually creating the user in the Python interactive prompt git-svn-id: http://code.djangoproject.com/svn/django/trunk@261 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-20Added "philosophy" sections to tutorials so they can be styled differentlyJacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-20Added '--settings' option to django-admin. This specifies which settings ↵Adrian Holovaty
module to use, if you don't want to deal with setting the DJANGO_SETTINGS_MODULE environment variable. Refactored django-admin to use optparse. Updated the tutorials to use '--settings' instead of environment variables, which can be confusing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-19Added note to tutorial02 on how to stop the development server on Unix vs. ↵Adrian Holovaty
Windows git-svn-id: http://code.djangoproject.com/svn/django/trunk@219 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-19Added docs/tutorial03Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@195 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Added scary warning about not using the development server in production ↵Adrian Holovaty
environments git-svn-id: http://code.djangoproject.com/svn/django/trunk@188 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Changed tutorial2 to use 'django-admin runserver' instead of mod_python. ↵Adrian Holovaty
Also updated WSGI mentions in the docs, now that we're WSGI-friendly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@187 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Fixed #71 -- Changed default admin base_site template to use example.com ↵Adrian Holovaty
instead of mysite.com. Thanks, pb@e-scribe.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@183 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Fixed #68 -- Changed reference to deprecated mod_python config in tutorial ↵Adrian Holovaty
2. Thanks, pb@e-scribe.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@176 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Fixed #57 -- Added some more helpful mod_python information to tutorial 2 -- ↵Adrian Holovaty
thanks, Manuzhai! git-svn-id: http://code.djangoproject.com/svn/django/trunk@172 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Linked tutorial 2 to the admin CSS guideAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@144 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Finished tutorial02 and added a link to it from tutorial01Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@142 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Tiny tweaks to tutorial02.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@141 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Fixed small formatting errors in [139]Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@140 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Added 'Customize the admin change list' section to docs/tutorial02.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@139 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Fixed the inevitable ReST bug in [137]Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@138 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Added 'Adding related objects' section to docs/tutorial02.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@137 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Improved tutorial02 to discuss login errors, linking to the FAQAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@134 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Fixed ReST errors in docs/tutorial02.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@130 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-17Added first part of docs/tutorial02.txtAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@129 bcc190cf-cafb-0310-a4f2-bffc1f526a37