diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:42 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:42 +0200 |
| commit | 98eac951f8087b213f5850bd126dcb279db360a8 (patch) | |
| tree | c121f5c4df1aab847defa539990c1315bd5ba4a8 /html | |
| parent | 0537da9d1e0f593130fc3967befb71e673b016bc (diff) | |
tagging ychat-0.6ychat-0.6
Diffstat (limited to 'html')
| -rwxr-xr-x | html/frameset.html | 8 | ||||
| -rwxr-xr-x | html/help.html | 17 | ||||
| -rwxr-xr-x | html/index.html | 6 | ||||
| -rwxr-xr-x | html/input.html | 19 |
4 files changed, 28 insertions, 22 deletions
diff --git a/html/frameset.html b/html/frameset.html index fe6b973..84a95ef 100755 --- a/html/frameset.html +++ b/html/frameset.html @@ -4,16 +4,16 @@ %%PGETITLE%% </title> </head> - <frameset rows="*,60"> + <frameset rows="*,70"> <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"> + <frame src="stream.html?event=stream&tmpid=%%tmpid%%" name="stream"> + <frame src="online.html?event=online&tmpid=%%tmpid%%" name="online"> </frameset> <frameset rows="*,0"> - <frame src="input.html?event=input&nick=%%nick%%&tmpid=%%tmpid%%" name="input"> + <frame src="input.html?event=input&tmpid=%%tmpid%%" name="input"> <frame src="blank.html" name="blank"> </frameset> </frameset> diff --git a/html/help.html b/html/help.html index ad9a25f..0a3b418 100755 --- a/html/help.html +++ b/html/help.html @@ -1,28 +1,23 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title> - Chat-help - %%ychat.version%% + Chat-help - %%PGETITLE%% </title> <link rel=stylesheet href="style.css" type=text/css> </head> -<body> +<body bgcolor=#000000 text=#ffff00> <table align=center width=500> <tr><td> - Hello %%nick%%, all chat commands available are summarized below (Please notice that only currently - in memory loaded command modules are listed here which should be the case by yChat default configuration). You can also access help for a specific command with the /help command. Example: /help commandname: + Hello %%nick%%, all chat commands available are summarized below: </td></tr> <tr><td> <br> +<table> %%content%% +</table> </td></tr> </table> <br><br> - <center> - <span class="signature"> - yChat is OpenSource - get it at <a class="fancy" target="_blank" href="http://www.yChat.org">http://www.yChat.org</a> - </span> - </center> +<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/index.html b/html/index.html index 7bc01b0..0549ac5 100755 --- a/html/index.html +++ b/html/index.html @@ -19,9 +19,9 @@ 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"> + <input type="hidden" name="room" accesskey="r" value="%%STRDROOM%%"> + <input type="text" name="nick" accesskey="n"> + <input type="submit" value="login" accesskey="s"> </form> </td> </tr> diff --git a/html/input.html b/html/input.html index a403d8e..a49cb13 100755 --- a/html/input.html +++ b/html/input.html @@ -4,7 +4,6 @@ %%PGETITLE%% </title> <link rel=stylesheet href="style.css" type=text/css> - <script language="JavaScript"> <!-- function delout() @@ -18,17 +17,29 @@ { document.input.message.select(); } + function popup(site,width,height) + { + var left = (screen.availWidth-width)/2; + var top = (screen.availHeight-height)/2; + var win = window.open(site,"_blank","width="+width+",height="+height+",left="+left+",top="+top+",scrollbars=yes"); + } //--> </script> </head> <body bgcolor=#000000 text=#ffffff> + <table> + <tr><td> <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();"> + <input type="submit" value="send" accesskey='s'> + <input type="button" value="select" accesskey='e' onclick="javascript:selectinput();"> </form> + </td> + <td> + <a href='#' onclick="javascript:popup('help.html?event=help&tmpid=%%tmpid%%', 576, 480)">Help</a> + </td></tr> + </table> </body> </html> |
