blob: 35308ae1995ea9814003224c47213ac9a89910e4 (
plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
<!DOCTYPE html>
<head>
<title>Rhizi Prototype </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="res/css/style.css" rel="stylesheet" type="text/css">
<link href="res/css/ui.css" rel="stylesheet" type="text/css">
<link href='res/css/google-lato-300.css' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="res/img/favicon2.ico" />
<script src="scripts/local_config.js"></script>
<script data-main='scripts/app.js' src="lib/require.js"></script>
</head>
<body>
<div class="UI">
<div class="help">Connect between <span style="color:#FCB924">people</span> and the <span style="color:#009DDC">projects</span> they are working on by describing their main contribution:</div>
<div class="info-container">
<div class="edge_info" style="display:none">Title: <span id="edgetitle"></span><br/>
<button id="deleteedge">Delete</button>
</div>
<div class="info" style="display:none">Node info :<br/>
<div class="subtitle">Click on a node to display info</div>
<form id="node-editbox">
<label>name:</label><input id="editboxname"/>
<label>description:</label><input id="editdescription"/>
<label>URL DLKJ:</label><input id="editurl"/>
<button>edit</button>
</form>
<button id="deletenode">Delete</button>
</div>
</div>
<div class='editinfo'>
<form id='editform'>
<input id="editname"/>
</form>
</div>
<div class='editlinkinfo'>
<form id='editlinkform'>
<input id="editlinkname"/>
</form>
</div>
<div id="suggestion" >
<form> <input id="textanalyser" size="70" placeholder="Type here to create a network:"/></form>
</div>
<div class="typeselection">
<table>
<tr><td><img id="keys" width="56" height="26" src="res/img/keys.png"/></td></tr>
<tr><td>Pick a type with [TAB] key</td></tr>
</table>
</div>
<div class="debug-ui">
<div class="debug-ui-row">
<div class="debug-ui-left">
<a class="set-user" href="#">Set user</a>
</div>
<div class="debug-ui-right">
<form class="set-user-form" style="display: none">
<input class="set-user-input" style="width: 100px" value="username"></input>
</form>
</div>
</div>
<div class="debug-ui-row">
<div class="debug-ui-left">
<a class="save-history" style="display: none" href="#">Save history</a>
</div>
<div class="debug-ui-right">
<a id="replay-history" style="display: none" href="#">Replay history</a>
</div>
</div>
<div class="debug-ui-row">
<div class="debug-ui-left">
<div class="save">
<a href="#">Save</a>
</div>
</div>
<div class="debug-ui-right">
<div class="export">
<a href="#">Export</a>
</div>
</div>
</div>
<div class="debug-ui-left">
<div class="local-storage-load">
<a href="#">Load</a>
</div>
</div>
<div class="debug-ui-row">
<form>
Import <input type="file" class="file-import" />
</form>
</div>
<div class="debug-ui-left">
<div class="debug">debug</div>
</div>
</div>
<div class="history-timeline">
</div>
<div class="logo">
<a href="#"><img width="146" height="67" src="res/img/sage.png"/></a>
</div>
</div>
<div class="poweredby">powered by <a href="http://www.rhizi.org">
<img width="45" height="25" src="res/img/rhizismall.png"/></a>
</div>
</div>
<div class="missingdates" style="display:none">The following tasks are missing dates,<br/>Please fill them out:</div>
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch" onclick="checkSwitch(this)"checked>
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</body>
</html>
|