From 5ab3180eafac0811222b41d7a3b9717384e62dde Mon Sep 17 00:00:00 2001
From: coulbeck <coulbeck@localhost>
Date: Fri, 20 Apr 2007 22:23:11 +0000
Subject: [PATCH] Migrate the BackendConfigManager to the new configuration framework.
---
opendj-sdk/opends/resource/admin/abbreviations.xsl | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opendj-sdk/opends/resource/admin/abbreviations.xsl b/opendj-sdk/opends/resource/admin/abbreviations.xsl
index 90d72f0..88c5fe4 100644
--- a/opendj-sdk/opends/resource/admin/abbreviations.xsl
+++ b/opendj-sdk/opends/resource/admin/abbreviations.xsl
@@ -33,20 +33,20 @@
<!--
Determines whether or not the provided word is a known abbreviation or
acronym.
-
+
@param value The word.
-
+
@return Returns the string "true" if the word is an abbreviation.
-->
<xsl:template name="is-abbreviation">
<xsl:param name="value" select="/.." />
<xsl:value-of
- select="$value = 'aci' or $value = 'ip' or $value = 'ssl'
+ select="$value = 'aci' or $value = 'ip' or $value = 'ssl'
or $value = 'dn' or $value = 'rdn' or $value = 'jmx'
- or $value = 'smtp' or $value = 'http' or $value = 'https'
+ or $value = 'smtp' or $value = 'http' or $value = 'https'
or $value = 'ldap' or $value = 'ldaps' or $value = 'ldif'
or $value = 'jdbc' or $value = 'tcp' or $value = 'tls'
or $value = 'pkcs11' or $value = 'sasl' or $value = 'gssapi'
- or $value = 'md5' " />
+ or $value = 'md5' or $value = 'je' or $value = 'dse' " />
</xsl:template>
</xsl:stylesheet>
--
Gitblit v1.10.0