~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/shelf.py

  • 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:
1
 
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
18
18
import errno
19
19
import re
20
20
 
21
 
from bzrlib.lazy_import import lazy_import
22
 
lazy_import(globals(), """
23
21
from bzrlib import (
24
 
    bencode,
25
22
    errors,
26
23
    merge,
27
24
    merge3,
 
25
    osutils,
28
26
    pack,
29
27
    transform,
 
28
    ui,
 
29
    workingtree,
30
30
)
31
 
""")
 
31
from bzrlib.util import bencode
32
32
 
33
33
 
34
34
class ShelfCreator(object):
37
37
    def __init__(self, work_tree, target_tree, file_list=None):
38
38
        """Constructor.
39
39
 
40
 
        :param work_tree: The working tree to apply changes to. This is not
41
 
            required to be locked - a tree_write lock will be taken out.
 
40
        :param work_tree: The working tree to apply changes to
42
41
        :param target_tree: The tree to make the working tree more similar to.
43
 
            This is not required to be locked - a read_lock will be taken out.
44
42
        :param file_list: The files to make more similar to the target.
45
43
        """
46
44
        self.work_tree = work_tree
75
73
        """
76
74
        for (file_id, paths, changed, versioned, parents, names, kind,
77
75
             executable) in self.iter_changes:
78
 
            # don't shelve add of tree root.  Working tree should never
79
 
            # lack roots, and bzr misbehaves when they do.
80
 
            # FIXME ADHB (2009-08-09): should still shelve adds of tree roots
81
 
            # when a tree root was deleted / renamed.
82
 
            if kind[0] is None and names[1] == '':
83
 
                continue
84
76
            if kind[0] is None or versioned[0] == False:
85
77
                self.creation[file_id] = (kind[1], names[1], parents[1],
86
78
                                          versioned)
104
96
                elif changed:
105
97
                    yield ('modify text', file_id)
106
98
 
107
 
    def shelve_change(self, change):
108
 
        """Shelve a change in the iter_shelvable format."""
109
 
        if change[0] == 'rename':
110
 
            self.shelve_rename(change[1])
111
 
        elif change[0] == 'delete file':
112
 
            self.shelve_deletion(change[1])
113
 
        elif change[0] == 'add file':
114
 
            self.shelve_creation(change[1])
115
 
        elif change[0] in ('change kind', 'modify text'):
116
 
            self.shelve_content_change(change[1])
117
 
        elif change[0] == 'modify target':
118
 
            self.shelve_modify_target(change[1])
119
 
        else:
120
 
            raise ValueError('Unknown change kind: "%s"' % change[0])
121
 
 
122
 
    def shelve_all(self):
123
 
        """Shelve all changes."""
124
 
        for change in self.iter_shelvable():
125
 
            self.shelve_change(change)
126
 
 
127
99
    def shelve_rename(self, file_id):
128
100
        """Shelve a file rename.
129
101