From 7e280bd7573ddfe4702be6717f1cd144e567ffa0 Mon Sep 17 00:00:00 2001 From: des Date: Fri, 1 Aug 2003 07:55:13 +0000 Subject: Use PNG instead of GIF; add WWWOWN and WWWGRP variables to the Makefile; add a shortcut icon. --- tools/tools/tinderbox/www/Makefile | 8 +++++--- tools/tools/tinderbox/www/daemon.png | Bin 0 -> 6319 bytes tools/tools/tinderbox/www/index.cgi | 1 + tools/tools/tinderbox/www/valid-css.gif | Bin 1547 -> 0 bytes tools/tools/tinderbox/www/valid-css.png | Bin 0 -> 949 bytes 5 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 tools/tools/tinderbox/www/daemon.png delete mode 100644 tools/tools/tinderbox/www/valid-css.gif create mode 100644 tools/tools/tinderbox/www/valid-css.png (limited to 'tools') diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile index ca9d4e8..7487909 100644 --- a/tools/tools/tinderbox/www/Makefile +++ b/tools/tools/tinderbox/www/Makefile @@ -1,13 +1,15 @@ # $FreeBSD$ CGI = index.cgi -DATA = tb.css valid-css.gif valid-xhtml10.png +DATA = tb.css daemon.png valid-css.png valid-xhtml10.png WWWDIR ?= ${HOME}/public_html +WWWOWN ?= ${USER} +WWWGRP ?= ${USER} realinstall: - ${INSTALL} -m 0755 ${.CURDIR}/${CGI} ${WWWDIR} + ${INSTALL} -m0755 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${CGI} ${WWWDIR} .for FILE in ${DATA} - ${INSTALL} -m 0644 ${.CURDIR}/${FILE} ${WWWDIR} + ${INSTALL} -m0644 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${FILE} ${WWWDIR} .endfor .include diff --git a/tools/tools/tinderbox/www/daemon.png b/tools/tools/tinderbox/www/daemon.png new file mode 100644 index 0000000..01f32b8 Binary files /dev/null and b/tools/tools/tinderbox/www/daemon.png differ diff --git a/tools/tools/tinderbox/www/index.cgi b/tools/tools/tinderbox/www/index.cgi index 6f1e38c..170f831 100644 --- a/tools/tools/tinderbox/www/index.cgi +++ b/tools/tools/tinderbox/www/index.cgi @@ -86,6 +86,7 @@ MAIN:{ +

FreeBSD tinderbox logs

diff --git a/tools/tools/tinderbox/www/valid-css.gif b/tools/tools/tinderbox/www/valid-css.gif deleted file mode 100644 index 020c75a..0000000 Binary files a/tools/tools/tinderbox/www/valid-css.gif and /dev/null differ diff --git a/tools/tools/tinderbox/www/valid-css.png b/tools/tools/tinderbox/www/valid-css.png new file mode 100644 index 0000000..23f2161 Binary files /dev/null and b/tools/tools/tinderbox/www/valid-css.png differ -- cgit v1.1