]> git.phdru.name Git - extfs.d.git/blob - xml-ANNOUNCE
Ignore *.py[co]
[extfs.d.git] / xml-ANNOUNCE
1 XML Virtual FileSystem for Midnight Commander
2
3
4 WHAT IS IT
5    View an XML file in Midnight Commander as a filesystem.
6
7
8 WHAT'S NEW in version 0.6.1 (2013-11-22)
9    With lxml.etree-based implementation show only child namespaces
10    (calculated as combined namespaces minus parent's namespaces).
11
12 WHAT'S NEW in version 0.6.0 (2013-11-22)
13    Refactored _list() and attrs2text() to be completely generic.
14
15 WHAT'S NEW in version 0.5.0 (2013-11-19)
16    Added lxml.etree-based implementation.
17
18 WHAT'S NEW in version 0.4.0 (2013-11-19)
19    Added ElementTree-based implementation.
20
21 WHAT'S NEW in version 0.3.0 (2013-11-16)
22    Initial release. Implementation based on minidom.
23
24
25 WHERE TO GET
26    Master site:  http://phdru.name/Software/mc/
27    A mirror:    http://phdru.cu.cc/Software/mc/
28
29
30 The VFS represents tags as directories; the directories are numbered to
31 distinguish tags with the same name; also numbering helps to sort tags by their
32 order in XML instead of sorting them by name. Attributes, text nodes and
33 comments are represented as text files; attributes are shown in a file named
34 "attributes", attributes are listed in the file as name=value lines (I
35 deliberately ignore a small chance of newline characters in values); names and
36 values are reencoded to the console encoding. Text nodes and comments are
37 collected in a file named "text", stripped and reencoded. The filesystem is
38 read-only.
39
40 It is useful to have a top-down view on an XML structure but it's especially
41 convenient to extract text values from tags. One can get, for example, a
42 base64-encoded image - just walk down the VFS to the tag's directory and copy
43 its text file to a real file.
44
45 The VFS was inspired by a FUSE xmlfs: https://github.com/halhen/xmlfs
46
47
48 AUTHOR
49    Oleg Broytman <phd@phdru.name>
50
51 COPYRIGHT
52    Copyright (C) 2013 PhiloSoft Design
53
54 LICENSE
55    GPL