]> git.phdru.name Git - extfs.d.git/commitdiff
Fix a bug in directories permissions
authorOleg Broytman <phd@phdru.name>
Mon, 18 Nov 2013 20:56:51 +0000 (00:56 +0400)
committerOleg Broytman <phd@phdru.name>
Mon, 18 Nov 2013 20:56:51 +0000 (00:56 +0400)
xml-ANNOUNCE
xml-minidom

index c1834b2abd1b97b0269f7dda02333980967c6016..876a6dbb461eb011b0c5e10f30cdfa35a5d13865 100644 (file)
@@ -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.
 
index 9fee4d765ed7867b7906b8161b1793ce55a21168..9dbfac63fa5f04e20ec224ab5c66cb9e0e0a28a8 100755 (executable)
@@ -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 <phd@phdru.name>"
 __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)