ldapMOProfile.xsl revision 1128
0N/A<!--
0N/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
0N/A ! with the License.
0N/A !
0N/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]
0N/A !
0N/A ! CDDL HEADER END
0N/A !
0N/A !
0N/A ! Portions Copyright 2007 Sun Microsystems, Inc.
0N/A ! -->
0N/A<xsl:stylesheet version="1.0"
0N/A xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
0N/A xmlns:adm="http://www.opends.org/admin"
0N/A xmlns:ldap="http://www.opends.org/admin-ldap">
0N/A <xsl:import href="java-utilities.xsl" />
0N/A <xsl:import href="preprocessor.xsl" />
0N/A <xsl:import href="property-types.xsl" />
0N/A <xsl:output method="text" encoding="us-ascii" />
0N/A <!--
0N/A Document parsing.
0N/A -->
0N/A <xsl:template match="/">
0N/A <xsl:if
0N/A test="not($this/adm:profile[@name='ldap']/ldap:object-class/ldap:name) and not($this-is-root)">
0N/A <xsl:message terminate="yes">
0N/A <xsl:value-of
0N/A select="concat('No object class found for managed object definition ', $this-name)" />
0N/A </xsl:message>
0N/A </xsl:if>
0N/A <xsl:value-of
0N/A select="concat('objectclass=',
0N/A normalize-space($this/adm:profile[@name='ldap']/ldap:object-class/ldap:name),
0N/A '&#xa;')" />
0N/A <xsl:for-each select="$this-all-properties">
0N/A <xsl:sort select="@name" />
0N/A <xsl:if
0N/A test="not(adm:profile[@name='ldap']/ldap:attribute/ldap:name)">
0N/A <xsl:message terminate="yes">
0N/A <xsl:value-of
0N/A select="concat('No attribute type found for property ', @name, ' in managed object definition ', $this-name)" />
0N/A </xsl:message>
0N/A </xsl:if>
<xsl:value-of
select="concat('attribute.',
normalize-space(@name),
'=',
normalize-space(adm:profile[@name='ldap']/ldap:attribute/ldap:name),
'&#xa;')" />
</xsl:for-each>
<xsl:for-each select="$this-all-relations">
<xsl:sort select="@name" />
<xsl:if test="not(adm:profile[@name='ldap']/ldap:rdn-sequence)">
<xsl:message terminate="yes">
<xsl:value-of
select="concat('No RDN sequence found for relation ', @name, ' in managed object definition ', $this-name)" />
</xsl:message>
</xsl:if>
<xsl:value-of
select="concat('rdn.',
normalize-space(@name),
'=',
normalize-space(adm:profile[@name='ldap']/ldap:rdn-sequence),
'&#xa;')" />
<xsl:choose>
<xsl:when
test="adm:profile[@name='ldap']/ldap:naming-attribute">
<xsl:value-of
select="concat('naming-attribute.',
normalize-space(@name),
'=',
normalize-space(adm:profile[@name='ldap']/ldap:naming-attribute),
'&#xa;')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of
select="concat('naming-attribute.', normalize-space(@name), '=cn&#xa;')" />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>