| author | ymh <ymh.work@gmail.com> |
| Thu, 13 Nov 2014 18:05:02 +0100 | |
| changeset 337 | d36790b30e0f |
| parent 295 | bcac9ea07d04 |
| child 345 | cb5c0007c9f9 |
| permissions | -rw-r--r-- |
| 249 | 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" /> |
|
| 256 | 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> |
|
|
290
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
15 |
<script src="../js/main.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
16 |
<script src="../js/models.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
17 |
<script src="../js/defaults.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
18 |
<script src="../js/i18n.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
19 |
<script src="../js/full-json.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
20 |
<script src="../js/ldtjson-bin.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
21 |
<script src="../js/list-bin.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
22 |
<script src="../js/wikipedia-bin.js"></script> |
|
295
bcac9ea07d04
add simple-persist in grunt connect
ymh <ymh.work@gmail.com>
parents:
294
diff
changeset
|
23 |
<script data-main="../js/main-renderer" src="../lib/require.js"></script> |
| 249 | 24 |
<script type="text/javascript"> |
| 284 | 25 |
function startRenkan(){ |
| 281 | 26 |
var _renkan = new Rkns.Renkan({ |
| 249 | 27 |
/*property_files: [ "data/properties.json" ], |
28 |
user_id: "u-iri", |
|
29 |
language: "fr", |
|
30 |
node_fill_color: false*/ |
|
| 256 | 31 |
show_bins: false, |
32 |
static_url: "../" |
|
| 249 | 33 |
}); |
34 |
Rkns.jsonIO(_renkan, { |
|
|
295
bcac9ea07d04
add simple-persist in grunt connect
ymh <ymh.work@gmail.com>
parents:
294
diff
changeset
|
35 |
url: "/simple-persist" |
| 249 | 36 |
}); |
| 284 | 37 |
}; |
| 249 | 38 |
</script> |
| 256 | 39 |
<link rel="stylesheet" href="../css/renkan.css" /> |
| 249 | 40 |
</head> |
41 |
||
42 |
<body> |
|
43 |
<div id="renkan"></div> |
|
44 |
</body> |
|
45 |
</html> |