50
48
create_signatures - this option controls whether bzr will always create
51
49
gpg signatures, never create them, or create them if the
52
50
branch is configured to require them.
53
log_format - this option sets the default log format. Possible values are
54
long, short, line, or a plugin can register new formats.
56
In bazaar.conf you can also define aliases in the ALIASES sections, example
59
lastlog=log --line -r-10..-1
60
ll=log --line -r-10..-1
51
NB: This option is planned, but not implemented yet.
68
from bzrlib.lazy_import import lazy_import
69
lazy_import(globals(), """
71
58
from fnmatch import fnmatch
73
from cStringIO import StringIO
62
import bzrlib.errors as errors
87
63
import bzrlib.util.configobj.configobj as configobj
64
from StringIO import StringIO
91
66
CHECK_IF_POSSIBLE=0
103
POLICY_APPENDPATH = 2
107
POLICY_NORECURSE: 'norecurse',
108
POLICY_APPENDPATH: 'appendpath',
113
'norecurse': POLICY_NORECURSE,
114
'appendpath': POLICY_APPENDPATH,
118
STORE_LOCATION = POLICY_NONE
119
STORE_LOCATION_NORECURSE = POLICY_NORECURSE
120
STORE_LOCATION_APPENDPATH = POLICY_APPENDPATH
125
71
class ConfigObj(configobj.ConfigObj):
127
73
def get_bool(self, section, key):
128
return self[section].as_bool(key)
74
val = self[section][key].lower()
75
if val in ('1', 'yes', 'true', 'on'):
77
elif val in ('0', 'no', 'false', 'off'):
80
raise ValueError("Value %r is not boolean" % val)
130
82
def get_value(self, section, name):
131
83
# Try [] for the old DEFAULT section.
144
96
"""Get the users pop up editor."""
145
97
raise NotImplementedError
147
def get_mail_client(self):
148
"""Get a mail client to use"""
149
selected_client = self.get_user_option('mail_client')
151
mail_client_class = {
152
None: mail_client.DefaultMail,
154
'evolution': mail_client.Evolution,
155
'kmail': mail_client.KMail,
156
'mutt': mail_client.Mutt,
157
'thunderbird': mail_client.Thunderbird,
159
'default': mail_client.DefaultMail,
160
'editor': mail_client.Editor,
161
'mapi': mail_client.MAPIClient,
162
'xdg-email': mail_client.XDGEmail,
165
raise errors.UnknownMailClient(selected_client)
166
return mail_client_class(self)
168
99
def _get_signature_checking(self):
169
100
"""Template method to override signature checking policy."""
171
def _get_signing_policy(self):
172
"""Template method to override signature creation policy."""
174
102
def _get_user_option(self, option_name):
175
103
"""Template method to provide a user option."""
259
175
return CHECK_IF_POSSIBLE
261
def signing_policy(self):
262
"""What is the current policy for signature checking?."""
263
policy = self._get_signing_policy()
264
if policy is not None:
266
return SIGN_WHEN_REQUIRED
268
177
def signature_needed(self):
269
178
"""Is a signature needed when committing ?."""
270
policy = self._get_signing_policy()
272
policy = self._get_signature_checking()
273
if policy is not None:
274
trace.warning("Please use create_signatures,"
275
" not check_signatures to set signing policy.")
276
if policy == CHECK_ALWAYS:
278
elif policy == SIGN_ALWAYS:
179
policy = self._get_signature_checking()
180
if policy == CHECK_ALWAYS:
282
def get_alias(self, value):
283
return self._get_alias(value)
285
def _get_alias(self, value):
288
def get_nickname(self):
289
return self._get_nickname()
291
def _get_nickname(self):
294
def get_bzr_remote_path(self):
296
return os.environ['BZR_REMOTE_PATH']
298
path = self.get_user_option("bzr_remote_path")
304
185
class IniBasedConfig(Config):
305
186
"""A configuration policy that draws from ini files."""
315
self._parser = ConfigObj(input, encoding='utf-8')
196
self._parser = ConfigObj(input)
316
197
except configobj.ConfigObjError, e:
317
198
raise errors.ParseConfigError(e.errors, e.config.filename)
318
199
return self._parser
320
def _get_matching_sections(self):
321
"""Return an ordered list of (section_name, extra_path) pairs.
323
If the section contains inherited configuration, extra_path is
324
a string containing the additional path components.
326
section = self._get_section()
327
if section is not None:
328
return [(section, '')]
332
201
def _get_section(self):
333
202
"""Override this to define the section used by the config."""
336
def _get_option_policy(self, section, option_name):
337
"""Return the policy for the given (section, option_name) pair."""
340
205
def _get_signature_checking(self):
341
206
"""See Config._get_signature_checking."""
342
207
policy = self._get_user_option('check_signatures')
344
209
return self._string_to_signature_policy(policy)
346
def _get_signing_policy(self):
347
"""See Config._get_signing_policy"""
348
policy = self._get_user_option('create_signatures')
350
return self._string_to_signing_policy(policy)
352
211
def _get_user_id(self):
353
212
"""Get the user id from the 'email' key in the current section."""
354
213
return self._get_user_option('email')
356
215
def _get_user_option(self, option_name):
357
216
"""See Config._get_user_option."""
358
for (section, extra_path) in self._get_matching_sections():
360
value = self._get_parser().get_value(section, option_name)
363
policy = self._get_option_policy(section, option_name)
364
if policy == POLICY_NONE:
366
elif policy == POLICY_NORECURSE:
367
# norecurse items only apply to the exact path
372
elif policy == POLICY_APPENDPATH:
374
value = urlutils.join(value, extra_path)
377
raise AssertionError('Unexpected config policy %r' % policy)
218
return self._get_parser().get_value(self._get_section(),
381
223
def _gpg_signing_command(self):
382
224
"""See Config.gpg_signing_command."""
383
225
return self._get_user_option('gpg_signing_command')
385
def _log_format(self):
386
"""See Config.log_format."""
387
return self._get_user_option('log_format')
389
227
def __init__(self, get_filename):
390
228
super(IniBasedConfig, self).__init__()
391
229
self._get_filename = get_filename
437
254
def __init__(self):
438
255
super(GlobalConfig, self).__init__(config_filename)
440
def set_user_option(self, option, value):
441
"""Save option and its value in the configuration."""
442
# FIXME: RBC 20051029 This should refresh the parser and also take a
443
# file lock on bazaar.conf.
444
conf_dir = os.path.dirname(self._get_filename())
445
ensure_config_dir_exists(conf_dir)
446
if 'DEFAULT' not in self._get_parser():
447
self._get_parser()['DEFAULT'] = {}
448
self._get_parser()['DEFAULT'][option] = value
449
f = open(self._get_filename(), 'wb')
450
self._get_parser().write(f)
454
258
class LocationConfig(IniBasedConfig):
455
259
"""A configuration object that gives the policy for a location."""
457
261
def __init__(self, location):
458
name_generator = locations_config_filename
459
if (not os.path.exists(name_generator()) and
460
os.path.exists(branches_config_filename())):
461
if sys.platform == 'win32':
462
trace.warning('Please rename %s to %s'
463
% (branches_config_filename(),
464
locations_config_filename()))
466
trace.warning('Please rename ~/.bazaar/branches.conf'
467
' to ~/.bazaar/locations.conf')
468
name_generator = branches_config_filename
469
super(LocationConfig, self).__init__(name_generator)
470
# local file locations are looked up by local path, rather than
471
# by file url. This is because the config file is a user
472
# file, and we would rather not expose the user to file urls.
473
if location.startswith('file://'):
474
location = urlutils.local_path_from_url(location)
262
super(LocationConfig, self).__init__(branches_config_filename)
263
self._global_config = None
475
264
self.location = location
477
def _get_matching_sections(self):
478
"""Return an ordered list of section names matching this location."""
266
def _get_global_config(self):
267
if self._global_config is None:
268
self._global_config = GlobalConfig()
269
return self._global_config
271
def _get_section(self):
272
"""Get the section we should look in for config items.
274
Returns None if none exists.
275
TODO: perhaps return a NullSection that thunks through to the
479
278
sections = self._get_parser()
480
279
location_names = self.location.split('/')
481
280
if self.location.endswith('/'):
482
281
del location_names[-1]
484
283
for section in sections:
485
# location is a local path if possible, so we need
486
# to convert 'file://' urls to local paths if necessary.
487
# This also avoids having file:///path be a more exact
488
# match than '/path'.
489
if section.startswith('file://'):
490
section_path = urlutils.local_path_from_url(section)
492
section_path = section
493
section_names = section_path.split('/')
284
section_names = section.split('/')
494
285
if section.endswith('/'):
495
286
del section_names[-1]
496
287
names = zip(location_names, section_names)
505
296
# if section is longer, no match.
506
297
if len(section_names) > len(location_names):
508
matches.append((len(section_names), section,
509
'/'.join(location_names[len(section_names):])))
299
# if path is longer, and recurse is not true, no match
300
if len(section_names) < len(location_names):
302
if not self._get_parser().get_bool(section, 'recurse'):
306
matches.append((len(section_names), section))
510
309
matches.sort(reverse=True)
512
for (length, section, extra_path) in matches:
513
sections.append((section, extra_path))
514
# should we stop looking for parent configs here?
516
if self._get_parser()[section].as_bool('ignore_parents'):
522
def _get_option_policy(self, section, option_name):
523
"""Return the policy for the given (section, option_name) pair."""
524
# check for the old 'recurse=False' flag
526
recurse = self._get_parser()[section].as_bool('recurse')
530
return POLICY_NORECURSE
532
policy_key = option_name + ':policy'
534
policy_name = self._get_parser()[section][policy_key]
538
return _policy_value[policy_name]
540
def _set_option_policy(self, section, option_name, option_policy):
541
"""Set the policy for the given option name in the given section."""
542
# The old recurse=False option affects all options in the
543
# section. To handle multiple policies in the section, we
544
# need to convert it to a policy_norecurse key.
546
recurse = self._get_parser()[section].as_bool('recurse')
550
symbol_versioning.warn(
551
'The recurse option is deprecated as of 0.14. '
552
'The section "%s" has been converted to use policies.'
555
del self._get_parser()[section]['recurse']
557
for key in self._get_parser()[section].keys():
558
if not key.endswith(':policy'):
559
self._get_parser()[section][key +
560
':policy'] = 'norecurse'
562
policy_key = option_name + ':policy'
563
policy_name = _policy_name[option_policy]
564
if policy_name is not None:
565
self._get_parser()[section][policy_key] = policy_name
567
if policy_key in self._get_parser()[section]:
568
del self._get_parser()[section][policy_key]
570
def set_user_option(self, option, value, store=STORE_LOCATION):
312
def _gpg_signing_command(self):
313
"""See Config.gpg_signing_command."""
314
command = super(LocationConfig, self)._gpg_signing_command()
315
if command is not None:
317
return self._get_global_config()._gpg_signing_command()
319
def _get_user_id(self):
320
user_id = super(LocationConfig, self)._get_user_id()
321
if user_id is not None:
323
return self._get_global_config()._get_user_id()
325
def _get_user_option(self, option_name):
326
"""See Config._get_user_option."""
327
option_value = super(LocationConfig,
328
self)._get_user_option(option_name)
329
if option_value is not None:
331
return self._get_global_config()._get_user_option(option_name)
333
def _get_signature_checking(self):
334
"""See Config._get_signature_checking."""
335
check = super(LocationConfig, self)._get_signature_checking()
336
if check is not None:
338
return self._get_global_config()._get_signature_checking()
340
def _post_commit(self):
341
"""See Config.post_commit."""
342
hook = self._get_user_option('post_commit')
345
return self._get_global_config()._post_commit()
347
def set_user_option(self, option, value):
571
348
"""Save option and its value in the configuration."""
572
assert store in [STORE_LOCATION,
573
STORE_LOCATION_NORECURSE,
574
STORE_LOCATION_APPENDPATH], 'bad storage policy'
575
349
# FIXME: RBC 20051029 This should refresh the parser and also take a
576
# file lock on locations.conf.
577
conf_dir = os.path.dirname(self._get_filename())
578
ensure_config_dir_exists(conf_dir)
350
# file lock on branches.conf.
351
if not os.path.isdir(os.path.dirname(self._get_filename())):
352
os.mkdir(os.path.dirname(self._get_filename()))
579
353
location = self.location
580
354
if location.endswith('/'):
581
355
location = location[:-1]
585
359
elif location + '/' in self._get_parser():
586
360
location = location + '/'
587
361
self._get_parser()[location][option]=value
588
# the allowed values of store match the config policies
589
self._set_option_policy(location, option, store)
590
self._get_parser().write(file(self._get_filename(), 'wb'))
362
self._get_parser().write()
593
365
class BranchConfig(Config):
594
366
"""A configuration object giving the policy for a branch."""
596
def _get_branch_data_config(self):
597
if self._branch_data_config is None:
598
self._branch_data_config = TreeConfig(self.branch)
599
return self._branch_data_config
601
368
def _get_location_config(self):
602
369
if self._location_config is None:
603
370
self._location_config = LocationConfig(self.branch.base)
604
371
return self._location_config
606
def _get_global_config(self):
607
if self._global_config is None:
608
self._global_config = GlobalConfig()
609
return self._global_config
611
def _get_best_value(self, option_name):
612
"""This returns a user option from local, tree or global config.
614
They are tried in that order. Use get_safe_value if trusted values
617
for source in self.option_sources:
618
value = getattr(source(), option_name)()
619
if value is not None:
623
def _get_safe_value(self, option_name):
624
"""This variant of get_best_value never returns untrusted values.
626
It does not return values from the branch data, because the branch may
627
not be controlled by the user.
629
We may wish to allow locations.conf to control whether branches are
630
trusted in the future.
632
for source in (self._get_location_config, self._get_global_config):
633
value = getattr(source(), option_name)()
634
if value is not None:
638
373
def _get_user_id(self):
639
374
"""Return the full user id for the branch.
642
377
This is looked up in the email controlfile for the branch.
645
return (self.branch.control_files.get_utf8("email")
380
return (self.branch.controlfile("email", "r")
647
382
.decode(bzrlib.user_encoding)
649
384
except errors.NoSuchFile, e:
652
return self._get_best_value('_get_user_id')
387
return self._get_location_config()._get_user_id()
654
389
def _get_signature_checking(self):
655
390
"""See Config._get_signature_checking."""
656
return self._get_best_value('_get_signature_checking')
658
def _get_signing_policy(self):
659
"""See Config._get_signing_policy."""
660
return self._get_best_value('_get_signing_policy')
391
return self._get_location_config()._get_signature_checking()
662
393
def _get_user_option(self, option_name):
663
394
"""See Config._get_user_option."""
664
for source in self.option_sources:
665
value = source()._get_user_option(option_name)
666
if value is not None:
670
def set_user_option(self, name, value, store=STORE_BRANCH,
672
if store == STORE_BRANCH:
673
self._get_branch_data_config().set_option(value, name)
674
elif store == STORE_GLOBAL:
675
self._get_global_config().set_user_option(name, value)
677
self._get_location_config().set_user_option(name, value, store)
680
if store in (STORE_GLOBAL, STORE_BRANCH):
681
mask_value = self._get_location_config().get_user_option(name)
682
if mask_value is not None:
683
trace.warning('Value "%s" is masked by "%s" from'
684
' locations.conf', value, mask_value)
686
if store == STORE_GLOBAL:
687
branch_config = self._get_branch_data_config()
688
mask_value = branch_config.get_user_option(name)
689
if mask_value is not None:
690
trace.warning('Value "%s" is masked by "%s" from'
691
' branch.conf', value, mask_value)
395
return self._get_location_config()._get_user_option(option_name)
694
397
def _gpg_signing_command(self):
695
398
"""See Config.gpg_signing_command."""
696
return self._get_safe_value('_gpg_signing_command')
399
return self._get_location_config()._gpg_signing_command()
698
401
def __init__(self, branch):
699
402
super(BranchConfig, self).__init__()
700
403
self._location_config = None
701
self._branch_data_config = None
702
self._global_config = None
703
404
self.branch = branch
704
self.option_sources = (self._get_location_config,
705
self._get_branch_data_config,
706
self._get_global_config)
708
406
def _post_commit(self):
709
407
"""See Config.post_commit."""
710
return self._get_safe_value('_post_commit')
712
def _get_nickname(self):
713
value = self._get_explicit_nickname()
714
if value is not None:
716
return urlutils.unescape(self.branch.base.split('/')[-2])
718
def has_explicit_nickname(self):
719
"""Return true if a nickname has been explicitly assigned."""
720
return self._get_explicit_nickname() is not None
722
def _get_explicit_nickname(self):
723
return self._get_best_value('_get_nickname')
725
def _log_format(self):
726
"""See Config.log_format."""
727
return self._get_best_value('_log_format')
730
def ensure_config_dir_exists(path=None):
731
"""Make sure a configuration directory exists.
732
This makes sure that the directory exists.
733
On windows, since configuration directories are 2 levels deep,
734
it makes sure both the directory and the parent directory exists.
738
if not os.path.isdir(path):
739
if sys.platform == 'win32':
740
parent_dir = os.path.dirname(path)
741
if not os.path.isdir(parent_dir):
742
trace.mutter('creating config parent directory: %r', parent_dir)
744
trace.mutter('creating config directory: %r', path)
408
return self._get_location_config()._post_commit()
748
411
def config_dir():
755
418
base = os.environ.get('BZR_HOME', None)
756
419
if sys.platform == 'win32':
758
base = win32utils.get_appdata_location_unicode()
421
base = os.environ.get('APPDATA', None)
760
423
base = os.environ.get('HOME', None)
762
raise errors.BzrError('You must have one of BZR_HOME, APPDATA, or HOME set')
763
return osutils.pathjoin(base, 'bazaar', '2.0')
425
raise BzrError('You must have one of BZR_HOME, APPDATA, or HOME set')
426
return os.path.join(base, 'bazaar', '2.0')
765
428
# cygwin, linux, and darwin all have a $HOME directory
767
430
base = os.path.expanduser("~")
768
return osutils.pathjoin(base, ".bazaar")
431
return os.path.join(base, ".bazaar")
771
434
def config_filename():
772
435
"""Return per-user configuration ini file filename."""
773
return osutils.pathjoin(config_dir(), 'bazaar.conf')
436
return os.path.join(config_dir(), 'bazaar.conf')
776
439
def branches_config_filename():
777
440
"""Return per-user configuration ini file filename."""
778
return osutils.pathjoin(config_dir(), 'branches.conf')
781
def locations_config_filename():
782
"""Return per-user configuration ini file filename."""
783
return osutils.pathjoin(config_dir(), 'locations.conf')
786
def authentication_config_filename():
787
"""Return per-user authentication ini file filename."""
788
return osutils.pathjoin(config_dir(), 'authentication.conf')
791
def user_ignore_config_filename():
792
"""Return the user default ignore filename"""
793
return osutils.pathjoin(config_dir(), 'ignore')
441
return os.path.join(config_dir(), 'branches.conf')
796
444
def _auto_user_id():
809
if sys.platform == 'win32':
810
name = win32utils.get_user_name_unicode()
812
raise errors.BzrError("Cannot autodetect user name.\n"
813
"Please, set your name with command like:\n"
814
'bzr whoami "Your Name <name@domain.com>"')
815
host = win32utils.get_host_name_unicode()
817
host = socket.gethostname()
818
return name, (name + '@' + host)
457
# XXX: Any good way to get real user name on win32?
822
461
uid = os.getuid()
823
462
w = pwd.getpwuid(uid)
825
# we try utf-8 first, because on many variants (like Linux),
826
# /etc/passwd "should" be in utf-8, and because it's unlikely to give
827
# false positives. (many users will have their user encoding set to
828
# latin-1, which cannot raise UnicodeError.)
830
gecos = w.pw_gecos.decode('utf-8')
834
gecos = w.pw_gecos.decode(bzrlib.user_encoding)
835
encoding = bzrlib.user_encoding
837
raise errors.BzrCommandError('Unable to determine your name. '
838
'Use "bzr whoami" to set it.')
840
username = w.pw_name.decode(encoding)
842
raise errors.BzrCommandError('Unable to determine your name. '
843
'Use "bzr whoami" to set it.')
463
gecos = w.pw_gecos.decode(bzrlib.user_encoding)
464
username = w.pw_name.decode(bzrlib.user_encoding)
845
465
comma = gecos.find(',')
924
535
cfg_obj[section] = {}
925
536
obj = cfg_obj[section]
926
537
obj[name] = value
927
out_file = StringIO()
928
cfg_obj.write(out_file)
538
cfg_obj.encode('UTF-8')
539
out_file = StringIO(''.join([l+'\n' for l in cfg_obj.write()]))
930
self.branch.control_files.put('branch.conf', out_file)
541
self.branch.put_controlfile('branch.conf', out_file, encode=False)
932
543
self.branch.unlock()
935
class AuthenticationConfig(object):
936
"""The authentication configuration file based on a ini file.
938
Implements the authentication.conf file described in
939
doc/developers/authentication-ring.txt.
942
def __init__(self, _file=None):
943
self._config = None # The ConfigObj
945
self._filename = authentication_config_filename()
946
self._input = self._filename = authentication_config_filename()
948
# Tests can provide a string as _file
949
self._filename = None
952
def _get_config(self):
953
if self._config is not None:
956
# FIXME: Should we validate something here ? Includes: empty
957
# sections are useless, at least one of
958
# user/password/password_encoding should be defined, etc.
960
# Note: the encoding below declares that the file itself is utf-8
961
# encoded, but the values in the ConfigObj are always Unicode.
962
self._config = ConfigObj(self._input, encoding='utf-8')
963
except configobj.ConfigObjError, e:
964
raise errors.ParseConfigError(e.errors, e.config.filename)
968
"""Save the config file, only tests should use it for now."""
969
conf_dir = os.path.dirname(self._filename)
970
ensure_config_dir_exists(conf_dir)
971
self._get_config().write(file(self._filename, 'wb'))
973
def _set_option(self, section_name, option_name, value):
974
"""Set an authentication configuration option"""
975
conf = self._get_config()
976
section = conf.get(section_name)
979
section = conf[section]
980
section[option_name] = value
983
def get_credentials(self, scheme, host, port=None, user=None, path=None):
984
"""Returns the matching credentials from authentication.conf file.
986
:param scheme: protocol
988
:param host: the server address
990
:param port: the associated port (optional)
992
:param user: login (optional)
994
:param path: the absolute path on the server (optional)
996
:return: A dict containing the matching credentials or None.
998
- name: the section name of the credentials in the
999
authentication.conf file,
1000
- user: can't de different from the provided user if any,
1001
- password: the decoded password, could be None if the credential
1002
defines only the user
1003
- verify_certificates: https specific, True if the server
1004
certificate should be verified, False otherwise.
1007
for auth_def_name, auth_def in self._get_config().items():
1008
a_scheme, a_host, a_user, a_path = map(
1009
auth_def.get, ['scheme', 'host', 'user', 'path'])
1012
a_port = auth_def.as_int('port')
1016
raise ValueError("'port' not numeric in %s" % auth_def_name)
1018
a_verify_certificates = auth_def.as_bool('verify_certificates')
1020
a_verify_certificates = True
1023
"'verify_certificates' not boolean in %s" % auth_def_name)
1026
if a_scheme is not None and scheme != a_scheme:
1028
if a_host is not None:
1029
if not (host == a_host
1030
or (a_host.startswith('.') and host.endswith(a_host))):
1032
if a_port is not None and port != a_port:
1034
if (a_path is not None and path is not None
1035
and not path.startswith(a_path)):
1037
if (a_user is not None and user is not None
1038
and a_user != user):
1039
# Never contradict the caller about the user to be used
1044
credentials = dict(name=auth_def_name,
1045
user=a_user, password=auth_def['password'],
1046
verify_certificates=a_verify_certificates)
1047
self.decode_password(credentials,
1048
auth_def.get('password_encoding', None))
1049
if 'auth' in debug.debug_flags:
1050
trace.mutter("Using authentication section: %r", auth_def_name)
1055
def get_user(self, scheme, host, port=None,
1056
realm=None, path=None, prompt=None):
1057
"""Get a user from authentication file.
1059
:param scheme: protocol
1061
:param host: the server address
1063
:param port: the associated port (optional)
1065
:param realm: the realm sent by the server (optional)
1067
:param path: the absolute path on the server (optional)
1069
:return: The found user.
1071
credentials = self.get_credentials(scheme, host, port, user=None,
1073
if credentials is not None:
1074
user = credentials['user']
1079
def get_password(self, scheme, host, user, port=None,
1080
realm=None, path=None, prompt=None):
1081
"""Get a password from authentication file or prompt the user for one.
1083
:param scheme: protocol
1085
:param host: the server address
1087
:param port: the associated port (optional)
1091
:param realm: the realm sent by the server (optional)
1093
:param path: the absolute path on the server (optional)
1095
:return: The found password or the one entered by the user.
1097
credentials = self.get_credentials(scheme, host, port, user, path)
1098
if credentials is not None:
1099
password = credentials['password']
1102
# Prompt user only if we could't find a password
1103
if password is None:
1105
# Create a default prompt suitable for most of the cases
1106
prompt = '%s' % scheme.upper() + ' %(user)s@%(host)s password'
1107
# Special handling for optional fields in the prompt
1108
if port is not None:
1109
prompt_host = '%s:%d' % (host, port)
1112
password = ui.ui_factory.get_password(prompt,
1113
host=prompt_host, user=user)
1116
def decode_password(self, credentials, encoding):