-
Notifications
You must be signed in to change notification settings - Fork 7
/
desktop.html
59 lines (55 loc) · 2.07 KB
/
desktop.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
<!--
Kebab Project 2.0.0 (Kebab Revolution)
http://kebab-project.com
Copyright (c) 2011-2012 lab2023 - internet technologies TURKEY Inc.
http://www.lab2023.com
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kebab Web OS - Desktop</title>
<meta content="authenticity_token" name="csrf-param" />
<meta content="your_token_here" name="csrf-token" />
<!-- include favicon here -->
<link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<!-- include js files here -->
<script type="text/javascript" src="vendors/ext-4.1.0-beta-2/ext-all-debug.js"></script>
<script type="text/javascript" src="vendors/ext-4.1.0-beta-2/locale/ext-lang-en.js"></script>
<script type="text/javascript" src="locale/kebab-lang-en.js"></script>
<script type="text/javascript" src="kebab/kebab.js"></script>
<script type="text/javascript" src="kebab/desktop.js"></script>
<script type="text/javascript">
Kebab.setBootstrap({
"authenticity_token": "your_token_here",
"tenant":{
"cname":null,
"id":1,
"name":"lab2023 Inc.",
"subdomain":"lab2023"
},
"locale": {
"default_locale": "tr",
"available_locales": ["en", "ru", "tr"]
},
"env": "production",
"version":"1.1.1",
"user": {
"id": 1,
"email": "[email protected]",
"name": "John Doe",
"is_owner": true,
"applications": [],
"privileges":[
{"id":1, "info":null, "name":"Invite User", "sys_name":"InviteUser"},
{"id":2, "info":null, "name":"Passive User", "sys_name":"PassiveUser"},
{"id":3, "info":null, "name":"Active User", "sys_name":"ActiveUser"},
{"id":4, "info":null, "name":"Manage Account", "sys_name":"ManageAccount"}
]
}
});
</script>
</head>
<body>
</body>
</html>