diff options
Diffstat (limited to 'lib/pure/cgi.nim')
-rw-r--r-- | lib/pure/cgi.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/cgi.nim b/lib/pure/cgi.nim index 14c7c56b5..d5690bf51 100644 --- a/lib/pure/cgi.nim +++ b/lib/pure/cgi.nim @@ -99,7 +99,8 @@ type methodPost, ## query uses the POST method methodGet ## query uses the GET method -{.deprecated: [TRequestMethod: RequestMethod, ECgi: CgiError].} +{.deprecated: [TRequestMethod: RequestMethod, ECgi: CgiError, + URLencode: urlEncode, XMLencode: xmlEncode, URLdecode: urlDecode].} proc cgiError*(msg: string) {.noreturn.} = ## raises an ECgi exception with message `msg`. |