Rev 6060: (vila) Decode BZR_HOME with fs encoding to allow unicode homes. (Vincent in file:///home/pqm/archives/thelove/bzr/%2Btrunk/
Canonical.com Patch Queue Manager
pqm at pqm.ubuntu.com
Tue Aug 9 17:04:53 UTC 2011
At file:///home/pqm/archives/thelove/bzr/%2Btrunk/
------------------------------------------------------------
revno: 6060 [merge]
revision-id: pqm at pqm.ubuntu.com-20110809170446-f1wc1a8fhgnxi4cn
parent: pqm at pqm.ubuntu.com-20110809123400-x521f2j9jkxx8ze2
parent: v.ladeuil+lp at free.fr-20110809124908-aok36t6x2y0thov1
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Tue 2011-08-09 17:04:46 +0000
message:
(vila) Decode BZR_HOME with fs encoding to allow unicode homes. (Vincent
Ladeuil)
modified:
bzrlib/config.py config.py-20051011043216-070c74f4e9e338e8
doc/en/release-notes/bzr-2.5.txt bzr2.5.txt-20110708125756-587p0hpw7oke4h05-1
=== modified file 'bzrlib/config.py'
--- a/bzrlib/config.py 2011-08-09 10:02:34 +0000
+++ b/bzrlib/config.py 2011-08-09 17:04:46 +0000
@@ -1513,14 +1513,16 @@
raise errors.BzrError('You must have one of BZR_HOME, APPDATA,'
' or HOME set')
return osutils.pathjoin(base, 'bazaar', '2.0')
- elif sys.platform == 'darwin':
+ else:
+ if base is not None:
+ base = base.decode(osutils._fs_enc)
+ if sys.platform == 'darwin':
if base is None:
# this takes into account $HOME
base = os.path.expanduser("~")
return osutils.pathjoin(base, '.bazaar')
else:
if base is None:
-
xdg_dir = os.environ.get('XDG_CONFIG_HOME', None)
if xdg_dir is None:
xdg_dir = osutils.pathjoin(os.path.expanduser("~"), ".config")
@@ -1529,7 +1531,6 @@
trace.mutter(
"Using configuration in XDG directory %s." % xdg_dir)
return xdg_dir
-
base = os.path.expanduser("~")
return osutils.pathjoin(base, ".bazaar")
@@ -2630,16 +2631,16 @@
class GlobalStore(LockableIniFileStore):
def __init__(self, possible_transports=None):
- t = transport.get_transport_from_path(config_dir(),
- possible_transports=possible_transports)
+ t = transport.get_transport_from_path(
+ config_dir(), possible_transports=possible_transports)
super(GlobalStore, self).__init__(t, 'bazaar.conf')
class LocationStore(LockableIniFileStore):
def __init__(self, possible_transports=None):
- t = transport.get_transport_from_path(config_dir(),
- possible_transports=possible_transports)
+ t = transport.get_transport_from_path(
+ config_dir(), possible_transports=possible_transports)
super(LocationStore, self).__init__(t, 'locations.conf')
=== modified file 'doc/en/release-notes/bzr-2.5.txt'
--- a/doc/en/release-notes/bzr-2.5.txt 2011-08-09 12:34:00 +0000
+++ b/doc/en/release-notes/bzr-2.5.txt 2011-08-09 17:04:46 +0000
@@ -74,6 +74,9 @@
that subfolder.
(Bastian Bowe, #809901)
+* Decode ``BZR_HOME`` with fs encoding on posix platforms to avoid unicode
+ errors. (Vincent Ladeuil, #822571)
+
* Fix i18n use when no environment variables are set. (Jelmer Vernooij, #810701)
* TreeTransformBase.fixup_new_roots no longer forces trees to have a root, so
More information about the bazaar-commits
mailing list