cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+4 -6
View File
@@ -1,16 +1,14 @@
:title
request_script_url
:sig
String request_script_url(Request& context)
:see
>uri
request_base_url
request_query_route
:content
Returns the request script URL from `DOCUMENT_URI` / `SCRIPT_NAME`, canonicalizing a front-controller URL ending in `/index.uce` to the containing directory URL.
```cpp
String script_url = request_script_url(context);
```
:example
print(request_script_url(context) != "" ? "script url\n" : "empty\n");