diff options
author | bptato <nincsnevem662@gmail.com> | 2023-08-13 17:42:34 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-08-13 17:54:05 +0200 |
commit | d526deb99e44f2a8d1a9c3eea60676703dd64302 (patch) | |
tree | f63689ff7654d14ad9bca182a837b3155b2471a0 /src/io/response.nim | |
parent | f92e30232252deb194596e7c298cc7fcf56517cb (diff) | |
download | chawan-d526deb99e44f2a8d1a9c3eea60676703dd64302.tar.gz |
Add mailcap, mime.types & misc refactorings
* add mailcap: works with copiousoutput, needsterminal, etc. * add mime.types (only works with mailcap) * refactor pipeBuffer * remove "dispatcher" * fix bug in directory display where baseurl would not be used
Diffstat (limited to 'src/io/response.nim')
-rw-r--r-- | src/io/response.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/io/response.nim b/src/io/response.nim index b64f1504..dedddbcd 100644 --- a/src/io/response.nim +++ b/src/io/response.nim @@ -1,6 +1,7 @@ import streams import bindings/quickjs +import data/charset import io/headers import io/promise import io/request @@ -20,6 +21,7 @@ type url*: URL #TODO should be urllist? unregisterFun*: proc() bodyRead*: Promise[string] + charset*: Charset jsDestructor(Response) |