summaryrefslogtreecommitdiff
path: root/docs/intro
AgeCommit message (Collapse)Author
2014-01-25Fixed #21829 -- Added default AppConfigs.Aymeric Augustin
Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion.
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
2014-01-18Fixed #21712 -- Moved autodiscover() to AdminConfig.ready().Aymeric Augustin
Thanks Marc Tamlyn for the initial version of the patch.
2014-01-03Fixed #21728 -- Corrected an inadvertent path change in ↵Tianyi Wang
docs/intro/contributing.txt.
2013-12-31Fixed #21701 -- Improved testing doc titles and added testing/tools.txt.Tim Graham
Thanks cjerdonek for the suggestion.
2013-12-30Fixed a broken link in docs/intro/tutorial01.txt.Tim Graham
2013-12-30Stopped populating the app registry as a side effect.Aymeric Augustin
Since it triggers imports, it shouldn't be done lightly. This commit adds a public API for doing it explicitly, django.setup(), and does it automatically when using manage.py and wsgi.py.
2013-12-30Assumed Python 3 throughout docs/intro.Aymeric Augustin
Various small fixes while I was proof-reading.
2013-12-25Unified listing of shell commands/codeYaroslav Halchenko
- use code-block:: bash - prefix the command with $
2013-12-24Updated a few doc paragraphs following the app-loading refactor.Aymeric Augustin
2013-12-18Fixed #21613 -- Removed a hardcoded input id from the tutorial.Tim Graham
Thanks Bruno Brouard for the report.
2013-12-14Fixed link text for "Testing in Django" in tutorial 5.Chris Jerdonek
2013-12-08Updated a bunch of hyperlinks in documentationClaude Paroz
2013-12-05Fixed #21562 -- Warned against using the same app name as a django contrib app.Alasdair Nicol
Thanks yourcelf for the report.
2013-11-27Update tutorial part 1 to discuss migrations properlyAndrew Godwin
2013-11-21Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs.Loic Bistuer
2013-11-19Recommended setuptools in the reuseable app tutorial.Dražen Lučanin
setuptools has merged with distribute.
2013-11-10Fixed typo in tutorial 2; refs #21418.Tim Graham
2013-11-09Fixed doc typo.Tim Graham
2013-11-09Fixed #21378 -- Updated tutorial02 for how to override admin site header.Vajrasky Kok
2013-10-22Fixed indentation of example in tutuorial 2.Phil Elson
2013-10-14Fixed #20910 -- Added a "snippet" sphinx directive to allow prefixing a ↵M Nasimul Haque
filename. Thanks Marc Tamlyn for the suggestion.
2013-10-14Fixed #21210 -- Documented when runserver doesn't auto-restart.Bouke Haarsma
Thanks gergely at polonkai.eu for the suggestion.
2013-10-14Fixed #21027 -- Updated tutorial 5 docs to link to management shell command ↵Max Vizard
page.
2013-10-04Fixed #21213 -- Added docs for Django's mailing lists.Unai Zalakain
Added docs/internals/mailing-lists.txt documenting the use of django's mailing lists. All references across docs changed to point to this page. The referencing makes use of substitution because there's no way to make a :ref: link in a non-inline fashion in Sphinx. It also makes use of rst_epilog Sphinx conf for making this substitutions across all the docs.
2013-10-01Fixed #21195 -- Clarifed usage of template_name in tutorial part 4.Tim Graham
2013-09-22Fixed #21141 -- Update Sphinx URLRogério Yokomizo
Updated Sphinx URL from http://sphinx.pocoo.org/ to http://sphinx-doc.org/.
2013-09-18Fixed #21116 -- Made usage of manage.py in docs more consistent.Tim Graham
Thanks daniel.quattro at gmail.com for the report.
2013-09-17Updated examples in the docs after eade315d.Aymeric Augustin
2013-09-13Fixed #21094 -- Updated reuseable apps tutorial to use pip for installation.Tim Graham
Thanks ylb415 at gmail.com for the suggestion.
2013-09-10Fixed #21083 - Fixed spelling in tutorial.Tim Graham
Thanks jimmy.kjaersgaard at gmail.com for the report.
2013-09-09Fixed #19885 -- cleaned up the django.test namespaceKevin Christopher Henry
* override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion.
2013-09-07Fixed #20876 -- Changed Poll model name in tutorial to QuestionRodolfo
2013-08-28Fixed #20983 -- Updated package classifiers in reuseable apps tutorial.Tim Graham
Thanks Cloudream for the report.
2013-08-19Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: docs/ref/django-admin.txt
2013-08-15Fixed #20891 -- Removed part of the tutorial that requires pytzTim Graham
Thanks AtomicSpark for the report.
2013-08-15Fixed some ReST errors regarding backticksTim Graham
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt
2013-08-06Fixed #20852 - Fixed incorrectly generated left quotes in docs.Dominic Rodger
Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">‘" in the generated HTML.
2013-08-04Fixed #20858 -- Removed erroneous import in tutorial 2.Tim Graham
Thanks AtomicSpark.
2013-08-01Fixed #20667 - Removed discussion of DEBUG from tutorial.Tim Graham
Forward-port of 3493f18d78 from master.
2013-07-25More migration docs, and conversion of all easy syncdb referencesAndrew Godwin
2013-07-18Fixed #20763 -- Typo in tutorial 3.Tim Graham
Thanks crichard@ for the report.
2013-07-14Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham
2013-07-09Fixed #18261 -- Clarified 'project root directory'SusanTan
2013-07-05Fixed #20224 -- Update docs examples which mention __unicode__Claude Paroz
Thanks Marc Tamlyn and Tim Graham for the review.
2013-07-01Bumped minimum Python version requirement to 2.7 in Django 1.7.Aymeric Augustin
2013-07-01Stopped branding Python 3 support as experimental.Aymeric Augustin
Forward-port of 0de21a6 from stable/1.6.x.
2013-06-28Fixed missing slash in reusable apps tutorial.Baptiste Mispelon
2013-06-20Fixed error in last commit. Thanks Simon Charette.Tim Graham