| author | rougeronj |
| Wed, 10 Jun 2015 16:00:45 +0200 | |
| changeset 475 | e3537f6de112 |
| parent 471 | e0c7be5dc02c |
| permissions | -rw-r--r-- |
| 250 | 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.js" src="../lib/requirejs/require.js"></script> |
| 250 | 27 |
<script type="text/javascript"> |
| 284 | 28 |
function startRenkan(){ |
| 281 | 29 |
var _renkan = new Rkns.Renkan({ |
| 250 | 30 |
/*property_files: [ "data/properties.json" ], |
31 |
user_id: "u-iri", |
|
32 |
language: "fr", |
|
33 |
node_fill_color: false*/ |
|
|
403
96781c1a8bbe
correct resizing problems especially in next firefox
ymh <ymh.work@gmail.com>
parents:
345
diff
changeset
|
34 |
show_bins: false, |
| 256 | 35 |
static_url: "../" |
| 250 | 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" |
| 250 | 39 |
}); |
| 284 | 40 |
}; |
| 250 | 41 |
</script> |
| 256 | 42 |
<link rel="stylesheet" href="../css/renkan.css" /> |
| 250 | 43 |
<style type="text/css"> |
44 |
body{ |
|
45 |
margin: 0 auto; |
|
46 |
width: 960px; |
|
47 |
} |
|
48 |
.header, .footer { |
|
49 |
font-size: 14px; |
|
50 |
height: 40px; |
|
51 |
padding-top: 10px; |
|
52 |
} |
|
53 |
.rnk-container{ |
|
54 |
height: 500px; |
|
55 |
position: relative; |
|
56 |
width: 600px; |
|
57 |
} |
|
58 |
</style> |
|
59 |
</head> |
|
60 |
||
61 |
<body> |
|
62 |
<div class="header"> |
|
63 |
This is a header |
|
64 |
</div> |
|
65 |
<div class="rnk-container"> |
|
66 |
<div id="renkan"></div> |
|
67 |
</div> |
|
68 |
<div class="footer"> |
|
69 |
This is a footer |
|
70 |
</div> |
|
71 |
</body> |
|
72 |
</html> |