client/render-test.html
author veltr
Tue, 14 May 2013 12:15:15 +0200
changeset 175 f636e2dcfb2c
parent 132 860340d4c645
child 176 f3da1f26f949
permissions -rw-r--r--
eGonomy image fragments support

<!DOCTYPE html>
<html lang="fr">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Test de Rendu RENKAN</title>
        <meta name="description" content="" />
        <meta name="author" content="Institut de Recherche et d'Innovation" />
        <script src="lib/jquery.min.js"></script>
        <script src="lib/jquery.mousewheel.min.js"></script>
        <script src="lib/underscore-min.js"></script>
        <script src="lib/backbone.js"></script>
        <script src="lib/backbone-relational.js"></script>
        <script src="lib/paper.js"></script>
        <script src="js/main.js"></script>
        <script src="js/defaults.js"></script>
        <script src="js/i18n.js"></script>
        <script src="js/models.js"></script>
        <script src="js/full-json.js"></script>
        <script src="js/list-bin.js"></script>
        <script src="js/ldtjson-bin.js"></script>
        <script src="js/twitter-bin.js"></script>
        <script src="js/wikipedia-bin.js"></script>
        <script src="js/paper-renderer.js"></script>
        <script type="text/javascript">
            var _renkan;
            $(function() {
                _renkan = new Rkns.Renkan({
                    show_node_circles: false,
                    clip_node_images: false,
                    bins: [
                    	{
                            title: "Projet Lignes de Temps",
                            type: "Ldt",
                            ldt_type: "Project",
                            project_id: "6af4019c-8283-11e2-9678-00145ea4a2be",
                            ldt_platform: "http://ldt.iri.centrepompidou.fr/"
                       },
                    	{
                    		type: "ResourceList",
                    		title: "Ressources",
                    		list: [
                    			{
                    				url: "http://www.google.com/",
                    				title: "Google",
                    				description: "Search engine",
                    				image: "http://www.google.fr/images/srpr/logo4w.png"
                    			},
                    			"Polemic Tweet http://www.polemictweet.com",
                    			"Twitter http://www.twitter.com/"
                    		]
                    	}
                    ],
                    search: [
                        {
                            type: "Ldt"
                        },
                        {
                            type: "Wikipedia",
                            lang: "fr"
                        }, 
                        {
                            type: "Twitter"
                        }
                    ],
                    property_files: [ "data/properties.json" ],
                    user_id: "u-iri",
                    language: "fr",
                    node_fill_color: false
                });
                Rkns.jsonIO(_renkan, {
                    url: "data/simple-persist.php"
                });
            });
        </script>
        <link rel="stylesheet" href="css/renkan.css" />
    </head>

    <body>
        <div id="renkan"></div>
        
    </body>
</html>