From: Lo?c C. <lo...@us...> - 2001-04-20 19:55:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv9519/chat/lib/index_libs Modified Files: main_index.lib.php3 do_enter_frameset.lib.php3 Log Message: Beautify a bit the generated html Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** main_index.lib.php3 2001/04/19 20:28:14 1.19 --- main_index.lib.php3 2001/04/20 19:55:47 1.20 *************** *** 389,402 **** <title><?php echo(APP_NAME); ?></title> <link rel="shortcut icon" href="<?php echo(_CHAT_PATH); ?>favicon.ico" /> - <?php // Gets the JavaScript instructions include('./' . _CHAT_PATH . 'lib/index_libs/do_enter_js_work.lib.' . C_EXTENSION); ?> </head> - <?php // Gets the frameset definition include('./' . _CHAT_PATH .'lib/index_libs/do_enter_frameset.lib.' . C_EXTENSION); ?> </html> --- 389,404 ---- <title><?php echo(APP_NAME); ?></title> <link rel="shortcut icon" href="<?php echo(_CHAT_PATH); ?>favicon.ico" /> <?php // Gets the JavaScript instructions + echo("\n"); include('./' . _CHAT_PATH . 'lib/index_libs/do_enter_js_work.lib.' . C_EXTENSION); + echo("\n"); ?> </head> <?php // Gets the frameset definition + echo("\n"); include('./' . _CHAT_PATH .'lib/index_libs/do_enter_frameset.lib.' . C_EXTENSION); + echo("\n"); ?> </html> Index: do_enter_frameset.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_frameset.lib.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** do_enter_frameset.lib.php3 2001/04/19 21:05:04 1.5 --- do_enter_frameset.lib.php3 2001/04/20 19:55:47 1.6 *************** *** 51,75 **** { ?> ! <frameset cols="100%,*,*" frameborder="0" border="0" framespacing="0" onresize="if (typeof(document.layers) != 'undefined') window.location = '<?php echo($nsResizeUrl); ?>';"> ! <!-- Visible framesets --> ! <frameset cols="*,130" frameborder="0" border="0" framespacing="0"> ! <frameset rows="*,50" frameborder="0" border="0" framespacing="0"> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="messages" frameborder="0" border="0" framespacing="0" marginwidth="3" marginheight="3" /> ! <frame src="<?php echo(_CHAT_PATH); ?>input.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="input" frameborder="0" border="0" framespacing="0" marginwidth=0 marginheight=0 scrolling="no" noresize="noresize" /> ! </frameset> ! <frameset rows="80,*,50" frameborder="0" border="0" framespacing="0"> ! <frame src="<?php echo(_CHAT_PATH); ?>exit.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="exit" frameborder="0" border="0" framespacing="0" marginwidth=3 marginheight=3 scrolling="no" /> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="users" frameborder="0" border="0" framespacing="0" marginwidth=3 marginheight=3 /> ! <frame src="<?php echo(_CHAT_PATH); ?>link.php3" name="link" frameborder="0" border="0" framespacing="0" marginwidth=0 marginheight=0 scrolling="no" /> ! </frameset> </frameset> ! <!-- Hidden frame for the input work when something has been sent --> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="handle_input" frameborder="0" border="0" framespacing="0" marginheight="0" marginwidth="0" scrolling="no" /> ! <!-- Hidden frame for the loader --> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="loader" frameborder="0" border="0" framespacing="0" marginheight="0" marginwidth="0" scrolling="no" /> ! </frameset> <?php } // end of the 'DHTML enabled' case --- 51,75 ---- { ?> ! <frameset cols="100%,*,*" frameborder="0" border="0" framespacing="0" onresize="if (typeof(document.layers) != 'undefined') window.location = '<?php echo($nsResizeUrl); ?>';"> ! <!-- Visible framesets --> ! <frameset cols="*,130" frameborder="0" border="0" framespacing="0"> ! <frameset rows="*,50" frameborder="0" border="0" framespacing="0"> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="messages" frameborder="0" border="0" framespacing="0" marginwidth="3" marginheight="3" /> ! <frame src="<?php echo(_CHAT_PATH); ?>input.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="input" frameborder="0" border="0" framespacing="0" marginwidth=0 marginheight=0 scrolling="no" noresize="noresize" /> </frameset> + <frameset rows="80,*,50" frameborder="0" border="0" framespacing="0"> + <frame src="<?php echo(_CHAT_PATH); ?>exit.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="exit" frameborder="0" border="0" framespacing="0" marginwidth=3 marginheight=3 scrolling="no" /> + <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="users" frameborder="0" border="0" framespacing="0" marginwidth=3 marginheight=3 /> + <frame src="<?php echo(_CHAT_PATH); ?>link.php3" name="link" frameborder="0" border="0" framespacing="0" marginwidth=0 marginheight=0 scrolling="no" /> + </frameset> + </frameset> ! <!-- Hidden frame for the input work when something has been sent --> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="handle_input" frameborder="0" border="0" framespacing="0" marginheight="0" marginwidth="0" scrolling="no" /> ! <!-- Hidden frame for the loader --> ! <frame src="<?php echo(_CHAT_PATH); ?>blank.htm" name="loader" frameborder="0" border="0" framespacing="0" marginheight="0" marginwidth="0" scrolling="no" /> ! </frameset> <?php } // end of the 'DHTML enabled' case *************** *** 79,93 **** { ?> ! <frameset cols="*,130" frameborder="0" border="0" framespacing="0" onResize="if (typeof(document.layers) != 'undefined') window.location = '<?php echo($nsResizeUrl); ?>';"> ! <frameset rows="*,50" border=0> ! <frame src="<?php echo(_CHAT_PATH); ?>messages_low.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="messages" marginwidth=3 marginheight=3 /> ! <frame src="<?php echo(_CHAT_PATH); ?>input.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="input" marginwidth=0 marginheight=0 scrolling="no" noresize="noresize" /> ! </frameset> ! <frameset rows="80,*,50" border=0> ! <frame src="<?php echo(_CHAT_PATH); ?>exit.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="exit" marginwidth=3 marginheight=3 scrolling="no" /> ! <frame src="<?php echo(_CHAT_PATH); ?>users_low.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="users" marginwidth=3 marginheight=3 /> ! <frame src="<?php echo(_CHAT_PATH); ?>link.php3" name="link" marginwidth=0 marginheight=0 scrolling="no" /> ! </frameset> </frameset> <?php } // end of the 'DHTML not-enabled' case --- 79,93 ---- { ?> ! <frameset cols="*,130" frameborder="0" border="0" framespacing="0" onResize="if (typeof(document.layers) != 'undefined') window.location = '<?php echo($nsResizeUrl); ?>';"> ! <frameset rows="*,50" border=0> ! <frame src="<?php echo(_CHAT_PATH); ?>messages_low.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="messages" marginwidth=3 marginheight=3 /> ! <frame src="<?php echo(_CHAT_PATH); ?>input.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="input" marginwidth=0 marginheight=0 scrolling="no" noresize="noresize" /> ! </frameset> ! <frameset rows="80,*,50" border=0> ! <frame src="<?php echo(_CHAT_PATH); ?>exit.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="exit" marginwidth=3 marginheight=3 scrolling="no" /> ! <frame src="<?php echo(_CHAT_PATH); ?>users_low.<?php echo(C_EXTENSION . '?' . dbSessionSID('GET')); ?>" name="users" marginwidth=3 marginheight=3 /> ! <frame src="<?php echo(_CHAT_PATH); ?>link.php3" name="link" marginwidth=0 marginheight=0 scrolling="no" /> </frameset> + </frameset> <?php } // end of the 'DHTML not-enabled' case |