SourceForge: tilescape/tilescape: changeset 26:6ce662a2e0b6
Attempts to combine game with server with a frameset. Probably stupid. Server should embed its code into an originally unmodified page itself, but do it cleanly. default tip
authorkato
Mon Apr 06 22:18:50 2009 +0300 (7 months ago)
changeset 266ce662a2e0b6
parent 257d642298982d
Attempts to combine game with server with a frameset. Probably stupid. Server should embed its code into an originally unmodified page itself, but do it cleanly.
js/game-chat-bottom.html
js/game-chat-left.html
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/game-chat-bottom.html	Mon Apr 06 22:18:50 2009 +0300
     1.3 @@ -0,0 +1,16 @@
     1.4 +<!-- ?xml version="1.0" encoding="UTF-8"? -->
     1.5 +<!DOCTYPE html 
     1.6 +     PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
     1.7 +     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
     1.8 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
     1.9 +
    1.10 +  <head>
    1.11 +    <link rel="stylesheet" href="squaremap.css" type="text/css" />
    1.12 +  </head>
    1.13 +
    1.14 +  <frameset rows="*,200"> 
    1.15 +	<frame src="game.html" name="game" id="game"></frame>
    1.16 +	<frame src="http://localhost:8080/" name="serverFrame" id="serverFrame"></frame>
    1.17 +  </frameset>
    1.18 +
    1.19 +</html>
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/js/game-chat-left.html	Mon Apr 06 22:18:50 2009 +0300
     2.3 @@ -0,0 +1,16 @@
     2.4 +<!-- ?xml version="1.0" encoding="UTF-8"? -->
     2.5 +<!DOCTYPE html 
     2.6 +     PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
     2.7 +     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
     2.8 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
     2.9 +
    2.10 +  <head>
    2.11 +    <link rel="stylesheet" href="squaremap.css" type="text/css" />
    2.12 +  </head>
    2.13 +
    2.14 +  <frameset cols="200,*">
    2.15 +	<frame src="http://localhost:8080/">
    2.16 +	<frame src="game.html">
    2.17 +  </frameset>
    2.18 +
    2.19 +</html>