Files
cpp-project-template/third_party/prometheus/3rdparty/civetweb/test/ssi_test.shtml
tqcq c68893bace
Some checks failed
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Failing after 29s
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Failing after 16s
sm-rpc / build (Debug, host.gcc) (push) Failing after 11s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Failing after 12s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Failing after 11s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Failing after 11s
sm-rpc / build (Release, host.gcc) (push) Failing after 12s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Failing after 16s
feat add spdlog
2025-08-22 18:22:57 +08:00

38 lines
1.1 KiB
Plaintext

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="author" content="CivetWeb developers">
<meta name="description" content="CivetWeb Server Side Include (SSI) Test Page">
</head>
<body>
<h1>CivetWeb Server Side Include (SSI) Test Page</h1>
<p>Note: Some of the tests below will only work on Windows, others only on Linux, and some probably not on all Linux distributions and all Windows versions.</p>
<h2>Execute: "cd"</h2>
<!--#exec "cd" -->
<h2>Execute: "pwd"</h2>
<!--#exec "pwd" -->
<h2>File relative to current document: "hello.txt"</h2>
<!--#include file="hello.txt" -->
<h2>Short form: "hello.txt"</h2>
<!--#include "hello.txt" -->
<h2>File relative to document root: "hello.txt"</h2>
<!--#include virtual="hello.txt" -->
<h2>File with absolute path: "C:\Windows\system.ini"</h2>
<!--#include abspath="C:\Windows\system.ini" -->
<h2>File with absolute path: "/etc/issue"</h2>
<!--#include abspath="/etc/issue" -->
<h2>Nested file relative to current documentt: "hello.shtml"</h2>
<!--#include file="./hello.shtml" -->
</body>
</html>