Update of /cvsroot/babeldoc/www.babeldoc.com/html
In directory sc8-pr-cvs1:/tmp/cvs-serv8399/html
Modified Files:
index.html sidebar.html
Added Files:
dtree.css
Log Message:
Lots of changes to the website - now with nice menu
--- NEW FILE: dtree.css ---
(This appears to be a binary file; contents omitted.)
Index: index.html
===================================================================
RCS file: /cvsroot/babeldoc/www.babeldoc.com/html/index.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** index.html 9 Aug 2003 15:36:26 -0000 1.2
--- index.html 12 Aug 2003 01:54:45 -0000 1.3
***************
*** 6,15 ****
<meta name="keywords" content="babeldoc xml xsl jython javascript velocity pipeline eai b2b webmethods java universal document enterprise incredible yomamma">
</head>
! <frameset rows="90%,10%" frameborder="0">
! <frameset cols="233,70%" frameborder="0">
! <frame scrolling="no" src="sidebar.html" name="sidebar"/>
! <frame src="main.html" name="main"/>
! </frameset>
! <frame src="bottom.html" name="bottom"/>
! </frameset>
</html>
--- 6,12 ----
<meta name="keywords" content="babeldoc xml xsl jython javascript velocity pipeline eai b2b webmethods java universal document enterprise incredible yomamma">
</head>
! <body>
! <iframe frameborder="0" width="200" height="100%" name="sidebar" src="sidebar.html" ></iframe>
! <iframe frameborder="0" width="700" height="100%" name="main" src="main.html" ></iframe>
! </body>
</html>
Index: sidebar.html
===================================================================
RCS file: /cvsroot/babeldoc/www.babeldoc.com/html/sidebar.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** sidebar.html 9 Aug 2003 15:36:26 -0000 1.2
--- sidebar.html 12 Aug 2003 01:54:45 -0000 1.3
***************
*** 5,22 ****
<TITLE>babeldoc: Universal Document Processor</TITLE>
<link href="site.css" rel="stylesheet" media="screen">
</HEAD>
<BODY>
! <table width="126" border="0" cellspacing="2" cellpadding="2">
! <tr height="30"> <td height="30"></td> </tr>
! <tr> <td bgcolor="orange">NAVIGATE</td> </tr>
! <tr> <td bgcolor="#d3d3d3"><a href="main.html" target="main">home</a></td> </tr>
! <tr> <td bgcolor="#d3d3d3"><a href="about.html" target="main">about</a></td> </tr>
! <tr> <td bgcolor="#d3d3d3"><a href="docs.html" target="main">documentation</a></td> </tr>
! <tr> <td bgcolor="#d3d3d3"><a href="http://sourceforge.net/project/showfiles.php?group_id=56976" target="main">download</a></td> </tr>
! <tr> <td bgcolor="#d3d3d3"><a href="development" target="main">browse</a></td> </tr>
! <tr> <td valign="bottom" bgcolor="#d3d3d3"><A href="http://sourceforge.net" target="main"> <IMG src="http://sourceforge.net/sflogo.php?group_id=53779&type=5" width="210" height="62" border="0" alt="SourceForge Logo"></A></td> </tr>
! <tr> <td align="center" valign="middle" bgcolor="#d3d3d3"><strong>bruce at triphop dot org</strong></td> </tr>
! <tr> <td><img src="images/pipelines.png" alt="" width="216" height="221" border="0"></td> </tr>
! </table>
</BODY>
</HTML>
--- 5,36 ----
<TITLE>babeldoc: Universal Document Processor</TITLE>
<link href="site.css" rel="stylesheet" media="screen">
+ <link rel="StyleSheet" href="dtree.css" type="text/css" />
+ <script type="text/javascript" src="js/dtree.js"></script>
</HEAD>
<BODY>
! <img src="images/pipelines.png" border="0"></td> </tr>
! <br/>
! <div class="dtree">
! <script type="text/javascript">
! <!--
!
! d = new dTree('d');
!
! d.add(0,-1,'Babeldoc');
! d.add(1,0,'Main','main.html', 'main', 'main');
! d.add(2,0,'About','about.html', 'about', 'main');
! d.add(3,0,'Documentation');
! d.add(4,3,'User Guide','development/readme/userguide.xml.html','userguide', 'main');
! d.add(5,3,'Developers Guide','development/readme/devguide.xml.html','devguide', 'main');
! d.add(6,3,'API','development/build/javadoc','api', 'main');
! d.add(7,3,'Whitepaper','development/readme/babeldoc-whitepaper.pdf','whitepaper', 'main');
! d.add(8,3,'Usages','development/readme/usage-whitepaper.pdf','usage', 'main');
! d.add(9,0,'Download','http://sourceforge.net/project/showfiles.php?group_id=56976','download', 'main');
! d.add(10,0,'Browse','development','browse', 'main');
!
! document.write(d);
! //-->
! </script>
! </div>
</BODY>
</HTML>
|