initial contribution
[phpeclipse.git] / archive / org.plog4u.wiki / src / org / plog4u / wiki / macro / LinkMacro.java
1 /*
2  * This file is part of "SnipSnap Radeox Rendering Engine".
3  *
4  * Copyright (c) 2002 Stephan J. Schmidt, Matthias L. Jugel
5  * All Rights Reserved.
6  *
7  * Please visit http://radeox.org/ for updates and contact.
8  *
9  * --LICENSE NOTICE--
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  * --LICENSE NOTICE--
24  */
25 package org.plog4u.wiki.macro;
26
27 import java.io.IOException;
28 import java.io.Writer;
29
30
31 import org.plog4u.wiki.filter.ICachableMacro;
32 import org.radeox.api.engine.ImageRenderEngine;
33 import org.radeox.api.engine.RenderEngine;
34 import org.radeox.api.engine.context.RenderContext;
35 import org.radeox.macro.BaseLocaleMacro;
36 import org.radeox.macro.parameter.MacroParameter;
37 import org.radeox.util.Encoder;
38
39 /*
40  * Macro for displaying external links with a name. The normal UrlFilter
41  * takes the url as a name.
42  *
43  * @author stephan
44  * @team sonicteam
45  */
46
47 public class LinkMacro extends BaseLocaleMacro implements ICachableMacro {
48   public String getLocaleKey() {
49     return "macro.link";
50   }
51
52   public void execute(Writer writer, MacroParameter params)
53       throws IllegalArgumentException, IOException {
54
55     RenderContext context = params.getContext();
56     RenderEngine engine = context.getRenderEngine();
57
58     String text = params.get("text", 0);
59     String url = params.get("url", 1);
60     String img = params.get("img", 2);
61
62     // check for single url argument (text == url)
63     if(params.getLength() == 1) {
64       url = text;
65       text = Encoder.toEntity(text.charAt(0)) + Encoder.escape(text.substring(1));
66     }
67
68     if (url != null && text != null) {
69       writer.write("<span class=\"nobr\">");
70       if (!"none".equals(img) && engine instanceof ImageRenderEngine) {
71         writer.write(((ImageRenderEngine) engine).getExternalImageLink());
72       }
73       writer.write("<a href=\"");
74       writer.write(Encoder.escape(url));
75       writer.write("\">");
76       writer.write(text);
77       writer.write("</a></span>");
78     } else {
79       throw new IllegalArgumentException("link needs a name and a url as argument");
80     }
81     return;
82   }
83 }