65
|
1 |
<!DOCTYPE html> |
|
2 |
<html lang="fr"> |
|
3 |
<head> |
|
4 |
<meta charset="utf-8" /> |
|
5 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
|
6 |
<title>Tests Timeline</title> |
|
7 |
<meta name="description" content="" /> |
|
8 |
<meta name="author" content="Institut de Recherche et d'Innovation (IRI)" /> |
88
|
9 |
<link rel="stylesheet" type="text/css" href="lib/jquery-ui.min.css" /> |
65
|
10 |
<link rel="stylesheet" type="text/css" href="css/timeline.css" /> |
77
|
11 |
<style type="text/css"> |
|
12 |
h1 { |
|
13 |
text-align: center; font-size: 20px; font-weight: bold; margin: 5px; |
|
14 |
} |
|
15 |
#timeline { |
88
|
16 |
width: 780px; margin: 5px auto; text-align: center; |
77
|
17 |
} |
|
18 |
</style> |
86
|
19 |
<script type="text/javascript" src="lib/jquery.min.js"> </script> |
74
|
20 |
<script type="text/javascript" src="lib/jquery.mousewheel.min.js"> </script> |
86
|
21 |
<script type="text/javascript" src="lib/jquery-ui.min.js"> </script> |
74
|
22 |
<script type="text/javascript" src="lib/underscore-min.js"> </script> |
|
23 |
<script type="text/javascript" src="lib/mustache.js"> </script> |
|
24 |
<script type="text/javascript" src="js/timeline.js"> </script> |
65
|
25 |
<script type="text/javascript"> |
|
26 |
var _tl; |
88
|
27 |
$.getJSON( |
|
28 |
'http://anarchy2.solicis.fr/api/back/user?process=orm_entity_authenticate&login=anarchy@solicis.fr&password=anarchy&callback=?', |
|
29 |
function(data) { |
|
30 |
var token = data.data[0].token; |
|
31 |
console.log(token); |
65
|
32 |
_tl = new Tlns.Classes.Timeline({ |
88
|
33 |
email: 'anarchy@solicis.fr', |
|
34 |
token: token, |
|
35 |
linelabels: [ |
|
36 |
"Les jalons de l'histoire", |
|
37 |
"L'actualité", |
|
38 |
"Les appels à contribuer", |
|
39 |
"Les Persos d'Anarchy" |
|
40 |
], |
|
41 |
api_endpoint: "http://anarchy2.solicis.fr/api/cms/content?callback=?", |
65
|
42 |
container: "timeline", |
|
43 |
sync_now: false, |
93
|
44 |
central_time: Date.parse("2013-07-18T00:00:00Z"), |
94
|
45 |
maxtime: Date.now(), |
|
46 |
url_base: "http://anarchy2.solicis.fr" |
65
|
47 |
}); |
|
48 |
}); |
|
49 |
</script> |
|
50 |
</head> |
|
51 |
|
|
52 |
<body> |
77
|
53 |
<h1>Tests Timeline</h1> |
74
|
54 |
<div id="timeline"> </div> |
65
|
55 |
</body> |
|
56 |
</html> |