forked from dimagi/Vellum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (57 loc) · 3.49 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Dimagi XForms FormDesigner</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/smoothness/jquery-ui-1.8.14.custom.css" type="text/css" rel="stylesheet" />
<link href="css/print.css" rel="stylesheet" type="text/css" media="print" />
<link href="css/chosen.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
<link href="js/lib/codemirror/codemirror.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- Core Vellum Styles -->
<link href="style/standalone.css" rel="stylesheet" media="screen, projection" />
<link href="style/structure.css" rel="stylesheet" media="screen, projection" />
<link href="style/editor-column.css" rel="stylesheet" media="screen, projection" />
<link href="style/tree-content.css" rel="stylesheet" media="screen, projection" />
<link href="style/question-props.css" rel="stylesheet" media="screen, projection" />
<link href="style/xpath-editor.css" rel="stylesheet" media="screen, projection" />
<script type="text/javascript" src="js/lib/jquery-1.6.1.js"></script>
<script type="text/javascript" src="js/lib/jquery-ui-1.8.14.custom.min.js"></script>
<script type="text/javascript" src="js/lib/jquery.jstree.js"></script>
<script type="text/javascript" src="js/lib/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript" src="js/lib/chosen.jquery.min.js"></script>
<script type="text/javascript" src="js/lib/jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="js/lib/underscore-1.5.2.js"></script>
<script type="text/javascript" src="js/lib/xpath/lib/biginteger.js"></script>
<script type="text/javascript" src="js/lib/xpath/lib/schemeNumber.js"></script>
<script type="text/javascript" src="js/lib/xpath/models.js"></script>
<script type="text/javascript" src="js/lib/xpath/xpath.js"></script>
<script type="text/javascript" src="js/lib/XMLWriter-1.0.0.js"></script>
<script type="text/javascript" src="js/lib/codemirror/codemirror.js"></script>
<script type="text/javascript" src="js/lib/codemirror/xml.js"></script>
<script type="text/javascript" src="js/saveButton.js?version=101"></script>
<script type="text/javascript" src="js/ui.js?version=101"></script>
<script type="text/javascript" src="js/util.js?version=101"></script>
<script type="text/javascript" src="js/model.js?version=101"></script>
<script type="text/javascript" src="js/controller.js?version=101"></script>
<script type="text/javascript" src="js/widgets.js?version=101"></script>
<script type="text/javascript">
$(function() {
$("#formdesigner button").addClass("btn");
});
</script>
</head>
<body>
<div id="formdesigner"></div>
<script type="text/javascript">
$(document).ready(function () {
formdesigner.launch({
rootElement: "#formdesigner",
staticPrefix: "",
langs: ""
});
});
</script>
</body>
</html>