about summary refs log tree commit diff stats
path: root/src/loader/dirlist.nim
Commit message (Collapse)AuthorAgeFilesLines
* dirlist: quote path names in hrefbptato2023-10-181-1/+1
| | | | | | | so that it does not choke on files with an apos in them. (We could also htmlEscape it, but this should be enough since we percent-encode the paths already.)
* ftp, file: better dirlist, fix FTP path issuebptato2023-09-191-0/+60
* Dirlist is now unified across ftp and file loaders. It's basically a copycat of w3m's FTP dirlist, because I like how it looks. * We now hack around the cURL FTP path problem by always prepending a slash to the path. This is probably closer aligned with expectations than the default behavior.