Ticket #12880: qualified_names.diff

File qualified_names.diff, 2.2 KB (added by Peter Sagerson, 14 years ago)

rev 12438

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

     
    7676Attributes
    7777~~~~~~~~~~
    7878
    79 .. attribute:: RemoteUserBackend.create_unknown_user
     79.. attribute:: django.contrib.backends.RemoteUserBackend.create_unknown_user
    8080
    8181    ``True`` or ``False``.  Determines whether or not a
    8282    :class:`~django.contrib.auth.models.User` object is created if not already
     
    8585Methods
    8686~~~~~~~
    8787
    88 .. method:: RemoteUserBackend.clean_username(username)
     88.. method:: django.contrib.backends.RemoteUserBackend.clean_username(username)
    8989
    9090   Performs any cleaning on the ``username`` (e.g. stripping LDAP DN
    9191   information) prior to using it to get or create a
    9292   :class:`~django.contrib.auth.models.User` object.  Returns the cleaned
    9393   username.
    9494
    95 .. method:: RemoteUserBackend.configure_user(user)
     95.. method:: django.contrib.backends.RemoteUserBackend.configure_user(user)
    9696
    9797   Configures a newly created user.  This method is called immediately after a
    9898   new user is created, and can be used to perform custom setup actions, such
  • docs/topics/db/transactions.txt

     
    171171
    172172Savepoints are controlled by three methods on the transaction object:
    173173
    174 .. method:: transaction.savepoint()
     174.. method:: django.db.transaction.savepoint()
    175175
    176176    Creates a new savepoint. This marks a point in the transaction that
    177177    is known to be in a "good" state.
    178178
    179179    Returns the savepoint ID (sid).
    180180
    181 .. method:: transaction.savepoint_commit(sid)
     181.. method:: django.db.transaction.savepoint_commit(sid)
    182182
    183183    Updates the savepoint to include any operations that have been performed
    184184    since the savepoint was created, or since the last commit.
    185185
    186 .. method:: transaction.savepoint_rollback(sid)
     186.. method:: django.db.transaction.savepoint_rollback(sid)
    187187
    188188    Rolls the transaction back to the last point at which the savepoint was
    189189    committed.
Back to Top