| author | durandn |
| Tue, 04 Oct 2016 12:38:50 +0200 | |
| changeset 639 | 30b673cb13ee |
| parent 503 | 18cb4c4c4e5e |
| 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" /> |
|
| 345 | 9 |
<script src="../lib/jquery/jquery.js"></script> |
10 |
<script src="../lib/jquery-mousewheel/jquery.mousewheel.js"></script> |
|
| 433 | 11 |
<script src="../lib/lodash/lodash.js"></script> |
| 345 | 12 |
<script src="../lib/backbone/backbone.js"></script> |
13 |
<script src="../lib/backbone-relational/backbone-relational.js"></script> |
|
14 |
<script src="../lib/paper/paper-full.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> |
|
444
19f0b7803aed
add schema version + dataloaders to ensure data migrations + small correction for php server exmple + a readme for the php server example
ymh <ymh.work@gmail.com>
parents:
433
diff
changeset
|
16 |
<script src="../js/dataloader.js"></script> |
| 471 | 17 |
<script src="../js/router.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
|
18 |
<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
|
19 |
<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
|
20 |
<script src="../js/i18n.js"></script> |
| 417 | 21 |
<script src="../dist/js/templates.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
|
22 |
<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
|
23 |
<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
|
24 |
<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
|
25 |
<script src="../js/wikipedia-bin.js"></script> |
| 345 | 26 |
<script data-main="../js/main-renderer" src="../lib/requirejs/require.js"></script> |
| 249 | 27 |
<script type="text/javascript"> |
| 284 | 28 |
function startRenkan(){ |
| 281 | 29 |
var _renkan = new Rkns.Renkan({ |
| 433 | 30 |
property_files: [ "../data/properties.json" ], |
31 |
/*user_id: "u-iri", |
|
| 249 | 32 |
language: "fr", |
33 |
node_fill_color: false*/ |
|
|
503
18cb4c4c4e5e
add parameter to control editor opacity
ymh <ymh.work@gmail.com>
parents:
471
diff
changeset
|
34 |
show_bins: false, |
| 256 | 35 |
static_url: "../" |
| 249 | 36 |
}); |
37 |
Rkns.jsonIO(_renkan, { |
|
|
295
bcac9ea07d04
add simple-persist in grunt connect
ymh <ymh.work@gmail.com>
parents:
294
diff
changeset
|
38 |
url: "/simple-persist" |
| 249 | 39 |
}); |
| 284 | 40 |
}; |
| 249 | 41 |
</script> |
| 256 | 42 |
<link rel="stylesheet" href="../css/renkan.css" /> |
| 249 | 43 |
</head> |
44 |
||
45 |
<body> |
|
46 |
<div id="renkan"></div> |
|
47 |
</body> |
|
48 |
</html> |