01: package com.technoetic.xplanner.wiki;
02:
03: import com.technoetic.xplanner.XPlannerProperties;
04:
05: public class SimpleWikiAdapter implements ExternalWikiAdapter {
06: public String formatWikiWord(String wikiWord) {
07: String url = new XPlannerProperties()
08: .getProperty(XPlannerProperties.WIKI_URL_KEY);
09: if (url != null) {
10: url = url.replaceAll("\\$1", wikiWord);
11: return "<a href='" + url + "'>" + wikiWord + "</a>";
12: } else {
13: return wikiWord;
14: }
15: }
16: }
|