-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
license.html
92 lines (82 loc) · 3.65 KB
/
license.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<h1>Licenses</h1>
<h2>Sql Schema Explorer</h2>
<p>Schema Explorer is Copyright Tim Abell 2015-2024 and must
be redistributed and used in accordances with the applicable licenses.</p>
<p>
SQL Schema Explorer is licenced under the <a href="agpl-3.0.txt">Affero-GPL v3</a>
</p>
<p>
Included libraries remain under their respective licenses (below).
</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</p>
<h2>Included software</h2>
<ul>
<li>
<a href="http://jquery.com/">jQuery</a> redistributed
under <a href="https://jquery.org/license/">MIT license</a>.
</li>
<li>
<a href="http://js.cytoscape.org/">Cytoscape.js</a> redistributed
under <a href="https://github.com/cytoscape/cytoscape.js/blob/master/LICENSE">MIT license</a>.
</li>
<li>
<a href="https://github.com/dagrejs/dagre">Dagre layout</a> for cytoscape
under <a href="https://github.com/dagrejs/dagre/blob/master/LICENSE">MIT license</a>.
</li>
<li>
<a href="https://github.com/lib/pq">lib/pg</a> postgres driver
under <a href="https://github.com/lib/pq/blob/master/LICENSE.md">MIT license</a>.
<!-- wasn't named as MIT but kdiff'd the text and it is exactly that -->
</li>
<li>
<a href="https://github.com/simnalamburt/go-mssqldb">go-mssqldb</a> sql server driver
under <a href="https://github.com/simnalamburt/go-mssqldb/blob/master/LICENSE.txt">BSD 3-clause</a>.
</li>
<li>
<a href="https://github.com/mattn/go-sqlite3">go-sqlite3</a> sqlite3 driver
under <a href="https://github.com/mattn/go-sqlite3/blob/master/LICENSE">MIT license</a>.
</li>
<li>
<a href="https://github.com/go-sql-driver/mysql/">go-sql-driver/mysql/</a> mysql driver
under <a href="https://github.com/go-sql-driver/mysql/blob/master/LICENSE">MPL 2.0 license</a>.
</li>
<li>
<a href="https://fontawesome.com/">font-awesome</a>
under <a href="https://fontawesome.com/license">Various licenses</a>.
</li>
<li>
<a href="https://github.com/Mottie/tablesorter">tablesorter</a>
under <a href="https://github.com/Mottie/tablesorter/blob/fa56764ad5630ed3ab9da4a30fdb8dd34bfbaf1f/README.md#licensing">MIT license</a>.
</li>
</ul>
<p>Many thanks to those on whose broad shoulders we stand.</p>
<h1>Disclaimer</h1>
<p>
Databases are complex and nuanced ancient beasts allowing almost unlimited
customisation in all sorts of unusual ways. SchemaExplorer does not and
will never show you all the odd edge cases that can exist within a database
schema. It is intended to be an efficient, useful and easy to use tool for
looking around a relatively normal database.
</p>
<p>
If you think you may have an unusual database on your hands then drop down
to the tools provided by your database vendor for inspecting the structure
of your database to make sure you have the right information. You have been
warned! No responsibility will be taken for Schema Explorer's inability to
accurately represent the underlying database including any consequential
loss. It is an abstraction on top of an endless world of complexity.
</p>
</body>
</html>