[Dda-cvs] htdocs index.php,1.6,1.7
Status: Beta
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2006-07-08 16:08:08
|
Update of /cvsroot/dda/htdocs In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv18439 Modified Files: index.php Log Message: Rewrote index.php page to allow dynamic generation of dda web pages, with modularity. Index: index.php =================================================================== RCS file: /cvsroot/dda/htdocs/index.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** index.php 21 Apr 2006 12:05:56 -0000 1.6 --- index.php 8 Jul 2006 16:08:04 -0000 1.7 *************** *** 1,10 **** ! <?php ! header("Location: http://dda.sourceforge.net/index.htm"); ! exit; ! ?> ! <html> ! <head> ! </head> ! <body> ! If you have not been automatically redirected, you should click <a href="http://dda.sourceforge.net/index.htm/"> http://dda.sourceforge.net/index.htm </body> ! </html> \ No newline at end of file --- 1,89 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml"> ! <head> ! ! <?php ! include("header.php"); ! ?> ! ! <title> ! Discontinuous Deformation Analysis ! </title> ! ! </head> ! <body> ! <table border="1" width="100%" id="AutoNumber1" cellpadding="10"> ! <tr> ! <td width="17%" bgcolor="#CCCCFF"> ! <img border="0" src="Images/DDA1.gif" width="200" ! alt="DDA Analyses" height="150" /> ! </td> ! ! <td width="76%" bgcolor="#CCCCFF"> ! <p class="c2"> ! <span class="c1">Discontinuous Deformation ! Analysis</span> ! </p> ! </td> ! ! </tr> ! ! <tr> ! ! <td width="17%" valign="top" bgcolor="#CCCCFF"> ! <?php ! include("menu.php"); ! ?> ! </td> ! ! ! <td width="78%"> ! <h2>What is DDA?</h2> ! ! <p class="c10"> ! <?php ! include("whatisdda.txt"); ! ?> ! </p> ! ! ! <h2 class="c11">Using DDA</h2> ! ! <p class="c10"> ! <?php ! include("usingdda.txt"); ! ?> ! </p> ! ! <!-- TODO: Move this to a file, use php include ! to allow other things to get swapped out. ! --> ! ! <p class="c2" dir="ltr"> ! <img border="0" src="Images/cableu.jpg" width="240" ! height="316" /><img border="0" src= ! "Images/cablew.jpg" width="240" height="315" /> ! </p> ! <p class="c2" dir="ltr"> ! (a) ! (b) ! </p> ! <p class="c2"> ! Axial load along the cable bolt that installed at ! roof of<br /> ! underground excavation: (a) without plate and (b) ! with plate (<a class="c12" href= ! "Pages/References_Page.htm#Moosavi">M. Moosavi, R. ! Grayeli</a>)<b>.</b> ! </p> ! <p class="c2" dir="ltr"> ! ! </p> ! </td> ! </tr> ! ! ! </table> ! </body> ! </html> |