summaryrefslogtreecommitdiff
path: root/docs/intro
AgeCommit message (Collapse)Author
2014-08-26[1.7.x] Fixed #23362 -- Clarified "database columns as attributes" in tutorial.Tim Graham
Backport of 035f2e699c from master
2014-08-18[1.7.x] Fixed #23303 -- Added BEGIN and COMMIT statements to the output of ↵Baptiste Mispelon
sqlmigrate. Backport of 5853c87a458f62ebd62d7809168355610de2570c from master. Conflicts: django/core/management/commands/sqlmigrate.py tests/user_commands/tests.py
2014-08-12[1.7.x] Refs #23276: Removed bad examples of passing views as strings to url()Collin Anderson
partial backport of a9fd740d22 from master
2014-08-05[1.7.x] Updated links for continous integration server.Tim Graham
Backport of 21d0ceefb5 from master
2014-08-02[1.7.x] Fixed #23148 -- Minor tweaks in tutorial code samplesErik Romijn
Backport of e075d2e66baae98c5b5c06bff384665ab50e0223 from master.
2014-07-22[1.7.x] Added warning in tutorial 4 that the regex capture group name has ↵Rikki
changed. Backport of 731f313d60 from master
2014-07-16[1.7.x] Edited setup.py in reuseable apps tutorial to use a context manager ↵Dean Silfen
for open(). Backport of b8d255071e from master
2014-07-01[1.7.x] Included irc link in paragraph to allow for l10nClaude Paroz
Translators may want to change the irc link pointing to a language-specific channel. Backport of 232f2028d5 from master.
2014-06-27[1.7.x] Fixed #22912 -- Warned about a common mistake in tutorial 5.Tim Graham
Backport of 1e8411259f from master
2014-06-23[1.7.x] Fixed #22888 -- Removed some unnecessary text in tutorial 3.Tim Graham
Backport of 1bbffe7867 from master
2014-06-20[1.7.x] Fixed #22836 -- Linked tutorial05 to the right section of tutorial04.Maxime Turcotte
Backport of 608aa8d101 from master
2014-06-16[1.7.x] Fixed #22842vagrant
Backport of 7a1f8414c3b71b6af03e5be9f5f8db115551c410 from master.
2014-06-10[1.7.x] Fixed #22801 -- Added 'www.' to diveintopython.net linksMaxime Turcotte
Backport of f97c53c098 from master
2014-06-10[1.7.x] Fixed #22770 -- Removed create_superuser from post_migrate signals.Tim Graham
Moved logic to syncdb command for backwards compatibility. Backport of 93d05536fd from master
2014-05-05[1.7.x] Reordered tutorial 1 so that the database is configured first.Tom
This change is required after the introduction of SessionAuthenticationMiddleware to the default middleware Backport of 6923fdbbf1 from master
2014-05-02[1.7.x] Fixed #22558 -- Added missing word in contributing docsBrenda J. Butler
Backport of c8d257e81 from master.
2014-04-30[1.7.x] Fixed #22547 -- Added some links to tutorial 2.Tim Graham
Thanks bjb at sourcer.ca for the suggestion. Backport of b0d032f9fc from master
2014-04-30[1.7.x] Fixed #22546 -- Removed idioms in tutorial 2.Moayad Mardini
Thanks bjb at sourcerer.ca for the suggestion. Backport of 927245ccd8 from master
2014-04-26[1.7.x] Updated doc links to point to Python 3 documentationClaude Paroz
Backport of 680a0f08b from master.
2014-04-18[1.7.x] Fixed #22472 -- Clarified meaning of dots in tutorial 4 code block.Tim Graham
Backport of 6b2ce38c49 from master
2014-04-16[1.7.x] Fixed #22453 -- Corrected DoesNotExist message in docs.Tim Graham
Thanks Eugenio Cano-Manuel. Backport of eefad142de from master
2014-04-08[1.7.x] Added Python 3.4 to list of supported version in docs/intro/install.txtTim Graham
Backport of a1fa6fcabc from master
2014-03-09Substituted 'shortcut function' for 'factory method' in tutorialJeremy Dunck
Many newbies don't know what a factory method is, nor is it pertinent to the information the tutorial hopes to convey.
2014-03-02Fixed some typos in the documentation.Baptiste Mispelon
Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch.
2014-02-28Fixed spelling mistakes in docs.Tim Graham
2014-02-28Fixed #22129 -- Added steps for creating superusers to tutorial.Greg Chapple
2014-02-25Fixed docs typos.Szczepan Cieślik
2014-02-16Fixed #21939 -- Deprecated loading ssi/url tags from future.Zbigniew Siciarz
2014-02-14Added missing snippet to show filename in docsAlasdair Nicol
2014-02-13Fixed #21951 -- Updated docs to use __str__ for Python 3Alasdair Nicol
Thanks Tim Graham for the report and recommendations
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