BUGS 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. GNU Jaxp
  2. ------------------------------------------------------------------------
  3. These bugs are for the gnu.xml.libxmlj package.
  4. CAVEAT: LibxmlJ's current incarnation is incomplete and partly
  5. incorrect. Highly experimental.
  6. - Thread-safe, but effectively runs single-threaded.
  7. - Native code passes incorrect URIs to URIResolver.resolve.
  8. - Default output properties accessible through JAXP always assume XML
  9. output (in violation of the XSLT 1.0 specification, section 16)
  10. Correction: LibxmlJ always assumes XML output.
  11. - OutputProperties are not properly implemented, compare code and API
  12. documentation.
  13. - TransformerFactory.getAttribute() and
  14. TransformerFactory.setAttribute() not implemented, i.e. low-level
  15. libxslt settings can currently not be accessed from Java.
  16. - TransformerFactory.getFeature() not implemented, i.e. currently no
  17. low-level features of libxslt are advertised.
  18. FIXME:
  19. - Make LRU caching configurable.
  20. - Check whether <?xml encoding="..."?> headers are honored.
  21. - DefaultURIResolver uses naive approach.
  22. - TransformerFactory.getAssociatedStyleSheet() unfinished.