forked from chaosarium/lwt
-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
120 lines (112 loc) · 4.5 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- ***********************************************************
"Learning with Texts" (LWT) is free and unencumbered software
released into the PUBLIC DOMAIN.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a
compiled binary, for any purpose, commercial or non-commercial,
and by any means.
In jurisdictions that recognize copyright laws, the author or
authors of this software dedicate any and all copyright
interest in the software to the public domain. We make this
dedication for the benefit of the public at large and to the
detriment of our heirs and successors. We intend this
dedication to be an overt act of relinquishment in perpetuity
of all present and future rights to this software under
copyright law.
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 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.
For more information, please refer to [http://unlicense.org/].
************************************************************ -->
<meta http-equiv="content-language" content="en-US" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta name="keywords" content="Language Learning Texts LWT Software Freeware LingQ Alternative AJATT Khatzumoto MCD MCDs Massive Context Cloze Deletion Cards Tool Stephen Krashen Second Language Acquisition Steve Kaufmann Documentation Code Reference" />
<meta name="description" content="Documentation for Learning with Texts (LWT), index, help and code reference." />
<meta name="revisit-after" content="2 days" />
<meta name="viewport" content="width=1280, user-scalable=yes" />
<link rel="apple-touch-icon" href="../img/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png" />
<link rel="apple-touch-startup-image" href="../img/apple-touch-startup.png" />
<style type="text/css">
@import url(../css/styles.css);
.hidden {display:none;}
</style>
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/floating.js"></script>
<script type="text/javascript">
/**
* Perform an AJAX query to get the current theme style sheet.
*
* @since 2.9.0 Function is modified to use JSON with the REST API.
*/
function ajaxGetTheme () {
$.getJSON(
'../api.php/v1/settings/theme-path',
{
path: '../css/styles.css'
},
function (data) {
if ("error" in data)
return;
const path = data["theme_path"].trim();
if (path.endsWith("styles.css")) {
$('style').html(
"@import url(../" + path + ");"
);
}
}
)
.always(function () {
$('html').show();
});
}
$('html').addClass('hidden');
$(document).ready(ajaxGetTheme);
</script>
<title>
Learning with Texts :: Documentation Index
</title>
</head>
<body>
<p>
Welcome to Learning with Texts documentation pages!
<br />
Documentation is splitted in different parts due to the diversity of the sources.
</p>
<ul>
<li>
The General Documentation and Explanations are at <a href="./info.html">info.html</a>.
</li>
<li>
Please see the PHP Documentation at <a href="php/index.html">php/index.html</a>,
it is generated with <a href="https://phpdoc.org/">phpDocumentor</a>.
</li>
<li>
Please see the JS Documentation at <a href="js/index.html">js/index.html</a>,
it is generated with <a href="https://jsdoc.app/">JSDoc</a>.
</li>
<li>
There also a Doxygen Documentation at <a href="html/index.html">html/index.html</a>.
It contains both a PHP documentation (will be removed in a future version)
</li>
</ul>
<p>
Feel free to reach me on <a href="https://github.com/hugofara/lwt">GitHub</a>
or the Discord for any documentation issue, question, or anything.
<br />
If you are viewing this file in a running LWT Server,
you can <a href="../index.php">return to the LWT App</a>.
</p>
</body>