use jax rs instead of wicket for rest api

This commit is contained in:
Athou
2013-03-23 15:52:26 +01:00
parent e2b639678c
commit b94085991d
15 changed files with 204 additions and 130 deletions

View File

@@ -72,7 +72,7 @@ public class FeedParser {
}
private String handleContent(String content) {
Document doc = Jsoup.parse(content);
Document doc = Jsoup.parse(content, "UTF-8");
doc.select("a").attr("target", "_blank");
return doc.outerHtml();
}