<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:h="http://www.w3.org/1999/xhtml"
                exclude-result-prefixes="h"
                version="1.0">

<!-- ====================================================================== 
     rels-to-unordered-lists.xsl                                                   

     This stylesheet defines a single public template named ListAllRels 
     which will create one, or more, unordered lists based on the link 
     elements in the source document.

     List items are grouped according to the rel attribute. Elements whose rel 
     attribute is 'stylesheet' are explictly excluded.

     Version : 1.1
     Date    : $Date: 2003/01/03 23:36:23 $

     Copyright (c) 2002 Aaron Straup Cope. All Rights Reserved.

     Documentation: http://www.aaronland.info/xsl/xhtml/rels-to-unordered-lists

     Permission to use, copy, modify and distribute this stylesheet and its 
     accompanying documentation for any purpose and without fee is hereby 
     granted in perpetuity, provided that the above copyright notice and 
     this paragraph appear in all copies.  The copyright holders make no 
     representation about the suitability of the stylesheet for any purpose.

     It is provided "as is" without expressed or implied warranty.

     ====================================================================== 
     Changes
     
     1.1     December 13, 2002

             - Deprecated in favour of 'links-to-unordered-lists.xsl'

             - Added hooks to pull in newer stylesheet and do the right thing
               for people who may be include this stylesheet in their own.

     1.0     December 06, 2002

             - Initial release

     ====================================================================== -->

     <xsl:include href = "links-to-unordered-lists.xsl" />

<!-- ======================================================================

     ListAllRels
     ====================================================================== -->

     <xsl:template name = "ListAllRels">
      <xsl:call-template name = "ListAllLinks" />
     </xsl:template>

     <xsl:template name = "ListOneRel">
      <xsl:call-template name = "ListRevGroup" />
     </xsl:template>

<!-- ======================================================================
     FIN
     ====================================================================== -->

</xsl:stylesheet>
