diff options
author | tv <tv@krebsco.de> | 2023-08-01 12:14:30 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-08-01 12:14:30 +0200 |
commit | 7be9bfdc55d672de39dce98dae9c6d112404dfc6 (patch) | |
tree | e89a93ad96e6f35490ffbf6b6a337ca4dcc9a170 /krebs/5pkgs | |
parent | 5d1b0675cf179f863a5b34b67661a953197b6057 (diff) | |
parent | 6e63efa3645353bc0549f5f152ef811fff5d644c (diff) |
Merge remote-tracking branch 'orange/master'
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r-- | krebs/5pkgs/simple/htgen-paste/src/htgen-paste | 12 | ||||
-rw-r--r-- | krebs/5pkgs/simple/realwallpaper/default.nix | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/krebs/5pkgs/simple/htgen-paste/src/htgen-paste b/krebs/5pkgs/simple/htgen-paste/src/htgen-paste index 74266e53a..9d57d07ee 100644 --- a/krebs/5pkgs/simple/htgen-paste/src/htgen-paste +++ b/krebs/5pkgs/simple/htgen-paste/src/htgen-paste @@ -22,7 +22,17 @@ case "$Method $abs_path" in printf 'Connection: close\r\n' printf 'Content-Length: %d\r\n' $(wc -c < $item) printf '\r\n' - cat $item + cat "$item" + exit + fi + ;; + "DELETE /"[0-9a-z]*) + if item=$(find_item ${abs_path#/}); then + printf 'HTTP/1.1 200 OK\r\n' + printf 'Server: %s\r\n' "$Server" + printf 'Connection: close\r\n' + printf '\r\n' + rm "$item" exit fi ;; diff --git a/krebs/5pkgs/simple/realwallpaper/default.nix b/krebs/5pkgs/simple/realwallpaper/default.nix index 544abb3a3..5364a37dc 100644 --- a/krebs/5pkgs/simple/realwallpaper/default.nix +++ b/krebs/5pkgs/simple/realwallpaper/default.nix @@ -275,7 +275,7 @@ pkgs.writers.writeDashBin "generate-wallpaper" '' } ./get_constellations.py} ${pkgs.fetchurl { url = "https://raw.githubusercontent.com/ofrohn/d3-celestial/d2e20e104b86429d90ac8227a5b021262b45d75a/data/constellations.lines.json"; sha256 = "0g71fdrnxvxd6pcqvihj2q9iaynrl7px45kzw6qm1kymynz6ckr9"; - }} > constellations.arcs + }} > constellations.arcs || : # seems like astropy doesn't want to convert from icrs to itrs anymore xplanet --num_times 1 --geometry $xplanet_out_size \ --output xplanet-krebs-stars-output.png --projection merc \ |