From efde227b9d0180122362133a750c6b322601c883 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 19 Jul 2007 20:28:20 +0000
Subject: [PATCH] This initial implementation lays most of the groundwork necessary for signaling information and actions to the user during upgrade and reversion. However the only public effect this code has on the current upgrade tool is an informational dialog dialog if an upgrade is attempted from a build prior to one of the issues (2049, 1582, 890).
---
opends/src/quicksetup/org/opends/quicksetup/Constants.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/Constants.java b/opends/src/quicksetup/org/opends/quicksetup/Constants.java
index 0b92672..b441f47 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Constants.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Constants.java
@@ -51,7 +51,31 @@
/** HTML italics close tag. */
public static final String HTML_ITALICS_CLOSE = "</i>";
+ /** HTML unordered list open tag. */
+ public static final Object HTML_UNORDERED_LIST_OPEN = "<ul>";
+
+ /** HTML unordered list close tag. */
+ public static final Object HTML_UNORDERED_LIST_CLOSE = "</ul>";
+
+ /** HTML unordered list open tag. */
+ public static final Object HTML_ORDERED_LIST_OPEN = "<ol>";
+
+ /** HTML unordered list close tag. */
+ public static final Object HTML_ORDERED_LIST_CLOSE = "</ol>";
+
+ /** HTML list item open tag. */
+ public static final String HTML_LIST_ITEM_OPEN = "<li>";
+
+ /** HTML list item close tag. */
+ public static final String HTML_LIST_ITEM_CLOSE = "</li>";
+
/** Default dynamic name of directory manager. */
public static final String DIRECTORY_MANAGER_DN = "cn=Directory Manager";
+ /** These HTML tags cause a line break in formatted text. */
+ public static final String[] BREAKING_TAGS = {
+ HTML_LINE_BREAK,
+ HTML_LIST_ITEM_CLOSE
+ };
+
}
--
Gitblit v1.10.0