-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (83 loc) · 4.05 KB
/
index.html
File metadata and controls
85 lines (83 loc) · 4.05 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale = 1, maximum-scale=1, user-scalable=no"/>
<!-- TODO: Meta / OpenGraph / Facebook -->
<title>tudocomp – The TU Dortmund Compression Framework</title>
<link rel="stylesheet" type="text/css" href="font-awesome-4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" type="text/css" href="fonts/fonts.css"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="icon" type="image/svg+xml" href="tudocomp-icon.svg">
<!-- Chrome currently doesn't support SVG favicons -->
<link rel="icon" type="image/png" href="tudocomp-icon.png">
</head>
<body>
<header>
<h1>– The TU Dortmund Compression Framework</h1>
</header>
<section id="content">
<div id="dashboard">
Welcome to the <em>tudocomp</em> website!
<ul>
<li>
<a title="tudocomp Documentation" href="documentation/index.html"><i class="fa fa-file-text-o"></i> Documentation & Tutorial</a>
<p>
Find out what you can do with <em>tudocomp</em> and how to do it in the documentation and tutorial.
</p>
<!--<p class="warning">
<i class="fa fa-warning"></i> The documentation is currently a work in progress.
</p>-->
</li>
<li>
<a title="tudocomp Repository" href="https://github.com/tudocomp/tudocomp"><i class="fa fa-code"></i> Code Repository</a>
<p>
Clone the framework's git repository to get started working with <em>tudocomp</em>.
</p>
</li>
<li>
<a title="tudocomp API Reference" href="doxygen/index.html"><i class="fa fa-list-alt"></i> API Reference</a>
<p>
Get an overview over the framework's API in the Doxygen documentation.
</p>
</li>
<li>
<a title="tudocomp Charter Application" href="charter/index.html"><i class="fa fa-bar-chart"></i> Charter</a>
<p>
Use the charter application to visualize and export the JSON datasets generated by the framework's runtime and memory statistics module.
</p>
</li>
<li>
<a title="Quick Arrays" href="https://quickarrays.github.io/"><svg style="width: 1em; vertical-align: baseline;" xmlns:xmlns=http://www.w3.org/2000/svg role=img viewBox="0 0 16 16"><circle cx=8 cy=8 r=6 fill=none stroke=currentColor stroke-width=2 /><polygon fill=currentColor points="5 12 13 8 5 4"/></svg> Quick Arrays</a>
<p>
Quickly generate the suffix array and friends for short texts in realtime.
</p>
</li>
<li>
<a title="Information on the testing and benchmarking text collection" href="documentation/index.html#text-corpus"><i class="fa fa-database"></i> Text Corpus</a>
<p>
Information on the text corpus available in <em>tudocomp</em> for testing and benchmarking purposes.
</p>
</li>
<li>
<a title="Project ideas related to tudocomp" href="ideas.html"><i class="fa fa-graduation-cap"></i> Project Ideas</a>
<p>
A list of ideas and projects that would benefit the development of <em>tudocomp</em>.
</p>
</li>
<li>
<a title="Contributors and Publications" href="fame.html"><i class="fa fa-star-o"></i> About Us</a>
<p>
A list of all major contributors and recent publications.
</p>
</li>
</ul>
</div>
</section>
<footer>
<a href="impressum.html" title="Impressum"><i class="fa fa-info"></i> Impressum</a>
•
tudocomp is licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</a>.
</footer>
</body>
</html>