Ticket #12880: qualified_names.diff
File qualified_names.diff, 2.2 KB (added by , 15 years ago) |
---|
-
docs/howto/auth-remote-user.txt
76 76 Attributes 77 77 ~~~~~~~~~~ 78 78 79 .. attribute:: RemoteUserBackend.create_unknown_user79 .. attribute:: django.contrib.backends.RemoteUserBackend.create_unknown_user 80 80 81 81 ``True`` or ``False``. Determines whether or not a 82 82 :class:`~django.contrib.auth.models.User` object is created if not already … … 85 85 Methods 86 86 ~~~~~~~ 87 87 88 .. method:: RemoteUserBackend.clean_username(username)88 .. method:: django.contrib.backends.RemoteUserBackend.clean_username(username) 89 89 90 90 Performs any cleaning on the ``username`` (e.g. stripping LDAP DN 91 91 information) prior to using it to get or create a 92 92 :class:`~django.contrib.auth.models.User` object. Returns the cleaned 93 93 username. 94 94 95 .. method:: RemoteUserBackend.configure_user(user)95 .. method:: django.contrib.backends.RemoteUserBackend.configure_user(user) 96 96 97 97 Configures a newly created user. This method is called immediately after a 98 98 new user is created, and can be used to perform custom setup actions, such -
docs/topics/db/transactions.txt
171 171 172 172 Savepoints are controlled by three methods on the transaction object: 173 173 174 .. method:: transaction.savepoint()174 .. method:: django.db.transaction.savepoint() 175 175 176 176 Creates a new savepoint. This marks a point in the transaction that 177 177 is known to be in a "good" state. 178 178 179 179 Returns the savepoint ID (sid). 180 180 181 .. method:: transaction.savepoint_commit(sid)181 .. method:: django.db.transaction.savepoint_commit(sid) 182 182 183 183 Updates the savepoint to include any operations that have been performed 184 184 since the savepoint was created, or since the last commit. 185 185 186 .. method:: transaction.savepoint_rollback(sid)186 .. method:: django.db.transaction.savepoint_rollback(sid) 187 187 188 188 Rolls the transaction back to the last point at which the savepoint was 189 189 committed.