forked from robstewart57/discover-me-semantically
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
285 lines (217 loc) · 12.2 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
<!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="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 interestsArray = new Array();
var expertiseArray = new Array();
var goalsArray = new Array();
var personalInterestsTable = $("#tableInterests");
var professionalExpertiseTable = $("#tableExpertise");
var goalsTable = $("#tableGoals");
var addInterestFunc = function() {
var i = interestsArray.length + 1;
var interestField = "personal_interest" + i;
var interestLabel = "interestLbl" + i;
var newRow = $("<tr><td>"+i+") </td><td><p><input id=\"" + interestField + "\" name=\"" + interestField + "\" size=\"50\" type=\"text\"/><label id=\""+interestLabel + "\" for=\"" + interestField + "\">Add an interest...</label></p></td></tr>");
personalInterestsTable.append(newRow);
interestsArray.push( { item: i, field: interestField } );
document.getElementById('interests_serialized').value=encodeURIComponent(JSON.stringify(interestsArray));
$("input#" + interestField).autocomplete( autoCompleteDBpediaConfig );
$("#" + interestLabel).inFieldLabels();
}
var addExpertiseFunc = function() {
var i = expertiseArray.length + 1;
var expertiseField = "professional_expertise" + i;
var expertiseLabel = "expertiseLbl" + i;
var newRow = $("<tr><td>"+i+") </td><td><p><input id=\"" + expertiseField + "\" name=\"" + expertiseField + "\" size=\"50\" type=\"text\"/><label id=\"" + expertiseLabel + "\" for=\"" + expertiseField + "\">Add and area of expertise</label></p></td></tr>");
professionalExpertiseTable.append(newRow);
expertiseArray.push( { item: i, field: expertiseField } );
document.getElementById('expertise_serialized').value=encodeURIComponent(JSON.stringify(expertiseArray));
$("input#" + expertiseField).autocomplete( autoCompleteDBpediaConfig );
$("#" + expertiseLabel).inFieldLabels();
}
var addGoalFunc = function() {
var i = goalsArray.length + 1;
var goalOptionField = "goalOption" + i;
var goalTextField = "goalText" + i;
var newRow = $("<tr><td><select name=\"" + goalOptionField + "\" id=\"" + goalOptionField + "\" ></td><td><input id=\"" + goalTextField + "\" name=\""+ goalTextField + "\" size=\"30\" class=\"auto-hint\" /></td></tr>");
goalsTable.append(newRow);
$('#'+goalOptionField).append("<option value=\"http://www.serena.ac.uk/property/goalFindOutAbout\">find out about</option>");
$('#'+goalOptionField).append("<option value=\"http://www.serena.ac.uk/property/goalMeet\">meet</option>");
$('#'+goalOptionField).append("<option value=\"http://www.serena.ac.uk/property/goalAttendConference\">attend conference</option>");
$('#'+goalOptionField).append("<option value=\"http://www.serena.ac.uk/property/goalVisitPlace\">visit place</option>");
goalsArray.push( { item: i, goalType: goalOptionField, field: goalTextField } );
document.getElementById('goals_serialized').value=encodeURIComponent(JSON.stringify(goalsArray));
var optionBox=jQuery("#" + goalOptionField);
goalOptionsMap[goalOptionField]=goalTextField;
optionBox.change( goalChanged );
optionBox.trigger('change');
}
/* $("input#autocomplete").autocomplete( autoCompleteDBpediaConfig ); */
$("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( addInterestFunc );
$("#btnAddExpertise").ready( addExpertiseFunc );
$("#btnAddGoal").ready( addGoalFunc );
/* Create one input box for each */
$("#btnAddInterest").click( addInterestFunc );
$("#btnAddExpertise").click( addExpertiseFunc );
$("#btnAddGoal").click( addGoalFunc );
/* 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="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>Text about me</h3>
<textarea rows="4" cols="40" id="about_me_text" name="about_me_text" ></textarea>
</td>
<td class="mainTableCell">
<h3>Professional Expertise</h3>
Enter your areas of expertise...
<table id="tableExpertise"></table>
<button type="button" id="btnAddExpertise">Add another...</button>
<br><br>
<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...
<table id="tableGoals"></table>
<button class="styled-button" type="button" id="btnAddGoal">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="goals_serialized" id="goals_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>