Child: [r11] (diff)

Download this file

frontPage.java    72 lines (60 with data), 0 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* 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.core;
import script.Plugin;
import script.log;
import utils.html;
/**
*
* @author Nuno Brito, 21st of December 2013 in Darsmtadt, Germany
*/
public class frontPage 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");
}
/**
* Do the front screen that is displayed to users on startup
*/
void doScreen() {
String timeLine = www.twitter.getTimeLine("@triplechecked");
// did we got anything from the web?
if(timeLine == null){
// nothing, just return without further action
return;
}
String navigation = ""
//+ html.br
+ html.h2("Actions")
+ html.link("Create a new SPDX", "/spdx/create.java?x=main")
+ html.br
+ html.br
+ "View SPDX archive"
+ html.br
+ html.br
+ "";
String result = ""
+ html.div()
+ navigation
+ html.h2("Share your open source news "
+ html.link("@triplechecked", "http://twitter.com/triplechecked")
+ "!")
+ timeLine
+ html._div
;
core.studio.editorPane(is.contentHTML, false, 0, result);
}
}