From: Joe Z. <jz...@us...> - 2003-04-24 06:16:07
|
Update of /cvsroot/bobs/bobs/inc/templates In directory sc8-pr-cvs1:/tmp/cvs-serv31230/bobs/inc/templates Modified Files: Makefile.am Makefile.in Added Files: systemcheck.thtml Log Message: Created a page to check bobs configuration: systemcheck.php --- NEW FILE: systemcheck.thtml --- <!-- systemcheck.thtml - Template for system check output --> <center><h1>{TITLE}</h1></center> <table align="center" border="1"> <!-- BEGIN DYNAMIC BLOCK: itempass --> <tr> <td>{ITEM}</td> <td><font color="green">{STATUS}</font></td> </tr> <!-- END DYNAMIC BLOCK: itempass --> <!-- BEGIN DYNAMIC BLOCK: itemfail --> <tr> <td>{ITEM}</td> <td><font color="red">{STATUS}</font></td> </tr> <!-- END DYNAMIC BLOCK: itemfail --> <!-- BEGIN DYNAMIC BLOCK: help --> <tr> <td colspan="2">{HELP}</td> </tr> <!-- END DYNAMIC BLOCK: help --> <!-- BEGIN DYNAMIC BLOCK: endtable --> </table> <!-- END DYNAMIC BLOCK: endtable --> Index: Makefile.am =================================================================== RCS file: /cvsroot/bobs/bobs/inc/templates/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 5 Feb 2003 02:05:24 -0000 1.3 +++ Makefile.am 24 Apr 2003 06:15:59 -0000 1.4 @@ -1,6 +1,6 @@ htmldir = $(myWEBDIR)/inc/templates -dist_html_DATA = $(wildcard *.php *.sh) +dist_html_DATA = $(wildcard *.php *.sh *.thtml) ## END Index: Makefile.in =================================================================== RCS file: /cvsroot/bobs/bobs/inc/templates/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.in 20 Apr 2003 08:02:56 -0000 1.3 +++ Makefile.in 24 Apr 2003 06:15:59 -0000 1.4 @@ -81,11 +81,13 @@ myPASS = @myPASS@ myWEBDIR = @myWEBDIR@ myrealBOBSDATA = @myrealBOBSDATA@ +myrealCRONDIR = @myrealCRONDIR@ +myrealCRONTABDIR = @myrealCRONTABDIR@ myrealWEBDIR = @myrealWEBDIR@ htmldir = $(myWEBDIR)/inc/templates -dist_html_DATA = $(wildcard *.php *.sh) +dist_html_DATA = $(wildcard *.php *.sh *.thtml) subdir = inc/templates mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_CLEAN_FILES = |