mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
New test for server side includes (SSI)
This commit is contained in:
parent
3426051cb7
commit
a2178b9045
5
test/hello.shtml
Normal file
5
test/hello.shtml
Normal file
@ -0,0 +1,5 @@
|
||||
<pre>
|
||||
hello.shtml: include "hello.txt":
|
||||
<!--#include file="hello.txt" -->
|
||||
hello.shtml: end
|
||||
</pre>
|
@ -1,5 +0,0 @@
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#include file="../Makefile" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1,5 +0,0 @@
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#include virtual="embed.c" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1,5 +0,0 @@
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#exec "ls -l" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1,5 +0,0 @@
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#exec "dir /w" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1,5 +0,0 @@
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#include abspath="/etc/passwd" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1,5 +0,0 @@
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#include abspath="c:\boot.ini" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1,6 +0,0 @@
|
||||
|
||||
<html><pre>
|
||||
ssi_begin
|
||||
<!--#include "embed.c" -->
|
||||
ssi_end
|
||||
</pre></html>
|
@ -1 +0,0 @@
|
||||
<!--#include "ssi9.shtml" -->
|
@ -1,3 +0,0 @@
|
||||
ssi_begin
|
||||
<!--#include file="../Makefile" -->
|
||||
ssi_end
|
37
test/ssi_test.shtml
Normal file
37
test/ssi_test.shtml
Normal file
@ -0,0 +1,37 @@
|
||||
<!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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user