-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.php
347 lines (274 loc) · 14.7 KB
/
index.php
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<!DOCTYPE html>
<!--
Copyright (C) 2012 Rob Stewart <[email protected]>, SerenA <http://www.serena.ac.uk>
This file is part of Discover-me-Semantically.
Discover-me-Semantically is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
-->
<html>
<head>
<title>Discover Me Semantically</title>
<link rel="icon" type="image/png" href="img/serena_logo.png">
<link rel="stylesheet" href="css/style.css">
<link href="css/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/urlEncode.js"></script>
<script src="js/jquery.ez-pinned-footer.js"></script>
<link href="css/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="js/prettify.js"></script>
<script type="text/javascript" src="js/jquery.infieldlabel.js"></script>
<script>
var goalOptionsMap = {};
</script>
<script type="text/javascript" src="js/auto-complete-configs.js"></script>
<script>
$(document).ready(function() {
var tableDivHeight = $(document).height();
$('#divFormArea').hide();
$('#divFormArea').height(tableDivHeight - 180);
$('#divFormArea').show();
var interestsArray = new Array();
var expertiseArray = new Array();
var findOutAboutArray = new Array();
var meetPersonArray = new Array();
var attendConfArray = new Array();
var visitPlaceArray = new Array();
var personalInterestsTable = $("#tableInterests");
var professionalExpertiseTable = $("#tableExpertise");
var findOutAboutTable = $("#tableFindOutAbout");
var meetPersonTable = $("#tableMeetPerson");
var attendConfTable = $("#tableAttendConf");
var visitPlaceTable = $("#tableVisitPlace");
var addExpertiseFunc = function() {
addElem(expertiseArray,
"expertise_serialized",
"professional_expertise",
"expertiseLbl",
"Add an area of expertise...",
professionalExpertiseTable,
autoCompleteDBpediaConfig);
};
var addInterestFunc = function() {
addElem(interestsArray,
"interests_serialized",
"personal_interest",
"interestLbl",
"Add an interest...",
personalInterestsTable,
autoCompleteDBpediaConfig);
};
var addFindOutAboutFunc = function() {
addElem(findOutAboutArray,
"findOutAbout_serialized",
"find_out_about",
"findOutAboutLbl",
"Something new...",
findOutAboutTable,
autoCompleteDBpediaConfig );
}
var addMeetPersonFunc = function() {
addElem(meetPersonArray,
"meetPerson_serialized",
"meet_person",
"meetPersonLbl",
"Academic person...",
meetPersonTable,
autoCompleteDBLPAuthorConfig);
}
var addAttendConfFunc = function() {
addElem(attendConfArray,
"attendConf_serialized",
"attend_conf",
"attendConfLbl",
"A computer science conference...",
attendConfTable,
autoCompleteDBLPConferenceConfig);
}
var addVisitPlaceFunc = function() {
addElem(visitPlaceArray,
"visitPlace_serialized",
"visit_place",
"visitPlaceLbl",
"Somewhere...",
visitPlaceTable,
autoCompleteDBpediaLocationConfig);
}
function addElem(arrayVal, serializedArray, fieldVal, labelVal, inputText, tableVal, autoCompleteCfg){
var i = arrayVal.length + 1;
var fieldVar = fieldVal + i;
var labelVar = labelVal + i;
var newRow = $("<tr><td>"+i+") </td><td><p><input id=\"" + fieldVar + "\" name=\"" + fieldVar + "\" size=\"50\" type=\"text\"/><label id=\"" + labelVar + "\" for=\"" + fieldVar + "\">" + inputText + "</label></p></td></tr>");
tableVal.append(newRow);
arrayVal.push( { item: i, field: fieldVar } );
document.getElementById(serializedArray).value=encodeURIComponent(JSON.stringify(arrayVal));
$("input#" + fieldVar).autocomplete( autoCompleteCfg );
$("#" + labelVar).inFieldLabels();
}
$("input#institute").autocomplete( autoCompleteDBpediaConfig );
$("input#location").autocomplete( autoCompleteDBpediaLocationConfig );
$("input#dblp_uri").autocomplete( autoCompleteDBLPAuthorConfig );
/* Add the grey input prompts to all input text boxes */
$("label").inFieldLabels();
$("#btnAddInterest").ready( function() { addInterestFunc() ; addInterestFunc() ; addInterestFunc() ;} );
$("#btnAddExpertise").ready( function() { addExpertiseFunc() ; addExpertiseFunc() ; addExpertiseFunc() ;} );
$("#btnAddFindOutAbout").ready( function() { addFindOutAboutFunc() ; } );
$("#btnMeetPerson").ready( function() { addMeetPersonFunc() ; } );
$("#btnAttendConf").ready( function() { addAttendConfFunc() ; } );
$("#btnVisitPlace").ready( function() { addVisitPlaceFunc() ; } );
/* Create one input box for each */
$("#btnAddInterest").click( addInterestFunc );
$("#btnAddExpertise").click( addExpertiseFunc );
$("#btnAddFindOutAbout").click( addFindOutAboutFunc );
$("#btnMeetPerson").click( addMeetPersonFunc );
$("#btnAttendConf").click( addAttendConfFunc );
$("#btnVisitPlace").click( addVisitPlaceFunc );
/* Used to pin footer */
$(window).resize(function() {
$("#footer").pinFooter("relative");
});
$('#dblp_uri').focus(function () {
var elemName = jQuery("#name") ;
jQuery("#dblp_uri").val(elemName.val());
jQuery("#dblp_uri").trigger("keydown");
});
$("#footer").pinFooter();
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4596898-5']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<a href="https://github.com/robstewart57/discover-me-semantically" target="_blank"><img style="z-index: 5; position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<form name="input" id="inputForm" action="process.php" method="post" >
<img class="topLogo" src="img/logo.png"/>
<table class="inputTable">
<tr>
<td class="mainTableCell">
<h3>About Me</h3>
<table>
<tr>
<td>Name:</td><td>
<p>
<input id="name" name="name" type="text" size="50" />
<label for="name">Your full name...</label>
</p>
</td>
</tr>
<tr>
<td>Institute:</td><td>
<p>
<input id="institute" name="institute" size="50" type="text" />
<label for="institute">Your academic institute...</label>
</p>
</td>
</tr>
<tr>
<td>Homepage:</td><td>
<p>
<input id="homepage" name="homepage" size="50" type="text"/>
<label for="homepage">http://</label>
</p>
</td>
</tr>
<tr>
<td>Location:</td><td>
<p>
<input id="location" name="location" size="50" type="text" />
<label for="location">Where do you live...</label>
</p>
</td>
</tr>
<tr>
<td>DBLP:</td><td>
<p>
<input id="dblp_uri" name="dblp_uri" size="50" type="text"/>
<label for="dblp_uri">Search for your DBLP URI by name...</label>
</p>
</td>
</tr>
</table>
<br>
<h3>Professional Expertise</h3>
Enter your areas of expertise...
<table id="tableExpertise"></table>
<button type="button" id="btnAddExpertise">Add another...</button>
<br><br>
<h3>Synopsis of your research or interests</h3>
<textarea rows="4" cols="40" id="about_me_text" name="about_me_text" ></textarea>
</td>
<td class="mainTableCell">
<h3>Personal and/or Academic Interests</h3>
Enter your areas of interest...
<table id="tableInterests">
</table>
<button type="button" id="btnAddInterest">Add another...</button>
<br><br>
<h3>Goals</h3>
I would like to find out about... <br><i>e.g. a programming language, methodology, framework...</i>
<table id="tableFindOutAbout"></table>
<button class="styled-button" type="button" id="btnAddFindOutAbout">Add another...</button>
<br><br>
I would like to meet the computer scientist...<br><i>e.g. "Ann Blandford", "Phil Wadler"</i>
<table id="tableMeetPerson"></table>
<button class="styled-button" type="button" id="btnMeetPerson">Add another...</button>
<br><br>
I would like to attend a computer science conference<br><i>e.g. "icfp", "popl"</i>
<table id="tableAttendConf"></table>
<button class="styled-button" type="button" id="btnAttendConf">Add another...</button>
<br><br>
I would like to visit a place...
<table id="tableVisitPlace"></table>
<button class="styled-button" type="button" id="btnVisitPlace">Add another...</button>
<br><br>
<input type="hidden" name="interests_serialized" id="interests_serialized" value="">
<input type="hidden" name="expertise_serialized" id="expertise_serialized" value="">
<input type="hidden" name="findOutAbout_serialized" id="findOutAbout_serialized" value="">
<input type="hidden" name="meetPerson_serialized" id="meetPerson_serialized" value="">
<input type="hidden" name="attendConf_serialized" id="attendConf_serialized" value="">
<input type="hidden" name="visitPlace_serialized" id="visitPlace_serialized" value="">
</td>
</tr>
</table>
<br>
<!-- Keeping this separate as I amm pinning the "Process" button to the footer -->
<div id="footer">
<div class="footerWrapper">
<div class="footerTDiv">
<table>
<tbody class="footerTBody">
<tr>
<td colspan="4" class="footerTableCell">
<input class="inputProcess" type="submit" value="Process" />
</td>
</tr>
<tr>
<td class="footerTableCell"><a class="footerLink" target="_blank" href="https://github.com/robstewart57/discover-me-semantically">Source code @ github</a></td>
<td><img src="img/logoepsrc.jpg" /></td>
<td><img src="img/logoSerenA.png" /></td>
<td class="footerTableCell"><a class="footerLink" href="http://www.serena.ac.uk" target="_blank">What is SerenA?</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</form>
</body>
</html>