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