View | Details | Raw Unified | Return to bug 254750 | Differences between
and this patch

Collapse All | Expand All

(-)b/www/Makefile (-2 lines)
Lines 2293-2300 Link Here
2293
    SUBDIR += xfce4-smartbookmark-plugin
2293
    SUBDIR += xfce4-smartbookmark-plugin
2294
    SUBDIR += xist
2294
    SUBDIR += xist
2295
    SUBDIR += xoops
2295
    SUBDIR += xoops
2296
    SUBDIR += xshttpd
2297
    SUBDIR += xshttpd-devel
2298
    SUBDIR += xsp
2296
    SUBDIR += xsp
2299
    SUBDIR += yabb
2297
    SUBDIR += yabb
2300
    SUBDIR += yanopaste
2298
    SUBDIR += yanopaste
(-)a/www/xshttpd-devel/Makefile (-64 lines)
Removed Link Here
1
# Created by: Ed Schouten <ed@fxq.nl>
2
3
PORTNAME=	xshttpd
4
DISTVERSION=	3.7b35
5
CATEGORIES=	www
6
MASTER_SITES=	ftp://ftp.stack.nl/pub/xs-httpd/release/ \
7
		ftp://mud.stack.nl/pub/xs-httpd/release/
8
PKGNAMESUFFIX=	-devel
9
DISTNAME=	${PORTNAME}-${DISTVERSION:S/.//}
10
11
MAINTAINER=	ports@FreeBSD.org
12
COMMENT=	Webserver with CGI as own user and SSL support
13
14
RUN_DEPENDS=	run-mailcap:misc/mime-support
15
LIB_DEPENDS=	libpcre.so:devel/pcre
16
17
CONFLICTS_INSTALL=	xshttpd-[0-9]* publicfile-[0-9]*
18
19
USES=		ssl tar:bzip2
20
USE_RC_SUBR=	xshttpd
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--enable-hier=bsd --with-userid=${WWWOWN}:${WWWGRP}
23
24
OPTIONS_DEFINE=		BDB CURL LDAP M4 NETPBM PERL DOCS
25
OPTIONS_DEFAULT=	BDB CURL M4 NETPBM
26
OPTIONS_SUB=		yes
27
BDB_USES=		bdb:5+
28
BDB_CONFIGURE_ON=	--with-db-libdir=${BDB_LIB_DIR} \
29
			--with-db-include-dir=${BDB_INCLUDE_DIR}
30
BDB_CONFIGURE_WITH=	db
31
CURL_LIB_DEPENDS=	libcurl.so:ftp/curl
32
CURL_CONFIGURE_WITH=	curl
33
LDAP_USE=		openldap
34
LDAP_CONFIGURE_WITH=	ldap
35
M4_DESC=		Enable configuration preprocessor (m4)
36
M4_CONFIGURE_WITH=	preprocessor
37
NETPBM_DESC=		Enable NETPBM (for graphical counters)
38
NETPBM_RUN_DEPENDS=	ppmtogif:graphics/netpbm
39
PERL_DESC=		Enable persistent Perl interpreter
40
PERL_USES=		perl5
41
PERL_CONFIGURE_WITH=	perl
42
43
PORTDOCS=	README ChangeLog
44
45
post-patch:
46
	@${REINPLACE_CMD} \
47
		-e 's|\(MIME_TYPES\).*|\1 "${LOCALBASE}/etc/mime.types"|' \
48
		${WRKSRC}/src/constants.h
49
	@${REINPLACE_CMD} -e 's|^struct socket_config|extern &|' \
50
		${WRKSRC}/src/htconfig.h
51
	@${REINPLACE_CMD} -e 's|mime.types ||g' \
52
		${WRKSRC}/config/Makefile.in
53
	@${REINPLACE_CMD} -e '/libdir/ s|(INSTALL_DATA)|& -s|' \
54
		${WRKSRC}/src/Makefile.in
55
	@${REINPLACE_CMD} -e 's/$$(htmldir)/$$(DESTDIR)&/' \
56
		${WRKSRC}/contrib/Makefile.in
57
58
post-install:
59
	@${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${WWWDIR}/htdocs \
60
		${STAGEDIR}/var/log/xshttpd \
61
		${STAGEDIR}/var/db/xshttpd/sessions
62
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
63
64
.include <bsd.port.mk>
(-)a/www/xshttpd-devel/distinfo (-2 lines)
Removed Link Here
1
SHA256 (xshttpd-37b35.tar.bz2) = 2ac7806c856c0fe3920cb2972ac95e657c0dbd53bb0b2bc52c16ef8e6d1abba6
2
SIZE (xshttpd-37b35.tar.bz2) = 293636
(-)a/www/xshttpd-devel/files/patch-src_extra.c (-34 lines)
Removed Link Here
1
--- src/extra.c.orig	2015-01-02 16:49:11 UTC
2
+++ src/extra.c
3
@@ -586,7 +586,7 @@ do_crypt(const char * const skey, const char * const i
4
 	const unsigned int	IVLEN = 16;
5
 	int		outlen,
6
 			tmplen;
7
-	EVP_CIPHER_CTX	ctx;
8
+	EVP_CIPHER_CTX	*ctx;
9
 	unsigned char	plain[16] = { 0 };
10
 	unsigned char	outbuf[1024];
11
 	char		*encrypted;
12
@@ -600,17 +600,17 @@ do_crypt(const char * const skey, const char * const i
13
 	}
14
 
15
 	/* init aes-128-cbc */
16
-	EVP_CIPHER_CTX_init(&ctx);
17
-	EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key, outbuf /* iv */);
18
+	ctx = EVP_CIPHER_CTX_new();
19
+	EVP_EncryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, outbuf /* iv */);
20
 
21
-	if (!EVP_EncryptUpdate(&ctx, outbuf + outlen, &tmplen,
22
+	if (!EVP_EncryptUpdate(ctx, outbuf + outlen, &tmplen,
23
 				plain, sizeof(plain)))
24
 		return false;
25
 	outlen += tmplen;
26
-	if (!EVP_EncryptFinal_ex(&ctx, outbuf + outlen, &tmplen))
27
+	if (!EVP_EncryptFinal_ex(ctx, outbuf + outlen, &tmplen))
28
 		return false;
29
 	outlen += tmplen;
30
-	EVP_CIPHER_CTX_cleanup(&ctx);
31
+	EVP_CIPHER_CTX_free(ctx);
32
 
33
 	MALLOC(encrypted, char, outlen);
34
 	memcpy(encrypted, outbuf, outlen);
(-)a/www/xshttpd-devel/files/patch-src_httpd.c (-10 lines)
Removed Link Here
1
--- src/httpd.c.orig	2015-09-05 20:44:28 UTC
2
+++ src/httpd.c
3
@@ -84,6 +84,7 @@ static	char	referer[MYBUFSIZ], orig[MYBUFSIZ];
4
 static	char	*startparams, *message503;
5
 struct	session		session;
6
 struct	env		env;
7
+struct	socket_config	*cursock;
8
 
9
 /* Prototypes */
10
 
(-)a/www/xshttpd-devel/files/patch-src_ssl.c (-32 lines)
Removed Link Here
1
--- src/ssl.c.orig	2015-09-05 20:50:21 UTC
2
+++ src/ssl.c
3
@@ -538,7 +538,11 @@ sslverify_callback(int preverify_ok, X509_STORE_CTX *x
4
 	X509_NAME	*xsname;
5
 	char		*strname;
6
 	int		rc, ovector[OVSIZE];
7
+# if OPENSSL_VERSION_NUMBER < 0x10100005L
8
 	X509		*xs = x509_ctx->cert;
9
+# else
10
+	X509		*xs = X509_STORE_CTX_get0_cert(x509_ctx);
11
+# endif
12
 
13
 	/* match subject */
14
 	if (cursock->sslpcresdn)
15
@@ -937,11 +941,12 @@ loadssl(struct socket_config * const lsock, struct ssl
16
 			unsigned char	sign[EVP_PKEY_size(evpkey)];
17
 			unsigned int	siglen = 0;
18
 
19
-			EVP_MD_CTX mdctx;
20
-			EVP_MD_CTX_init(&mdctx);
21
-			EVP_SignInit(&mdctx, EVP_sha384());
22
-			EVP_SignUpdate(&mdctx, ticketkey, strlen(ticketkey));
23
-			EVP_SignFinal(&mdctx, sign, &siglen, evpkey);
24
+			EVP_MD_CTX *mdctx;
25
+			mdctx = EVP_MD_CTX_create();
26
+			EVP_SignInit(mdctx, EVP_sha384());
27
+			EVP_SignUpdate(mdctx, ticketkey, strlen(ticketkey));
28
+			EVP_SignFinal(mdctx, sign, &siglen, evpkey);
29
+			EVP_MD_CTX_destroy(mdctx);
30
 
31
 			/* The first 48 bytes are used:
32
 			 * - 16 bytes ticket key name
(-)a/www/xshttpd-devel/files/xshttpd.in (-28 lines)
Removed Link Here
1
#!/bin/sh
2
3
# PROVIDE: xshttpd
4
# REQUIRE: NETWORKING SERVERS
5
# BEFORE: DAEMON
6
# KEYWORD: shutdown
7
8
#
9
# Add the following line to /etc/rc.conf to enable XS-HTTPD:
10
# xshttpd_enable (bool):	Set to "NO" by default.
11
#				Set it to "YES" to enable XS-HTTPD.
12
#
13
14
. /etc/rc.subr
15
16
name="xshttpd"
17
rcvar=xshttpd_enable
18
19
load_rc_config $name
20
21
: ${xshttpd_enable="NO"}
22
23
pidfile="/var/run/xshttpd.pid"
24
command="%%PREFIX%%/bin/httpd"
25
stop_cmd="%%PREFIX%%/bin/httpdc kill"
26
restart_cmd="%%PREFIX%%/bin/httpdc restart"
27
28
run_rc_command "$1"
(-)a/www/xshttpd-devel/pkg-descr (-9 lines)
Removed Link Here
1
This port offers the development branch of the XS-HTTPD webserver.
2
The stable version of XS-HTTPD is available as well, as www/xshttpd.
3
4
Development releases are updated much more often and will contain
5
all kinds of nice new features - some of them are even documented.
6
7
Read the ChangeLog file for possible issues with backwards compatibility.
8
9
WWW: http://www.stack.nl/xs-httpd/
(-)a/www/xshttpd-devel/pkg-plist (-94 lines)
Removed Link Here
1
bin/clearxs
2
bin/httpd
3
bin/httpdc
4
bin/readxs
5
bin/xsindex
6
bin/xspasswd
7
%%WWWDIR%%/cgi-bin/error
8
%%WWWDIR%%/cgi-bin/gfxcount
9
%%WWWDIR%%/cgi-bin/imagemap
10
%%WWWDIR%%/cgi-bin/xschpass
11
%%ETCDIR%%/httpd.conf.sample
12
%%ETCDIR%%/mime.index
13
%%ETCDIR%%/script.methods.sample
14
%%ETCDIR%%/compress.methods.sample
15
%%DATADIR%%/contrib/SSL-Makefile
16
%%DATADIR%%/contrib/agentstats.pl
17
%%DATADIR%%/contrib/caroot.pem
18
%%DATADIR%%/contrib/logrotate.sh
19
%%DATADIR%%/contrib/persistent.pl
20
%%DATADIR%%/contrib/powered-by-xs.gif
21
%%DATADIR%%/contrib/wwwstats.pl
22
%%DATADIR%%/gfxcount/digital0.ppm
23
%%DATADIR%%/gfxcount/digital1.ppm
24
%%DATADIR%%/gfxcount/digital2.ppm
25
%%DATADIR%%/gfxcount/digital3.ppm
26
%%DATADIR%%/gfxcount/digital4.ppm
27
%%DATADIR%%/gfxcount/digital5.ppm
28
%%DATADIR%%/gfxcount/digital6.ppm
29
%%DATADIR%%/gfxcount/digital7.ppm
30
%%DATADIR%%/gfxcount/digital8.ppm
31
%%DATADIR%%/gfxcount/digital9.ppm
32
%%DATADIR%%/gfxcount/large0.ppm
33
%%DATADIR%%/gfxcount/large1.ppm
34
%%DATADIR%%/gfxcount/large2.ppm
35
%%DATADIR%%/gfxcount/large3.ppm
36
%%DATADIR%%/gfxcount/large4.ppm
37
%%DATADIR%%/gfxcount/large5.ppm
38
%%DATADIR%%/gfxcount/large6.ppm
39
%%DATADIR%%/gfxcount/large7.ppm
40
%%DATADIR%%/gfxcount/large8.ppm
41
%%DATADIR%%/gfxcount/large9.ppm
42
%%DATADIR%%/gfxcount/largecol0.ppm
43
%%DATADIR%%/gfxcount/largecol1.ppm
44
%%DATADIR%%/gfxcount/largecol2.ppm
45
%%DATADIR%%/gfxcount/largecol3.ppm
46
%%DATADIR%%/gfxcount/largecol4.ppm
47
%%DATADIR%%/gfxcount/largecol5.ppm
48
%%DATADIR%%/gfxcount/largecol6.ppm
49
%%DATADIR%%/gfxcount/largecol7.ppm
50
%%DATADIR%%/gfxcount/largecol8.ppm
51
%%DATADIR%%/gfxcount/largecol9.ppm
52
%%DATADIR%%/icons/xs-audio.gif
53
%%DATADIR%%/icons/xs-back.gif
54
%%DATADIR%%/icons/xs-base.gif
55
%%DATADIR%%/icons/xs-bin.gif
56
%%DATADIR%%/icons/xs-dir.gif
57
%%DATADIR%%/icons/xs-gif.gif
58
%%DATADIR%%/icons/xs-html.gif
59
%%DATADIR%%/icons/xs-image.gif
60
%%DATADIR%%/icons/xs-jpeg.gif
61
%%DATADIR%%/icons/xs-ps.gif
62
%%DATADIR%%/icons/xs-tar.gif
63
%%DATADIR%%/icons/xs-txt.gif
64
%%DATADIR%%/icons/xs-unknown.gif
65
%%DATADIR%%/icons/xs-video.gif
66
%%DATADIR%%/icons/xs-zip.gif
67
%%PERL%%libexec/xshttpd/mod_perl.so
68
%%LDAP%%libexec/xshttpd/mod_ldap.so
69
libexec/xshttpd/mod_bzip2.so
70
libexec/xshttpd/mod_compress.so
71
libexec/xshttpd/mod_gzip.so
72
libexec/xshttpd/mod_htcpcp.so
73
libexec/xshttpd/mod_magic.so
74
libexec/xshttpd/mod_rpaf.so
75
man/man1/clearxs.1.gz
76
man/man1/gfxcount.1.gz
77
man/man1/httpd.1.gz
78
man/man1/httpdc.1.gz
79
man/man1/imagemap.1.gz
80
man/man1/readxs.1.gz
81
man/man1/xschpass.1.gz
82
man/man1/xsindex.1.gz
83
man/man1/xspasswd.1.gz
84
man/man5/httpd.conf.5.gz
85
man/man5/xsauth.5.gz
86
man/man5/xsconf.5.gz
87
man/man5/xsredir.5.gz
88
man/man5/xsscripts.5.gz
89
man/man7/httpd_cgi.7.gz
90
man/man7/httpd_ssi.7.gz
91
@dir %%WWWDIR%%/htdocs
92
@dir /var/db/xshttpd/sessions
93
@dir /var/db/xshttpd
94
@dir /var/log/xshttpd
(-)a/www/xshttpd/Makefile (-66 lines)
Removed Link Here
1
# Created by: Ed Schouten <ed@fxq.nl>
2
3
PORTNAME=	xshttpd
4
DISTVERSION=	3.6g01
5
PORTREVISION=	9
6
CATEGORIES=	www
7
MASTER_SITES=	ftp://ftp.stack.nl/pub/xs-httpd/release/ \
8
		ftp://mud.stack.nl/pub/xs-httpd/release/
9
DISTNAME=	${PORTNAME}-${DISTVERSION:S/.//}
10
11
MAINTAINER=	ports@FreeBSD.org
12
COMMENT=	Webserver with CGI as own user and SSL support
13
14
RUN_DEPENDS=	run-mailcap:misc/mime-support \
15
		ppmtogif:graphics/netpbm
16
17
CONFLICTS_INSTALL=	xshttpd-devel-[0-9]* publicfile-[0-9]*
18
19
USES=	tar:bzip2
20
USE_RC_SUBR=	xshttpd
21
GNU_CONFIGURE=	yes
22
23
WWWDIR=		${PREFIX}/www/${PORTNAME}
24
CONFIGURE_ARGS+=--with-rootdir=${WWWDIR}
25
26
OPTIONS_DEFINE=	SSL PCRE LDAP CURL M4_CONFIG PERSISTENT_PERL DOCS
27
OPTIONS_DEFAULT=SSL PCRE
28
SSL_USES=		ssl
29
SSL_CONFIGURE_WITH=	ssl
30
LDAP_USE=		OPENLDAP=yes
31
LDAP_CONFIGURE_WITH=	ldap
32
M4_CONFIG_DESC=	Enable m4 configuration preprocessor
33
M4_CONFIG_CONFIGURE_WITH=preprocessor
34
PERSISTENT_PERL_DESC=	Enable persistent Perl interpreter
35
PERSISTENT_PERL_USES=	perl5
36
PERSISTENT_PERL_CONFIGURE_WITH=	perl
37
PCRE_LIB_DEPENDS=	libpcre.so:devel/pcre
38
PCRE_CONFIGURE_WITH=	pcre
39
CURL_LIB_DEPENDS=	libcurl.so:ftp/curl
40
CURL_CONFIGURE_WITH=	curl
41
42
PORTDOCS=	README ChangeLog
43
44
post-patch:
45
.for i in man/httpd.1.in man/httpd.conf.5 config/httpd.conf.sample \
46
	contrib/SSL-Makefile contrib/logrotate.sh
47
	@${REINPLACE_CMD} \
48
		-e 's|/wwwsys|${WWWDIR}|g' \
49
		-e 's|/usr/local/lib/httpd|${WWWDIR}|g' \
50
		-e 's|nobody|${WWWOWN}|g' \
51
		-e 's|nogroup|${WWWGRP}|g' \
52
		${WRKSRC}/$i
53
.endfor
54
	@${REINPLACE_CMD} \
55
		-e 's|\(MIME_TYPES\).*|\1 "${LOCALBASE}/etc/mime.types"|' \
56
		${WRKSRC}/src/constants.h
57
	@${REINPLACE_CMD} -e 's|^struct socket_config|extern &|' \
58
		${WRKSRC}/src/htconfig.h
59
	@${REINPLACE_CMD} -e 's|mime.types ||g' \
60
		${WRKSRC}/config/Makefile.in
61
62
post-install:
63
	@${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${WWWDIR}/htdocs
64
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
65
66
.include <bsd.port.mk>
(-)a/www/xshttpd/distinfo (-2 lines)
Removed Link Here
1
SHA256 (xshttpd-36g01.tar.bz2) = a21f8c1cf018e1b9195739a63067a245ec273abada89b60a2d1c3fd4cc968dc4
2
SIZE (xshttpd-36g01.tar.bz2) = 241640
(-)a/www/xshttpd/files/patch-src_httpd.c (-11 lines)
Removed Link Here
1
--- src/httpd.c.orig	2009-01-10 22:52:29 UTC
2
+++ src/httpd.c
3
@@ -90,6 +90,8 @@ static	char	referer[MYBUFSIZ], orig[MYBUFSIZ];
4
 static	char	*startparams, *message503;
5
 struct	session		session;
6
 struct	env		env;
7
+struct	socket_config	*cursock;
8
+
9
 #define CLEANENV do { \
10
 	memset(&env, 0, sizeof(struct env));\
11
 	MALLOC(environ, char *, 1);\
(-)a/www/xshttpd/files/patch-src_ssl.c (-14 lines)
Removed Link Here
1
--- src/ssl.c.orig	2009-01-10 22:52:29 UTC
2
+++ src/ssl.c
3
@@ -244,7 +244,11 @@ sslverify_callback(int preverify_ok, X509_STORE_CTX *x
4
 	X509_NAME	*xsname;
5
 	char		*strname;
6
 	int		rc, ovector[OVSIZE];
7
+# if OPENSSL_VERSION_NUMBER < 0x10100005L
8
 	X509		*xs = x509_ctx->cert;
9
+# else
10
+	X509		*xs = X509_STORE_CTX_get0_cert(x509_ctx);
11
+# endif
12
 
13
 	/* match subject */
14
 	if (cursock->sslpcresdn)
(-)a/www/xshttpd/files/xshttpd.in (-28 lines)
Removed Link Here
1
#!/bin/sh
2
3
# PROVIDE: xshttpd
4
# REQUIRE: NETWORKING SERVERS
5
# BEFORE: DAEMON
6
# KEYWORD: shutdown
7
8
#
9
# Add the following line to /etc/rc.conf to enable XS-HTTPD:
10
# xshttpd_enable (bool):	Set to "NO" by default.
11
#				Set it to "YES" to enable XS-HTTPD.
12
#
13
14
. /etc/rc.subr
15
16
name="xshttpd"
17
rcvar=xshttpd_enable
18
19
load_rc_config $name
20
21
: ${xshttpd_enable="NO"}
22
23
pidfile="/var/run/httpd.pid"
24
command="%%PREFIX%%/bin/httpd"
25
stop_cmd="%%PREFIX%%/bin/httpdc kill"
26
restart_cmd="%%PREFIX%%/bin/httpdc restart"
27
28
run_rc_command "$1"
(-)a/www/xshttpd/pkg-descr (-23 lines)
Removed Link Here
1
XS-HTTPD is a WWW server that has the following features:
2
3
- It is pronounced as "access-HTTP-daemon"
4
- It is SMALL (very small in fact: a factor two to three smaller than
5
  normal servers on disk and in memory)
6
- It is FAST (because it is so small and does not do unnecessary things)
7
- Uses very little CPU time
8
- Configurable (configuration compiled in to make it small, but largely
9
  overridable on the command line)
10
- Runs user CGI binaries under their own user ID
11
- Gets users' pages under their own user ID, allowing them to really
12
  have protected pages (using the built-in authentication mechanism)
13
- Does not fork for every connection (has a fixed number of servers),
14
  only to replace a lost server (in case of timeouts).
15
- Comes with some other useful programs
16
- Offers Server-Side Includes for many common tasks, including built-in
17
  page counters (text or graphical)
18
- Supports PHP and other interpreted file formats
19
- Supports automatic decompression to save diskspace and bandwidth
20
- Serves SSL (https) and http connections through the same daemon
21
- Full support for IPv6
22
23
WWW: http://www.stack.nl/xs-httpd/
(-)a/www/xshttpd/pkg-plist (-84 lines)
Removed Link Here
1
bin/clearxs
2
bin/httpd
3
bin/httpdc
4
bin/readxs
5
bin/xsindex
6
bin/xspasswd
7
%%WWWDIR%%/cgi-bin/error
8
%%WWWDIR%%/cgi-bin/gfxcount
9
%%WWWDIR%%/cgi-bin/imagemap
10
%%WWWDIR%%/cgi-bin/xschpass
11
%%WWWDIR%%/conf/httpd.conf.sample
12
%%WWWDIR%%/conf/mime.index
13
%%WWWDIR%%/conf/script.methods.sample
14
%%WWWDIR%%/conf/compress.methods.sample
15
%%WWWDIR%%/contrib/SSL-Makefile
16
%%WWWDIR%%/contrib/agentstats.pl
17
%%WWWDIR%%/contrib/caroot.pem
18
%%WWWDIR%%/contrib/logrotate.sh
19
%%WWWDIR%%/contrib/persistent.pl
20
%%WWWDIR%%/contrib/powered-by-xs.gif
21
%%WWWDIR%%/contrib/wwwstats.pl
22
%%WWWDIR%%/gfxcount/digital0.ppm
23
%%WWWDIR%%/gfxcount/digital1.ppm
24
%%WWWDIR%%/gfxcount/digital2.ppm
25
%%WWWDIR%%/gfxcount/digital3.ppm
26
%%WWWDIR%%/gfxcount/digital4.ppm
27
%%WWWDIR%%/gfxcount/digital5.ppm
28
%%WWWDIR%%/gfxcount/digital6.ppm
29
%%WWWDIR%%/gfxcount/digital7.ppm
30
%%WWWDIR%%/gfxcount/digital8.ppm
31
%%WWWDIR%%/gfxcount/digital9.ppm
32
%%WWWDIR%%/gfxcount/large0.ppm
33
%%WWWDIR%%/gfxcount/large1.ppm
34
%%WWWDIR%%/gfxcount/large2.ppm
35
%%WWWDIR%%/gfxcount/large3.ppm
36
%%WWWDIR%%/gfxcount/large4.ppm
37
%%WWWDIR%%/gfxcount/large5.ppm
38
%%WWWDIR%%/gfxcount/large6.ppm
39
%%WWWDIR%%/gfxcount/large7.ppm
40
%%WWWDIR%%/gfxcount/large8.ppm
41
%%WWWDIR%%/gfxcount/large9.ppm
42
%%WWWDIR%%/gfxcount/largecol0.ppm
43
%%WWWDIR%%/gfxcount/largecol1.ppm
44
%%WWWDIR%%/gfxcount/largecol2.ppm
45
%%WWWDIR%%/gfxcount/largecol3.ppm
46
%%WWWDIR%%/gfxcount/largecol4.ppm
47
%%WWWDIR%%/gfxcount/largecol5.ppm
48
%%WWWDIR%%/gfxcount/largecol6.ppm
49
%%WWWDIR%%/gfxcount/largecol7.ppm
50
%%WWWDIR%%/gfxcount/largecol8.ppm
51
%%WWWDIR%%/gfxcount/largecol9.ppm
52
%%WWWDIR%%/icons/xs-audio.gif
53
%%WWWDIR%%/icons/xs-back.gif
54
%%WWWDIR%%/icons/xs-base.gif
55
%%WWWDIR%%/icons/xs-bin.gif
56
%%WWWDIR%%/icons/xs-dir.gif
57
%%WWWDIR%%/icons/xs-gif.gif
58
%%WWWDIR%%/icons/xs-html.gif
59
%%WWWDIR%%/icons/xs-image.gif
60
%%WWWDIR%%/icons/xs-jpeg.gif
61
%%WWWDIR%%/icons/xs-ps.gif
62
%%WWWDIR%%/icons/xs-tar.gif
63
%%WWWDIR%%/icons/xs-txt.gif
64
%%WWWDIR%%/icons/xs-unknown.gif
65
%%WWWDIR%%/icons/xs-video.gif
66
%%WWWDIR%%/icons/xs-zip.gif
67
man/man1/clearxs.1.gz
68
man/man1/gfxcount.1.gz
69
man/man1/httpd.1.gz
70
man/man1/httpdc.1.gz
71
man/man1/imagemap.1.gz
72
man/man1/readxs.1.gz
73
man/man1/xschpass.1.gz
74
man/man1/xsindex.1.gz
75
man/man1/xspasswd.1.gz
76
man/man5/httpd.conf.5.gz
77
man/man5/xsauth.5.gz
78
man/man5/xsconf.5.gz
79
man/man5/xsredir.5.gz
80
man/man5/xsscripts.5.gz
81
man/man7/httpd_cgi.7.gz
82
man/man7/httpd_ssi.7.gz
83
@dir %%WWWDIR%%/logs
84
@dir %%WWWDIR%%/htdocs

Return to bug 254750