~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/debug-flags.txt

  • Committer: Vincent Ladeuil
  • Date: 2009-04-27 16:10:10 UTC
  • mto: (4310.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4311.
  • Revision ID: v.ladeuil+lp@free.fr-20090427161010-7swfzeagf63cpixd
Fix bug #367726 by reverting some default user handling introduced
while fixing bug #256612.

* bzrlib/transport/ssh.py:
(_paramiko_auth): Explicitly use getpass.getuser() as default
user.

* bzrlib/transport/ftp/_gssapi.py:
(GSSAPIFtpTransport._create_connection): Explicitly use
getpass.getuser() as default user.

* bzrlib/transport/ftp/__init__.py:
(FtpTransport._create_connection): Explicitly use
getpass.getuser() as default user.

* bzrlib/tests/test_sftp_transport.py:
(TestUsesAuthConfig.test_sftp_is_none_if_no_config)
(TestUsesAuthConfig.test_sftp_doesnt_prompt_username): Revert to
None as the default user.

* bzrlib/tests/test_remote.py:
(TestRemoteSSHTransportAuthentication): The really offending one:
revert to None as the default user.

* bzrlib/tests/test_config.py:
(TestAuthenticationConfig.test_username_default_no_prompt): Update
test (and some PEP8).

* bzrlib/smtp_connection.py:
(SMTPConnection._authenticate): Revert to None as the default
user.

* bzrlib/plugins/launchpad/account.py:
(_get_auth_user): Revert default value handling.

* bzrlib/config.py:
(AuthenticationConfig.get_user): Fix doc-string. Leave default
value handling to callers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
prefix) put in the ``debug_flags`` variable in ``bazaar.conf``.
6
6
 
7
7
-Dauth            Trace authentication sections used.
8
 
-Dbytes           Print out how many bytes were transferred
9
 
-Ddirstate        Trace dirstate activity (verbose!)
10
8
-Derror           Instead of normal error handling, always print a traceback
11
9
                  on error.
12
10
-Devil            Capture call sites that do expensive or badly-scaling
13
11
                  operations.
14
12
-Dfetch           Trace history copying between repositories.
15
13
-Dfilters         Emit information for debugging content filtering.
16
 
-Dforceinvdeltas  Force use of inventory deltas during generic streaming fetch.
17
14
-Dgraph           Trace graph traversal.
18
15
-Dhashcache       Log every time a working file is read to determine its hash.
19
16
-Dhooks           Trace hook execution.
20
17
-Dhpss            Trace smart protocol requests and responses.
21
 
-Dhpssdetail      More hpss details.
22
 
-Dhpssvfs         Traceback on vfs access to Remote objects.
23
 
-Dhttp            Trace http connections, requests and responses.
 
18
-Dhttp            Trace http connections, requests and responses
24
19
-Dindex           Trace major index operations.
25
20
-Dknit            Trace knit operations.
26
21
-Dlock            Trace when lockdir locks are taken or released.
27
 
-Dprogress        Trace progress bar operations.
28
22
-Dmerge           Emit information for debugging merges.
29
 
-Dno_apport       Don't use apport to report crashes.
30
 
-Dno_activity     Don't show transport activity indicator in progress bar.
31
23
-Dpack            Emit information about pack operations.
32
 
-Drelock          Emit a message every time a branch or repository object is
33
 
                  unlocked then relocked the same way.
34
24
-Dsftp            Trace SFTP internals.
35
 
-Dstatic_tuple    Error when a tuple is used where a StaticTuple is expected
36
 
-Dstream          Trace fetch streams.
37
 
-Dstrict_locks    Trace when OS locks are potentially used in a non-portable
38
 
                  manner.
39
 
-Dunlock          Some errors during unlock are treated as warnings.
40
 
-DIDS_never       Never use InterDifferingSerializer when fetching.
41
 
-DIDS_always      Always use InterDifferingSerializer to fetch if appropriate
42
 
                  for the format, even for non-local fetches.