X-Git-Url: http://git.phpeclipse.com diff --git a/archive/org.plog4u.wiki/src/org/plog4u/wiki/macro/QuoteMacro.java b/archive/org.plog4u.wiki/src/org/plog4u/wiki/macro/QuoteMacro.java new file mode 100644 index 0000000..4d3158d --- /dev/null +++ b/archive/org.plog4u.wiki/src/org/plog4u/wiki/macro/QuoteMacro.java @@ -0,0 +1,84 @@ +/* + * This file is part of "SnipSnap Radeox Rendering Engine". + * + * Copyright (c) 2002 Stephan J. Schmidt, Matthias L. Jugel + * All Rights Reserved. + * + * Please visit http://radeox.org/ for updates and contact. + * + * --LICENSE NOTICE-- + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * --LICENSE NOTICE-- + */ + +package org.plog4u.wiki.macro; + +import java.io.IOException; +import java.io.Writer; + + +//import org.apache.commons.logging.Log; +//import org.apache.commons.logging.LogFactory; +import org.plog4u.wiki.filter.ICachableMacro; +import org.plog4u.wiki.filter.INoParserBodyFilterMacro; +import org.radeox.macro.LocalePreserved; +import org.radeox.macro.parameter.MacroParameter; + +/* + * Macro to display quotations from other sources. The + * output is wrapped usually in
to look like + * a quotation. + * + * @author stephan + * @team sonicteam + */ + +public class QuoteMacro extends LocalePreserved implements INoParserBodyFilterMacro, ICachableMacro { +// private static Log log = LogFactory.getLog(QuoteMacro.class); + + private String[] paramDescription = + {"?1: source", + "?2: displayed description, default is Source"}; + + public String[] getParamDescription() { + return paramDescription; + } + + public QuoteMacro() { + } + + public String getLocaleKey() { + return "macro.quote"; + } + public void execute(Writer writer, MacroParameter params) + throws IllegalArgumentException, IOException { + + writer.write("
"); + writer.write(params.getContent()); + String source = "Source"; // i18n + if (params.getLength() == 2) { + source = params.get(1); + } + // if more than one was present, we + // should show a description for the link + if (params.getLength() > 0) { + writer.write(""); + writer.write(source); + writer.write(""); + } + writer.write("
"); + return; + } +}