tweetcast/nodejs/client/index.html
author Raphael Velt <raph.velt@gmail.com>
Tue, 25 Oct 2011 09:20:07 +0200
changeset 333 4389fd4ae58f
child 334 b7f05d66b620
permissions -rw-r--r--
Reorganisation branche node
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     1
<!doctype html>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     2
<html>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     3
 <head>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     5
  <title>Polemic Tweet “TweetCast”</title>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     6
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     7
  <script type="text/javascript">
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     8
    S_IO_HOST = document.location.hostname;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     9
    S_IO_PORT = 8000;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    10
    document.write('<script type="text/javascript" src="http://' + S_IO_HOST + ':' + S_IO_PORT + '/socket.io/socket.io.js"><' + '/script>');
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    11
  </script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    12
  <script type="text/javascript" src="js/Raphael-min.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    13
  <script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    14
  <script type="text/javascript" src="js/script.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    15
  <link rel="stylesheet" href="css/style.css" type="text/css" />
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    16
 </head>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    17
 <body>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    18
    <ul id="tweetlist">
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    19
    </ul>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    20
    <div id="timeline"></div>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    21
    <div id="timewindow"></div>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    22
 </body>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    23
</html>