1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-03-07 11:02:02 +01:00

Start again

This commit is contained in:
2020-10-04 17:14:00 +02:00
parent c0d3912413
commit 091f119048
4382 changed files with 1762543 additions and 9606 deletions

3217
vendors/jszip/docs/APPNOTE.TXT vendored Normal file

File diff suppressed because it is too large Load Diff

66
vendors/jszip/docs/ZIP spec.txt vendored Normal file
View File

@@ -0,0 +1,66 @@
Here are the notes I made while working through the ZIP file specification.
For each file:
local file header signature 4 bytes (0x04034b50)
version needed to extract 2 bytes
general purpose bit flag 2 bytes
compression method 2 bytes
last mod file time 2 bytes
last mod file date 2 bytes
crc-32 4 bytes
compressed size 4 bytes
uncompressed size 4 bytes
file name length 2 bytes
extra field length 2 bytes
|sig |v |g |c |t |d |crc |csz |usz |n |x |
PK.. ## 00 00 ?? ?? xxxx ???? ???? ?? 00
<file name><file data>
Central directory:
central file header signature 4 bytes (0x02014b50)
version made by 2 bytes
version needed to extract 2 bytes *
general purpose bit flag 2 bytes *
compression method 2 bytes *
last mod file time 2 bytes *
last mod file date 2 bytes *
crc-32 4 bytes *
compressed size 4 bytes *
uncompressed size 4 bytes *
file name length 2 bytes *
extra field length 2 bytes *
file comment length 2 bytes
disk number start 2 bytes
internal file attributes 2 bytes
external file attributes 4 bytes
relative offset of local header 4 bytes
file name (variable size)
extra field (variable size)
file comment (variable size)
|sig |vm|vx|g |c |d |t |crc |csz |usz |n |x |cm|dn|ia|xa |roff|
PK.. ## ## 00 00 ?? ?? xxxx ???? ???? ?? 00 00 00 00 xxxx ????
End of central directory:
end of central dir signature 4 bytes (0x06054b50)
number of this disk 2 bytes
number of the disk with the
start of the central directory 2 bytes
total number of entries in the
central directory on this disk 2 bytes
total number of entries in
the central directory 2 bytes
size of the central directory 4 bytes
offset of start of central
directory with respect to
the starting disk number 4 bytes
.ZIP file comment length 2 bytes
.ZIP file comment (variable size)
|sig |n1|n2|e |ne|size|off |cm|
PK.. 00 00 ?? ?? ???? ???? 00

18
vendors/jszip/docs/references.txt vendored Normal file
View File

@@ -0,0 +1,18 @@
Zip format
----------
http://www.pkware.com/support/zip-application-note
http://www.xxcopy.com/xxcopy06.htm
Data URL
--------
https://developer.mozilla.org/en/The_data_URL_scheme
http://msdn.microsoft.com/en-us/library/cc848897(VS.85).aspx
http://www.phpied.com/mhtml-when-you-need-data-uris-in-ie7-and-under/
http://www.motobit.com/util/base64-decoder-encoder.asp
Saving files
------------
http://msdn.microsoft.com/en-us/library/ms536676(VS.85).aspx
http://msdn.microsoft.com/en-us/library/ms536419(VS.85).aspx
http://msdn.microsoft.com/en-us/library/ms537418(VS.85).aspx