Key | Description |
self | A reference to the thread the script belongs to. |
requestTime | The time when the request was received, as a Unix timestamp. |
header | The header text the client sent to the server, including the HTTP request line. |
protocolHeaderList | Request line digested into a list. |
headerList | Headers digested into a dictionary. |
cmd | Method requested (get , post , etc). |
path | Path extracted from headerList . |
args | Query parameters digested into a dictionary. |
pathFixed | Path, stripped of errors/malice. |
lPath | Local path, relative to index folder (based on pathFixed ). |
fPath | Full path (based on pathFixed ). |
fileExt | File extension (based on pathFixed ). |
fPathDir | The file's folder (based on pathFixed ). |
requestTimeFormatted | Request time formatted for HTML (based on requestTime ). |
handler | The function handling the request. |
htaccessPropagate | Whether to read further htpyaccess files in sub-directories. |