standard-library.scm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ;; The modules to document
  2. (define *modules*
  3. '(((statprof)
  4. "Statistical profiler")
  5. ((sxml apply-templates)
  6. "A more XSLT-like approach to SXML transformations")
  7. ((sxml fold)
  8. "Fold-based SXML transformation operators")
  9. ((sxml simple)
  10. "Convenient XML parsing and serializing")
  11. ((sxml ssax)
  12. "Functional-style XML parsing for Scheme")
  13. ((sxml ssax input-parse)
  14. "The SSAX tokenizer, optimized for Guile")
  15. ((sxml transform)
  16. "A higher-order SXML transformation operator, "
  17. (code "pre-post-order"))
  18. ((sxml xpath)
  19. "XPath for SXML")
  20. ((texinfo)
  21. "Parse texinfo files or fragments into " (code "stexi") ", a "
  22. "scheme representation")
  23. ((texinfo docbook)
  24. "Transform a subset of docbook into " (code "stexi"))
  25. ((texinfo html)
  26. "Transform " (code "stexi") " into HTML")
  27. ((texinfo indexing)
  28. "Extract an index from a piece of " (code "stexi"))
  29. ((texinfo string-utils)
  30. "String utility functions used by the texinfo processor")
  31. ((texinfo plain-text)
  32. "Render " (code "stexi") " as plain text")
  33. ((texinfo serialize)
  34. "Render " (code "stexi") " as texinfo")
  35. ((texinfo reflection)
  36. "Enable texinfo across Guile's help system")))
  37. (define *module-sources*
  38. '(((sxml ssax) . "http://ssax.sourceforge.net/")
  39. ((sxml xpath) . "http://ssax.sourceforge.net/")
  40. ((sxml transform) . "http://ssax.sourceforge.net/")
  41. ((sxml apply-templates) . "http://ssax.sourceforge.net/")
  42. ((sxml ssax input-parse) . "http://ssax.sourceforge.net/")
  43. ((htmlprag) . "http://neilvandyke.org/htmlprag/")))
  44. (define *scripts* '())
  45. ;; arch-tag: e493ad42-ad58-451c-a2d6-b17ba6c1d1d0