Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/intro/tutorial01.txt
Commit message (Collapse)AuthorAgeFilesLines
* Made a couple tutorial corrections for Django 1.9.Tim Graham2015-10-011-2/+4
|
* Updated Wikipedia links to use httpsClaude Paroz2015-08-081-1/+1
|
* Removed support for Python 3.3.Tim Graham2015-06-181-1/+1
|
* Fixed #21927 -- Made application and instance namespaces ↵Marten Kenbeek2015-06-081-5/+5
| | | | | | | | more distinct. Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
* Added migrations directory to file structure in tutorialEdin Sarajlic2015-06-041-0/+2
|
* Fixed #24732 -- Reordered tutorial to cover basics ↵João Luiz Lorencetti2015-05-281-545/+107
| | | | before bells and whistles.
* Made minor edits to docs/intro/tutorial01.textI am Clinton2015-05-191-9/+9
|
* Fixed #24550 -- Added migration operation description to ↵Markus Holtermann2015-03-301-1/+10
| | | | | | sqlmigrate output Thanks Tim Graham for the review.
* Improved wording in tutorial 1.Alex Shaindlin2015-02-271-2/+2
|
* Corrected sqlmigrate output in tutorial 1.Tim Graham2015-02-221-14/+11
|
* Fixed #24371 -- Cautioned against trying to switch ↵Tim Graham2015-02-221-1/+3
| | | | databases.
* Fixed #24358 -- Corrected code-block directives for ↵Sean Wang2015-02-221-11/+11
| | | | console sessions.
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-2/+2
|
* Removed support for syncing apps without migrations per ↵Tim Graham2015-01-181-7/+4
| | | | | | | deprecation timeline. Kept support for creating models without migrations when running tests (especially for Django's test suite).
* Removed support for custom SQL per deprecation timeline.Tim Graham2015-01-171-2/+0
|
* Removed compatibility with Python 3.2.Tim Graham2015-01-171-1/+1
|
* Fixed typo in docs/intro/tutorial01.txt.Brian Scoles2014-12-251-1/+1
|
* Used https for most *.python.org linksClaude Paroz2014-12-191-2/+2
|
* Fixed #23486 -- Corrected makemigrations output in ↵Tim Graham2014-09-161-0/+1
| | | | | | tutorial 1. Thanks nmarler for the report.
* Removed an admonition in the tutorial about the old ↵Tim Graham2014-09-051-7/+0
| | | | | | project layout. There are no supported versions that use the old layout (<=1.3).
* Fixed #23362 -- Clarified "database columns as ↵Tim Graham2014-08-261-1/+1
| | | | attributes" in tutorial.
* Removed unnecessary code-block directives.areski2014-08-191-3/+5
|
* Fixed #23303 -- Added BEGIN and COMMIT statements to the ↵Baptiste Mispelon2014-08-181-0/+2
| | | | output of sqlmigrate.
* Fixed #23148 -- Minor tweaks in tutorial code samplesCollin Anderson2014-08-021-1/+4
|
* Fixed #23067 -- Updated docs to use django-adminChristoph Heer2014-07-301-4/+4
|
* Included irc link in paragraph to allow for l10nClaude Paroz2014-07-011-4/+3
| | | | | Translators may want to change the irc link pointing to a language-specific channel.
* Fixed #22770 -- Removed create_superuser from ↵Tim Graham2014-06-101-34/+1
| | | | | | post_migrate signals. Moved logic to syncdb command for backwards compatibility.
* Reordered tutorial 1 so that the database is configured ↵Tom2014-05-051-66/+66
| | | | | | | first. This change is required after the introduction of SessionAuthenticationMiddleware to the default middleware
* Updated doc links to point to Python 3 documentationClaude Paroz2014-04-261-1/+1
|
* Fixed #22453 -- Corrected DoesNotExist message in docs.Tim Graham2014-04-161-1/+1
| | | | Thanks Eugenio Cano-Manuel.
* Fixed spelling mistakes in docs.Tim Graham2014-03-011-3/+3
|
* Fixed #22129 -- Added steps for creating superusers to ↵Greg Chapple2014-02-281-5/+34
| | | | tutorial.
* Fixed #21951 -- Updated docs to use __str__ for Python 3Alasdair Nicol2014-02-131-1/+1
| | | | Thanks Tim Graham for the report and recommendations
* Fixed #21829 -- Added default AppConfigs.Aymeric Augustin2014-01-251-8/+1
| | | | | Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion.
* Fixed #16905 -- Added extensible checks (nee validation) ↵Russell Keith-Magee2014-01-201-3/+3
| | | | | | | | | | | framework 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.
* Fixed #21712 -- Moved autodiscover() to AdminConfig.ready().Aymeric Augustin2014-01-181-1/+8
| | | | Thanks Marc Tamlyn for the initial version of the patch.
* Fixed a broken link in docs/intro/tutorial01.txt.Tim Graham2013-12-301-1/+1
|
* Stopped populating the app registry as a side effect.Aymeric Augustin2013-12-301-3/+13
| | | | | | | 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.
* Assumed Python 3 throughout docs/intro.Aymeric Augustin2013-12-301-46/+36
| | | | Various small fixes while I was proof-reading.
* Unified listing of shell commands/codeYaroslav Halchenko2013-12-251-7/+14
| | | | | - use code-block:: bash - prefix the command with $
* Update tutorial part 1 to discuss migrations properlyAndrew Godwin2013-11-271-50/+104
|
* Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs.Loic Bistuer2013-11-211-9/+9
|
* Fixed #20910 -- Added a "snippet" sphinx directive to ↵M Nasimul Haque2013-10-141-4/+16
| | | | | | allow prefixing a filename. Thanks Marc Tamlyn for the suggestion.
* Fixed #21210 -- Documented when runserver doesn't ↵Bouke Haarsma2013-10-141-0/+8
| | | | | | auto-restart. Thanks gergely at polonkai.eu for the suggestion.
* Fixed #21213 -- Added docs for Django's mailing lists.Unai Zalakain2013-10-041-2/+1
| | | | | | | | | | 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.
* Fixed #21116 -- Made usage of manage.py in docs more ↵Tim Graham2013-09-181-7/+7
| | | | | | consistent. Thanks daniel.quattro at gmail.com for the report.
* Updated examples in the docs after eade315d.Aymeric Augustin2013-09-171-5/+5
|
* Fixed #20876 -- Changed Poll model name in tutorial to ↵Rodolfo2013-09-071-67/+69
| | | | Question
* Fixed some ReST errors regarding backticksTim Graham2013-08-151-1/+1
|
* Fixed #18261 -- Clarified 'project root directory'SusanTan2013-07-091-2/+2
|