summaryrefslogtreecommitdiff
path: root/enigma-swing/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'enigma-swing/src/main/resources')
-rw-r--r--enigma-swing/src/main/resources/about.html6
-rw-r--r--enigma-swing/src/main/resources/stats.html34
2 files changed, 40 insertions, 0 deletions
diff --git a/enigma-swing/src/main/resources/about.html b/enigma-swing/src/main/resources/about.html
new file mode 100644
index 00000000..b75c1bf0
--- /dev/null
+++ b/enigma-swing/src/main/resources/about.html
@@ -0,0 +1,6 @@
1<html>
2 <h1>%s</h1>
3 <p>A tool for debofuscation of Java code</p>
4 <p>
5 <p>Version: %s</p>
6</html> \ No newline at end of file
diff --git a/enigma-swing/src/main/resources/stats.html b/enigma-swing/src/main/resources/stats.html
new file mode 100644
index 00000000..fcff7c0f
--- /dev/null
+++ b/enigma-swing/src/main/resources/stats.html
@@ -0,0 +1,34 @@
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta content="width=device-width, initial-scale=1" name="viewport">
6 <title>Stats</title>
7 <link href="https://cdn.anychart.com/releases/v8/css/anychart-ui.min.css" rel="stylesheet" type="text/css">
8 <style>
9 html, body, #container {
10 width: 100%;
11 height: 100%;
12 margin: 0;
13 padding: 0;
14 }
15 </style>
16</head>
17
18<body>
19<div id="container"></div>
20<script src="https://cdn.anychart.com/releases/v8/js/anychart-base.min.js"></script>
21<script src="https://cdn.anychart.com/releases/v8/js/anychart-sunburst.min.js"></script>
22<script src="https://cdn.anychart.com/releases/v8/js/anychart-exports.min.js"></script>
23<script src="https://cdn.anychart.com/releases/v8/js/anychart-ui.min.js"></script>
24<script>
25 anychart.onDocumentReady(function () {
26 var chart = anychart.sunburst([/*data*/], "as-tree");
27 chart.sort("desc");
28 chart.calculationMode("parent-independent");
29 chart.container("container");
30 chart.draw();
31 });
32</script>
33</body>
34</html>