-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (112 loc) · 4.26 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
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
<!DOCTYPE html>
<html>
<head>
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="doc/documentation.css">
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="doc/documentation.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js"></script>
<script>
$(document).ready(function() {
// Hint languages to prevent false matches (php for example).
hljs.configure({
languages: ['perl', 'javascript', 'xml', 'html', 'css', 'json', 'yaml']
});
// programlistings in manuals
$('pre.programlisting').each(function(i, block) {
hljs.highlightBlock(block);
});
// code snippets in Perl API docs
$('.pod pre').addClass('perl').each(function(i, block) {
hljs.highlightBlock(block);
});
});</script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(71085925, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/71085925" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="OTRS on github: Documentation" />
<title>OTRS Documentation</title>
</head>
<body>
<h1 class="Center">Documentation Overview</h1>
<h2 class="Center">Administration Manuals</h2>
<ul class="PagesList">
<li data-target-id="manual_admin_6_0">
<a href="doc/manual/admin/stable/en/html/index.html">
<span>Manual</span>
OTRS Help Desk
<span>Version 6</span>
</a>
</li>
<li data-target-id="manual_itsm_6_0">
<a href="doc/manual/itsm/stable/en/html/index.html">
<span>Manual</span>
OTRS::ITSM
<span>Version 6</span>
</a>
</li>
</ul>
<h2 class="Center">Developer Manuals</h2>
<ul class="PagesList">
<li data-target-id="manual_developer_6_0">
<a href="doc/manual/developer/stable/en/html/index.html">
<span>Manual</span>
OTRS Developer Manual
<span>Version 6</span>
</a>
</li>
<li data-target-id="api_otrs_6_0">
<a href="doc/api/otrs/stable/Perl/index.html">
<span>API Reference</span>
Perl API
Reference
<span>Version 6</span>
</a>
</li>
<li data-target-id="api_otrs_6_0">
<a href="doc/api/otrs/stable/JavaScript/index.html">
<span>API Reference</span>
JavaScript API Reference
<span>Version 6</span>
</a>
</li>
</ul>
<p class="Center">
Did you know? You can help translating the manuals to your language at
<a target="_blank" href="https://www.transifex.com/otrs/OTRS/">Transifex</a>.
</p>
<script>
// Highlight the navigation point of the selected <li>
$('document').ready(
function(){
$('.PagesList li').on('mouseenter mouseleave', function(Event) {
var TargetID = $(this).data('target-id');
if (!TargetID || !TargetID.length) {
return;
}
if (Event.type === 'mouseenter') {
$('#' + TargetID).addClass('Highlight');
}
else {
$('#' + TargetID).removeClass('Highlight');
}
});
});
</script>
</body>
</html>