- Updated parser to correctly interpret C++ `//` and `/* ... */` comments within template code. - Split preprocessing implementation into separate files for better organization. - Added regression test for comment parsing in templates. - Adjusted CSS styles for improved layout and readability in documentation.
83 lines
3.5 KiB
Plaintext
83 lines
3.5 KiB
Plaintext
|
|
|
|
void render_card(String url, String title, String desc)
|
|
{
|
|
<><a class="test-card" href="<?= url ?>">
|
|
<strong><?= title ?></strong>
|
|
<span><?= desc ?></span>
|
|
</a></>
|
|
}
|
|
|
|
RENDER(Request& context)
|
|
{
|
|
DTree p;
|
|
p.set(context.params);
|
|
|
|
<><html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
|
|
<link rel="stylesheet" href='style.css?v=<?= time() ?>'></link>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
<a href="index.uce">UCE Test Suite</a>
|
|
<a class="docs-link" href="../doc/index.uce">API Docs →</a>
|
|
</h1>
|
|
<div class="test-grid">
|
|
<div class="grid-heading">Basics</div>
|
|
<? render_card("hello.uce", "Hello World", "Basic output and server time"); ?>
|
|
<? render_card("working-dir.uce", "Working Directory", "Server paths and cwd"); ?>
|
|
<? render_card("header.uce", "Headers", "HTTP response headers"); ?>
|
|
<? render_card("error-reporting.uce", "Error Reporting", "Error handling and output"); ?>
|
|
|
|
<div class="grid-heading">Data Types & Parsing</div>
|
|
<? render_card("dtree.uce", "DTree", "Dynamic hierarchical data tree"); ?>
|
|
<? render_card("json.uce", "JSON", "Parse and encode JSON data"); ?>
|
|
<? render_card("preprocessor-comments.uce", "Preprocessor Comments", "Regression coverage for comment parsing in templates"); ?>
|
|
<? render_card("string.uce", "String", "String operations"); ?>
|
|
<? render_card("str_replace.uce", "String Replace", "Search and replace in strings"); ?>
|
|
<? render_card("utf8.uce", "UTF-8", "Unicode string handling"); ?>
|
|
<? render_card("random.uce", "RNG / Noise", "Random generation and noise"); ?>
|
|
<? render_card("parse_time.uce", "time_parse()", "Date and time parsing"); ?>
|
|
|
|
<div class="grid-heading">HTTP & Forms</div>
|
|
<? render_card("post.uce", "Form POST", "URL-encoded form submission"); ?>
|
|
<? render_card("post-multipart.uce", "Multipart POST", "File upload and multipart forms"); ?>
|
|
<? render_card("uri.uce", "URI", "URI encoding and decoding"); ?>
|
|
<? render_card("cookie.uce", "Cookies", "Read and write browser cookies"); ?>
|
|
<? render_card("session.uce", "Session", "Server-side session state"); ?>
|
|
|
|
<div class="grid-heading">Storage & I/O</div>
|
|
<? render_card("fileio.uce", "File I/O", "Read and write files"); ?>
|
|
<? render_card("file_append.uce", "File Append", "Append data to files"); ?>
|
|
<? render_card("shell.uce", "Shell", "Execute shell commands"); ?>
|
|
<? render_card("memcached.uce", "Memcached", "Memcached key-value store"); ?>
|
|
<? render_card("mysql.uce", "MySQL", "MySQL database connector"); ?>
|
|
|
|
<div class="grid-heading">Advanced</div>
|
|
<? render_card("call_file.uce", "unit_call()", "Dynamic file inclusion"); ?>
|
|
<? render_card("components.uce", "Components", "Reusable component system"); ?>
|
|
<? render_card("markdown.uce", "Markdown", "Markdown parsing with components"); ?>
|
|
<? render_card("script.uce", "Script", "UCE script integration"); ?>
|
|
<? render_card("task.uce", "Task", "Background task execution"); ?>
|
|
<? render_card("task_repeat.uce", "Task Repeat", "Recurring task scheduling"); ?>
|
|
<? render_card("websockets.ws.uce", "WebSockets", "Real-time WebSocket chat"); ?>
|
|
</div>
|
|
<div class="system-info">
|
|
<h3>System Info</h3>
|
|
<pre><?
|
|
print("Worker PID: ", my_pid, "\n");
|
|
print("Parent PID: ", parent_pid, "\n");
|
|
print("Output buffer size: ", context.ob->str().length(), "\n");
|
|
print("Request #", context.server->request_count, "\n");
|
|
?></pre>
|
|
</div>
|
|
<details>
|
|
<summary>Request Parameters</summary>
|
|
<pre><?= (var_dump(p)) ?></pre>
|
|
</details>
|
|
</body>
|
|
</html></>
|
|
|
|
}
|