Django

Code

Show
Ignore:
Timestamp:
06/17/07 17:18:54 (2 years ago)
Author:
clong
Message:

per-object-permissions: Merged to trunk [5486] NOTE: Not fully tested, will be working on this over the next few weeks.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/per-object-permissions/docs/faq.txt

    r3940 r5488  
    6464application layer. And it ships with a simple-yet-powerful `cache framework`_. 
    6565 
    66 .. _`cache framework`: http://www.djangoproject.com/documentation/cache/ 
     66.. _`cache framework`: ../cache/ 
    6767 
    6868Who's behind this? 
     
    192192We've documented our philosophies on the `design philosophies page`_. 
    193193 
    194 .. _design philosophies page: http://www.djangoproject.com/documentation/design_philosophies/ 
     194.. _design philosophies page: ../design_philosophies/ 
    195195 
    196196Do you have any of those nifty "screencast" things? 
     
    278278 
    279279.. _`Download the code`: http://www.djangoproject.com/download/ 
    280 .. _`installation guide`: http://www.djangoproject.com/documentation/install/ 
    281 .. _tutorial:  http://www.djangoproject.com/documentation/tutorial1/ 
    282 .. _documentation: http://www.djangoproject.com/documentation
     280.. _`installation guide`: ../install/ 
     281.. _tutorial:  ../tutorial01/ 
     282.. _documentation: ..
    283283.. _ask questions: http://www.djangoproject.com/community/ 
    284284 
     
    329329Although we recommend mod_python for production use, you don't have to use it, 
    330330thanks to the fact that Django uses an arrangement called WSGI_. Django can 
    331 talk to any WSGI-enabled server. The most common non-mod_python deployment 
    332 setup is FastCGI. See `How to use Django with FastCGI`_ for full information. 
     331talk to any WSGI-enabled server. Other non-mod_python deployment setups are 
     332FastCGI, SCGI or AJP. See `How to use Django with FastCGI, SCGI or AJP`_ for 
     333full information. 
    333334 
    334335Also, see the `server arrangements wiki page`_ for other deployment strategies. 
     
    338339 
    339340.. _WSGI: http://www.python.org/peps/pep-0333.html 
    340 .. _How to use Django with FastCGI: http://www.djangoproject.com/documentation/fastcgi/ 
     341.. _How to use Django with FastCGI, SCGI or AJP: ../fastcgi/ 
    341342.. _server arrangements wiki page: http://code.djangoproject.com/wiki/ServerArrangements 
    342343 
     
    382383 
    383384    * The environment variable DJANGO_SETTINGS_MODULE is set to a fully-qualified 
    384       Python module (i.e. "mysite.settings.main"). 
    385  
    386     * Said module is on ``sys.path`` (``import mysite.settings.main`` should work). 
     385      Python module (i.e. "mysite.settings"). 
     386 
     387    * Said module is on ``sys.path`` (``import mysite.settings`` should work). 
    387388 
    388389    * The module doesn't contain syntax errors (of course). 
     
    465466Yes. See `Integrating with a legacy database`_. 
    466467 
    467 .. _`Integrating with a legacy database`: http://www.djangoproject.com/documentation/legacy_databases/ 
     468.. _`Integrating with a legacy database`: ../legacy_databases/ 
    468469 
    469470If I make changes to a model, how do I update the database? 
     
    512513contain arbitrary SQL, so you can make any sorts of changes you need to make. 
    513514 
    514 .. _SQL initial data file: http://www.djangoproject.com/documentation/model_api/#providing-initial-sql-data 
     515.. _SQL initial data file: ../model-api/#providing-initial-sql-data 
    515516 
    516517Why is Django leaking memory? 
     
    593594documentation. 
    594595 
    595 .. _serving the admin files: http://www.djangoproject.com/documentation/modpython/#serving-the-admin-files 
     596.. _serving the admin files: ../modpython/#serving-the-admin-files 
    596597 
    597598My "list_filter" contains a ManyToManyField, but the filter doesn't display. 
     
    631632`guide to the CSS used in the admin`_ to get you started. 
    632633 
    633 .. _`guide to the CSS used in the admin`: http://www.djangoproject.com/documentation/admin_css/ 
     634.. _`guide to the CSS used in the admin`: ../admin_css/ 
    634635 
    635636How do I create users without having to edit password hashes? 
     
    641642You can also use the Python API. See `creating users`_ for full info. 
    642643 
    643 .. _creating users: http://www.djangoproject.com/documentation/authentication/#creating-users 
     644.. _creating users: ../authentication/#creating-users 
    644645 
    645646Contributing code 
     
    652653It's titled `Contributing to Django`_. 
    653654 
    654 .. _Contributing to Django: http://www.djangoproject.com/documentation/contributing/ 
     655.. _Contributing to Django: ../contributing/ 
    655656 
    656657I submitted a bug fix in the ticket system several weeks ago. Why are you ignoring my patch?