Ticket #12880: 12880.diff

File 12880.diff, 1.0 KB (added by Tim Graham, 14 years ago)

patch using currentmodule directive

  • docs/howto/auth-remote-user.txt

     
    44Authentication using ``REMOTE_USER``
    55====================================
    66
     7.. currentmodule:: django.contrib.backends
     8
    79This document describes how to make use of external authentication sources
    810(where the Web server sets the ``REMOTE_USER`` environment variable) in your
    911Django applications.  This type of authentication solution is typically seen on
  • docs/topics/db/transactions.txt

     
    44Managing database transactions
    55==============================
    66
     7.. currentmodule:: django.db
     8
    79Django gives you a few ways to control how database transactions are managed,
    810if you're using a database that supports transactions.
    911
Back to Top