Skip to content

Commit 780032c

Browse files
author
Robin Duda
committed
sample plot
1 parent 3429d34 commit 780032c

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.idea/
22
plots/
33
sets/
4-
./data/ripped/www.umo.se/
4+
data/ripped/
55
node_modules/
66
__pycache__/
7+
.cache/

data/plots/sample/plot.png

38.9 KB
Loading

generator/server/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function respond(res, file, callback, status = 200) {
120120
let type = file.type ?? sniff(file.path);
121121
res.writeHead(status, {
122122
"Content-Type": type,
123-
"Cache-Control": (type === 'text/html') ? "no-cache, must-revalidate" : "public, max-age=1800, immutable",
123+
"Cache-Control": (type === 'text/html') ? "no-cache, must-revalidate" : "public, max-age=16400, immutable",
124124
"Content-Encoding": file.compression ?? '',
125125
"expires": header_date(3600 * 4),
126126
"modified": header_date(-process.uptime()),

iosnap.iml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="PYTHON_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<excludeFolder url="file://$MODULE_DIR$/venv" />
7+
<excludeFolder url="file://$MODULE_DIR$/generator/.cache" />
8+
</content>
9+
<orderEntry type="inheritedJdk" />
10+
<orderEntry type="sourceFolder" forTests="false" />
11+
</component>
12+
</module>

0 commit comments

Comments
 (0)