about summary refs log tree commit diff stats
path: root/src/loader/connecterror.nim
Commit message (Collapse)AuthorAgeFilesLines
* Add urimethodmap supportbptato2023-09-301-0/+2
| | | | yay
* loader: add local-cgibptato2023-09-301-3/+7
| | | | | | | | | | | Add w3m-style local CGI support. It is not quite as powerful as w3m's local CGI, because it lacks an equivalent to W3m-control. Not sure if it's worth adding; we certainly shouldn't allow passing JS in headers, but a custom language for headers does not sound like a great idea either... eh, idk. also, TODO add multipart
* loader: add FTP supportbptato2023-09-191-0/+1
| | | | | | | | | | | | works, sort of still needs some work: * better dirlist, ideally make it look like file dirlist (or make file look like ftp dirlist. well, anyway, they should look the same) * absolute paths? (for now you have to append an extra slash to the path beginning) * ssh keys for sftp? (actually I haven't even tested sftp yet...)
* move around more modulesbptato2023-09-141-0/+18
* ips -> io/ * loader related stuff -> loader/ * tempfile -> extern/ * buffer, forkserver -> server/ * lineedit, window -> display/ * cell -> types/ * opt -> types/