diff options
Diffstat (limited to 'html')
| -rw-r--r-- | html/blank.html | 4 | ||||
| -rw-r--r-- | html/favicon.ico | bin | 0 -> 2238 bytes | |||
| -rw-r--r-- | html/frameset.html | 20 | ||||
| -rw-r--r-- | html/index.html | 32 | ||||
| -rw-r--r-- | html/input.html | 34 | ||||
| -rw-r--r-- | html/notfound.html | 10 | ||||
| -rw-r--r-- | html/online.html | 7 | ||||
| -rw-r--r-- | html/stream.html | 30 | ||||
| -rw-r--r-- | html/style.css | 11 | ||||
| -rw-r--r-- | html/y_ani.gif | bin | 0 -> 35107 bytes | |||
| -rw-r--r-- | html/y_black.gif | bin | 0 -> 61100 bytes |
11 files changed, 148 insertions, 0 deletions
diff --git a/html/blank.html b/html/blank.html new file mode 100644 index 0000000..4ddd1a7 --- /dev/null +++ b/html/blank.html @@ -0,0 +1,4 @@ +<html> + <body> + </body> +</html> diff --git a/html/favicon.ico b/html/favicon.ico Binary files differnew file mode 100644 index 0000000..4deafd5 --- /dev/null +++ b/html/favicon.ico diff --git a/html/frameset.html b/html/frameset.html new file mode 100644 index 0000000..fe6b973 --- /dev/null +++ b/html/frameset.html @@ -0,0 +1,20 @@ +<html> +<head> +<title> + %%PGETITLE%% +</title> +</head> + <frameset rows="*,60"> + <noframes> + Your browser does not support frames, + </noframes> + <frameset cols="*,150"> + <frame src="stream.html?event=stream&nick=%%nick%%&tmpid=%%tmpid%%" name="stream"> + <frame src="online.html?event=online&nick=%%nick%%&tmpid=%%tmpid%%" name="online"> + </frameset> + <frameset rows="*,0"> + <frame src="input.html?event=input&nick=%%nick%%&tmpid=%%tmpid%%" name="input"> + <frame src="blank.html" name="blank"> + </frameset> + </frameset> +</html> diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..7bc01b0 --- /dev/null +++ b/html/index.html @@ -0,0 +1,32 @@ +<html> +<head> +<title> + %%PGETITLE%% +</title> +<link rel=stylesheet href="style.css" type=text/css> +</head> +<body bgcolor=#000000 text=#ffff00> +<table align=center width=500> +<tr> +<td align=center><img src="y_black.gif" alt="ychat"></td> +<td align=center class=header>%%PGETITLE%%<br>%%INFO%%</td> +</tr> +<tr> + <td colspan=2> </td> +</tr> +<tr> + <td align=center colspan=2> +Enter your nick: +<form action="frameset.html" method="GET"> + <input type="hidden" name="event" value="login"> + <input type="hidden" name="room" value="%%STRDROOM%%"> + <input type="text" name="nick"> + <input type="submit" value="login"> +</form> +</td> +</tr> +</table> +<br><br> +<center><span class="signature">yChat is OpenSource - get it at <a target="_blank" href="http://www.yChat.org">http://www.yChat.org</a></span></center> +</body> +</html> diff --git a/html/input.html b/html/input.html new file mode 100644 index 0000000..a403d8e --- /dev/null +++ b/html/input.html @@ -0,0 +1,34 @@ +<html> + <head> + <title> + %%PGETITLE%% + </title> +<link rel=stylesheet href="style.css" type=text/css> + + <script language="JavaScript"> + <!-- + function delout() + { + document.input.message.focus(); + document.input.message.select(); + document.input.submit(); + return false; + } + function selectinput() + { + document.input.message.select(); + } + //--> + </script> + </head> + <body bgcolor=#000000 text=#ffffff> + <form name="input" action="input.html" target="blank" onsubmit="return delout();"> + <input type="hidden" name="event" value="post"> + <input type="hidden" name="nick" value="%%nick%%"> + <input type="hidden" name="tmpid" value="%%tmpid%%"> + <input type="text" name="message" size="50"> + <input type="submit" value="send"> + <input type="button" value="select" onclick="javascript:selectinput();"> + </form> + </body> +</html> diff --git a/html/notfound.html b/html/notfound.html new file mode 100644 index 0000000..574e341 --- /dev/null +++ b/html/notfound.html @@ -0,0 +1,10 @@ +<html> +<head> +<title> + %%PGETITLE%% +</title> +</head> +<body> + Page not found. +</body> +</html> diff --git a/html/online.html b/html/online.html new file mode 100644 index 0000000..aa14f8d --- /dev/null +++ b/html/online.html @@ -0,0 +1,7 @@ +<html> + <meta http-equiv="refresh" content="20"> +<link rel=stylesheet href="style.css" type=text/css> + <body bgcolor=#000000 text=#ffffff> + %%MESSAGE%% + </body> +</html> diff --git a/html/stream.html b/html/stream.html new file mode 100644 index 0000000..6678069 --- /dev/null +++ b/html/stream.html @@ -0,0 +1,30 @@ +<html> + <head> + <title> + %%PGETITLE%% + </title> +<link rel=stylesheet href="style.css" type=text/css> + <script language="JavaScript"> + function autoScroll() + { + window.scroll(1, 50000 ); + timer = setTimeout('autoScroll()',200); + } + + autoScroll(); + + function stopScroll() + { + clearTimeout(timer); + } + + function startScroll() + { + timer = setTimeout('autoScroll()', 200); + } + </script> +</head> +<body bgcolor=#000000 text=#ffffff> + Welcome to yChat %%nick%%! + <br> + <br> diff --git a/html/style.css b/html/style.css new file mode 100644 index 0000000..e31bd7e --- /dev/null +++ b/html/style.css @@ -0,0 +1,11 @@ +BODY, TD { + font-family: Verdana, Helvetica, sans-serif; + font-size: 11pt; +} +A { + color: #dddddd; +} +.signature { + color: #dddddd; + font-size: 9pt; +} diff --git a/html/y_ani.gif b/html/y_ani.gif Binary files differnew file mode 100644 index 0000000..e730988 --- /dev/null +++ b/html/y_ani.gif diff --git a/html/y_black.gif b/html/y_black.gif Binary files differnew file mode 100644 index 0000000..06274c2 --- /dev/null +++ b/html/y_black.gif |
