Use PNG instead of GIF; add WWWOWN and WWWGRP variables to the Makefile;

add a shortcut icon.
This commit is contained in:
Dag-Erling Smørgrav 2003-08-01 07:55:13 +00:00
parent 378c1e90c3
commit 20b0471597
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118298
5 changed files with 6 additions and 3 deletions

View File

@ -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 <bsd.prog.mk>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -86,6 +86,7 @@ MAIN:{
<meta name=\"robots\" content=\"nofollow\" />
<meta http-equiv=\"refresh\" content=\"600\" />
<link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"tb.css\" />
<link rel=\"shortcut icon\" type=\"image/png\" href=\"daemon.png\" />
</head>
<body>
<h1>FreeBSD tinderbox logs</h1>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 B