diff options
author | June McEnroe <june@causal.agency> | 2020-07-17 13:23:21 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-17 13:23:21 -0400 |
commit | 0a054aeb9ce8430a62be05283300ec34e9c2b0af (patch) | |
tree | 344ec24121d800a28df101defd9d01140dda4db1 /networks.c | |
parent | Add margin to inputs (diff) | |
download | scooper-0a054aeb9ce8430a62be05283300ec34e9c2b0af.tar.gz scooper-0a054aeb9ce8430a62be05283300ec34e9c2b0af.zip |
Add export option
Adding the export query parameter to any page downloads a .html with the default stylesheet embedded, and all navigation, forms and internal links removed, for being able to share some part of a private instance of litterbox.
Diffstat (limited to '')
-rw-r--r-- | networks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networks.c b/networks.c index af3ad80..91f5131 100644 --- a/networks.c +++ b/networks.c @@ -53,7 +53,7 @@ enum kcgi_err networksPage(struct kreq *req) { struct khtmlreq html; error = error || khtml_open(&html, req, 0) - || htmlHead(&html, "Litterbox") + || htmlHead(&html, req, "Litterbox") || htmlNav(&html, req); if (error) return error; @@ -100,5 +100,5 @@ enum kcgi_err networksPage(struct kreq *req) { if (error) return error; } if (result != SQLITE_DONE) errx(EX_SOFTWARE, "%s", sqlite3_errmsg(db)); - return htmlFooter(&html) || khtml_close(&html); + return htmlFooter(&html, req) || khtml_close(&html); } |