Django

Code

Changeset 8857

Show
Ignore:
Timestamp:
09/02/08 11:42:13 (3 months ago)
Author:
jacob
Message:

Cleaned up a bunch of minor doc stuff:

  • Removed flatpages/redirects README; no other contrib apps have those.
  • Cleaned up top-level README to be more readable.
  • Removed outdated references to old docs (Fixes #8701)
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/conf/global_settings.py

    r8640 r8857  
    258258 
    259259# Default formatting for date objects. See all available format strings here: 
    260 # http://www.djangoproject.com/documentation/templates/#now 
     260# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 
    261261DATE_FORMAT = 'N j, Y' 
    262262 
    263263# Default formatting for datetime objects. See all available format strings here: 
    264 # http://www.djangoproject.com/documentation/templates/#now 
     264# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 
    265265DATETIME_FORMAT = 'N j, Y, P' 
    266266 
    267267# Default formatting for time objects. See all available format strings here: 
    268 # http://www.djangoproject.com/documentation/templates/#now 
     268# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 
    269269TIME_FORMAT = 'P' 
    270270 
    271271# Default formatting for date objects when only the year and month are relevant. 
    272272# See all available format strings here: 
    273 # http://www.djangoproject.com/documentation/templates/#now 
     273# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 
    274274YEAR_MONTH_FORMAT = 'F Y' 
    275275 
    276276# Default formatting for date objects when only the month and day are relevant. 
    277277# See all available format strings here: 
    278 # http://www.djangoproject.com/documentation/templates/#now 
     278# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 
    279279MONTH_DAY_FORMAT = 'F j' 
    280280 
  • django/trunk/docs/intro/whatsnext.txt

    r8843 r8857  
    111111 
    112112The most recent version of the Django documentation lives at 
    113 http://www.djangoproject.com/documentation/ . These HTML pages are generated 
     113http://docs.djangoproject.com/en/dev/. These HTML pages are generated 
    114114automatically from the text files in source control. That means they reflect the 
    115115"latest and greatest" in Django -- they include the very latest corrections and 
     
    232232      all previous versions. 
    233233 
    234 .. _main documentation Web page: http://www.djangoproject.com/documentation
     234.. _main documentation Web page: http://docs.djangoproject.com/en/dev
  • django/trunk/docs/man/daily_cleanup.1

    r7294 r8857  
    2323The sessions documentation: 
    2424.sp 
    25 .I http://www.djangoproject.com/documentation/sessions/ 
     25.I http://docs.djangoproject.com/en/dev/topics/http/sessions/ 
    2626 
    2727.SH "AUTHORS/CREDITS" 
  • django/trunk/docs/man/django-admin.1

    r8548 r8857  
    169169for the rest of the Django framework, can be found on the Django site: 
    170170.sp 
    171 .I http://www.djangoproject.com/documentation
     171.I http://docs.djangoproject.com/en/dev
    172172.sp 
    173173or in the distributed documentation. 
  • django/trunk/docs/releases/1.0-alpha-1.txt

    r8506 r8857  
    3434    documentation for the admin application is available online in the 
    3535    official Django documentation: 
    36      
    37         http://www.djangoproject.com/documentation/admin/ 
     36 
     37        :ref:`admin reference <ref-contrib-admin>` 
    3838 
    3939Improved Unicode handling 
     
    4545    Unicode gracefully. Details are available in Django's 
    4646    Unicode-handling documentation: 
    47      
    48          http://www.djangoproject.com/documentation/unicode/ 
     47 
     48         :ref:`unicode reference <ref-unicode>` 
    4949 
    5050An improved Django ORM 
     
    6969    marked as safe (requiring no escaping) or unsafe (requiring 
    7070    escaping). A full guide to this feature is in the documentation 
    71     for the Django template system: 
    72      
    73         http://www.djangoproject.com/documentation/templates/#automatic-html-escaping 
     71    for the :ttag:`autoescape` tag. 
    7472 
    7573There are many more new features, many bugfixes and many enhancements 
     
    8886changes is also available on the Django wiki for those who want to 
    8987begin developing and testing their upgrade process: 
    90      
     88 
    9189    http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges 
    9290 
     
    159157contribute to Django: 
    160158 
    161     http://www.djangoproject.com/documentation/contributing/ 
     159    :ref:`contributing to Django <internals-contributing>` 
    162160 
    163161Contributions on any level -- developing code, writing 
  • django/trunk/docs/releases/1.0-alpha-2.txt

    r8506 r8857  
    132132contribute to Django: 
    133133 
    134     http://www.djangoproject.com/documentation/contributing/ 
     134    :ref:`contributing to Django <internals-contributing>` 
    135135 
    136136Contributions on any level -- developing code, writing 
  • django/trunk/docs/releases/1.0-beta-2.txt

    r8623 r8857  
    115115contribute to Django: 
    116116 
    117     http://www.djangoproject.com/documentation/contributing/ 
     117    :ref:`contributing to Django <internals-contributing>` 
    118118 
    119119Contributions on any level -- developing code, writing 
  • django/trunk/docs/releases/1.0-beta.txt

    r8506 r8857  
    149149contribute to Django: 
    150150 
    151     http://www.djangoproject.com/documentation/contributing/ 
     151    :ref:`contributing to Django <internals-contributing>` 
    152152 
    153153Contributions on any level -- developing code, writing 
  • django/trunk/README

    r7294 r8857  
    33 
    44All documentation is in the "docs" directory and online at 
    5 http://www.djangoproject.com/documentation/.  If you're just getting started, 
    6 here's how we recommend you read the docs: 
     5http://docs.djangoproject.com/en/dev/. If you're just getting started, here's 
     6how we recommend you read the docs: 
    77 
    8     * First, read docs/install.txt for instructions on installing Django. 
     8    * First, read docs/intro/install.txt for instructions on installing Django. 
    99 
    10     * Next, work through the tutorials in order (docs/tutorial01.txt, 
    11       docs/tutorial02.txt, etc.). 
     10    * Next, work through the tutorials in order (docs/intro/tutorial01.txt, 
     11      docs/intro/tutorial02.txt, etc.). 
    1212 
    13     * If you want to set up an actual deployment server, read docs/modpython.txt 
    14       for instructions on running Django under mod_python. 
     13    * If you want to set up an actual deployment server, read 
     14      docs/howto/deployment/modpython.txt for instructions on running Django 
     15      under mod_python. 
    1516 
    16     * The rest of the documentation is of the reference-manual variety. 
    17       Read it -- and the FAQ -- as you run into problems. 
     17    * You'll probably want to read through the topical guides (in docs/topics) 
     18      next; from there you can jump to the HOWTOs (in docs/howto) for specific 
     19      problems, and check out the reference (docs/ref) for gory details. 
    1820 
    1921Docs are updated rigorously. If you find any problems in the docs, or think they 
     
    2628 
    2729    * Join the #django channel on irc.freenode.net. Lots of helpful people 
    28       hang out there. Read the archives at http://simon.bofh.ms/logger/django/
     30      hang out there. Read the archives at http://oebfare.com/logger/django/
    2931 
    3032    * Join the django-users mailing list, or read the archives, at