Ticket #18261: 18261.patch

File 18261.patch, 1.7 KB (added by Susan Tan, 11 years ago)

A small doc patch for tutorial01.txt.

  • docs/intro/tutorial01.txt

    From 5401179e3137fa2f92ef527625e8955a9474df0f Mon Sep 17 00:00:00 2001
    From: SusanTan
    Date: Sat, 6 Jul 2013 19:43:42 -0700
    Subject: [PATCH] Fixed #18261 Clarified outer and inner directory in
     tutorial1.txt
    
    ---
     docs/intro/tutorial01.txt | 10 +++++-----
     1 file changed, 5 insertions(+), 5 deletions(-)
    
    diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
    index 6e5988b..6d5ec46 100644
    a b These files are:  
    101101
    102102* The outer :file:`mysite/` directory is just a container for your
    103103  project. Its name doesn't matter to Django; you can rename it to anything
    104   you like.
     104  you like. This outer directory can also be referred to as the "project root", "workspace", or "container".
    105105
    106106* :file:`manage.py`: A command-line utility that lets you interact with this
    107107  Django project in various ways. You can read all the details about
    108   :file:`manage.py` in :doc:`/ref/django-admin`.
     108  :file:`manage.py` in :doc:`/ref/django-admin`. In general, most command lines
     109  will be run in the directory containing manage.py.
    109110
    110 * The inner :file:`mysite/` directory is the actual Python package for your
    111   project. Its name is the Python package name you'll need to use to import
    112   anything inside it (e.g. ``import mysite.settings``).
     111* The inner :file:`mysite/` directory, also known as the project module, is the
     112  actual Python package for your project. Its name is the Python package name you'll need to use to import anything inside it (e.g. ``import mysite.settings``).
    113113
    114114* :file:`mysite/__init__.py`: An empty file that tells Python that this
    115115  directory should be considered a Python package. (Read `more about
Back to Top