|
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>Test de Rendu RENKAN</title> |
|
7 <meta name="description" content="" /> |
|
8 <meta name="author" content="Institut de Recherche et d'Innovation" /> |
|
9 <script src="../lib/jquery.min.js"></script> |
|
10 <script src="../lib/jquery.mousewheel.min.js"></script> |
|
11 <script src="../lib/underscore-min.js"></script> |
|
12 <script src="../lib/backbone.js"></script> |
|
13 <script src="../lib/backbone-relational.js"></script> |
|
14 <script src="../lib/paper.js"></script> |
|
15 <script src="../js/main.js"></script> |
|
16 <script src="../js/defaults.js"></script> |
|
17 <script src="../js/i18n.js"></script> |
|
18 <script src="../js/models.js"></script> |
|
19 <script src="../js/full-json.js"></script> |
|
20 <script src="../js/list-bin.js"></script> |
|
21 <script src="../js/ldtjson-bin.js"></script> |
|
22 <script src="../js/wikipedia-bin.js"></script> |
|
23 <script src="../js/paper-renderer.js"></script> |
|
24 <script type="text/javascript"> |
|
25 var _renkan; |
|
26 $(function() { |
|
27 _renkan = new Rkns.Renkan({ |
|
28 bins: [ |
|
29 { |
|
30 title: "Projet Lignes de Temps", |
|
31 type: "Ldt", |
|
32 ldt_type: "Project", |
|
33 project_id: "6af4019c-8283-11e2-9678-00145ea4a2be", |
|
34 ldt_platform: "http://ldt.iri.centrepompidou.fr/" |
|
35 }, |
|
36 { |
|
37 type: "ResourceList", |
|
38 title: "Ressources", |
|
39 list: [ |
|
40 { |
|
41 url: "http://www.google.com/", |
|
42 title: "Google", |
|
43 description: "Search engine", |
|
44 image: "http://www.google.fr/images/srpr/logo4w.png" |
|
45 }, |
|
46 "Polemic Tweet http://www.polemictweet.com", |
|
47 "Twitter http://www.twitter.com/" |
|
48 ] |
|
49 } |
|
50 ], |
|
51 search: [ |
|
52 { |
|
53 type: "Ldt" |
|
54 }, |
|
55 { |
|
56 type: "Wikipedia", |
|
57 lang: "fr" |
|
58 } |
|
59 ], |
|
60 property_files: [ "data/properties.json" ], |
|
61 user_id: "u-iri", |
|
62 language: "fr", |
|
63 node_fill_color: false, |
|
64 static_url: "../" |
|
65 }); |
|
66 Rkns.jsonIO(_renkan, { |
|
67 url: "data/simple-persist.php" |
|
68 }); |
|
69 }); |
|
70 </script> |
|
71 <link rel="stylesheet" href="../css/renkan.css" /> |
|
72 </head> |
|
73 |
|
74 <body> |
|
75 <div id="renkan"></div> |
|
76 |
|
77 </body> |
|
78 </html> |