-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·328 lines (268 loc) · 10.5 KB
/
index.html
File metadata and controls
executable file
·328 lines (268 loc) · 10.5 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
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
<html>
<head>
<!-- <1!-- Util --1> -->
<!-- <script type="text/javascript" src="js/util.js"></script> -->
<!-- <1!-- D3 --1> -->
<!-- <script type="text/javascript" src="lib/d3/d3.js"></script> -->
<!-- <script type="text/javascript" src="lib/d3/d3.geom.js"></script> -->
<!-- <script type="text/javascript" src="lib/d3/d3.layout.js"></script> -->
<!-- <1!-- JQuery --1> -->
<!-- <script type="text/javascript" src="lib/jquery/jquery.js"></script> -->
<!-- <script type="text/javascript" src="lib/jquery/jquery.asmselect.js"></script> -->
<!-- <script type="text/javascript" src="lib/jquery/jquery-ui.js"></script> -->
<!-- <script type="text/javascript" src="lib/jquery/jquery-svgpan.min.js"></script> -->
<!-- <link rel="stylesheet" type="text/css" href="lib/jquery/ui-lightness/jquery-ui-1.8.18.custom.css" /> -->
<!-- <1!-- Site --1> -->
<!-- <script type="text/javascript" src="js/cookie.js"></script> -->
<!-- <script type="text/javascript" src="js/ui.js"></script> -->
<link type="text/css" rel="stylesheet" href="reset.css"/>
<link type="text/css" rel="stylesheet" href="graph.css"/>
<title>Trailhead: A Graphical Representation of Articles</title>
</head>
<body>
<!-- Loading curl -->
<script type="text/javascript" src="js/lib/curl/curl.js"></script>
<script>
// Set up curl
curl(
// Set up the configuration
{
baseUrl: 'js',
paths: {
"jquery": "lib/jquery/jquery",
"jquery/lib": "lib/jquery",
"radio": "lib/radio/radio"
},
},
// Set up the required modules
["controllers/controller"],
// The call back function
function(controller) {
// Do nothing
}
)
</script>
<div id="content">
<div id="header">
<div id="logo">
<img src="img/logo/logo.png" alt="The Logo"/>
<div id="title">
<h1>Trailhead</h1>
</div>
</div>
<!-- Menu -->
<div id="menu">
<h1>Trailhead</h1>
<ul id="menulist" class="leftCol">
<li class="about"><a class="menuLink" href="#">About</a></li>
<li class="getstarted"><a class="menuLink" href="#">Get Started</a></li>
<li class="knowmore"><a class="menuLink" href="#">How it Works</a></li>
<li id="surprise"><a class="menuLink"
title="Add a random article to your schedule"
href="#">Surprise Me</a>
</li>
</ul>
<!--<div id="searchitem" class="rightCol">
<label for="name"><a href="#" class="menulink"
title="Search for an Article">Search</a></label>
<input type="text" name="search" onFocus="$('#selectAll').fadeIn()" value="" id="searchField" class="search"/>
<a href="#" title="Add all search results to your schedule"
class="menulink"><span id="selectAll">Add to
Schedule</span></a>
</div>-->
</div>
</div>
<!-- Description -->
<div id="desc">
<div class="desc leftMargin" id="about">
<p>Trailhead is your own personal conference scheduler. Search for
people or topics; browse connections between articles; add
papers to your own schedule; If you wink the right way, it
might even make you a sandwich.</p>
<p>So dive in and click away! Search for a topic you like and use
the graph to browse between related talks. Any time you find
something that interesting, go ahead and add it to the side bar,
to get your own personal exquisite conference
schedule.</p>
<p>Should you later decide to add or drop a few talks, despair
not. Trailhead never forgets, as long as you log in from the same
browser and are not averse to cookies.</p>
</div>
<div class="desc leftMargin" id="getstarted">
<div class="legend">
<h2 class="legend">Graph Legend</h2>
<ul class="legend nodes">
<li class="legend node">An article</li>
<li class="legend selected">An article you have already added to your schedule</li>
<li class="legend currently">The last article you selected</li>
<li class="legend search">An article matching your search term</li>
</ul>
</div>
<div class="legend">
<h2 class="legend">Navigation</h2>
<ul class="legend navigation">
<li class="legend move">Move by dragging the graph with your mouse</li>
<li class="legend zoom">Zoom by scrolling in or out</li>
<li class="legend add">Add an article to your
schedule</li>
<li class="legend remove">Remove an article from your
schedule</li>
</ul>
</div>
<div class="legend">
<h2 class="legend">Schedule</h2>
<ul class="legend schedule">
<li class="legend create">Begin by clicking on an article
in the graph and add it to your schedule</li>
<!-- <li class="legend expand">Click expand to see more
information about an article</li> -->
<li class="legend download">Download your schedule as a PDF
ready to print</li>
<li class="legend remove">Remove all articles from your
schedule</li>
</ul>
</div>
</div>
<div class="desc leftMargin" id="knowmore">
<p>The graph you are looking at is generated by comparing the
closeness of a bit more than 600 papers submitted to the
2012 ISIT in Boston. They are currently rated based on how
many authors they have in common in the references, and each
paper is linked to the 4 closest neighbors.</p>
<p>This project was created by Jonas Arnfred, master student in
Computer science at EPFL as a project for Rüdiger Urbanke. The
graph is based on D3, a javascript library for creating SVG
graphics. If you have ideas about how to improve this project or
just really like it, please write and tell me at
<a href="mailto:Jonas.Arnfred@epfl.ch">Jonas.Arnfred@epfl.ch</a></p>
</div>
</div>
<!-- Graph -->
<div id="graph" class="graph"></div>
<div id="zoomer">
<a href="#" class="moins">-</a>
<div id="scale">
<a href="#" id="indicator"></a>
</div>
<a href="#" class="plus">+</a>
</div>
<div id="infowrap"><div id="info"><p></p></div></div>
<div id="clickwrap"><div id="clickbox">
<div class="click" id="select"><a href="#" title="Add to schedule"><img alt="Add to Schedule" src="img/icons/calendar.png"/></a></div>
<!-- <div class="click" id="abstract"><img alt="Show Info" src="img/icons/info.png"/></div> -->
<div class="click" id="download"><a href="#" title="Download"><img alt="Download Paper" src="img/icons/download.png"/></a></div>
</div></div>
<!-- List -->
<a href="#" id="closeSidebar"><div></div></a>
<div id="tabs" class="text">
<ul id="tabhead">
<li><a href="#tabs-2">Schedule</a></li>
<li><a href="#tabs-1">Info</a></li>
<li><a href="#tabs-3">Filters</a></li>
</ul>
<div id="tabs-2">
<div class="toolbar">
<a href="#"><div class="downpdf"><img alt="Download Paper" src="img/pdf.png"/>Download pdf</div></a>
<a href="#"><div class="downicn"><img alt="Download Paper" src="img/ical.png"/>Download ical</div></a>
</div>
<div class="scrolltop"></div>
<div class="scrollable">
<div style="margin: 10px 30px; height: 6px;">
<a href="#" class="removeall smalltool"><span class="iconx">x</span> Remove all</a>
</div>
<form action="schedule.php" target="_blank" name="schedule" method="post"
onSubmit="return false;">
<ul id="sidebar">
<li id="listItemTemplate" class="listItem">
<a class="listItemPdfLink" href="#" target="_blank">
<a href="#" class="listItemRemove">
<img src="img/icons/remove.png" />
</a>
<span class="listItemLabel">
<div class="clear" style="height: 8px;"></div>
<img src="img/icons/paper.png" />
<p class="listItemText">List item</p>
<div class="clear" style="height: 8px;"></div>
</span>
<div class="clear"></div>
</a>
<input type="hidden" name="papers[]" value="" />
</li>
</ul>
</form>
</div>
</div>
<div id="tabs-3">
<div class="form-w">
<form id="filterForm" onSubmit="return false;">
<label for="keywords">Search</label>
<input type="text" name="keywords" value="" class="filter"/>
<div class="field">
<label for="context">Context</label>
<select id="context-select" multiple="multiple" name="context[]" value="">
<option selected="selected" value="title">Title</option>
<option selected="selected" value="authors">Authors</option>
<!--<option value="abstract">Abstract</option>
<option value="body">Body</option>
<option value="refs">References</option>-->
</select>
</div>
<div class="field">
<label for="room">Location</label>
<select name="room">
<option value="">Not Selected</option>
</select>
</div>
<div class="field">
<label for="from">From</label>
<input type="text" style="width: 85px;" name="from" class="date_picker2">
<label class="inline_label" for="fromtime">Time: </label>
<input type="text" name="fromtime" style="width: 70px;">
</div>
<div class="field">
<label for="to">To</label>
<input type="text" name="to" style="width:85px;" class="date_picker2">
<label class="inline_label" for="totime">Time: </label>
<input type="text" name="totime" style="width: 70px;">
</div>
<div style="height: 30px; margin-top: 10px;">
<button class="submit" name="add" id="addFilter">Add</button>
</div>
</form>
<hr width="90%"/>
<div class="scrolltop" style="width: 280px;"></div>
<div class="scrollable" style="width: 270px; padding-right: 20px;">
<div class="clear" style="height: 20px;"></div>
<ul id="filterList">
<li id="filterItemTemplate" class="filterItem listItem">
<a href="#" class="listItemRemove">
<img src="img/icons/remove.png" />
</a>
<span class="listItemLabel">
<div class="clear" style="height: 8px;"></div>
<img src="img/filter.png" />
<p class="filterItem"></p>
<div class="clear" style="height: 8px;"></div>
</span>
<div class="clear"></div>
</li>
</ul>
</div>
</div>
</div>
<div id="tabs-1"></div>
</div>
</div>
<!-- <script type="text/javascript" src="js/graph.js"></script> -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32909051-1']);
_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>
</body>
</html>