Ticket #8701: 8701.diff

File 8701.diff, 3.8 KB (added by Thejaswi Puthraya, 16 years ago)

removed many documented references, few more to go

  • docs/intro/whatsnext.txt

    diff --git a/docs/intro/whatsnext.txt b/docs/intro/whatsnext.txt
    index 012bfe3..3c0c86e 100644
    a b On the Web  
    110110----------
    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/ . 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
    116116additions, and they discuss the latest Django features, which may only be
    We follow this policy:  
    232232    * The `main documentation Web page`_ includes links to documentation for
    233233      all previous versions.
    234234
    235 .. _main documentation Web page: http://www.djangoproject.com/documentation/
     235.. _main documentation Web page: http://docs.djangoproject.com/
  • docs/man/daily_cleanup.1

    diff --git a/docs/man/daily_cleanup.1 b/docs/man/daily_cleanup.1
    index 9186dd6..444d4d0 100644
    a b It should be in Python-import form, e.g. "myproject.settings".  
    2222.SH "SEE ALSO"
    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"
    2828Originally developed at World Online in Lawrence, Kansas, USA. Refer to the
  • docs/man/django-admin.1

    diff --git a/docs/man/django-admin.1 b/docs/man/django-admin.1
    index 7f65fd0..fad66a9 100644
    a b It should be in Python-import form, e.g. "myproject.settings".  
    168168Full descriptions of all these options, with examples, as well as documentation
    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/
    172172.sp
    173173or in the distributed documentation.
    174174.SH "AUTHORS/CREDITS"
  • docs/topics/db/models.txt

    diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
    index e22660a..fd30b81 100644
    a b The basics:  
    2222
    2323.. seealso::
    2424
    25     A companion to this document is the `official repository of model
    26     examples`_. (In the Django source distribution, these examples are in the
     25    A companion to this document is the official repository of model
     26    examples. (In the Django source distribution, these examples are in the
    2727    ``tests/modeltests`` directory.)
    2828
    29     .. _official repository of model examples: http://www.djangoproject.com/documentation/models/
    30 
    3129Quick example
    3230=============
    3331
    whatever you want. For example::  
    298296        company_that_makes_it = models.ForeignKey(Manufacturer)
    299297        # ...
    300298
    301 .. seealso::
    302 
    303     See the `Many-to-one relationship model example`_ for a full example.
    304 
    305 .. _Many-to-one relationship model example: http://www.djangoproject.com/documentation/models/many_to_one/
    306 
    307299:class:`~django.db.models.ForeignKey` fields also accept a number of extra
    308300arguments which are explained in :ref:`the model field reference
    309301<foreign-key-arguments>`. These options help define how the relationship should
    because it's more natural to think about a ``Pizza`` having toppings than a  
    353345topping being on multiple pizzas. The way it's set up above, the ``Pizza`` admin
    354346form would let users select the toppings.
    355347
    356 .. seealso::
    357 
    358     See the `Many-to-many relationship model example`_ for a full example.
    359 
    360 .. _Many-to-many relationship model example: http://www.djangoproject.com/documentation/models/many_to_many/
    361 
    362348:class:`~django.db.models.ManyToManyField` fields also accept a number of extra
    363349arguments which are explained in :ref:`the model field reference
    364350<manytomany-arguments>`. These options help define how the relationship should
Back to Top