input.html - links nicht zusehen

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

      input.html - links nicht zusehen

      hey,

      hab folgendes problem und zwar, wenn ich in meine input.html links einfüge, sodass die links unter der eingabeleiste stehen soll, werden sie nicht angezeigt.

      SCREEN

      Hier meine input.html:

      HTML-Quellcode

      1. <center>
      2. <html>
      3. <head>
      4. {NEED_PERMISSION|user}
      5. {NEED|$user_information}
      6. {NEED|$room_information}
      7. <base href="{GET|$settings.urls.htmlurl}">
      8. <title>{GET|$settings.chatname}</title>
      9. <link rel="stylesheet" href="{GET|$runtime.style}.css">
      10. <script language="JavaScript" src="chat.js" type="text/javascript">
      11. </script>
      12. <script language="JavaScript">
      13. cgi='{GET_JS|$runtime.completeurl}';
      14. function openLog(width,height)
      15. {
      16. var left = (screen.availWidth-width)/2;
      17. var top = (screen.availHeight-height)/2;
      18. var toDo = "";
      19. if (parent.log)
      20. toDo += parent.log;
      21. if (parent.messages && parent.messages.document && parent.messages.document.body && parent.messages.document.body.innerHTML)
      22. {
      23. var text = parent.messages.document.body.innerHTML;
      24. if (text.indexOf('Wladimir Palant -->'))
      25. text=text.substr(text.indexOf('Wladimir Palant -->')+19);
      26. toDo += text;
      27. }
      28. var html = '{DOFILTER|escape_js}{INCLUDE|log_top}{ENDDO}\n';
      29. var lines = toDo.split("\n");
      30. var isScript = 0;
      31. for (var i=0;i<lines.length;i++)
      32. {
      33. if (!isScript && lines[i].match(/<script>/i))
      34. isScript = 1;
      35. else if (isScript && lines[i].match(/<\/script>/i))
      36. isScript = 0;
      37. else if (!isScript)
      38. {
      39. lines[i]=lines[i].replace(/ onclick="[^"]*"/ig,"").replace(/ href="javascript:[^"]*"/ig," href="javascript:void(0)"");
      40. html += lines[i]+'\n';
      41. }
      42. }
      43. html += '{DOFILTER|escape_js}{INCLUDE|log_bottom}{ENDDO}';
      44. var wnd = window.open('','log','resizable=yes,scrollbars=yes,width='+width+',height='+height+',left='+left+',top='+top);
      45. wnd.document.open('text/html; charset={GET_JS|$current_language.charset}');
      46. wnd.document.writeln(html);
      47. wnd.document.close();
      48. wnd.htmlcode = html;
      49. wnd.focus();
      50. }
      51. function init()
      52. {
      53. parent.admin_mode = 0;
      54. {IF|$current_user.pull}
      55. parent.aliveInterval={GET|$settings.alive_test_rate_pull}*1000/10;
      56. {ELSE}
      57. parent.aliveInterval={GET|$settings.alive_test_rate_push}*1000/2.5;
      58. {ENDIF}
      59. parent.send_blocking_timeout={GET|$settings.send_blocking_timeout}*1000;
      60. parent.delayFactor = 1;
      61. parent.aliases = new Array();
      62. {FOREACH|$alias|$settings.aliases}
      63. parent.aliases[' /{GET_JS|$alias.name}'] = '/{GET_JS|$alias.value}';
      64. {ENDFOR}
      65. parent.jscommands = new Array();
      66. {FOREACH|$command|$settings.jscommands}
      67. parent.jscommands[' /{GET_JS|$command.name}'] = '{GET_JS|$command.value}';
      68. {ENDFOR}
      69. document.inputForm.text.onkeydown=keyHandler;
      70. parent.lasttextid = '';
      71. parent.setTimeout("if (window.lasttextid == '"+parent.lasttextid+"' && window.input) window.input.sendText('/alive')",parent.aliveInterval);
      72. setNewTextId(1);
      73. document.inputForm.text.focus()
      74. }
      75. function keyHandler(e)
      76. {
      77. if (window.event)
      78. e=event;
      79. if (e && e.keyCode == 13 && e.ctrlKey)
      80. {
      81. doSend();
      82. event.returnValue = false;
      83. }
      84. }
      85. </script>
      86. <script language="JavaScript">
      87. cgi='{GET_JS|$runtime.completeurl}';
      88. function IgnoreNotignore(vIgnored, vUser, vNick)
      89. {
      90. vIgnored = vIgnored.replace("%20"," ") + " "
      91. vUser = vUser + " "
      92. if(vIgnored.lastIndexOf(vUser) < 0)
      93. document.write('<a href="javascript:void(0);" onclick="sendText(\'/ignore ' + vNick + '\');sendText(\'/refresh\');return false;"><font color="#008000"><b>X</b></font></a>');
      94. else
      95. document.write('<a href="javascript:void(0);" onclick="sendText(\'/unignore ' + vNick + '\');sendText(\'/refresh\');return false;"><font color="#FF0000"><b>X</b></font></a>');
      96. }
      97. </script>
      98. </head>
      99. <body class="users_{GET|$current_user.room}" marginheight=0 marginwidth=0 leftmargin=0 topmargin=0 onLoad="init();addFocusHandlers();">
      100. {NEED_PERMISSION|user}
      101. <table border=0 width="783">
      102. <tr>
      103. <form name="sendForm" method="POST" action="{GET_JS|$runtime.chaturl}" target="dummy">
      104. <td class="users_{GET|$current_user.room}" width="177">{GET|$runtime.hiddenfields}
      105. <input accesskey="b" type=hidden name=action value=send>
      106. <input type=hidden name=text value="">
      107. <input type=hidden name=textid value="">
      108. </form>
      109. <form name="auxForm" method="POST" action="{GET_JS|$runtime.chaturl}">
      110. {GET|$runtime.hiddenfields}
      111. <input type=hidden name=template>
      112. <input type=hidden name=param>
      113. </form>
      114. <form name="inputForm" onSubmit="doSend();return false;" action="javascript:void(0)">
      115. <td class="users_{GET|$current_user.room}" width="584">
      116. <center> <input type=text name=text value="" size=50 maxlength=22255 style="WIDTH: 1050px; HEIGHT: 27px" autocomplete=off onSelect="storeCaret(this)" onClick="storeCaret(this)" onKeyUp="storeCaret(this)"></center> </td>
      117. </form>
      118. <td width="2">
      119. </td>
      120. </tr>
      121. </table>
      122. <script language="JavaScript">
      123. if (document.getElementById)
      124. {
      125. document.write(
      126. '<td valign=center align="center">'+
      127. '<table border=0 cellpadding=0 cellspacing=0 width=51 class=outer><tr><td>'+
      128. '<table border=0 cellspacing=1 cellpadding=0 width=51><tr class=row2><td>'+
      129. '<table border=0 cellspacing=0 cellpadding=0 width=51><tr>'+
      130. '<td id="connection" title="Verbindungsqualität" bgcolor="#00FF00" width="100%">{IMAGE|blank|width=1 height=10}</td>'+
      131. '<td>{IMAGE|blank|width=1 height=10}</td>'+
      132. '<td></td>'+
      133. '</tr></table>'+
      134. '</td></tr></table>'+
      135. '</td></tr></table>'+
      136. '<span class="smalltext">connection</span>'+
      137. '</td>');
      138. }
      139. </script>
      140. </body>
      141. </center>

      vielen dank =)
      mfg zonyk

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „zonyk“ ()