-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (81 loc) · 4.11 KB
/
index.html
File metadata and controls
85 lines (81 loc) · 4.11 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
85
<html>
<head>
<title>QdbS - Quote database System</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript">
function pageOnLoad() {
$.getJSON("https://api.github.com/repos/qdbs/qdbs/releases/latest", doGetVersion);
}
function doGetVersion(data) {
var divVersion = document.getElementById("versionstring");
divVersion.innerHTML = data.name;
}
</script>
</head>
<body onload="pageOnLoad()">
<center>
<table width="80%" cellpadding="10" cellspacing="10">
<tr>
<td class="heading" align="left">
<a href="./">QdbS</a>
</td>
</tr>
<tr>
<td width="100%" valign="top">
<table width="100%" cellpadding="0" cellspacing="0">
<td width="100%">
<table width="100%" cellpadding="3" cellspacing="0">
<tr>
<td class="border" align="center">
<a href="https://github.com/QdbS/qdbs/releases"><b>downloads</b></a> |
<a href="https://github.com/QdbS/qdbs/blob/master/Changelog.txt"><b>changes</b></a> |
<a href="https://demo.qdbs.org"><b>demo</b></a> |
<a href="https://github.com/QdbS/qdbs/issues"><b>bugs/feature requests</b></a> |
<a href="https://github.com/QdbS/qdbs"><b>github</b></a>
</td>
</tr>
</table>
</td>
</table>
<table width="100%" cellpadding="5" cellspacing="5">
<tr>
<td width="100%" align="center" class="small">
<div>
Home of QdbS - Quote database System
<br /><br />
Quotes Database System (formerly Salty Quotes Database, named so because it was made for the development site saltine.net) is a small script written by <a title="My Website" href="http://kflorence.com/" rel="external">Kyle Florence</a> a few years ago that will store IRC quotes, it's like your own personal <a title="Bash Quotes" href="http://bash.org/" target="_blank">bash.org</a>. QdbS could originally be found at <a href="https://web.archive.org/web/20100307092941/http://archive.kflorence.com/projects/qdbs/" target="_blank">http://archive.kflorence.com/projects/qdbs/</a> and at the least, will be maintained here on QdbS.org including bug fixes and feature additions.
<br /><br />
You will be able to find the latest version in the downloads section of this site.
<br /><br />
Support is available via the forum, and on IRC ( <a href="irc://irc.qdbs.org/qdbs">irc.qdbs.org</a> in <a href="irc://irc.qdbs.org/qdbs">#qdbs</a> )
<br /><br />
Suggestions and feature requests can also be posted on the issue tracker via the link above.
<br /><br />
QdbS is released under the <a title="GNU GPL" href="http://www.gnu.org/licenses/" target="_blank">GNU General Public License</a>
</div>
</td>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<td width="100%">
<table class="border" width="100%" cellpadding="3" cellspacing="0">
<tr>
<td align="left" valign="bottom">Latest Version: <span id="versionstring"> </span></td>
<td align="right" valign="bottom"><a href="#top">Top</a>.</td>
</tr>
</table>
</td>
</table>
</td>
</tr>
<tr>
<td class="salty" align="center">
<a href="http://www.qdbs.org/">QdbS</a> is Copyright © 2007 - 2025 <a href="http://www.qdbs.org/">QdbS.org</a> and <a href="http://kflorence.com/" target="_blank">Kyle Florence</a><br />
<a href="http://www.qdbs.org/">QdbS.org</a> is Copyright © 2007 - 2025 M Beeching
</td>
</tr>
</table>
</center>
</body>
</html>