-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Will
committed
Jun 8, 2020
1 parent
7710fd2
commit fd34b29
Showing
12 changed files
with
111 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+31 Bytes
(100%)
web_converter/css_html_js_minify/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file modified
BIN
+31 Bytes
(100%)
web_converter/css_html_js_minify/__pycache__/css_minifier.cpython-37.pyc
Binary file not shown.
Binary file modified
BIN
+31 Bytes
(100%)
web_converter/css_html_js_minify/__pycache__/html_minifier.cpython-37.pyc
Binary file not shown.
Binary file modified
BIN
+31 Bytes
(100%)
web_converter/css_html_js_minify/__pycache__/js_minifier.cpython-37.pyc
Binary file not shown.
Binary file modified
BIN
+31 Bytes
(100%)
web_converter/css_html_js_minify/__pycache__/minify.cpython-37.pyc
Binary file not shown.
Binary file modified
BIN
+31 Bytes
(100%)
web_converter/css_html_js_minify/__pycache__/variables.cpython-37.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
anglerfish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<body> | ||
|
||
<h1>My First Heading</h1> | ||
|
||
<p>My first paragraph.</p> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const char examplehtml[] PROGMEM = {0x1f, 0x8b, 0x08, 0x08, 0x1e, 0x53, 0xde, 0x5e, 0x02, 0xff, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x68, 0x74, 0x6d, 0x6c, 0x00, 0xb3, 0x51, 0x74, 0xf1, 0x77, 0x0e, 0x89, 0x0c, 0x70, 0x55, 0xc8, 0x28, 0xc9, 0xcd, 0xb1, 0x53, 0xb0, 0xc9, 0x30, 0xb4, 0xf3, 0xad, 0x54, 0x70, 0xcb, 0x2c, 0x2a, 0x2e, 0x51, 0xf0, 0x48, 0x4d, 0x4c, 0xc9, 0xcc, 0x4b, 0xb7, 0xd1, 0x07, 0x0a, 0x2a, 0xd8, 0x14, 0x80, 0x24, 0xd2, 0xc0, 0x12, 0x05, 0x89, 0x45, 0x89, 0xe9, 0x45, 0x89, 0x05, 0x19, 0x7a, 0x36, 0xfa, 0x05, 0x76, 0x00, 0x99, 0x55, 0xaf, 0xa0, 0x44, 0x00, 0x00, 0x00}; | ||
void copyWebFiles(bool force){ | ||
if(!SPIFFS.exists(String(F("/web/example.html.gz"))) || force) progmemToSpiffs(examplehtml, sizeof(examplehtml), String(F("/web/example.html.gz"))); | ||
} |