-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
506 lines (470 loc) · 27 KB
/
index.html
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<!DOCTYPE html>
<html>
<head>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<title>OSM - Open Source Malaria</title>
<link href="css/osm.css" rel="stylesheet" type="text/css">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<!--<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">-->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script type="text/javascript" src="javascript/osm.js"></script>
<script type="text/javascript">
function smoothScroll(ident) {
$target = $("#scroll-target");
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 300, 'swing');
}
</script>
<script type="text/javascript">
/** https://github.com/csnover/js-iso8601 */(function(n,f){var u=n.parse,c=[1,4,5,6,7,10,11];n.parse=function(t){var i,o,a=0;if(o=/^(\d{4}|[+\-]\d{6})(?:-(\d{2})(?:-(\d{2}))?)?(?:T(\d{2}):(\d{2})(?::(\d{2})(?:\.(\d{3}))?)?(?:(Z)|([+\-])(\d{2})(?::(\d{2}))?)?)?$/.exec(t)){for(var v=0,r;r=c[v];++v)o[r]=+o[r]||0;o[2]=(+o[2]||1)-1,o[3]=+o[3]||1,o[8]!=="Z"&&o[9]!==f&&(a=o[10]*60+o[11],o[9]==="+"&&(a=0-a)),i=n.UTC(o[1],o[2],o[3],o[4],o[5]+a,o[6],o[7])}else i=u?u(t):NaN;return i}})(Date)
</script>
<script>
$(document).ready(function () {
$('#project-activity-feed').on("click", "a.tog", function() {
$(this).parent().prev().toggle();
$(this).toggle();
$(this).siblings().toggle();
});
})
</script>
<script>
$(document).ready(function () {
$('.big-button').on("click", function() {
$(this).addClass("set");
$(this).siblings().removeClass("set");
});
})
</script>
<script>
$(document).ready(function () {
var TwitterUpdateInterval = 600000; // 10 minutes is 600000 milliseconds
var ProjectActivityUpdateInterval = 660000; // 11 minutes
loadLatestProjectActivity();
setInterval(loadLatestProjectActivity, ProjectActivityUpdateInterval);
loadSponsorsAndTeam();
loadLatestTweets();
setInterval(loadLatestTweets, TwitterUpdateInterval);
// Set the Default view of the page
$('#project-activity').show();
$('#join-the-team').hide();
$('#meet-the-team').hide();
$('#about-the-team').hide();
$(".about-target").bind('click', function (e) {
$(".about-target").toggle();
$('#about-the-team').slideToggle();
});
$(".join-target").bind('click', function () {
$('#join-the-team').show();
smoothScroll("#join-the-team");
$('#meet-the-team').hide();
$('#project-activity').hide();
});
$(".meet-the-team-target").bind('click', function () {
$('#meet-the-team').show();
smoothScroll("#meet-the-team");
$('#join-the-team').hide();
$('#project-activity').hide();
});
$(".project-activity-target").bind('click', function () {
$('#project-activity').show();
smoothScroll("#project-activity");
$('#join-the-team').hide();
$('#meet-the-team').hide();
});
$(".web-logo").bind('click', function () {
$('#project-activity').show();
smoothScroll("#project-activity");
$('#join-the-team').hide();
$('#meet-the-team').hide();
});
$(".phone-logo").bind('click', function () {
$('#project-activity').show();
smoothScroll("#project-activity");
$('#join-the-team').hide();
$('#meet-the-team').hide();
});
});
</script>
<script>
function showGroupPhoto() {
$("#spinner").hide();
$("#group_photo").show();
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42419596-1', 'opensourcemalaria.org');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<div class="row-fluid span12">
<span id="web-head-background">
<img id="web-logo" alt="OSM Logo" src="images/OSM-logo.png"/>
<img id="web-title" src="images/OSM-header.png" alt="Open Source Malaria">
</span>
<span class="span3 center">
<span class="phone">
<img id="phone-logo" alt="OSM Logo" src="images/OSM-logo.png"/>
</span>
<span class="left-nav">
<span class="also-check-out">Also check out</span>
<span class = "off-page">
<a href="http://malaria.ourexperiment.org/" target="_blank"><img src="images/Notebook.png"
alt="Lab Notebook"/>Lab Notebook</a>
</span>
<span class = "off-page">
<a href="http://openwetware.org/wiki/OpenSourceMalaria" target="_blank"><img
src="images/wiki.png" alt="Wiki"/>Project Wiki</a>
</span>
<span id="social">
<a href="https://plus.google.com/u/0/b/114702323662314783325/114702323662314783325/posts"
target="_blank">
<img class="social-img" src="images/social/gplus-gray.png" alt="G+"
onmouseover="this.src='images/social/google_on.png'"
onmouseout="this.src='images/social/gplus-gray.png'"/>
</a>
<a href="http://facebook.com/OpenSourceMalaria" target="_blank">
<img class="social-img" src="images/social/fb-gray.png" alt="facebook"
onmouseover="this.src='images/social/facebook_on.png'"
onmouseout="this.src='images/social/fb-gray.png'"/>
</a>
<a href="https://twitter.com/O_S_M" target="_blank">
<img class="social-img" src="images/social/twit-gray.png" alt="Twitter"
onmouseover="this.src='images/social/twitter_on.png'"
onmouseout="this.src='images/social/twit-gray.png'"/>
</a>
</span>
<span id="twitter-lead" class="emphasis">Twitter Activity</span>
<span id="twitter-feed"></span>
</span>
</span>
<span class="span8">
<span id="phone-head-background">
<img id="phone-title" src="images/OSM-header.png" alt="Open Source Malaria">
</span>
<span class="intro">
<div class="para">
The Open Source Malaria project is trying a different approach to curing malaria. Guided by open
source principles, everything is open and anyone can contribute.
<br/>
<div><a href="#" id=about-text' class="about-target">read more</a></div>
<span id="about-the-team">
Open research is where any one can take part at any level of the project, that all data and
ideas are shared and there are no patents. You are welcome, whatever your expertise. At the
moment the main focus is on finding a new medicine by improving some molecules
<a href="http://www.nature.com/nature/journal/v465/n7296/full/nature09107.html"
target="_blank">originally discovered by Big Pharma</a>
and put into the
<a href="https://www.ebi.ac.uk/chembl/malaria/"
target="_blank">public domain,</a>
something called open source drug discovery. Much of what we need is based in science
(chemistry and biology), but there are important things you can do if you're
<a href="https://github.com/OpenSourceMalaria/OSM_To_Do_List/issues?labels=Non-Science&page=1&state=open"
target="_blank">outside those fields.</a>
<br/><br/>
Check out<a href="http://openwetware.org/wiki/OpenSourceMalaria"
target="_blank"> where the science is up to.</a>
<br/>
</span>
<br/><a href="#" class="about-target" style="display: none">read less</a>
</div>
</span>
<div class="row-fluid span12" id="phone-links">
<div class="phone-row-meet-join-activity">
<div><a class="phone-link-left"><span class="meet-the-team-target">MEET THE TEAM</span></a></div>
<!--<div><a class="phone-link"><span class="join-target">JOIN THE TEAM</span></a></div>-->
<div><a class="phone-link-right"><span class="project-activity-target">SEE ACTIVITY</span></a></div>
</div>
<div class="phone-row-external-links group">
<div class="phone-link">
<a href="http://malaria.ourexperiment.org/" target="_blank"><img src="images/Notebook.png"
alt="Lab Notebook"/>
<span class="link-title">Lab Notebook</span>
</a>
</div>
<div class="phone-link">
<a href="http://openwetware.org/wiki/OpenSourceMalaria" target="_blank"><img
src="images/wiki.png" alt="Wiki"/>
<span class="link-title">See Wiki</span>
</a>
</div>
<div class="phone-link">
<a href="#"><img class="join-target" src="images/join.png" alt="Join the Team"/>
<span class="link-title">Join The Team</span>
</a>
</div>
</div>
</div>
<!--mobile social here-->
<div class="phone-row-social">
<a href="https://plus.google.com/u/0/b/114702323662314783325/114702323662314783325/posts"
target="_blank">
<img src="images/social/gplus-gray.png" alt="G+"
onmouseover="this.src='images/social/google_on.png'"
onmouseout="this.src='images/social/gplus-gray.png'"/>
</a>
<a href="http://facebook.com/OpenSourceMalaria" target="_blank">
<img src="images/social/fb-gray.png" alt="Facebook"
onmouseover="this.src='images/social/facebook_on.png'"
onmouseout="this.src='images/social/fb-gray.png'"/>
</a>
<a href="https://twitter.com/O_S_M" target="_blank">
<img src="images/social/twit-gray.png" alt="Twitter"
onmouseover="this.src='images/social/twitter_on.png'"
onmouseout="this.src='images/social/twit-gray.png'"/>
</a>
</div>
<div class="row-fluid span12 links">
<span class="big-button-container">
<button class ="project-activity-target big-button set" type="button"><img src="images/Activity-white.png">Activity</button>
<button class ="join-target big-button" type="button"><img src="images/team-gray.png">Join the Team</button>
<button class ="meet-the-team-target big-button" type="button"><img src="images/meet-gray.png">Meet Us</button>
</span>
</div>
<div class="center-section group" id="scroll-target">
<div id="project-activity">
<div id="label-list"></div>
<div class="center-leader">Project Activity</div>
<div class="see-more">
<a href="http://github.com/OpenSourceMalaria/OSM_To_Do_List/issues?page=1" target="_blank">See More</a>
</div>
<span class="center-content overflow-wrap">
<span id="project-activity-feed"></span>
</span>
<div class="see-more">
<a href="http://github.com/OpenSourceMalaria/OSM_To_Do_List/issues?page=1" target="_blank">
See More</a>
</div>
</div>
<div id="meet-the-team">
<div class="center-leader">
Meet The Team
<div class="legend">
<div class="legend-indicator-chemistry"></div>
<div class="legend-chemistry">Chemistry</div>
<div class="legend-indicator-biology"></div>
<div class="legend-biology">Biology</div>
<div class="legend-indicator-informatics"></div>
<div class="legend-informatics">Informatics</div>
<div class="legend-indicator-consulting"></div>
<div class="legend-consulting">Consulting</div>
<div class="legend-indicator-administration"></div>
<div class="legend-administration">Administration</div>
</div>
</div>
<span class="center-content overflow-wrap meet">
<div id="team-members" class="group"></div>
<div class="legend">
<div class="legend-indicator-chemistry"></div>
<div class="legend-chemistry">Chemistry</div>
<div class="legend-indicator-biology"></div>
<div class="legend-biology">Biology</div>
<div class="legend-indicator-informatics"></div>
<div class="legend-informatics">Informatics</div>
<div class="legend-indicator-consulting"></div>
<div class="legend-consulting">Consulting</div>
<div class="legend-indicator-administration"></div>
<div class="legend-administration">Administration</div>
</div>
<div id="team_photo">
<div id="spinner">
<div class="offset5 span1">
<img src="images/ajax-loader.gif" alt="Loading Group Photo"/>
</div>
</div>
<div id="group_photo" hidden>
<img id="group_photo_image" src="images/OSM_Team.png" onload="showGroupPhoto();"
alt="Some of the team!"/>
</div>
</div>
</span>
</div>
<div id="join-the-team">
<div class="center-leader">
Join The Team
</div>
<span class="center-content overflow-wrap">
<span class="center-text">
Open research is where anyone can take part at any level of the project, that all data and
ideas are shared and there are no patents. <strong>You are welcome, whatever your
expertise.</strong>
<br/><br/>
At the moment the main focus is on finding a new medicine by improving some molecules
<a href="http://www.nature.com/nature/journal/v465/n7296/full/nature09107.html"
target="_blank">originally discovered by Big Pharma</a>
and put into the
<a href="https://www.ebi.ac.uk/chembl/malaria/" target="_blank">public domain,</a>
something called open source drug discovery. Much of what we need is based in science
(chemistry and biology), but there are important things you can do if you're
<a href="https://github.com/OpenSourceMalaria/OSM_To_Do_List/issues?labels=Non-Science&page=1&state=open"
target="_blank">outside those fields.</a>
<br/><br/>
You just have to adhere to the Six Laws:
<br/><br/>
<span>
<strong>First Law:</strong> All data are open and all ideas are shared
<br/>
<strong>Second Law:</strong> Anyone can take part at any level of the project
<br/>
<strong>Third Law:</strong> There will be no patents
<br/>
<strong>Fourth Law:</strong> Suggestions are the best form of criticism
<br/>
<strong>Fifth Law:</strong> Public discussion is much more valuable than private email
<br/>
<strong>Sixth Law:</strong> The project is bigger than, and is not owned by, any given lab.
<br/><br/>
</span>
The default licence for everything in the OSM project is
<a href="http://creativecommons.org/licenses/by/3.0/" target="_blank">CC-BY,</a>
meaning you can use whatever you want for any reason (including to make money)
provided you cite the project.
<br/><br/>
<i><strong>How to get involved:</strong></i>
<br/><br/>
If you like the sound of open research and curing malaria, then join in! Here's how:
<br/><br/>
<ul>
<li>
Check out the current
<a href="https://github.com/OpenSourceMalaria/OSM_To_Do_List/issues?state=open"
target="_blank">To Do List</a>
for details of what's needed right now - help resolve an issue, comment on things that
you
think need to be done, or post any of your suggestions/ideas.
</li>
<li>
Follow the
<a href="https://plus.google.com/u/0/b/114702323662314783325/114702323662314783325/posts"
target="_blank">G+</a>,
<a href="https://twitter.com/O_S_M" target="_blank">Twitter</a>
and
<a href="http://facebook.com/OpenSourceMalaria" target="_blank">Facebook</a>
pages.
</li>
<li>
Read up on where we are and what we've published on the
<a href="http://openwetware.org/wiki/OpenSourceMalaria" target="_blank">Wiki
</a>
and sign up if you want to make changes.
</li>
<li>
Check out the fresh chemical and biological data in the
<a href="http://malaria.ourexperiment.org/" target="_blank">Lab Notebooks</a>.
</li>
<li>
Watch the regular
<a href="http://www.youtube.com/user/OSDDMalaria/" target="_blank">Online Meetings</a>
and maybe come along to the next one.
</li>
<li>
If you're a chemist, make a molecule that the project needs so that it can be screened
for activity.
</li>
<li>
If you're a biologist, see if any of the compounds made by the project might be of
interest
to you for malaria or some other disease.
</li>
<li>
Buy a
<a href="http://www.redbubble.com/people/osddmalaria/" target="_blank">project
T-shirt</a>
- money goes to supporting the science - to help spread the word.
</li>
<li>
If you're running a lab class that might want to contribute, or if you want to contact
the project in some other way, then send us a
<a href="https://twitter.com/O_S_M" target="_blank">tweet</a>
or post on the
<a href="https://plus.google.com/u/0/b/114702323662314783325/114702323662314783325/posts"
target="_blank">G+</a>
or
<a href="http://facebook.com/OpenSourceMalaria" target="_blank">Facebook</a>
pages, or, as a last resort,
<a href="mailto:[email protected]?Subject=How%20can%20I%20help?"
target="_top">
send an email to: [email protected]</a>
</li>
<li>
Anyone can run their own project under the umbrella of Open Source Malaria - anyone can
add to the
wiki, or add items to the Github To Do list or post raw data to the open lab notebooks.
If you want
to start your own open science project, you could launch it on the first site that was
devoted to
open source biomedical research: <a href="http://www.thesynapticleap.org/"
target="_blank">The Synaptic Leap</a>
</li>
</ul>
</span>
</span>
</div>
</div>
<div class="row-fluid span12" id="tiny-links">
<div class="tiny-row-external-links group">
<div class="tiny-link-lab-notebook">
<a href="http://malaria.ourexperiment.org/" target="_blank"><img src="images/Notebook.png"
alt="Lab Notebook"/>
<span class="link-title">Lab Notebook</span>
</a>
</div>
<div class="tiny-link-wiki">
<a href="http://openwetware.org/wiki/OpenSourceMalaria" target="_blank"><img
src="images/wiki.png" alt="Wiki"/>
<span class="link-title">See Wiki</span>
</a>
</div>
<div class="tiny-link-join-the-team">
<a href="#"><img class="join-target" src="images/join.png" alt="Join the Team"/>
<span class="link-title">Join The Team</span>
</a>
</div>
</div>
</div>
<!--tiny social here-->
<div class="tiny-row-social">
<a href="https://plus.google.com/u/0/b/114702323662314783325/114702323662314783325/posts"
target="_blank">
<img src="images/social/gplus-gray.png" alt="G+"
onmouseover="this.src='images/social/google_on.png'"
onmouseout="this.src='images/social/gplus-gray.png'"/>
</a>
<a href="http://facebook.com/OpenSourceMalaria" target="_blank">
<img src="images/social/fb-gray.png" alt="Facebook"
onmouseover="this.src='images/social/facebook_on.png'"
onmouseout="this.src='images/social/fb-gray.png'"/>
</a>
<a href="https://twitter.com/O_S_M" target="_blank">
<img src="images/social/twit-gray.png" alt="Twitter"
onmouseover="this.src='images/social/twitter_on.png'"
onmouseout="this.src='images/social/twit-gray.png'"/>
</a>
</div>
</span>
</div>
<div>
<span id="mobile-twitter-lead" class="emphasis">Twitter-Activity</span>
<span id="mobile-twitter-feed"></span>
</div>
</div>
<hr>
<div class="container" id="thanks-leader">
<h3>Many thanks to our friends and supporters</h3>
<div id="sponsors"></div>
</div>
</body>
</html>