01: /*
02: * File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/commons/CmsPublishBrokenRelationFormatter.java,v $
03: * Date : $Date: 2008-02-27 12:05:23 $
04: * Version: $Revision: 1.4 $
05: *
06: * This library is part of OpenCms -
07: * the Open Source Content Management System
08: *
09: * Copyright (c) 2002 - 2008 Alkacon Software GmbH (http://www.alkacon.com)
10: *
11: * This library is free software; you can redistribute it and/or
12: * modify it under the terms of the GNU Lesser General Public
13: * License as published by the Free Software Foundation; either
14: * version 2.1 of the License, or (at your option) any later version.
15: *
16: * This library is distributed in the hope that it will be useful,
17: * but WITHOUT ANY WARRANTY; without even the implied warranty of
18: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19: * Lesser General Public License for more details.
20: *
21: * For further information about Alkacon Software GmbH, please see the
22: * company website: http://www.alkacon.com
23: *
24: * For further information about OpenCms, please see the
25: * project website: http://www.opencms.org
26: *
27: * You should have received a copy of the GNU Lesser General Public
28: * License along with this library; if not, write to the Free Software
29: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30: */
31:
32: package org.opencms.workplace.commons;
33:
34: import org.opencms.workplace.list.I_CmsListFormatter;
35:
36: import java.util.Locale;
37:
38: /**
39: * This list item detail formatter for broken links.<p>
40: *
41: * @author Michael Moossen
42: *
43: * @version $Revision: 1.4 $
44: *
45: * @since 6.5.5
46: */
47: public class CmsPublishBrokenRelationFormatter implements
48: I_CmsListFormatter {
49:
50: /** Resource name prefix for broken link sources. */
51: public static final String PREFIX_SOURCES = "%";
52:
53: /** Resource name prefix for broken link targets. */
54: public static final String PREFIX_TARGETS = "$";
55:
56: /**
57: * @see org.opencms.workplace.list.I_CmsListFormatter#format(java.lang.Object, java.util.Locale)
58: */
59: public String format(Object data, Locale locale) {
60:
61: String message = Messages
62: .get()
63: .getBundle(locale)
64: .key(
65: Messages.GUI_PUBLISH_BROKENRELATIONS_DETAIL_RELATION_SOURCES_0);
66: String content = "";
67: if (data != null && data.toString().length() > 0) {
68: content = data.toString().substring(1);
69: if (data.toString().startsWith(PREFIX_TARGETS)) {
70: message = Messages
71: .get()
72: .getBundle(locale)
73: .key(
74: Messages.GUI_PUBLISH_BROKENRELATIONS_DETAIL_RELATION_TARGETS_0);
75: }
76: }
77: StringBuffer html = new StringBuffer(512);
78: html
79: .append("<table border='0' cellspacing='0' cellpadding='0'>\n");
80: html.append("\t<tr>\n");
81: html
82: .append("\t\t<td width='150' align='right' class='listdetailhead'>\n");
83: html.append("\t\t\t");
84: html.append(message);
85: html.append(" : \n");
86: html.append("\t\t</td>\n");
87: html
88: .append("\t\t<td class='listdetailitem' style='white-space:normal;'>\n");
89: html.append("\t\t\t");
90: html.append(content);
91: html.append("\n");
92: html.append("\t\t</td>\n");
93: html.append("\t</tr>\n");
94: html.append("</table>\n");
95: return html.toString();
96: }
97: }
|