-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
79 lines (77 loc) · 3.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sqlite Page Explorer</title>
<link rel="stylesheet" type="text/css" href="index.css"/>
<link rel="stylesheet" href="w3.css">
<script type="text/javascript" src="./jquery.min.js"></script>
<script src="index.js"></script>
</head>
<script>window.$ = window.jQuery = require('jquery');</script>
<script>if (window.module) module = window.module;</script>
<body style="overflow: scroll">
<br/>
<div class="w3-row" style="width:100%; padding: 5px">
<div class="w3-col m3 w3-container" style="height:100%; min-width:10%">
<nobr>
<img src="res/img/siara_cc_3d.png" width="84px" height="48px"></img>
<img src="res/icons/db_search.png" width="48px" height="48px"></img>
</nobr>
</div>
<div class="w3-col m6 w3-container hdr"
style="color: green; height:100%; min-width:40%"><b><nobr>Sqlite Page Explorer</nobr></b></div>
<div class="w3-col m3 w3-container" style="text-align: right; height:100%; min-width:10%">
<label class="fancyButton">
Open database
<input type="file" style="display: none;" onchange="loadFile(event.target)"/>
</label>
</div>
</div>
<div class="w3-row" style="height:40%; max-height:40%; width:100%">
<div class="w3-col m2 w3-container container" style="min-width:35%; padding: 5px">
<div class="watermark">Page outline</div>
<ul class="outlineArea" id="mainOutline"></ul>
</div>
<div class="w3-col m2 w3-container container" style="min-width:65%; padding: 5px">
<div class="watermark">Page contents</div>
<div class="detailArea" id="detailArea"></div>
</div>
</div>
<div class="w3-row" style="height:35%; max-height:35%; width:100%">
<div class="w3-col m3 w3-container container" style="min-width:37%; padding: 5px">
<div class="watermark">Hex view</div>
<div class="hexArea" id="hexArea1" onscroll="syncScroll(this);"></div>
</div>
<div class="w3-col m4 w3-container container" style="min-width:44%; padding: 5px">
<div class="watermark">Decimal view</div>
<div class="hexArea" id="hexArea2" onscroll="syncScroll(this);"></div>
</div>
<div class="w3-col m2 w3-container container" style="min-width:19%; padding: 5px">
<div class="watermark">Text view</div>
<div class="hexArea" id="hexArea3" onscroll="syncScroll(this);"></div>
</div>
</div>
<div class="w3-row dbname" style="width:100%; padding: 5px; vertical-align: center">
<div class="w3-col m4 w3-container" style="height:100%">
DB: <span id="dbName"><em>Not opened yet</em></span>
</div>
<div class="w3-col m3 w3-container" style="height:100%">
<a class="w3-hover-green" href="javascript:var x=1"
onclick="openPage('', this.parentElement.children[1].value, 'b', false);">Open page:</a>
<input type="text" size="5" value="2" onkeypress="return isNumberKey(event);" style="text-align: right"/>
</div>
<div class="w3-col m5 w3-container w3-right-align" style="height:100%">
<a class="w3-hover-green" href="https://www.sqlite.org/fileformat.html"><Ref></a>
|
<a class="w3-hover-green" href="https://github.com/siara-cc">© Siara Logics (cc) 2015-19</a>
|
<a class="w3-hover-green" href="https://github.com/siara-cc/sqlite3_page_explorer">GitHub</a>
|
<a class="w3-hover-green" href="https://htmlpreview.github.io/?https://github.com/siara-cc/sqlite3_page_explorer/blob/master/eula.htm">License</a>
|
<a class="w3-hover-green" href="https://htmlpreview.github.io/?https://github.com/siara-cc/sqlite3_page_explorer/blob/master/privacy.htm">Privacy</a>
</div>
</div>
</body>
</html>