10139N/A<?xml version="1.0" encoding="ISO-8859-1"?>
10139N/A<xsl:stylesheet version="1.0"
10139N/Axmlns:xsl="http://www.w3.org/1999/XSL/Transform">
12219N/A<!--
10139N/A ! CDDL HEADER START
10139N/A !
10139N/A ! The contents of this file are subject to the terms of the
10139N/A ! Common Development and Distribution License, Version 1.0 only
10139N/A ! (the "License"). You may not use this file except in compliance
10139N/A ! with the License.
10139N/A !
10139N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
10139N/A ! or http://forgerock.org/license/CDDLv1.0.html.
12360N/A ! See the License for the specific language governing permissions
10139N/A ! and limitations under the License.
10139N/A !
10139N/A ! When distributing Covered Code, include this CDDL HEADER in each
10139N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
11819N/A ! If applicable, add the following below this CDDL HEADER, with the
10287N/A ! fields enclosed by brackets "[]" replaced with your own identifying
10139N/A ! information:
10139N/A ! Portions Copyright [yyyy] [name of copyright owner]
10139N/A !
10139N/A ! CDDL HEADER END
10139N/A !
10139N/A ! Copyright 2007-2008 Sun Microsystems, Inc.
10139N/A ! Portions Copyright 2011 ForgeRock AS
10139N/A ! -->
10139N/A
10139N/A<xsl:output method="html"/>
10139N/A
10139N/A<xsl:template match="/">
10139N/A
10139N/A <xsl:element name="html">
10139N/A
10139N/A <xsl:variable name="opends-url" select="'http://www.forgerock.com/'"/>
10139N/A <xsl:variable name="opends-images" select="concat($opends-url,'public/images/')"/>
10139N/A <xsl:variable name="opends-logo" select="concat($opends-images,'opendj_logo.png')"/>
10139N/A
10139N/A <link rel="stylesheet" type="text/css" href="/branding/css/print.css" media="print"/>
10139N/A
10139N/A <xsl:element name="head">
10139N/A
10139N/A <link rel="stylesheet" type="text/css" href="/branding/css/print.css" media="print"/>
10139N/A <link rel="stylesheet" href="https://opends.dev.java.net/public/css/opends.css" type="text/css"/>
10139N/A
10139N/A <xsl:element name="title">
10139N/A <xsl:value-of select="'Test Specification'"/>
10139N/A </xsl:element>
10139N/A
10139N/A </xsl:element>
10139N/A
10139N/A <xsl:element name="body">
10139N/A
10139N/A <xsl:element name="table">
10139N/A <xsl:attribute name="class">
10139N/A <xsl:value-of select="'tertmasttable'"/>
10139N/A </xsl:attribute>
10139N/A <xsl:attribute name="cellspacing">
10139N/A <xsl:value-of select="'0'"/>
10139N/A </xsl:attribute>
10139N/A <xsl:attribute name="width">
10139N/A <xsl:value-of select="'100%'"/>
10139N/A </xsl:attribute>
10139N/A <xsl:element name="tr">
10139N/A <xsl:element name="td">
10139N/A <xsl:element name="div">
10139N/A <xsl:attribute name="class">
10139N/A <xsl:value-of select="'collectionheader'"/>
10139N/A </xsl:attribute>
10139N/A <xsl:value-of select="'Test Specifications for OpenDJ'"/>
10139N/A </xsl:element>
10139N/A </xsl:element>
10139N/A <xsl:element name="td">
10139N/A <xsl:attribute name="width">
10139N/A <xsl:value-of select="'10%'"/>
10139N/A </xsl:attribute>
10139N/A <xsl:element name="a">
10139N/A <xsl:attribute name="href">
10139N/A <xsl:value-of select="$opends-url"/>
10139N/A </xsl:attribute>
10139N/A <xsl:element name="img">
10139N/A <xsl:attribute name="src">
10139N/A <xsl:value-of select="$opends-logo"/>
10139N/A </xsl:attribute>
10139N/A <xsl:attribute name="alt">
10139N/A <xsl:value-of select="'OpenDJ Logo'"/>
10139N/A </xsl:attribute>
10139N/A <xsl:attribute name="align">
10139N/A <xsl:value-of select="'middle'"/>
10139N/A </xsl:attribute>
12360N/A <xsl:attribute name="border">
12360N/A <xsl:value-of select="'0'"/>
12360N/A </xsl:attribute>
12219N/A <xsl:attribute name="height">
12219N/A <xsl:value-of select="'33'"/>
12219N/A </xsl:attribute>
11922N/A <xsl:attribute name="width">
11922N/A <xsl:value-of select="'104'"/>
11922N/A </xsl:attribute>
11819N/A </xsl:element>
11819N/A </xsl:element>
11819N/A </xsl:element>
11416N/A </xsl:element>
11416N/A </xsl:element>
11416N/A
11273N/A <hr noshade="noshade" size="1" />
11273N/A
11273N/A <xsl:element name="br"/>
11174N/A
11174N/A <xsl:variable name="testspec" select="/qa/doc/testspec"/>
11174N/A
11128N/A <xsl:element name="ol">
11128N/A
11128N/A <xsl:for-each select="$testspec">
11067N/A
11067N/A <!-- Test Spec List -->
11067N/A <xsl:element name="li">
10973N/A <xsl:element name="a">
10973N/A <xsl:attribute name="href">
10973N/A <xsl:value-of select="@location"/>
10912N/A </xsl:attribute>
10912N/A <xsl:value-of select="@name"/>
10912N/A </xsl:element>
10746N/A </xsl:element>
10746N/A
10746N/A </xsl:for-each>
10651N/A
10651N/A </xsl:element>
10651N/A
10592N/A </xsl:element>
10592N/A
10592N/A </xsl:element>
10476N/A
10476N/A
10476N/A</xsl:template>
10287N/A
10287N/A
10287N/A</xsl:stylesheet>
10287N/A