diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:41 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:41 +0200 |
| commit | 9cd3ccffd5372dfde3af478e3f832f18db4be3f1 (patch) | |
| tree | 631c295a4a4a16b57502b847626763a279bf6df7 /ychat-0.1/html | |
| parent | 13aaf70af703748fe096e0664c305cd202637ad2 (diff) | |
tagging tags
Diffstat (limited to 'ychat-0.1/html')
| -rw-r--r-- | ychat-0.1/html/blank.html | 4 | ||||
| -rw-r--r-- | ychat-0.1/html/frameset.html | 20 | ||||
| -rw-r--r-- | ychat-0.1/html/index.html | 31 | ||||
| -rw-r--r-- | ychat-0.1/html/input.html | 32 | ||||
| -rw-r--r-- | ychat-0.1/html/notfound.html | 10 | ||||
| -rw-r--r-- | ychat-0.1/html/online.html | 6 | ||||
| -rw-r--r-- | ychat-0.1/html/stream.html | 29 | ||||
| -rw-r--r-- | ychat-0.1/html/y_ani.gif | bin | 0 -> 35107 bytes |
8 files changed, 132 insertions, 0 deletions
diff --git a/ychat-0.1/html/blank.html b/ychat-0.1/html/blank.html new file mode 100644 index 0000000..4ddd1a7 --- /dev/null +++ b/ychat-0.1/html/blank.html @@ -0,0 +1,4 @@ +<html> + <body> + </body> +</html> diff --git a/ychat-0.1/html/frameset.html b/ychat-0.1/html/frameset.html new file mode 100644 index 0000000..fe6b973 --- /dev/null +++ b/ychat-0.1/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/ychat-0.1/html/index.html b/ychat-0.1/html/index.html new file mode 100644 index 0000000..140272a --- /dev/null +++ b/ychat-0.1/html/index.html @@ -0,0 +1,31 @@ +<html> +<head> +<title> + %%PGETITLE%% +</title> +</head> +<body> +Welcome to +<pre> + ___ _ _ + _ _ / __\ |__ __ _| |_ +| | | |/ / | '_ \ / _` | __| +| |_| / /___| | | | (_| | |_ + \__, \____/|_| |_|\__,_|\__| + |___/ +</pre> + +<br> +%%PGETITLE%% +<br> +<br> +%%INFO%% +Enter your nick: +<form action="frameset.html"> + <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> +</body> +</html> diff --git a/ychat-0.1/html/input.html b/ychat-0.1/html/input.html new file mode 100644 index 0000000..e6fb016 --- /dev/null +++ b/ychat-0.1/html/input.html @@ -0,0 +1,32 @@ +<html> + <head> + <title> + %%PGETITLE%% + </title> + <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> + <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/ychat-0.1/html/notfound.html b/ychat-0.1/html/notfound.html new file mode 100644 index 0000000..574e341 --- /dev/null +++ b/ychat-0.1/html/notfound.html @@ -0,0 +1,10 @@ +<html> +<head> +<title> + %%PGETITLE%% +</title> +</head> +<body> + Page not found. +</body> +</html> diff --git a/ychat-0.1/html/online.html b/ychat-0.1/html/online.html new file mode 100644 index 0000000..7f29b0e --- /dev/null +++ b/ychat-0.1/html/online.html @@ -0,0 +1,6 @@ +<html> + <meta http-equiv="refresh" content="20"> + <body> + %%MESSAGE%% + </body> +</html> diff --git a/ychat-0.1/html/stream.html b/ychat-0.1/html/stream.html new file mode 100644 index 0000000..66f8bbd --- /dev/null +++ b/ychat-0.1/html/stream.html @@ -0,0 +1,29 @@ +<html> + <head> + <title> + %%PGETITLE%% + </title> + <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> + Welcome to yChat %%nick%%! + <br> + <br> diff --git a/ychat-0.1/html/y_ani.gif b/ychat-0.1/html/y_ani.gif Binary files differnew file mode 100644 index 0000000..e730988 --- /dev/null +++ b/ychat-0.1/html/y_ani.gif |
