Ticket #18261: 18261.2.patch

File 18261.2.patch, 1.8 KB (added by Tim Graham, 11 years ago)
  • docs/intro/tutorial01.txt

    diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
    index 6e5988b..3f6cf71 100644
    a b Let's look at what :djadmin:`startproject` created::  
    9999
    100100These files are:
    101101
    102 * The outer :file:`mysite/` directory is just a container for your
     102* The outer :file:`mysite/` project root directory is just a container for your
    103103  project. Its name doesn't matter to Django; you can rename it to anything
    104104  you like.
    105105
    These files are:  
    107107  Django project in various ways. You can read all the details about
    108108  :file:`manage.py` in :doc:`/ref/django-admin`.
    109109
    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``).
     110* The inner :file:`mysite/` directory, also known as the project module, is the
     111  actual Python package for your project. Its name is the Python package name
     112  you'll need to use to reference anything inside it (e.g. ``mysite.urls``).
    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
  • docs/topics/i18n/translation.txt

    diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
    index 80925d7..0d51bac 100644
    a b German.  
    12381238
    12391239The script should be run from one of two places:
    12401240
    1241 * The root directory of your Django project.
    1242 * The root directory of your Django app.
     1241* The root directory of your Django project (the one that contains
     1242  ``manage.py``).
     1243* The root directory of one of your Django apps.
    12431244
    12441245The script runs over your project source tree or your application source tree
    12451246and pulls out all strings marked for translation (see
Back to Top