Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add parser #4

Merged
merged 101 commits into from
Mar 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
101 commits
Select commit Hold shift + click to select a range
a6fcfae
f
Feb 20, 2024
aa3d5cf
f
Feb 20, 2024
aa9f852
f
Feb 20, 2024
9c55fe1
f
Feb 20, 2024
4b51200
f
Feb 21, 2024
28809e4
fix
Feb 21, 2024
44127a9
d
Feb 21, 2024
7155641
f
Feb 21, 2024
e3131d6
fix
Feb 21, 2024
8cd8e1d
f
Feb 21, 2024
7b08ca6
f
Feb 21, 2024
ed44740
f
Feb 21, 2024
e03f5a3
f
Feb 21, 2024
b782d22
f
Feb 21, 2024
c46620e
d
Feb 21, 2024
ed8529f
f
Feb 21, 2024
ccba9e4
f
Feb 21, 2024
8875a3f
f
Feb 21, 2024
cb0e65d
f
Feb 21, 2024
3dcf030
f
Feb 21, 2024
07ac2f7
f
Feb 21, 2024
41854c4
f
Feb 21, 2024
8103d89
f
Feb 21, 2024
ad8657c
f
Feb 21, 2024
663c92d
f
Feb 21, 2024
11b806d
f
Feb 21, 2024
8bffa7a
f
Feb 21, 2024
aba43bf
f
Feb 22, 2024
9de99a0
f
Feb 22, 2024
38d3e47
f
Feb 22, 2024
3da28bc
f
Feb 22, 2024
4b0214d
f
Feb 22, 2024
1bd8133
f
Feb 22, 2024
741bbf2
f
Feb 22, 2024
0bae60b
f
Feb 22, 2024
1e34125
f
Feb 22, 2024
1422a7d
f
Feb 22, 2024
874457f
f
Feb 22, 2024
d182c5e
f
Feb 22, 2024
24ea106
f
Feb 22, 2024
1821455
f
Feb 22, 2024
e106b3a
f
Feb 22, 2024
900e76d
f
Feb 22, 2024
8443365
js
Feb 22, 2024
a527230
d
Feb 22, 2024
755bf22
f
Feb 22, 2024
5956b64
f
Feb 22, 2024
d88be5d
f
Feb 22, 2024
bc744d0
f
Feb 23, 2024
cf3e282
f
Feb 23, 2024
cd45a2a
f
Feb 23, 2024
c38ba93
f
Feb 23, 2024
08bfc18
f
Feb 23, 2024
8217c5a
f
Feb 23, 2024
17b0dcb
f
Feb 23, 2024
8429bf1
f
Feb 23, 2024
1b8eaf2
f
Feb 23, 2024
134603e
fd
Feb 27, 2024
0e767b4
f
Feb 27, 2024
17ab6ab
f
Feb 27, 2024
dcd60ae
f
Feb 27, 2024
c691e97
f
Feb 27, 2024
1dfade4
f
Feb 27, 2024
26c5661
f
Feb 27, 2024
522c129
f
Feb 27, 2024
4da0932
f
Feb 27, 2024
59ac185
d
Feb 28, 2024
341da15
f
Feb 29, 2024
0d481e3
f
Feb 29, 2024
45d8944
f
Feb 29, 2024
cb628fe
f
Feb 29, 2024
36416cf
f
Feb 29, 2024
c214303
d
Feb 29, 2024
f0a4840
d
Feb 29, 2024
12a90a9
f
Feb 29, 2024
4392a68
f
Feb 29, 2024
5dd4579
f
Feb 29, 2024
806cf01
d
Feb 29, 2024
a14284f
fd
Feb 29, 2024
33ea2d7
d
Feb 29, 2024
95c1025
fix
Feb 29, 2024
9c86618
f
Mar 1, 2024
bd36a59
s
Mar 1, 2024
6dac20a
f
Mar 1, 2024
a6024bf
f
Mar 1, 2024
fd6fedd
f
Mar 1, 2024
ea0dde6
f
Mar 1, 2024
040725b
f
Mar 1, 2024
b4f50a8
f
Mar 1, 2024
d32dfa8
f
Mar 1, 2024
1a9d7dc
f
Mar 1, 2024
bbf0c50
f
Mar 1, 2024
2e81a29
f
Mar 1, 2024
e37fbfe
f
Mar 1, 2024
23c191a
f
Mar 1, 2024
ea8b117
f
Mar 3, 2024
bfcfdcd
add tls
Mar 4, 2024
8dc8466
f
Mar 4, 2024
03e4d44
f
Mar 4, 2024
fb15f98
f
Mar 4, 2024
a2a6085
fix
Mar 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
f
  • Loading branch information
door7302 committed Mar 1, 2024
commit a6024bfca1c63c4c13fb89464e5b595963dbf055
10 changes: 7 additions & 3 deletions html/assets/js/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,13 @@ browseButton.addEventListener("click", function () {
$('#logs').modal('show');
eventSource.onmessage = function (event) {
const data = JSON.parse(event.data);
appendContent(data.msg);
scrollToBottom()
if (data.status == "OK") {
appendContent(data.msg);
scrollToBottom()
}
if (data.status == "END") {

appendContent(data.msg);
scrollToBottom()
eventSource.close();
browseButton.disabled = false;
$('#result').jstree(true).settings.core.data = JSON.parse(data.payload);
Expand All @@ -84,6 +87,7 @@ browseButton.addEventListener("click", function () {
$('#logs').modal('hide');
alertify.alert("JSTO...", data.msg);
}

};

eventSource.onerror = function (event) {
Expand Down