forked from dsd-sztaki-hu/LODmilla-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (80 loc) · 4.28 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>SZTAKI LODmilla</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/jquery-ui.css" />
<link rel="stylesheet" href="css/screen.css" />
<link rel="stylesheet" href="css/jquery.fancybox/jquery.fancybox.css" />
<link rel="stylesheet" href="css/jquery.fancybox/helpers/jquery.fancybox-thumbs.css" />
<link rel="icon" type="image/png" href="img/favicon.png" />
<script src="js/md5.js"></script>
<script src="js/jquery-1.9.0-min.js"></script>
<!--<script src="js/jquery-2.1.3.js"></script>-->
<script src="js/jquery-ui.min.js"></script>
<!--<script src="js/jquery.ui.touch-punch.min.js"></script>-->
<script src="js/jquery.json-2.4.min.js"></script>
<script src="js/jquery.jsonp.js"></script>
<script src="js/jstorage.js"></script>
<script src="js/jquery.mousewheel.js"></script>
<!--
<script src="js/jquery.rdfquery.core.min-1.0.js"></script>
<script src="js/jquery.fancybox/jquery.fancybox-1.3.4_patch.js"></script>
-->
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.fancybox-thumbs.js"></script>
<!--
<script src="http://code.jquery.com/jquery-migrate-1.1.1.js"></script>
<script src="js/jquery.getimagedata.min.js"></script>
-->
<!-- support lib for bezier stuff -->
<script src="js/jsPlumb/classList.js"></script>
<script src="js/jsPlumb/jsBezier-0.6-min.js"></script>
<script src="js/jsPlumb/jquery.jsPlumb-1.6.0-min.js"></script>
<!--<script src="js/jsPlumb/jquery.jsPlumb-1.7.5.js"></script>-->
<script src="js/lod/helper.class.js"></script>
<script src="js/lod/graph.class.js"></script>
<script src="js/lod/node.class.js"></script>
<script src="js/lod/connection.class.js"></script>
<script src="js/lod/service.class.js"></script>
<script src="js/lod/services.js"></script>
<script src="js/lod/profile.class.js"></script>
<script src="js/lod/jsplumb/connector.js"></script>
<script src="js/lod/server_connector.js"></script>
<script src="js/lod/sidemenu.class.js"></script>
<script src="js/lod/handlers.js"></script>
<script src="js/lod/app.js"></script>
<script src="js/lod/layout.js"></script>
<script src="js/lod/layout/buffer.js"></script>
<script src="js/lod/layout/virtual.js"></script>
<script src="js/lod/layout/spring.js"></script>
<script src="js/lod/layout/grid.js"></script>
<script src="js/lod/layout/radial.js"></script>
<script src="js/lod/export.js"></script>
<script src="js/lod/jsplumb/helper.js"></script>
</head>
<body>
<div id="headerWrapper" class="ui-corner-all ui-state-default"><div id="header"><h1>LODmilla</h1></div></div>
<div id="main"></div>
<div id="footerWrapper"><div id="footer">All rights reserved © <a href="http://www.sztaki.hu" target="_blank">MTA SZTAKI</a><br />
<a href="#" id="creditsopen">Credits</a></div></div>
<div id="credits" title="Credits">
<p>
<a href="http://www.sztaki.hu" target="_blank"><img src="img/SZTAKI_logo_2012_english_RG.png" width="320" height="80"></a>
<br />
Created by: <a href="http://dsd.sztaki.hu/" target="_blank">DSD</a><br />
Powerd by: <a href="http://jsplumbtoolkit.com/" target="_blank">jsPlumb</a><br />
Graphic elements from: <a href="http://seamless-pixels.blogspot.co.uk/" target="_blank">Free Seamless Textures</a>, <a href="http://openiconlibrary.sourceforge.net/" target="_blank">Open Icon Library</a>
</p>
</div>
<div id="addNewConnectionDialogForm" title="New connection URI">
<form>
<select class="newConnUri"></select>
<input type="submit" value="Add"/>
</form>
</div>
<div id="loadScreen"></div>
<label id="loadScreenText" class="opacityItem">Working...</label>
</body>
</html>