about summary refs log tree commit diff stats
path: root/src/loader/about.nim
Commit message (Collapse)AuthorAgeFilesLines
* local CGI: add mapped URI env vars; move about: to adaptersbptato2023-12-121-32/+0
| | | | | | | | | | | | | | | * Add MAPPED_URI_* as environment variables when a request is coming from urimethodmap It costs us compatibility with w3m, but it seems to be a massive improvement over smuggling in the URL as a query string and then writing an ad-hoc parser for every single urimethodmap script. The variables are set for every urimethodmap request, to avoid accidental leaking of global environment variables. * Move about: to adapters (an obvious improvement over the previous solution)
* Add about:licensebptato2023-09-231-0/+6
|
* remove unnecessary toTable callsbptato2023-09-201-3/+1
| | | | | | | We did this to please the compiler at one point, but it seems to be fine to remove now. (Also, use withValue when possible.)
* move around more modulesbptato2023-09-141-0/+28
* ips -> io/ * loader related stuff -> loader/ * tempfile -> extern/ * buffer, forkserver -> server/ * lineedit, window -> display/ * cell -> types/ * opt -> types/