-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree_of_knowledge.html
More file actions
68 lines (62 loc) · 2.83 KB
/
tree_of_knowledge.html
File metadata and controls
68 lines (62 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!-- SET METEOR_OFFLINE_CATALOG=1 meteor -->
<head>
<title>tree_of_knowledge</title>
<meta charset="utf-8"/>
</head>
<body>
{{> graph}}
<!-- {{> appDumpUI advanced=true}} -->
</body>
<template name="graph">
<h2>
<span id="pgTitle"> </span>
<select id="availGraphs"></select>
<!-- <form id="ribbon"> -->
 
<span id="notifications"></span>
</h2>
<h3>
<input type="button" id="new" value="new"/>
<input type="button" id="rename" value="rename"/>
<input type="button" id="delete" value="delete"/>
 
<span> Server:
<input type="button" id="srvBckup" value="Backup" />
<input type="button" id="srvRestore" value="Restore" />
</span>
 
<span> Local:
<input type="button" id="cltBckup" value="Download" />
<label class="fileContainer">
<input type="button" value="Upload" /> <!-- just for show -->
<input type="file" id="cltRestore" />
</label>
</span>
</h3>
<span>
<label class="fileContainer">
<input type="button" value="Load Metamath" /> <!-- just for show -->
<input type="file" id="loadMetamath" />
</label>
Graph_density:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="linkDistMult" value="100.4"/>
Lk_long_Str:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="linkStrInput" value="30"/>
Lk_short_Str:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="linkSStrInput" value="2.1"/>
Lk_orient:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="linkOrtInput" value="1.1"/>
Charge:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="ChargeInput" value="6.1"/>
<!-- ChargeDist:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="chrgDistInput" value="100"/> -->
Gravity:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="gravInput" value="15"/>
Size:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="sizeInput" value="1.5"/>
Phantom charges field:<input type="text" size="3" onkeypress="return event.charCode >= 46 && event.charCode <= 57" id="phChInput" value="90.05"/>
<input type="button" id="randomize" value="Randomize x,y vis nds!"/> <!-- only the nodes shown -->
<input type="button" id="resetCrds" value="Reset x,y ALL nd"/> <!-- all nodes in current graph -->
<input type="button" id="calcGrWeights" value="Calc Graph Weights"/>
<input type="button" id="calcZoom" value="CalcConn for Zoom"/>
</span>
<div class="canvas" id="graphCanvas">
<svg id="graphSVG"></svg>
{{#mathjax}}
<div id="allTooltips"></div>
{{/mathjax}}
</div>
Last updated: {{lastUpdate}}
</template>