<?xml version="1.0" encoding="utf-8"?> <!-- * '$RCSfile$' * Authors: Matt Jones * Copyright: 2000 Regents of the University of California and the * National Center for Ecological Analysis and Synthesis * For Details: http://www.nceas.ucsb.edu/ * * '$Author: cjones $' * '$Date: 2006-11-17 13:37:07 -0800 (Fri, 17 Nov 2006) $' * '$Revision: 3094 $' * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to * convert an XML file that is valid with respect to the eml-dataset.dtd * module of the Ecological Metadata Language (EML) into an HTML format * suitable for rendering with modern web browsers. --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html" encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" indent="yes" /> <xsl:template name="access"> <xsl:param name="accessfirstColStyle"/> <xsl:param name="accesssubHeaderStyle"/> <table class="{$tabledefaultStyle}"> <xsl:choose> <xsl:when test="references!=''"> <xsl:variable name="ref_id" select="references"/> <xsl:variable name="references" select="$ids[@id=$ref_id]" /> <xsl:for-each select="$references"> <xsl:call-template name="accessCommon"> <xsl:with-param name="accessfirstColStyle" select="$accessfirstColStyle"/> <xsl:with-param name="accesssubHeaderStyle" select="$accesssubHeaderStyle"/> </xsl:call-template> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:call-template name="accessCommon"> <xsl:with-param name="accessfirstColStyle" select="$accessfirstColStyle"/> <xsl:with-param name="accesssubHeaderStyle" select="$accesssubHeaderStyle"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> </table> </xsl:template> <xsl:template name="accessCommon"> <xsl:param name="accessfirstColStyle" /> <xsl:param name="accesssubHeaderStyle"/> <xsl:call-template name="accesssystem"> <xsl:with-param name="accessfirstColStyle" select="$accessfirstColStyle"/> <xsl:with-param name="accesssubHeaderStyle" select="$accesssubHeaderStyle"/> </xsl:call-template> <xsl:if test="normalize-space(./@order)='allowFirst' and (allow)"> <xsl:call-template name="allow_deny"> <xsl:with-param name="permission" select="'allow'"/> <xsl:with-param name="accessfirstColStyle" select="$accessfirstColStyle"/> </xsl:call-template> </xsl:if> <xsl:if test="(deny)"> <xsl:call-template name="allow_deny"> <xsl:with-param name="permission" select="'deny'"/> <xsl:with-param name="accessfirstColStyle" select="$accessfirstColStyle"/> </xsl:call-template> </xsl:if> <xsl:if test="normalize-space(acl/@order)='denyFirst' and (allow)"> <xsl:call-template name="allow_deny"> <xsl:with-param name="permission" select="'allow'"/> <xsl:with-param name="accessfirstColStyle" select="$accessfirstColStyle"/> </xsl:call-template> </xsl:if> </xsl:template> <xsl:template name="allow_deny"> <xsl:param name="permission"/> <xsl:param name="accessfirstColStyle" /> <xsl:choose> <xsl:when test="$permission='allow'"> <xsl:for-each select="allow"> <tr> <td class="{$accessfirstColStyle}"> Allow: </td> <td class="{$accessfirstColStyle}"> <xsl:for-each select="./permission"> <xsl:text>[</xsl:text><xsl:value-of select="."/><xsl:text>] </xsl:text> </xsl:for-each> </td> <td class="{$accessfirstColStyle}" > <xsl:for-each select="principal"> <xsl:value-of select="."/><br/> </xsl:for-each> </td> </tr> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="deny"> <tr> <td class="{$accessfirstColStyle}"> Deny: </td> <td class="{$accessfirstColStyle}"> <xsl:for-each select="./permission"> <xsl:text>[</xsl:text><xsl:value-of select="."/><xsl:text>] </xsl:text> </xsl:for-each> </td> <td class="{$accessfirstColStyle}" > <xsl:for-each select="principal"> <xsl:value-of select="."/><br/> </xsl:for-each> </td> </tr> </xsl:for-each> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="accesssystem"> <xsl:param name="accessfirstColStyle" /> <tr> <th colspan="3"> <xsl:text>Access Control:</xsl:text> </th> </tr> <tr> <td class="{$accessfirstColStyle}">Auth System:</td> <td class="{$secondColStyle}" colspan="2"><xsl:value-of select="./@authSystem"/></td> </tr> <tr> <td class="{$accessfirstColStyle}">Order:</td> <td class="{$secondColStyle}" colspan="2"><xsl:value-of select="./@order"/></td> </tr> </xsl:template> </xsl:stylesheet>