1KNOWN ISSUES as of version 1.5
2
3* It accepts only single-byte encodings for characters.
4
5* Currently, there are hard-wired limits on the length of element
6  and attribute identifiers, and the length of attribute values and
7  unbroken (i.e., without whitespace) PCDATA sections.  The limit is
8  set in sax/m_buffer.f90 to MAX_BUFF_SIZE=1024.
9
10* Overly long comments and SGML declarations can also be truncated,
11  but the effect is currently harmless since the parser does not make
12  use of that information. In a future version there could be a more
13  robust retrieval mechanism.
14
15* The number of attributes is limited to MAX_ITEMS=64
16  in sax/m_dictionary.f90.
17
18* In the XPATH interface, returned PCDATA character buffers cannot be
19  larger than an internal size of MAX_PCDATA_SIZE=65536 set in
20  xpath/m_path.f90.
21
22* The XPATH API is not solid yet, particularly in the area of contexts
23  handling.  A new one could be defined using the DOM module, but, not
24  being stream-oriented, it will loose its small memory footprint and
25  speed.
26
27
28
29
30
31
32