client/test/test-writable-simple-title-not-editable.html
author durandn
Tue, 04 Oct 2016 12:38:50 +0200
changeset 639 30b673cb13ee
parent 637 a823999cbc42
permissions -rw-r--r--
increment renkanmanager version
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
637
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     1
<!DOCTYPE html>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     2
<html lang="fr">
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     3
    <head>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     4
        <meta charset="utf-8" />
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     5
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     6
        <title>Test de Rendu RENKAN</title>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     7
        <meta name="description" content="" />
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     8
        <meta name="author" content="Institut de Recherche et d'Innovation" />
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
     9
        <script src="../lib/jquery/jquery.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    10
        <script src="../lib/jquery-mousewheel/jquery.mousewheel.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    11
        <script src="../lib/lodash/lodash.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    12
        <script src="../lib/backbone/backbone.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    13
        <script src="../lib/backbone-relational/backbone-relational.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    14
        <script src="../lib/paper/paper-full.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    15
        <script src="../js/main.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    16
        <script src="../js/dataloader.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    17
        <script src="../js/router.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    18
        <script src="../js/models.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    19
        <script src="../js/defaults.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    20
        <script src="../js/i18n.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    21
        <script src="../dist/js/templates.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    22
        <script src="../js/full-json.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    23
        <script src="../js/ldtjson-bin.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    24
        <script src="../js/list-bin.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    25
        <script src="../js/wikipedia-bin.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    26
        <script data-main="../js/main-renderer" src="../lib/requirejs/require.js"></script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    27
        <script type="text/javascript">
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    28
            function startRenkan(){
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    29
            	var _renkan = new Rkns.Renkan({
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    30
                    property_files: [ "../data/properties.json" ],
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    31
                    /*user_id: "u-iri",
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    32
                    language: "fr",
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    33
                    node_fill_color: false*/
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    34
                    show_bins: false,
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    35
                    static_url: "../",
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    36
                    title_editable: false,
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    37
                });
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    38
                Rkns.jsonIO(_renkan, {
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    39
                    url: "/simple-persist"
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    40
                });
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    41
            };
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    42
        </script>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    43
        <link rel="stylesheet" href="../css/renkan.css" />
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    44
    </head>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    45
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    46
    <body>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    47
        <div id="renkan"></div>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    48
    </body>
a823999cbc42 added option (title_editable, default is true) to make the title uneditable in edit mode
durandn
parents:
diff changeset
    49
</html>