Django

Code

Changeset 2958

Show
Ignore:
Timestamp:
05/21/06 23:48:44 (2 years ago)
Author:
adrian
Message:

Added docs/sites.txt -- documentation on the sites framework

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/add_ons.txt

    r2956 r2958  
    7878A light framework that lets you operate multiple Web sites off of the same 
    7979database and Django installation. It gives you hooks for associating objects to 
    80 one or more sites. This is not yet documented. 
     80one or more sites. 
     81 
     82See the `sites documentation`_. 
     83 
     84.. _sites documentation: http://www.djangoproject.com/documentation/sites/ 
    8185 
    8286syndication 
  • django/trunk/docs/authentication.txt

    r2954 r2958  
    356356      a query string, too. 
    357357    * ``site_name``: The name of the current ``Site``, according to the 
    358       ``SITE_ID`` setting. 
     358      ``SITE_ID`` setting. See the `site framework docs`_. 
    359359 
    360360Here's a sample ``registration/login.html`` template you can use as a starting 
     
    383383 
    384384.. _forms documentation: http://www.djangoproject.com/documentation/forms/ 
     385.. _site framework docs: http://www.djangoproject.com/documentation/sites/ 
    385386 
    386387Limiting access to logged-in users that pass a test 
  • django/trunk/docs/settings.txt

    r2932 r2958  
    620620and a single database can manage content for multiple sites. 
    621621 
     622See the `site framework docs`_. 
     623 
     624.. _site framework docs: http://www.djangoproject.com/documentation/sites/ 
     625 
    622626TEMPLATE_CONTEXT_PROCESSORS 
    623627---------------------------