Changeset 5488 for django/branches/per-object-permissions/docs/faq.txt
- Timestamp:
- 06/17/07 17:18:54 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/per-object-permissions/docs/faq.txt
r3940 r5488 64 64 application layer. And it ships with a simple-yet-powerful `cache framework`_. 65 65 66 .. _`cache framework`: http://www.djangoproject.com/documentation/cache/66 .. _`cache framework`: ../cache/ 67 67 68 68 Who's behind this? … … 192 192 We've documented our philosophies on the `design philosophies page`_. 193 193 194 .. _design philosophies page: http://www.djangoproject.com/documentation/design_philosophies/194 .. _design philosophies page: ../design_philosophies/ 195 195 196 196 Do you have any of those nifty "screencast" things? … … 278 278 279 279 .. _`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: ../ 283 283 .. _ask questions: http://www.djangoproject.com/community/ 284 284 … … 329 329 Although we recommend mod_python for production use, you don't have to use it, 330 330 thanks 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. 331 talk to any WSGI-enabled server. Other non-mod_python deployment setups are 332 FastCGI, SCGI or AJP. See `How to use Django with FastCGI, SCGI or AJP`_ for 333 full information. 333 334 334 335 Also, see the `server arrangements wiki page`_ for other deployment strategies. … … 338 339 339 340 .. _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/ 341 342 .. _server arrangements wiki page: http://code.djangoproject.com/wiki/ServerArrangements 342 343 … … 382 383 383 384 * 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). 387 388 388 389 * The module doesn't contain syntax errors (of course). … … 465 466 Yes. See `Integrating with a legacy database`_. 466 467 467 .. _`Integrating with a legacy database`: http://www.djangoproject.com/documentation/legacy_databases/468 .. _`Integrating with a legacy database`: ../legacy_databases/ 468 469 469 470 If I make changes to a model, how do I update the database? … … 512 513 contain arbitrary SQL, so you can make any sorts of changes you need to make. 513 514 514 .. _SQL initial data file: http://www.djangoproject.com/documentation/model_api/#providing-initial-sql-data515 .. _SQL initial data file: ../model-api/#providing-initial-sql-data 515 516 516 517 Why is Django leaking memory? … … 593 594 documentation. 594 595 595 .. _serving the admin files: http://www.djangoproject.com/documentation/modpython/#serving-the-admin-files596 .. _serving the admin files: ../modpython/#serving-the-admin-files 596 597 597 598 My "list_filter" contains a ManyToManyField, but the filter doesn't display. … … 631 632 `guide to the CSS used in the admin`_ to get you started. 632 633 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/ 634 635 635 636 How do I create users without having to edit password hashes? … … 641 642 You can also use the Python API. See `creating users`_ for full info. 642 643 643 .. _creating users: http://www.djangoproject.com/documentation/authentication/#creating-users644 .. _creating users: ../authentication/#creating-users 644 645 645 646 Contributing code … … 652 653 It's titled `Contributing to Django`_. 653 654 654 .. _Contributing to Django: http://www.djangoproject.com/documentation/contributing/655 .. _Contributing to Django: ../contributing/ 655 656 656 657 I submitted a bug fix in the ticket system several weeks ago. Why are you ignoring my patch?
