server/src/main/webapp/WEB-INF/templates/renkanProjectEdit.html
author ymh <ymh.work@gmail.com>
Mon, 21 Oct 2013 17:55:12 +0200
branchuser_management
changeset 224 0167b777ad15
parent 127 906fed13c1e1
child 240 18a43ba77ad0
permissions -rw-r--r--
remove deprecated warnings + fix date picker default langauge

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" th:lang="${#ctx.getLocale().toLanguageTag()}">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        
        <title>RENKAN</title>
        <meta name="description" content="" />
        <meta name="author" content="Institut de Recherche et d'Innovation" />
        <link rel="icon" href="../../static/img/favicon.ico" th:href="@{/static/img/favicon.ico}" type="image/x-icon" />
        <script src="lib/jquery.min.js" th:src="@{/static/lib/jquery.min.js}" ></script>
        <script src="lib/jquery.mousewheel.min.js" th:src="@{/static/lib/jquery.mousewheel.min.js}"></script>
        <script src="lib/underscore-min.js" th:src="@{/static/lib/underscore-min.js}"></script>
        <script src="lib/backbone.js" th:src="@{/static/lib/backbone.js}"></script>
        <script src="lib/backbone-relational.js" th:src="@{/static/lib/backbone-relational.js}"></script>
        <script src="lib/paper.js" th:src="@{/static/lib/paper.js}"></script>
        <script src="js/main.js" th:src="@{/static/js/main.js}"></script>
        <script src="js/defaults.js" th:src="@{/static/js/defaults.js}"></script>
        <script src="js/i18n.js" th:src="@{/static/js/i18n.js}"></script>
        <script src="js/models.js" th:src="@{/static/js/models.js}"></script>
        <script src="js/twitter-bin.js" th:src="@{/static/js/twitter-bin.js}"></script>
        <script src="js/wikipedia-bin.js" th:src="@{/static/js/wikipedia-bin.js}"></script>
        <script src="js/ldtjson-bin.js" th:src="@{/static/js/ldtjson-bin.js}"></script>
        <script src="js/list-bin.js" th:src="@{/static/js/list-bin.js}"></script>
        <script src="js/paper-renderer.js" th:src="@{/static/js/paper-renderer.js}"></script>
        <script type="text/javascript" src="js/config.js" th:src="@{/static/js/config.js}"></script>
        <script type="text/javascript" th:inline="javascript">
            var cowebConfig = {
        	    baseUrl: window.location.protocol + '//' + window.location.host,
        	    adminUrl : dojoConfig.baseUrl+'ocw_admin',
        	    debug: /*[[${coweb_debug}]]*/false,
        	    useWebSockets: /*[[${coweb_websockets}]]*/false
        	};
        </script>
        <script type="text/javascript" src="lib/dojo/dojo.js" data-dojo-config="isDebug: true, parseOnLoad: true" th:src="@{/static/lib/dojo/dojo.js}"></script>                
        <script type="text/javascript" th:inline="javascript">
            $(function() {
            	var renkan_config = {
                    static_url : /*[[@{/static/}]]*/ "",
                    read_only: true,
                    bins: [
                        {
                            type: "Wikipedia",
                            lang: "en",
                            search: "Digital Humanities"
                        },
                        {
                            type: "Wikipedia",
                            lang: "ja",
                            search: "Digital Humanities"
                        },
                        {
                            type: "Twitter",
                            search: "Digital Humanities"
                        },
                        {
                            title: "LDT Project",
                            type: "Ldt",
                            ldt_type: "Project",
                            project_id: "67280b1c-ff30-11e0-a82d-00145ea49a02",
                            ldt_platform: "http://ldt.iri.centrepompidou.fr/"
                        }
                    ],
                    search: [
                        {
                            type: "Wikipedia",
                            lang: "fr"
                        }, 
                        {
                            type: "Wikipedia",
                            lang: "en"
                        }, 
                        {
                            type: "Wikipedia",
                            lang: "ja"
                        },
                        {
                            type: "Twitter"
                        }
                    ],
                    property_files: [
                        /*[[@{/static/data/properties.json}]]*/ "data/properties.json",
                    ],
                };
            	var space_config = /*[[${space.binConfig}?${space.binConfig}:'{}']]*/"{}";
            	space_config = JSON.parse(space_config);
                var _renkan = new Rkns.Renkan($.extend({}, renkan_config, space_config));
                var corenkanConfig = {
        	        projectId: /*[[${project.id}]]*/"new_project",
        	        renkan : _renkan
        	    };

                require({corenkanConfig: corenkanConfig}, ["corenkan"], function(corenkan) {            
                    corenkan.app.onStatusChange = function(status) {
                    };
                });
            });
        </script>
        <link href="../../static/css/style.css" rel="stylesheet" th:href="@{/static/css/style.css}"/>
        <link rel="stylesheet" href="css/renkan.css" th:href="@{/static/css/renkan.css}"/>        
    </head>
    <body>
        <div id="renkan"></div>
        <div id="footer" th:include="fragment/pageFragment :: footerFragment">
            <div id="version">© <span class="version-date">2013</span> <a href="http://www.iri.centrepompidou.fr" target="_blanck">IRI</a> - Version <span class="version-version">0.0</span></div>
        </div>        
    </body>
</html>