~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

  • Committer: John Arbash Meinel
  • Date: 2006-11-10 15:38:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2129.
  • Revision ID: john@arbash-meinel.com-20061110153816-46acf76fc86a512b
use try/finally to clean up a nested progress bar during weave fetching

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
from bzrlib import (
29
29
    progress,
30
 
    osutils,
31
30
    )
32
31
""")
33
32
 
64
63
 
65
64
    def prompt(self, prompt):
66
65
        """Emit prompt on the CLI."""
67
 
        self.stdout.write(prompt)
 
66
        self.stdout.write(prompt + "? [y/n]:")
68
67
        
69
68
    @deprecated_method(zero_eight)
70
69
    def progress_bar(self):
73
72
        # bar depending on what we think of the terminal
74
73
        return progress.ProgressBar()
75
74
 
 
75
    def get_password(self, prompt='', **kwargs):
 
76
        """Prompt the user for a password.
 
77
 
 
78
        :param prompt: The prompt to present the user
 
79
        :param kwargs: Arguments which will be expanded into the prompt.
 
80
                       This lets front ends display different things if
 
81
                       they so choose.
 
82
        :return: The password string, return None if the user 
 
83
                 canceled the request.
 
84
        """
 
85
        prompt = (prompt % kwargs).encode(sys.stdout.encoding, 'replace')
 
86
        prompt += ': '
 
87
        # There's currently no way to say 'i decline to enter a password'
 
88
        # as opposed to 'my password is empty' -- does it matter?
 
89
        return getpass.getpass(prompt)
 
90
 
76
91
    def nested_progress_bar(self):
77
92
        """Return a nested progress bar.
78
93