abbreviations.xsl revision 1155
496N/A<!--
0N/A ! CDDL HEADER START
0N/A !
0N/A ! The contents of this file are subject to the terms of the
1422N/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.
919N/A !
919N/A ! You can obtain a copy of the license at
919N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
919N/A ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
919N/A ! See the License for the specific language governing permissions
0N/A ! and limitations under the License.
919N/A !
919N/A ! When distributing Covered Code, include this CDDL HEADER in each
919N/A ! file and include the License file at
0N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
919N/A ! add the following below this CDDL HEADER, with the fields enclosed
919N/A ! by brackets "[]" replaced with your own identifying information:
919N/A ! Portions Copyright [yyyy] [name of copyright owner]
919N/A !
919N/A ! CDDL HEADER END
919N/A !
919N/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 <!--
1027N/A This XSLT file contains a list of acronyms and abbreviations which should
1027N/A be converted to upper-case when used in applications (e.g. as Java names).
1027N/A -->
1027N/A <!--
1027N/A Determines whether or not the provided word is a known abbreviation or
1027N/A acronym.
1027N/A
0N/A @param value The word.
911N/A
1422N/A @return Returns the string "true" if the word is an abbreviation.
496N/A -->
1422N/A <xsl:template name="is-abbreviation">
0N/A <xsl:param name="value" select="/.." />
911N/A <xsl:value-of
496N/A select="$value = 'aci' or $value = 'ip' or $value = 'ssl'
0N/A or $value = 'dn' or $value = 'rdn' or $value = 'jmx'
0N/A or $value = 'smtp' or $value = 'http' or $value = 'https'
0N/A or $value = 'ldap' or $value = 'ldaps' or $value = 'ldif'
0N/A or $value = 'jdbc' or $value = 'tcp' or $value = 'tls'
0N/A or $value = 'pkcs11' or $value = 'sasl' or $value = 'gssapi'
0N/A or $value = 'md5' or $value = 'je' or $value = 'dse' " />
0N/A </xsl:template>
0N/A</xsl:stylesheet>
0N/A