Mercurial > hg > NetworkVis
comparison popoto/ismi.html @ 1:db013b2f3e10
added displayAttribute to show on individual nodes.
pull all labels and add getLabelFilter to ignore labels (currently with underscore).
added ismi-specific app-template and html file.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Tue, 01 Sep 2015 16:56:31 +0200 |
parents | |
children | 72dc19d750ad |
comparison
equal
deleted
inserted
replaced
0:3b8b5aa8ab65 | 1:db013b2f3e10 |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 | |
4 <head> | |
5 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> | |
6 <title>Popoto Search</title> | |
7 <link rel="stylesheet" href="css/popoto.min.css"> | |
8 </head> | |
9 <body class="ppt-body"> | |
10 | |
11 <header class="ppt-header"> | |
12 <span class="ppt-header-span">POPOTO JS alpha version</span> | |
13 </header> | |
14 | |
15 <section class="ppt-section-main"> | |
16 <div class="ppt-section-header"> | |
17 <span class="ppt-header-span">Graph</span> search | |
18 </div> | |
19 | |
20 <div class="ppt-container-graph"> | |
21 <nav id="popoto-taxonomy" class="ppt-taxo-nav"> | |
22 <!-- Label/taxonomy filter will be generated here --> | |
23 </nav> | |
24 <div id="popoto-graph" class="ppt-div-graph"> | |
25 <!-- Graph will be generated here--> | |
26 </div> | |
27 </div> | |
28 | |
29 <div id="popoto-query" class="ppt-container-query"> | |
30 <!-- Query viewer will be generated here --> | |
31 </div> | |
32 | |
33 <!-- Cypher query viewer has been partially disabled for this alpha release and only display the query as text if enabled --> | |
34 <!--<div id="popoto-cypher" class="ppt-container-cypher">--> | |
35 <!--</div>--> | |
36 | |
37 <div class="ppt-section-header"> | |
38 <!-- The total results count is updated with a listener defined in app-template.js --> | |
39 RESULTS <span id="result-total-count" class="ppt-count"></span> | |
40 </div> | |
41 | |
42 <div id="popoto-results" class="ppt-container-results"> | |
43 <!-- Results will be generated here --> | |
44 </div> | |
45 | |
46 </section> | |
47 | |
48 <!----------------------> | |
49 <!-- Required scripts --> | |
50 | |
51 <!-- Jquery is only used in popoto.js to send ajax POST request on Neo4j REST API --> | |
52 <!-- This dependency will probably be removed in future releases --> | |
53 <script src="js/jquery-2.1.0.min.js" charset="utf-8"></script> | |
54 | |
55 <script src="js/d3.v3.min.js" charset="utf-8"></script> | |
56 <!-- <script src="js/popoto.min.js" charset="utf-8"></script> --> | |
57 <script src="src/js/popoto.js" charset="utf-8"></script> | |
58 | |
59 <!-- You can modify the parameters defined in this script to customize this application template --> | |
60 <script src="js/app-ismi.js" charset="utf-8"></script> | |
61 </body> | |
62 </html> |