diff options
author | onefang | 2020-03-16 20:19:08 +1000 |
---|---|---|
committer | onefang | 2020-03-16 20:19:08 +1000 |
commit | 7b85022c0ddfd85feb4c7a36ec45b8cc35f6f06b (patch) | |
tree | 2dbcd207d6268a5432ea219cf49ec8b9d22fb582 /example/www | |
parent | Ignore the src build temporary directories. (diff) | |
download | opensim-SC-7b85022c0ddfd85feb4c7a36ec45b8cc35f6f06b.zip opensim-SC-7b85022c0ddfd85feb4c7a36ec45b8cc35f6f06b.tar.gz opensim-SC-7b85022c0ddfd85feb4c7a36ec45b8cc35f6f06b.tar.bz2 opensim-SC-7b85022c0ddfd85feb4c7a36ec45b8cc35f6f06b.tar.xz |
Shift web stuff to the www folder, and update it.
Diffstat (limited to 'example/www')
-rw-r--r-- | example/www/SledjHamr.png | bin | 0 -> 1655233 bytes | |||
-rw-r--r-- | example/www/SledjHamrIcon.png | bin | 0 -> 95362 bytes | |||
-rw-r--r-- | example/www/SledjHamrIconSmall.png | bin | 0 -> 8535 bytes | |||
-rw-r--r-- | example/www/about.html | 11 | ||||
-rw-r--r-- | example/www/help.html | 11 | ||||
-rw-r--r-- | example/www/loginpage.html | 108 | ||||
-rw-r--r-- | example/www/password_help.html | 11 | ||||
-rw-r--r-- | example/www/register.html | 15 | ||||
-rw-r--r-- | example/www/stats.html | 25 |
9 files changed, 181 insertions, 0 deletions
diff --git a/example/www/SledjHamr.png b/example/www/SledjHamr.png new file mode 100644 index 0000000..9089573 --- /dev/null +++ b/example/www/SledjHamr.png | |||
Binary files differ | |||
diff --git a/example/www/SledjHamrIcon.png b/example/www/SledjHamrIcon.png new file mode 100644 index 0000000..e3b50e1 --- /dev/null +++ b/example/www/SledjHamrIcon.png | |||
Binary files differ | |||
diff --git a/example/www/SledjHamrIconSmall.png b/example/www/SledjHamrIconSmall.png new file mode 100644 index 0000000..a1a6d72 --- /dev/null +++ b/example/www/SledjHamrIconSmall.png | |||
Binary files differ | |||
diff --git a/example/www/about.html b/example/www/about.html new file mode 100644 index 0000000..3afc962 --- /dev/null +++ b/example/www/about.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <html> | ||
2 | <title>About this grid</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="SledjHamrIconSmall.png"> | ||
6 | </head> | ||
7 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
8 | This is a virtual world, usually called a grid, based on <a href="https://sledjhamr.org/cgit/opensim-SC/?h=SledjChisl">opensim-SC</a>. | ||
9 | <p> </p> | ||
10 | </body> | ||
11 | </html> | ||
diff --git a/example/www/help.html b/example/www/help.html new file mode 100644 index 0000000..9a75aa6 --- /dev/null +++ b/example/www/help.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <html> | ||
2 | <title>Help for this grid</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="SledjHamrIconSmall.png"> | ||
6 | </head> | ||
7 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
8 | Include help for your grid here. | ||
9 | <p> </p> | ||
10 | </body> | ||
11 | </html> | ||
diff --git a/example/www/loginpage.html b/example/www/loginpage.html new file mode 100644 index 0000000..bd6d8c6 --- /dev/null +++ b/example/www/loginpage.html | |||
@@ -0,0 +1,108 @@ | |||
1 | <html> | ||
2 | <title><!--#echo var="grid" --> splash page</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="/SledjHamrIconSmall.png"> | ||
6 | <meta http-equiv="refresh" content="120"> | ||
7 | <style> | ||
8 | html, body | ||
9 | { | ||
10 | margin: 0; | ||
11 | padding: 0; | ||
12 | color: white; | ||
13 | } | ||
14 | a {color: green;} | ||
15 | a:link {color: green;} | ||
16 | a:visited {color: purple;} | ||
17 | a:hover {color: red;} | ||
18 | a:active {color: blue;} | ||
19 | |||
20 | .container | ||
21 | { | ||
22 | position: relative; | ||
23 | text-align: left; | ||
24 | } | ||
25 | |||
26 | .top-left | ||
27 | { | ||
28 | position: absolute; | ||
29 | top: 8px; | ||
30 | left: 16px; | ||
31 | width: 30%; | ||
32 | } | ||
33 | |||
34 | .top-right | ||
35 | { | ||
36 | position: absolute; | ||
37 | top: 8px; | ||
38 | right: 16px; | ||
39 | width: 30%; | ||
40 | } | ||
41 | |||
42 | .centre | ||
43 | { | ||
44 | position: absolute; | ||
45 | top: 50%; | ||
46 | left: 50%; | ||
47 | width: 30%; | ||
48 | transform: translate(-50%, -50%); | ||
49 | } | ||
50 | |||
51 | .bottom-left | ||
52 | { | ||
53 | position: absolute; | ||
54 | bottom: 8px; | ||
55 | left: 16px; | ||
56 | width: 30%; | ||
57 | } | ||
58 | |||
59 | .bottom-right | ||
60 | { | ||
61 | position: absolute; | ||
62 | bottom: 8px; | ||
63 | right: 16px; | ||
64 | width: 30%; | ||
65 | } | ||
66 | </style> | ||
67 | <link type="text/css" rel="stylesheet" href="/debugStyle.css" media="all" /> | ||
68 | </head> | ||
69 | <body> | ||
70 | <div class="container"> | ||
71 | <img src="/SledjHamr.png" alt="SledjHamr" style="width:100%;height:100%;"> | ||
72 | <div class="top-left"> | ||
73 | <p class="hoverItem"> | ||
74 | <div class="hoverWrapper0"> | ||
75 | <p>DEBUG</p> | ||
76 | <div id="hoverShow0"> | ||
77 | <h1>DEBUG log</h1> | ||
78 | <!--#echo var="DEBUG" --> | ||
79 | </div> | ||
80 | </div> | ||
81 | </p> | ||
82 | <h1>Add your fancy splash page for <!--#echo var="grid" --> here.</h1> | ||
83 | <p> </p> | ||
84 | <p> </p> | ||
85 | <p> </p> | ||
86 | <p>Perhaps describe <!--#echo var="grid" --> here.</p> | ||
87 | </div> | ||
88 | <div class="top-right"> | ||
89 | <h1>Login URI - <!--#echo var="uri" --></h1> | ||
90 | <p> </p> | ||
91 | <p>There are <!--#echo var="members" --> members of this grid.</p> | ||
92 | <p>There are <!--#echo var="inworld" --> locals and <!--#echo var="hgers" --> hypergrid visitors in world.</p> | ||
93 | <p>There are <!--#echo var="outworld" --> locals out on the hypergrid.</p> | ||
94 | <p>There have been <!--#echo var="day30" --> locals and visitors on this grid in the last month.</p> | ||
95 | <p>There are <!--#echo var="sims" --> regions, though some might not be online right now.</p> | ||
96 | </div> | ||
97 | <div class="centre"> | ||
98 | <p>Maybe add some news or events here, or something.</p> | ||
99 | </div> | ||
100 | <div class="bottom-left"> | ||
101 | <p>CSS by Taylor Temper, photo by onefang rejected.</p> | ||
102 | </div> | ||
103 | <div class="bottom-right"> | ||
104 | <p><!--#echo var="grid" --> is running <a href="https://sledjhamr.org/mantisbt/project_page.php?project_id=8"><!--#echo var="version" --></a>, | ||
105 | part of the <a href="https://sledjhamr.org/git/docs/index.html">SledjHamr</a> project.</p> | ||
106 | </div> | ||
107 | </body> | ||
108 | </html> | ||
diff --git a/example/www/password_help.html b/example/www/password_help.html new file mode 100644 index 0000000..aef6bd5 --- /dev/null +++ b/example/www/password_help.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <html> | ||
2 | <title>Password help for this grid</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="SledjHamrIconSmall.png"> | ||
6 | </head> | ||
7 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
8 | Include password help for your grid here. | ||
9 | <p> </p> | ||
10 | </body> | ||
11 | </html> | ||
diff --git a/example/www/register.html b/example/www/register.html new file mode 100644 index 0000000..46317e6 --- /dev/null +++ b/example/www/register.html | |||
@@ -0,0 +1,15 @@ | |||
1 | <html> | ||
2 | <title>Account for this grid</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="SledjHamrIconSmall.png"> | ||
6 | </head> | ||
7 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
8 | Include account registration help for your grid here. | ||
9 | <p> </p> | ||
10 | <p>If you want to register an account on this grid, ask the person that runs it to do that for you.</p> | ||
11 | <p> </p> | ||
12 | <p>If you want to register an account on this grid, <a href="account.html"> click here</a> (when it's written).</p> | ||
13 | <p> </p> | ||
14 | </body> | ||
15 | </html> | ||
diff --git a/example/www/stats.html b/example/www/stats.html new file mode 100644 index 0000000..b9647c0 --- /dev/null +++ b/example/www/stats.html | |||
@@ -0,0 +1,25 @@ | |||
1 | <html> | ||
2 | <title><!--#echo var="grid" --> stats page</title> | ||
3 | <head> | ||
4 | <meta charset="UTF-8"> | ||
5 | <link rel="shortcut icon" href="/SledjHamrIconSmall.png"> | ||
6 | <meta http-equiv="refresh" content="120"> | ||
7 | </head> | ||
8 | <body> | ||
9 | <h1><!--#echo var="grid" --> statistics.</h1> | ||
10 | <p>Login URI - <!--#echo var="uri" --></p> | ||
11 | <p>Login page - <a href="<!--#echo var="URL" -->/loginpage.html"><!--#echo var="URL" -->/loginpage.html</a></p> | ||
12 | <p>There are <!--#echo var="members" --> members of this grid.</p> | ||
13 | <p>There are <!--#echo var="inworld" --> locals and <!--#echo var="hgers" --> hypergrid visitors in world right now.</p> | ||
14 | <p>There are <!--#echo var="outworld" --> locals out on the hypergrid right now.</p> | ||
15 | <p>There have been <!--#echo var="locDay30" --> locals and <!--#echo var="HGday30" --> hypergrid visitors on this grid in the last 30 days (<!--#echo var="day30" --> total).</p> | ||
16 | <p>There have been <!--#echo var="locDay60" --> locals and <!--#echo var="HGday60" --> hypergrid visitors on this grid in the last 60 days (<!--#echo var="day60" --> total).</p> | ||
17 | <p>There are <!--#echo var="sims" --> regions, though <!--#echo var="offlineSims" --> might not be online right now.</p> | ||
18 | <p>There may be <!--#echo var="onlineSims" --> regions online, with a total area of roughly <!--#echo var="simsSize" --> square metres.</p> | ||
19 | <p>There are <!--#echo var="varRegions" --> varregions that might be online now.</p> | ||
20 | <p>There are <!--#echo var="singleSims" --> normal regions that might be online now.</p> | ||
21 | <p><!--#echo var="grid" --> is running <a href="https://sledjhamr.org/mantisbt/project_page.php?project_id=8"><!--#echo var="version" --></a>, | ||
22 | part of the <a href="https://sledjhamr.org/git/docs/index.html">SledjHamr</a> project.</p> | ||
23 | <p>These statistics will update every two minutes.</p> | ||
24 | </body> | ||
25 | </html> | ||