From cc4ef9b16bcc694bdf536adae00169f7dfb9507a Mon Sep 17 00:00:00 2001 From: Georg Date: Sat, 22 May 2021 03:13:53 +0200 Subject: Initial --- test-data/web/default.css.example | 55 ++++++++++++++++++++++++++++++++ test-data/web/generic/error.html.example | 12 +++++++ test-data/web/index.html.example | 14 ++++++++ test-data/web/robots.txt.example | 0 4 files changed, 81 insertions(+) create mode 100644 test-data/web/default.css.example create mode 100644 test-data/web/generic/error.html.example create mode 100644 test-data/web/index.html.example create mode 100644 test-data/web/robots.txt.example (limited to 'test-data') diff --git a/test-data/web/default.css.example b/test-data/web/default.css.example new file mode 100644 index 0000000..09219ad --- /dev/null +++ b/test-data/web/default.css.example @@ -0,0 +1,55 @@ +body { + background-color: #F0F0F0; +} + +/************************************ + * Classes that plugins should use. * + ************************************/ + +/* Error pages */ +body.error { + text-align: center; +} +body.error p { + background-color: #FFE0E0; + border: 1px #FFA0A0 solid; +} + +/* Pages that only contain a list. */ +.purelisting { + text-align: center; +} +.purelisting ul { + margin: 0; + padding: 0; +} +.purelisting ul li { + margin: 0; + padding: 0; + list-style-type: none; +} + +/* Pages that only contain a table. */ +.puretable { + text-align: center; +} +.puretable table +{ + width: 100%; + border-collapse: collapse; + text-align: center; +} + +.puretable table th +{ + /*color: #039;*/ + padding: 10px 8px; + border-bottom: 2px solid #6678b1; +} + +.puretable table td +{ + padding: 9px 8px 0px 8px; + border-bottom: 1px solid #ccc; +} + diff --git a/test-data/web/generic/error.html.example b/test-data/web/generic/error.html.example new file mode 100644 index 0000000..9c7162a --- /dev/null +++ b/test-data/web/generic/error.html.example @@ -0,0 +1,12 @@ + + + + + %(title)s + + + +

Error

+

%(error)s

+ + \ No newline at end of file diff --git a/test-data/web/index.html.example b/test-data/web/index.html.example new file mode 100644 index 0000000..ff105c4 --- /dev/null +++ b/test-data/web/index.html.example @@ -0,0 +1,14 @@ + + + + + Supybot Web server index + + + +

Supybot web server index

+

Here is a list of the plugins that have a Web interface: +

+ %(list)s + + \ No newline at end of file diff --git a/test-data/web/robots.txt.example b/test-data/web/robots.txt.example new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3