--- a/tool/run/plugins/basic/home.java
+++ b/tool/run/plugins/basic/home.java
@@ -49,6 +49,7 @@
controller.process(request);
}
+
/**
* A wrapper for the doScreen method when requested from the web
* @param request the request for this method
@@ -76,7 +77,7 @@
+ html.divider
+ html.link("Server", "/webserver/server")
+ html.divider
- + html.link("Feedback", "http://triplecheck.de/forum")
+ + html.link("Forum", "http://triplecheck.de/forum")
+ html._div
// + html.br
// + html.br
@@ -85,21 +86,8 @@
// get twitter new if available
- String timeLine = www.twitter.getTimeLine("@triplechecked");
+ String timeLine = html.getRSS("http://triplecheck.de/feed");
- String newsLine =
- "Share your open source news "
- + html.link("@triplechecked", "http://twitter.com/triplechecked")
- + timeLine;
-
- // did we got anything from the web?
- if(timeLine == null){
- // nothing, just return without further action
- newsLine = "Interested in licensing compliance? Follow us "
- + html.link("@triplechecked", "http://twitter.com/triplechecked")
- ;
- //return;
- }
String[] params = new String[]{
html.getIcon("logo.png", request)
@@ -116,13 +104,16 @@
+ navigationSub
+ html.br
+ html.br
- + newsLine
+ + timeLine
+ html._div
;
request.setAnswer(result);
}
+
+
+
}