summaryrefslogtreecommitdiff
path: root/hurd/translator
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-09-13 17:06:03 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-09-13 17:06:03 +0200
commit1c0cdc58881659cbc5e4b6836da48d4b21947f96 (patch)
tree1e669c22c12b20d6f6ca4258d9d1121520b9038b /hurd/translator
parent54654aff5f859a18e86df144608d29c477bbef41 (diff)
Fix typesetting
Diffstat (limited to 'hurd/translator')
-rw-r--r--hurd/translator/xmlfs.mdwn12
1 files changed, 6 insertions, 6 deletions
diff --git a/hurd/translator/xmlfs.mdwn b/hurd/translator/xmlfs.mdwn
index bde5960b..6028d43f 100644
--- a/hurd/translator/xmlfs.mdwn
+++ b/hurd/translator/xmlfs.mdwn
@@ -60,29 +60,29 @@ Comments are welcome.
- perhaps we shouldn't store the node informations from
first access to end and have a pool of them. That might come
with next entries though.
- - Handle changes of the backing store (XML document) while running.
+- Handle changes of the backing store (XML document) while running.
(Idea: we should probably attach to the XML node and handle
read()/write() operations ourselves, with libxml primitives.)
- - Write support. Making things like echo >, sed and so on work is
+- Write support. Making things like echo >, sed and so on work is
quite obvious. Editing is not -that- simple, 'cause we could
want to save a not XML well-formed, and libxml will just return
an error. Perhaps we should use something like 'sync'.
- - Handle error cases in a more clever way ; there are many error
+- Handle error cases in a more clever way ; there are many error
conditions that will just cause xmlfs to crash or do strange
things. We should review them.
- - Make sorting *really* stable.
+- Make sorting *really* stable.
# TODO WISHLIST
--------
- - Kilobug suggested a --xslt option that would make xmlfs provide
+- Kilobug suggested a --xslt option that would make xmlfs provide
a tree matching the XSLT-modified document.
(Problem: In this case we cannot attach easily to the .xml 'cause
the user would loose access to theirs original document. Perhaps
we should allow an optional "file.xml" argument and check if it
is not the same as the file we are attaching to when --xslt is
specified.)
- - DTD support ; perhaps XML schema/RelaxNG when I'm sure I understand
+- DTD support ; perhaps XML schema/RelaxNG when I'm sure I understand
them ;-)