view popoto/ismi.html @ 4:72dc19d750ad

ADDED: Basic text box implementation for predefined constraints, to be added to in the coming week. nodeProvider, linkProvider additions.
author alistair
date Mon, 07 Sep 2015 23:51:47 -0400
parents db013b2f3e10
children fa1b4fa5b4f8
line wrap: on
line source

<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
    <title>Popoto Search</title>
    <link rel="stylesheet" href="css/popoto.min.css">
</head>
<body class="ppt-body">

<header class="ppt-header">
    <span class="ppt-header-span">POPOTO JS alpha version</span>
</header>

<section class="ppt-section-main">
    <div class="ppt-section-header" style="height: 150px; line-height: 45px;">
        <span class="ppt-header-span">Graph</span> search
        <form>
            <label>
                <input id="constraint" type="text" style="width: 500px;" value='$identifier.label IN [""]'>
            </label>
            <input id="filter-button" type="button" value="Use this filter">
            <br>
            <label>
                <input id="constraint2" type="text" style="width: 500px;" value='$identifier.death_date_text IN [""]'>
            </label>
            <input id="filter-button2" type="button" value="Use this filter">
        </form>
    </div>

    <div class="ppt-container-graph">
        <nav id="popoto-taxonomy" class="ppt-taxo-nav">
            <!-- Label/taxonomy filter will be generated here -->
        </nav>
        <div id="popoto-graph" class="ppt-div-graph">
            <!-- Graph will be generated here-->
        </div>
    </div>

    <div id="popoto-query" class="ppt-container-query">
        <!-- Query viewer will be generated here -->
    </div>

    <!-- Cypher query viewer has been partially disabled for this alpha release and only display the query as text if enabled -->
    <!--<div id="popoto-cypher" class="ppt-container-cypher">-->
    <!--</div>-->

    <div class="ppt-section-header">
        <!-- The total results count is updated with a listener defined in app-template.js -->
        RESULTS <span id="result-total-count" class="ppt-count"></span>
    </div>

    <div id="popoto-results" class="ppt-container-results">
        <!-- Results will be generated here -->
    </div>

</section>

<!---------------------->
<!-- Required scripts -->

<!-- Jquery is only used in popoto.js to send ajax POST request on Neo4j REST API -->
<!-- This dependency will probably be removed in future releases -->
<script src="js/jquery-2.1.0.min.js" charset="utf-8"></script>

<script src="js/d3.v3.min.js" charset="utf-8"></script>
<!-- <script src="js/popoto.min.js" charset="utf-8"></script> -->
<script src="src/js/popoto.js" charset="utf-8"></script>

<!-- You can modify the parameters defined in this script to customize this application template -->
<script src="js/app-ismi.js" charset="utf-8"></script>
</body>
</html>