root/trunk/licqweb/index.php

Revision 4526, 1.4 kB (checked in by erijo, 2 years ago)

Removed svn:keywords from all files that don't need it. May make your
checkout a tiny bit faster :)

  • Property svn:eol-style set to native
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3    <head>
4        <title>licq</title>
5        <link rel="StyleSheet" type="text/css" href="licqweb.css" />
6        <link rel="shortcut icon" href="images/favicon.ico">
7    </head>
8    <body onload="checkSession()">
9    <div id="tooltip"></div>
10    <script type="text/javascript" src="licqweb.js" />
11    <h1>licq<i><font color="#5555ff">web</font></i></h1>
12    <div id="login" class="loginwin">
13        <div class="bar">licqweb login</div>
14        <div class="centre">
15            UIN <input id="uin" type="text"/><p>
16            Password <input id="password" type="password"/><p>
17            <input type="submit" onclick="login(); return false;" value="Login" />
18        </div>
19    </div>
20    <div id="contactList" class="box" style="left:10px;top:150px;display:none;">
21        <div class="bar" onmousedown="init_drag(event, 'contactList')" id="nick">licqweb</div>
22        <div id="contacts"></div>
23        <div id="ownerStatus"></div>
24    </div>
25    <div id="statusMenu"></div>
26    <div id="windows"></div>
27    <div class="logWindow" id="log"></div>
28    <div id="debug"></div>
29<?
30    $fd = fopen("http://www.licq.org/licqweb-news.txt", "r");
31    if (!$fd)
32        $fd = fopen("http://www.thejon.org/licqweb-news.txt", "r");
33    if ($fd) {
34        $str = "";
35        while(!feof($fd))
36            $str .= fread($fd, 4096);
37        fclose($fd);
38    }
39    echo "<div id=\"newsid\" class=\"news\"><div class=\"bar\">News</div>".$str."</div>\n";
40?>
41    </body>
42</html>
Note: See TracBrowser for help on using the browser.