Files
Nim/cgi.idx
github-actions[bot] ef3d9e7b38 Deploy to GitHub pages
2025-12-28 15:55:52 +00:00

55 lines
4.4 KiB
Plaintext

nimTitle cgi cgi.html module std/cgi 0
nim xmlEncode cgi.html#xmlEncode,string proc xmlEncode(s: string): string 47
nim CgiError cgi.html#CgiError object CgiError 58
nim methodNone cgi.html#methodNone RequestMethod.methodNone 59
nim methodPost cgi.html#methodPost RequestMethod.methodPost 59
nim methodGet cgi.html#methodGet RequestMethod.methodGet 59
nim RequestMethod cgi.html#RequestMethod enum RequestMethod 59
nim cgiError cgi.html#cgiError,string proc cgiError(msg: string) 64
nim decodeData cgi.html#decodeData.i,string iterator decodeData(data: string): tuple[key, value: string] 89
nim decodeData cgi.html#decodeData.i,set[RequestMethod] iterator decodeData(allowedMethods: set[RequestMethod] = {methodNone, methodPost,\n methodGet}): tuple[key, value: string] 95
nim readData cgi.html#readData,set[RequestMethod] proc readData(allowedMethods: set[RequestMethod] = {methodNone, methodPost, methodGet}): StringTableRef 104
nim readData cgi.html#readData,string proc readData(data: string): StringTableRef 112
nim validateData cgi.html#validateData,StringTableRef,varargs[string] proc validateData(data: StringTableRef; validKeys: varargs[string]) 118
nim getContentLength cgi.html#getContentLength proc getContentLength(): string 125
nim getContentType cgi.html#getContentType proc getContentType(): string 129
nim getDocumentRoot cgi.html#getDocumentRoot proc getDocumentRoot(): string 133
nim getGatewayInterface cgi.html#getGatewayInterface proc getGatewayInterface(): string 137
nim getHttpAccept cgi.html#getHttpAccept proc getHttpAccept(): string 141
nim getHttpAcceptCharset cgi.html#getHttpAcceptCharset proc getHttpAcceptCharset(): string 145
nim getHttpAcceptEncoding cgi.html#getHttpAcceptEncoding proc getHttpAcceptEncoding(): string 149
nim getHttpAcceptLanguage cgi.html#getHttpAcceptLanguage proc getHttpAcceptLanguage(): string 153
nim getHttpConnection cgi.html#getHttpConnection proc getHttpConnection(): string 157
nim getHttpCookie cgi.html#getHttpCookie proc getHttpCookie(): string 161
nim getHttpHost cgi.html#getHttpHost proc getHttpHost(): string 165
nim getHttpReferer cgi.html#getHttpReferer proc getHttpReferer(): string 169
nim getHttpUserAgent cgi.html#getHttpUserAgent proc getHttpUserAgent(): string 173
nim getPathInfo cgi.html#getPathInfo proc getPathInfo(): string 177
nim getPathTranslated cgi.html#getPathTranslated proc getPathTranslated(): string 181
nim getQueryString cgi.html#getQueryString proc getQueryString(): string 185
nim getRemoteAddr cgi.html#getRemoteAddr proc getRemoteAddr(): string 189
nim getRemoteHost cgi.html#getRemoteHost proc getRemoteHost(): string 193
nim getRemoteIdent cgi.html#getRemoteIdent proc getRemoteIdent(): string 197
nim getRemotePort cgi.html#getRemotePort proc getRemotePort(): string 201
nim getRemoteUser cgi.html#getRemoteUser proc getRemoteUser(): string 205
nim getRequestMethod cgi.html#getRequestMethod proc getRequestMethod(): string 209
nim getRequestURI cgi.html#getRequestURI proc getRequestURI(): string 213
nim getScriptFilename cgi.html#getScriptFilename proc getScriptFilename(): string 217
nim getScriptName cgi.html#getScriptName proc getScriptName(): string 221
nim getServerAddr cgi.html#getServerAddr proc getServerAddr(): string 225
nim getServerAdmin cgi.html#getServerAdmin proc getServerAdmin(): string 229
nim getServerName cgi.html#getServerName proc getServerName(): string 233
nim getServerPort cgi.html#getServerPort proc getServerPort(): string 237
nim getServerProtocol cgi.html#getServerProtocol proc getServerProtocol(): string 241
nim getServerSignature cgi.html#getServerSignature proc getServerSignature(): string 245
nim getServerSoftware cgi.html#getServerSoftware proc getServerSoftware(): string 249
nim setTestData cgi.html#setTestData,varargs[string] proc setTestData(keysvalues: varargs[string]) 253
nim writeContentType cgi.html#writeContentType proc writeContentType() 271
nim writeErrorMessage cgi.html#writeErrorMessage,string proc writeErrorMessage(data: string) 289
nim setStackTraceStdout cgi.html#setStackTraceStdout proc setStackTraceStdout() 301
nim setCookie cgi.html#setCookie,string,string proc setCookie(name, value: string) 305
nim getCookie cgi.html#getCookie,string proc getCookie(name: string): string 312
nim existsCookie cgi.html#existsCookie,string proc existsCookie(name: string): bool 317
nimgrp readdata cgi.html#readData-procs-all proc 104
nimgrp decodedata cgi.html#decodeData-iterators-all iterator 89