[Jarspy-commits] CVS: JarSpy-htdocs contributors.php,1.5,1.6 features.php,1.5,1.6 index.php,1.1,1.2
Status: Beta
Brought to you by:
brown_j
From: Jeff B. <br...@us...> - 2005-01-12 02:27:52
|
Update of /cvsroot/jarspy/JarSpy-htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3385 Modified Files: contributors.php features.php index.php intellijPlugin.php license.php main-screen-shot.php Log Message: added bbclone Index: contributors.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/contributors.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** contributors.php 12 Jan 2005 01:52:10 -0000 1.5 --- contributors.php 12 Jan 2005 02:27:40 -0000 1.6 *************** *** 20,23 **** --- 20,29 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Contributors"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> </html> Index: features.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/features.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** features.php 12 Jan 2005 01:52:10 -0000 1.5 --- features.php 12 Jan 2005 02:27:40 -0000 1.6 *************** *** 69,72 **** --- 69,78 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Features"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> Index: index.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 12 Jan 2005 01:52:10 -0000 1.1 --- index.php 12 Jan 2005 02:27:40 -0000 1.2 *************** *** 30,33 **** --- 30,39 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Home"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> </html> Index: intellijPlugin.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/intellijPlugin.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** intellijPlugin.php 12 Jan 2005 01:52:10 -0000 1.12 --- intellijPlugin.php 12 Jan 2005 02:27:40 -0000 1.13 *************** *** 34,37 **** --- 34,43 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "IntelliJ"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> Index: license.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/license.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** license.php 12 Jan 2005 01:52:10 -0000 1.4 --- license.php 12 Jan 2005 02:27:40 -0000 1.5 *************** *** 369,372 **** --- 369,378 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "License"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> Index: main-screen-shot.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/main-screen-shot.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main-screen-shot.php 12 Jan 2005 01:52:10 -0000 1.5 --- main-screen-shot.php 12 Jan 2005 02:27:40 -0000 1.6 *************** *** 65,68 **** --- 65,74 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "ScreenShots"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> |