manifestMO.xsl revision bb8874d71cdd8e5288297b9727703437c6dfcfed
0N/A<!--
2362N/A ! CDDL HEADER START
0N/A !
0N/A ! The contents of this file are subject to the terms of the
0N/A ! Common Development and Distribution License, Version 1.0 only
0N/A ! (the "License"). You may not use this file except in compliance
2362N/A ! with the License.
0N/A !
2362N/A ! You can obtain a copy of the license at
0N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
0N/A ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
0N/A ! See the License for the specific language governing permissions
0N/A ! and limitations under the License.
0N/A !
0N/A ! When distributing Covered Code, include this CDDL HEADER in each
0N/A ! file and include the License file at
0N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
0N/A ! add the following below this CDDL HEADER, with the fields enclosed
0N/A ! by brackets "[]" replaced with your own identifying information:
0N/A ! Portions Copyright [yyyy] [name of copyright owner]
2362N/A !
2362N/A ! CDDL HEADER END
2362N/A !
0N/A !
0N/A ! Portions Copyright 2007 Sun Microsystems, Inc.
0N/A ! -->
0N/A<xsl:stylesheet version="1.0" xmlns:adm="http://www.opends.org/admin"
0N/A xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
0N/A <xsl:import href="java-utilities.xsl" />
0N/A <xsl:output method="text" encoding="us-ascii" />
0N/A <!--
0N/A Main document parsing template.
0N/A -->
0N/A <xsl:template match="/">
0N/A <xsl:choose>
0N/A <xsl:when test="adm:root-managed-object">
0N/A <xsl:value-of
0N/A select="'org.opends.server.admin.std.meta.RootCfgDefn&#xa;'" />
0N/A </xsl:when>
0N/A <xsl:when test="adm:managed-object">
0N/A <xsl:value-of
0N/A select="normalize-space(adm:managed-object/@package)" />
0N/A <xsl:value-of select="'.meta.'" />
0N/A <xsl:call-template name="name-to-java">
0N/A <xsl:with-param name="value"
0N/A select="normalize-space(adm:managed-object/@name)" />
0N/A </xsl:call-template>
0N/A <xsl:value-of select="'CfgDefn&#xa;'" />
0N/A </xsl:when>
0N/A </xsl:choose>
0N/A </xsl:template>
0N/A</xsl:stylesheet>
0N/A