File: index.html

package info (click to toggle)
mongrel2 1.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,976 kB
  • sloc: ansic: 39,083; python: 2,833; sql: 1,555; sh: 467; makefile: 360; asm: 189; yacc: 145; php: 73; awk: 28; sed: 5
file content (49 lines) | stat: -rw-r--r-- 1,569 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
		<title>Mongrel2 Chat Demo</title>
        <link rel="stylesheet" href="reset.css" />
        <link rel="stylesheet" href="text.css" />
        <link rel="stylesheet" href="960.css" />
        <link rel="stylesheet" href="site.css" />

		<script src="js/jsonStringify.js" type="text/javascript"></script>
		<script src="js/jsSocket.js" type="text/javascript"></script>
		<script src="chat.js" type="text/javascript"></script>
		<script src="fsm.js" type="text/javascript"></script>
        <script src="app.js" type="text/javascript"></script>
        <SCRIPT TYPE="text/javascript">
        </SCRIPT>

	</head>

	<body>
        <div class="container_12">
            <div class="clear"></div>
            <div class="grid_12" id="header">
                <h1>Mongrel2 Chat Demo</h1>
            </div>

			<div id="chat" class="grid_12">
				<div id="chatlog">
                </div>
                <div>
                    <div class="grid_12">
                        <form>
                            <input type="text" id="msginput" onKeyPress="return handlekeys(this, state, event);" />
                        </form>
                    </div>
                </div>
            </div>
		</div>
    </body>

    <script type="text/javascript">
        window.onload = function() {
            state.start('loading');
        }
    </script>
</html>