X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=blobdiff_plain;f=xml;h=9fee4d765ed7867b7906b8161b1793ce55a21168;hp=618c65bb99a4b3a1d2be035ac85cf371d41006fd;hb=b00d26d30668a759beb743101c30e8d3963470af;hpb=609164d2f48bc41a5d0dec2a39454f73b054bf57 diff --git a/xml b/xml index 618c65b..9fee4d7 100755 --- a/xml +++ b/xml @@ -4,7 +4,7 @@ The script requires Midnight Commander 3.1+ (http://www.midnight-commander.org/), Python 2.4+ (http://www.python.org/). -For mc 4.7+ put the script in $HOME/.mc/extfs.d. +For mc 4.7+ put the script in $HOME/[.local/share/].mc/extfs.d. For older versions put it in /usr/[local/][lib|share]/mc/extfs and add a line "xml" to the /usr/[local/][lib|share]/mc/extfs/extfs.ini. Make the script executable. @@ -18,15 +18,21 @@ distinguish tags with the same name; also numbering helps to sort tags by their order in XML instead of sorting them by name. Attributes, text nodes and comments are represented as text files; attributes are shown in a file named "attributes", attributes are listed in the file as name=value lines (I -deliberately ignore a small chance there is a newline character in values). -Text nodes and comments are collected in a file named "text". The filesystem is +deliberately ignore a small chance of newline characters in values); names and +values are reencoded to the console encoding. Text nodes and comments are +collected in a file named "text", stripped and reencoded. The filesystem is read-only. +It is useful to have a top-down view on an XML structure but it's especially +convenient to extract text values from tags. One can get, for example, a +base64-encoded image - just walk down the VFS to the tag's directory and copy +its text file to a real file. + The VFS was inspired by a FUSE xmlfs: https://github.com/halhen/xmlfs """ -__version__ = "0.2.0" +__version__ = "0.3.0" __author__ = "Oleg Broytman " __copyright__ = "Copyright (C) 2013 PhiloSoft Design" __license__ = "GPL" @@ -72,7 +78,7 @@ XML Virtual FileSystem for Midnight Commander version %s Author: %s %s -This is not a program. Put the script in $HOME/.mc/extfs.d or +This is not a program. Put the script in $HOME/[.local/share/].mc/extfs.d or /usr/[local/][lib|share]/mc/extfs. For more information read the source!""", __version__, __author__, __copyright__ ) @@ -88,6 +94,20 @@ def _attrs2text(attrs): a.value.encode(default_encoding, "replace")) for a in attrs]) +def _collect_text(node): + text_accumulator = [] + for element in node.childNodes: + if element.localName: + continue + elif element.nodeType == element.COMMENT_NODE: + text = u"" % element.nodeValue + elif element.nodeType == element.TEXT_NODE: + text = element.nodeValue.strip() + else: + xml_error("Unknown node type %d" % element.nodeType) + if text: text_accumulator.append(text) + return '\n'.join(text_accumulator).encode(default_encoding, "replace") + def _list(node, path=''): childNodes = node.childNodes n = 0 @@ -115,6 +135,11 @@ def _list(node, path=''): print "-r--r--r-- 1 user group %d Jan 1 00:00 %s/attributes" % ( len(attr_text), subpath_encoded) _list(element, subpath) + if path: + text = _collect_text(node) + if text: + print "-r--r--r-- 1 user group %d Jan 1 00:00 %s/text" % ( + len(text), path.encode(default_encoding, "replace")) def mcxml_list(): """List the entire VFS""" @@ -143,7 +168,7 @@ def mcxml_copyout(): if ' ' in path_comp: i = int(path_comp.split(' ', 1)[0]) node = _get_child_node(node, i) - elif path_comp == 'attributes': + elif path_comp in ('attributes', 'text'): break else: xml_error('Unknown file') @@ -155,6 +180,9 @@ def mcxml_copyout(): else: xml_error('There are no attributes') + if path_comp == 'text': + text = _collect_text(node) + outfile = open(real_filename, 'w') outfile.write(text) outfile.close()