From: Oleg Broytman Date: Mon, 18 Nov 2013 20:56:51 +0000 (+0400) Subject: Fix a bug in directories permissions X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=commitdiff_plain;h=cec962c2d9730a1d71f5b7a0dfedb6085785d7c2 Fix a bug in directories permissions --- diff --git a/xml-ANNOUNCE b/xml-ANNOUNCE index c1834b2..876a6db 100644 --- a/xml-ANNOUNCE +++ b/xml-ANNOUNCE @@ -5,6 +5,9 @@ WHAT IS IT View an XML file in Midnight Commander as a filesystem. +WHAT'S NEW in version 0.3.1 (2013-11-18) + Fixed a bug in directories permissions. + WHAT'S NEW in version 0.3.0 (2013-11-16) Initial release. diff --git a/xml-minidom b/xml-minidom index 9fee4d7..9dbfac6 100755 --- a/xml-minidom +++ b/xml-minidom @@ -32,7 +32,7 @@ The VFS was inspired by a FUSE xmlfs: https://github.com/halhen/xmlfs """ -__version__ = "0.3.0" +__version__ = "0.3.1" __author__ = "Oleg Broytman " __copyright__ = "Copyright (C) 2013 PhiloSoft Design" __license__ = "GPL" @@ -128,7 +128,7 @@ def _list(node, path=''): else: subpath = '%s %s' % (template % n, element.localName) subpath_encoded = subpath.encode(default_encoding, "replace") - print "dr--r--r-- 1 user group 0 Jan 1 00:00 %s" % subpath_encoded + print "dr-xr-xr-x 1 user group 0 Jan 1 00:00 %s" % subpath_encoded attrs = element.attributes if attrs: attr_text = _attrs2text(attrs)