From: <vb...@us...> - 2002-09-08 01:06:44
|
Update of /cvsroot/webnotes/web In directory usw-pr-cvs1:/tmp/cvs-serv11931 Modified Files: header.php side_menu.php Added Files: .cvsignore changelog.php install.php Log Message: - Linked the webnotes web to webnotes to re-use the contents of the doc files. - Added the install and changelog pages. - Added cvs ignore to ignore webnotesweb_config_inc.php which is used to define the path for webnotes. --- NEW FILE: .cvsignore --- webnotesweb_config_inc.php --- NEW FILE: changelog.php --- <?php include('header.php') ?> <span class="page_title">Change Log</span> <hr size="1" noshade="noshade" width="100%"> <pre> <?php include($g_webnotes_path . 'doc/ChangeLog') ?> </pre> <?php include('footer.php') ?> --- NEW FILE: install.php --- <?php include('header.php') ?> <span class="page_title">INSTALL</span> <hr size="1" noshade="noshade" width="100%"> <pre> <?php include($g_webnotes_path . 'doc/Install') ?> </pre> <?php include('footer.php') ?> Index: header.php =================================================================== RCS file: /cvsroot/webnotes/web/header.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- header.php 7 Sep 2002 23:52:30 -0000 1.2 +++ header.php 8 Sep 2002 01:06:41 -0000 1.3 @@ -1,4 +1,13 @@ -<? #countpage( $REQUEST_URI, $REQUEST_URI ); ?> +<?php + #countpage( $REQUEST_URI, $REQUEST_URI ); + + $g_webnotes_path = "webnotes/"; + $g_webnotes_url = "webnotes/"; + + if ( file_exists( dirname(__FILE__) . "/webnotesweb_config_inc.php" ) ) { + require_once ( dirname(__FILE__) . "/webnotesweb_config_inc.php"); + } +?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> Index: side_menu.php =================================================================== RCS file: /cvsroot/webnotes/web/side_menu.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- side_menu.php 7 Sep 2002 23:52:30 -0000 1.4 +++ side_menu.php 8 Sep 2002 01:06:41 -0000 1.5 @@ -20,7 +20,7 @@ <a class="big" href="credits.php">Credits</a><br /> <a href="requirements.php">Requirements</a><br /> <a class="big" href="release.php">Release Notes</a><br /> - <a href="installation.php">Installation</a><br /> + <a href="install.php">Installation</a><br /> <a href="upgrading.php">Upgrading</a><br /> <a href="changelog.php">ChangeLog</a><br /> <a href="links.php">Links</a><br /> |