home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <!--
- Copyright 1999-2004 The Apache Software Foundation
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-
- <!-- CVS: $Id: pagedlist2html.xsl,v 1.2 2004/03/06 02:26:15 antonio Exp $ -->
-
- <!DOCTYPE xsl:stylesheet [
- <!ENTITY laquo "«" >
- <!ENTITY raquo "»" >
- <!ENTITY nbsp " " >
- ]>
-
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:page="http://apache.org/cocoon/paginate/1.0"
- >
-
- <xsl:template match="/">
- <html>
- <head>
- <title>Paged List</title>
- </head>
- <body bgcolor="white" alink="red" link="blue" vlink="blue">
- <h3>Paged List</h3>
- <xsl:apply-templates/>
- <a href="{//page:page/@clean-uri}">single page version</a>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="list">
- <ul>
- <xsl:apply-templates/>
- </ul>
- </xsl:template>
-
- <xsl:template match="item">
- <li><xsl:apply-templates/></li>
- </xsl:template>
-
- <xsl:template match="page:page">
- <xsl:if test="@total > 1">
-
- <!-- page navigation table -->
- <table border="0">
- <tr>
-
- <!-- td prev -->
- <td align="right">
- <xsl:if test="page:link[@type='prev']">
- <xsl:variable name="previous" select="@current - 1"/>
- <a href="{page:link[@page = $previous]/@uri}">« prev</a>
- </xsl:if>
- </td>
-
- <!-- td current -->
- <td align="center">
- [page <xsl:value-of select="@current"/> of <xsl:value-of select="@total"/>]
- </td>
-
- <!-- td next -->
- <td align="left">
- <xsl:if test="page:link[@type='next']">
- <xsl:variable name="next" select="@current + 1"/>
- <a href="{page:link[@page = $next]/@uri}">next »</a>
- </xsl:if>
- </td>
-
- </tr>
- </table>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
-