瀏覽代碼

* Documented some recent changes

sg 21 年之前
父節點
當前提交
3077512019
共有 1 個文件被更改,包括 9 次插入2 次删除
  1. 9 2
      fcl/xml/README

+ 9 - 2
fcl/xml/README

@@ -24,10 +24,17 @@ XML files and XML fragments.
 At the moment it supports only the node types which can be read by XMLRead.
 At the moment it supports only the node types which can be read by XMLRead.
 Please note that the writer replaces some characters by entity references
 Please note that the writer replaces some characters by entity references
 automatically:
 automatically:
-For attribute values, '"' gets replaced by '"', and '&' gets replaced by
-'&amp'. For normal text nodes, the following replacements will be done:
+For normal text nodes, the following replacements will be done:
 '<' => '&lt;'
 '<' => '&lt;'
 '>' => '&gt;'
 '>' => '&gt;'
 '&' => '&amp;'
 '&' => '&amp;'
+For attribute values, additionally '"' gets replaced by '&quot;'. Single
+apostrophes (') don't need to get converted, as values are already written using
+"" quotes.
 The XML reader (in xmlread.pp) will convert these entity references back to
 The XML reader (in xmlread.pp) will convert these entity references back to
 their original characters.
 their original characters.
+
+
+XPath:
+Just a XPath implementation. Should be fairly completed, but there hasn't been
+further development recently.