about summary refs log tree commit diff stats
path: root/src/loader/response.nim
Commit message (Collapse)AuthorAgeFilesLines
* Use std/* imports everywherebptato2024-01-071-2/+2
|
* Implement local CGI error message handlingbptato2023-12-151-0/+1
| | | | | | This was documented, but not implemented until now. Also, improve the loader module's protocol documentation.
* XHR progressbptato2023-10-141-1/+39
| | | | still non-functional
* Response.text: assume utf-8bptato2023-09-271-5/+5
|
* Response.text: encode/decode properlybptato2023-09-271-2/+16
| | | | also, use blob() for images
* buffer: simplify contentType handlingbptato2023-09-271-3/+3
| | | | | | * remove contentType member of Buffer object * add ishtml to reduce string comparisons * consistent spelling: contenttype -> contentType
* fix compilation on 1.6.14bptato2023-09-201-1/+1
|
* response: add blob() functionbptato2023-09-171-1/+20
|
* move around more modulesbptato2023-09-141-0/+74
* ips -> io/ * loader related stuff -> loader/ * tempfile -> extern/ * buffer, forkserver -> server/ * lineedit, window -> display/ * cell -> types/ * opt -> types/