/**
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (http://triplecheck.de)
* Created: 2014-01-16T00:00:00Z
* LicenseName: NOASSERTION
* FileName: frontPage.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright (c) 2014 Nuno Brito, TripleCheck </text>
* FileComment: <text> Defines the front page when the program starts </text>
*/
package basic;
import definitions.Messages;
import definitions.is;
import main.controller;
import script.Plugin;
import script.log;
import utils.html;
import www.RequestOrigin;
import www.Table;
import www.WebRequest;
/**
*
* @author Nuno Brito, 21st of December 2013 in Darsmtadt, Germany
*/
public class home extends Plugin{
@Override
public void startup(){
// add our node to the tree right after the "Tools" node is added
log.hooks.addAction(Messages.CallFrontScreen, thisFile, "doScreen");
}
void doScreen(){
WebRequest request = new WebRequest();
// signal that this request is coming from the user interface
request.requestOrigin = RequestOrigin.GUI;
request.BaseFolder = thisFile.getParentFile();
request.scriptFile = thisFile;
request.scriptMethod = is.methodDefault;
// submit the request to be executed
controller.process(request);
}
/**
* A wrapper for the doScreen method when requested from the web
* @param request the request for this method
*/
@Override
public void main(WebRequest request){
String navigationMain = ""
+ html.div()
+ html.link("Create new SPDX", "/spdx/create")
+ html.br
+ html.link("View SPDX files", "/spdx/show")
+ html._div
+ "";
String navigationSub = ""
// + html.h2("Actions")
+ html.br
//+ html.br
+ html.div()
+ "Other actions: "
+ html.link("Log", "/basic/ToolsLog.java?x=showPage")
+ html.divider
+ html.link("Status", "/basic/status")
+ html.divider
+ html.link("Server", "/webserver/server")
+ html.divider
+ html.link("Forum", "http://triplecheck.de/forum")
+ html._div
// + html.br
// + html.br
// + html.br
+ "";
// get twitter new if available
String timeLine = html.getRSS("http://triplecheck.de/feed");
String[] params = new String[]{
html.getIcon("logo.png", request)
, navigationMain
};
int[] size = new int[]{40, 200};
String result = ""
+ html.div()
+ html.br
+ Table.alignedTable(params, size)
//+ navigation
+ navigationSub
+ html.br
+ html.br
+ timeLine
+ html._div
;
request.setAnswer(result);
}
}