From 1a75c24bf3008344ed09980d99799f4d46190dfb Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Fri, 27 Nov 2009 10:32:16 +0000
Subject: [PATCH] Fix for issue 4372 (control-panel output is on one line on copy) Use a workaround for bug http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4988885 by adding a character.
---
opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java | 28 ++++++++++++++++++----------
1 files changed, 18 insertions(+), 10 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java b/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
index 64828e2..dae39c4 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2006-2008 Sun Microsystems, Inc.
+ * Copyright 2006-2009 Sun Microsystems, Inc.
*/
package org.opends.quicksetup.util;
@@ -57,12 +57,20 @@
/**
* The constant used to separate parameters in an URL.
*/
- private String PARAM_SEPARATOR = "&&&&";
+ private static final String PARAM_SEPARATOR = "&&&&";
/**
* The space in HTML.
*/
- private static Message SPACE = Message.raw(" ");
+ private static final Message SPACE = Message.raw(" ");
+
+ /**
+ * The line break.
+ * The extra char is necessary because of bug:
+ * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4988885
+ */
+ private static final Message LINE_BREAK=
+ Message.raw(Constants.HTML_LINE_BREAK+" ");
/**
* Returns the HTML representation of the text without providing any style.
@@ -317,7 +325,7 @@
while (root != null)
{
stackBuf.append(Utils.getHtml(INFO_EXCEPTION_ROOT_CAUSE.get().toString()))
- .append(Constants.HTML_LINE_BREAK);
+ .append(getLineBreak());
stackBuf.append(getHtmlStack(root));
root = root.getCause();
}
@@ -330,10 +338,10 @@
if (msg != null)
{
buf.append(UIFactory.applyFontToHtml(Utils.getHtml(t.getMessage()),
- UIFactory.PROGRESS_ERROR_FONT)).append(Constants.HTML_LINE_BREAK);
+ UIFactory.PROGRESS_ERROR_FONT)).append(getLineBreak());
} else
{
- buf.append(t.toString()).append(Constants.HTML_LINE_BREAK);
+ buf.append(t.toString()).append(getLineBreak());
}
buf.append(getErrorWithStackHtml(openDiv, hideText, showText, stackText,
closeDiv, false));
@@ -361,7 +369,7 @@
*/
public Message getLineBreak()
{
- return Message.raw(Constants.HTML_LINE_BREAK);
+ return LINE_BREAK;
}
/**
@@ -436,7 +444,7 @@
.append(SPACE)
.append(SPACE)
.append(Utils.getHtml(ex.toString()))
- .append(Constants.HTML_LINE_BREAK);
+ .append(getLineBreak());
StackTraceElement[] stack = ex.getStackTrace();
for (StackTraceElement aStack : stack) {
buf.append(SPACE)
@@ -450,7 +458,7 @@
.append(SPACE)
.append(SPACE)
.append(Utils.getHtml(aStack.toString()))
- .append(Constants.HTML_LINE_BREAK);
+ .append(getLineBreak());
}
return buf.toString();
}
@@ -506,7 +514,7 @@
.append("\">").append(text).append("</a>");
if (hide)
{
- buf.append(Constants.HTML_LINE_BREAK).append(stackText);
+ buf.append(getLineBreak()).append(stackText);
}
buf.append(closeDiv);
--
Gitblit v1.10.0