diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/civetweb/test/page.ssjs | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/civetweb/test/page.ssjs')
-rw-r--r-- | src/civetweb/test/page.ssjs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/civetweb/test/page.ssjs b/src/civetweb/test/page.ssjs new file mode 100644 index 00000000..d4465a61 --- /dev/null +++ b/src/civetweb/test/page.ssjs @@ -0,0 +1,19 @@ +print = conn.write || print
+
+// send a header
+print('HTTP/1.0 200 OK\r\n');
+print('Content-Type: text/html\r\n');
+print('\r\n');
+
+print("<html><body>\n");
+print("<p>This example page is generated by the ");
+print('<a href="https://github.com/civetweb/civetweb">CivetWeb web server</a>');
+print(" with server side javascript.</p>\n");
+
+var d = new Date();
+var n = d.toString();
+
+print("<p>Server time: " + n + "</p>\n");
+
+print("</body></html>\n");
+
|