Ticket #12880: 12880.diff
File 12880.diff, 1.0 KB (added by , 15 years ago) |
---|
-
docs/howto/auth-remote-user.txt
4 4 Authentication using ``REMOTE_USER`` 5 5 ==================================== 6 6 7 .. currentmodule:: django.contrib.backends 8 7 9 This document describes how to make use of external authentication sources 8 10 (where the Web server sets the ``REMOTE_USER`` environment variable) in your 9 11 Django applications. This type of authentication solution is typically seen on -
docs/topics/db/transactions.txt
4 4 Managing database transactions 5 5 ============================== 6 6 7 .. currentmodule:: django.db 8 7 9 Django gives you a few ways to control how database transactions are managed, 8 10 if you're using a database that supports transactions. 9 11