-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
147 lines (134 loc) · 4.41 KB
/
index.jsp
File metadata and controls
147 lines (134 loc) · 4.41 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<%@ page import="java.util.*"%>
<jsp:useBean id="PubCloudGenerator"
class="org.icapture.tag.PubMed.PubMedCloudGeneratorBean"
scope="session" />
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META http-equiv="Content-Style-Type" content="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
</HEAD>
<TITLE>PubCloud</TITLE>
<BODY>
<!-- -------------------------------- Title --------------------------------- -->
<TABLE cellpadding="5" border="0" width="415">
<TR>
<TD>
<H1>PubCloud</H1>
</TD>
<TD><SPAN class="fine_print">Home</SPAN></TD>
<TD><SPAN class="fine_print"><A
HREF="http://www.cs.bell-labs.com/cm/cs/who/pfps/temp/web/www2007.org/posters/poster1046.pdf"
TARGET="_BLANK">Publication</A></SPAN></TD>
<TD><SPAN class="fine_print"><A HREF="faq.html"
TARGET="_blank">FAQ</A></SPAN></TD>
<TD><SPAN class="fine_print"><A
HREF="javascript:window.print();">Print</A></SPAN></TD>
</TR>
</TABLE>
<!-- ------------------------------------------------------------------------ -->
<FORM method="GET" action="gc.jsp" target="_blank"><!-- Required for query generation: PubMed Query and Cloud Type -->
<TABLE cellpadding="5" width="850">
<TR>
<TD>
<TABLE border="0" width="800">
<TR>
<TD><SPAN class="option_title">PubMed Query: <INPUT
TYPE="text" NAME="query" SIZE="100"></SPAN></TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD>
<TABLE border="0" width="500">
<TR>
<TD><SPAN class="option_title">Cloud Type: </SPAN></TD>
<TD><SPAN class="option_text"><INPUT TYPE="radio"
NAME="type" VALUE="abstract" CHECKED> Abstracts</SPAN></TD>
<TD><SPAN class="option_text"><INPUT TYPE="radio"
NAME="type" VALUE="author"> Authors</SPAN></TD>
<TD><SPAN class="option_text"><INPUT TYPE="radio"
NAME="type" VALUE="mesh"> MeSH Terms</SPAN></TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<!-- ---------------------------------------------------------- --> <BR>
<!-- ------------------- Control Panel ------------------------ -->
<TABLE cellpadding="5" width="850"
STYLE="border-style: dashed; border-width: thin; border-color: blue">
<TR>
<TD><SPAN class="option_panel_title">Control Panel</SPAN></TD>
</TR>
<TR>
<TD><SPAN class="option_title">Tag Option:</SPAN></TD>
<TD>
<TABLE cellpadding="5" border="0" width="650">
<TR>
<TD>
<SPAN class="option_text">
<INPUT TYPE="radio" NAME="tag_option" VALUE="numTag" CHECKED>
Number: <INPUT TYPE="text" NAME="numTagCount" SIZE="10" VALUE="100">
</SPAN>
</TD>
</TR>
<TR>
<TD>
<SPAN class="option_text">
<INPUT TYPE="radio" NAME="tag_option" VALUE="percentTags">
Percentage: <INPUT TYPE="text" NAME="percentTagCount" SIZE="10" VALUE="50">%
</SPAN>
</TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD><SPAN class="option_title">Date Range: </SPAN></TD>
<TD>
<TABLE cellpadding="5" border="0" width="650">
<TR>
<TD><SPAN class="option_text">From <INPUT TYPE="text"
NAME="startYear" SIZE="5"> to <INPUT TYPE="text"
NAME="endYear" SIZE="5"> (Default: no range)</SPAN></TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD><SPAN class="option_title">Search Option: </SPAN></TD>
<TD>
<TABLE cellpadding="5" border="0" width="650">
<TR>
<TD><SPAN class="option_text"><INPUT TYPE="radio"
NAME="option" VALUE="most_recent" CHECKED> Most (NCBI
search) relevant <INPUT TYPE="text" NAME="recent" SIZE="5"
VALUE="100"> articles (Default: 100 articles)</SPAN></TD>
</TR>
<TR>
<TD><SPAN class="option_text"><INPUT TYPE="radio"
NAME="option" VALUE="random"> Randomly choose <INPUT
TYPE="text" NAME="percent" SIZE="5" VALUE="10">% articles
(Default: 10%)</SPAN></TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<!-- --------------------------------------------------------------- -->
<!-- ------------------------ Buttons ------------------------------ -->
<TABLE cellpadding="5" border="0" width="415">
<TR>
<TD><INPUT TYPE="submit" VALUE="Generate Cloud"> <INPUT
TYPE="reset" VALUE="Reset"></TD>
</TR>
</TABLE>
<!-- --------------------------------------------------------------_ -->
</FORM>
<BR>
<SPAN class="fine_print">Comments or questions, please contact: <I><A
HREF="mailto:bkuo@mrl.ubc.ca">Byron Kuo</A></I>. Copyright (c) 2006</SPAN>
</BODY>
</HTML>