-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.html
47 lines (34 loc) · 1.45 KB
/
app.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
<!doctype html>
<html lang="de">
<head>
<title>
Policy-Web -- Web-Interface für den
Network Security Policy Compiler von Dataport
</title>
<link rel="icon" type="image/vnd.microsoft.icon" href="resources/images/policyweb.ico">
</head>
<!-- Cascading style sheets -->
<link rel="stylesheet" type="text/css" href="/extjs4/resources/css/ext-all.css" />
<!-- Custom css -->
<link rel="stylesheet" type="text/css" href="resources/css/custom.css" />
<!-- Icons -->
<link rel="stylesheet" type="text/css" href="resources/css/icons.css" />
<!-- Framework JavaScript -->
<!-- Ext WITH debugging -->
<!-- <script type="text/javascript" src="/extjs4/ext-all-debug.js"> </script> -->
<!-- <script type="text/javascript" src="/extjs4/ext-all-debug.js"> </script> -->
<!-- Ext without debugging -->
<script type="text/javascript" src="/extjs4/ext-all.js"> </script>
<!-- Load this from local address instead of from sencha.com -->
<script type="text/javascript">
Ext.BLANK_IMAGE_URL = '/extjs4/resources/themes/images/default/tree/s.gif';
</script>
<!-- Ext with german localization -->
<script type="text/javascript" src="/extjs4/locale/ext-lang-de.js"> </script>
<!-- Application JavaScript -->
<script type="text/javascript" src="app/common.js"> </script>
<script type="text/javascript" src="app/Appstate.js"> </script>
<script type="text/javascript" src="app/Application.js"> </script>
<body>
</body>
</html>