info.xsl 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version='1.0'?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:fo="http://www.w3.org/1999/XSL/Format"
  4. version='1.0'>
  5. <!-- ********************************************************************
  6. $Id: info.xsl 6910 2007-06-28 23:23:30Z xmldoc $
  7. ********************************************************************
  8. This file is part of the XSL DocBook Stylesheet distribution.
  9. See ../README or http://docbook.sf.net/release/xsl/current/ for
  10. copyright and other information.
  11. ******************************************************************** -->
  12. <!-- These templates define the "default behavior" for info
  13. elements. Even if you don't process the *info wrappers,
  14. some of these elements are needed because the elements are
  15. processed from named templates that are called with modes.
  16. Since modes aren't sticky, these rules apply.
  17. (TODO: clarify this comment) -->
  18. <!-- ==================================================================== -->
  19. <!-- called from named templates in a given mode -->
  20. <xsl:template match="corpauthor">
  21. <fo:inline>
  22. <xsl:apply-templates/>
  23. </fo:inline>
  24. </xsl:template>
  25. <!-- ==================================================================== -->
  26. </xsl:stylesheet>