View | Details | Raw Unified | Return to bug 192812
Collapse All | Expand All

(-)textproc/website/Makefile (-55 / +28 lines)
Lines 2-76 Link Here
2
# $FreeBSD: head/textproc/website/Makefile 340722 2014-01-22 17:00:46Z mat $
2
# $FreeBSD: head/textproc/website/Makefile 340722 2014-01-22 17:00:46Z mat $
3
3
4
PORTNAME=	website
4
PORTNAME=	website
5
PORTVERSION=	2.5.0
5
PORTVERSION=	2.6.0
6
PORTREVISION=	1
7
CATEGORIES=	textproc www
6
CATEGORIES=	textproc www
8
MASTER_SITES=	SF/docbook/OldFiles
7
MASTER_SITES=	SF/docbook/${PORTNAME}/${PORTVERSION}
8
DISTNAME=	docbook-${PORTNAME}-${PORTVERSION}
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	Doctype and stylesheets for making websites
11
COMMENT=	Doctype and stylesheets for making websites
12
12
13
RUN_DEPENDS=	${LOCALBASE}/share/xsl/docbook/catalog:${PORTSDIR}/textproc/docbook-xsl
13
LICENSE=	MIT
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
RUN_DEPENDS=	docbook-xsl>0:${PORTSDIR}/textproc/docbook-xsl
17
18
NO_ARCH=	yes
19
NO_BUILD=	yes
20
21
USES=		tar:bzip2
22
23
SUB_FILES=	pkg-deinstall pkg-install
24
SUB_LIST=	XMLCATMGR="${XMLCATMGR}" \
25
		CATALOG_PORTS_XML="${CATALOG_PORTS}" \
26
		INSTDIR="${INSTDIR}"
27
28
OPTIONS_DEFINE=	EXAMPLES
14
29
15
XMLDIR=		${LOCALBASE}/share/xml
30
XMLDIR=		${LOCALBASE}/share/xml
16
INSTDIR=	share/xsl/website
31
INSTDIR=	share/xsl/website
17
PINSTDIR=	${PREFIX}/${INSTDIR}
32
PINSTDIR=	${PREFIX}/${INSTDIR}
18
COPYDIRS=	extensions schema tests xsl
33
COPYDIRS=	extensions schema xsl
19
34
20
PKGINSTALL=	${WRKSRC}/pkg-install
21
PKGDEINSTALL=	${WRKSRC}/pkg-deinstall
22
23
NO_BUILD=	yes
24
XMLCATMGR=	${LOCALBASE}/bin/xmlcatmgr
35
XMLCATMGR=	${LOCALBASE}/bin/xmlcatmgr
25
CATALOG_PORTS=	${XMLDIR}/catalog.ports
36
CATALOG_PORTS=	${XMLDIR}/catalog.ports
26
CATALOG_XSL=	${WRKSRC}/catalog
27
28
DXVERSIONS=	current 2.2 2.3 2.4.0 2.4.1 2.5.0
29
30
NO_STAGE=	yes
31
post-extract:
32
	${FIND} ${WRKSRC} -name '.#*' -delete
33
37
34
do-install:
38
do-install:
35
.ifndef NOPORTDOCS
39
	@${MKDIR} ${STAGEDIR}${PINSTDIR}
36
	${MKDIR} ${EXAMPLESDIR}
40
.for i in VERSION catalog
37
	(cd ${WRKSRC}/example && ${TAR} -cf - . |\
41
	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${PINSTDIR})
38
		${TAR} -xf - -C${EXAMPLESDIR})
42
.endfor
39
.endif
43
.for i in ${COPYDIRS}
40
	${XMLCATMGR} -c "${CATALOG_XSL}" create
44
	@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${i} ${STAGEDIR}${PINSTDIR})
41
.for dxversion in ${DXVERSIONS}
42
	${XMLCATMGR} -c "${CATALOG_XSL}" add rewriteSystem \
43
		http://docbook.sourceforge.net/release/website/${dxversion}/xsl \
44
		"file://${PREFIX}/${INSTDIR}/xsl"
45
	${XMLCATMGR} -c "${CATALOG_XSL}" add rewriteURI \
46
		http://docbook.sourceforge.net/release/website/${dxversion}/xsl \
47
		"file://${PREFIX}/${INSTDIR}/xsl"
48
	${XMLCATMGR} -c "${CATALOG_XSL}" add rewriteSystem \
49
		http://docbook.sourceforge.net/release/website/${dxversion}/schema/dtd \
50
		"file://${PREFIX}/${INSTDIR}/schema/dtd"
51
	${XMLCATMGR} -c "${CATALOG_XSL}" add rewriteURI \
52
		http://docbook.sourceforge.net/release/website/${dxversion}/schema/dtd \
53
		"file://${PREFIX}/${INSTDIR}/schema/dtd"
54
	${XMLCATMGR} -c "${CATALOG_XSL}" add rewriteSystem \
55
		http://docbook.sourceforge.net/release/website/${dxversion} \
56
		"file://${PREFIX}/${INSTDIR}/schema/dtd"
57
	${XMLCATMGR} -c "${CATALOG_XSL}" add rewriteURI \
58
		http://docbook.sourceforge.net/release/website/${dxversion} \
59
		"file://${PREFIX}/${INSTDIR}/schema/dtd"
60
.endfor
45
.endfor
61
	${MKDIR} ${PINSTDIR}
46
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
62
	(cd ${WRKSRC} && ${TAR} -cf - VERSION catalog ${COPYDIRS} |\
47
	@(cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
63
		${TAR} -xf - -C${PINSTDIR})
64
65
post-install:
66
	@${SED} -e 's,@INSTDIR@,${INSTDIR},g ; \
67
			s,@XMLCATMGR@,${XMLCATMGR},g ; \
68
			s,@CATALOG_PORTS_XML@,${CATALOG_PORTS},g' \
69
			< ${FILESDIR}/pkg-install.in > ${PKGINSTALL}
70
	@${SED} -e 's,@XMLCATMGR@,${XMLCATMGR},g ; \
71
			s,@CATALOG_PORTS_XML@,${CATALOG_PORTS},g' \
72
			< ${FILESDIR}/pkg-deinstall.in > ${PKGDEINSTALL}
73
	@${SETENV} PKG_PREFIX=${PREFIX} \
74
			${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
75
48
76
.include <bsd.port.mk>
49
.include <bsd.port.mk>
(-)textproc/website/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (website-2.5.0.tar.gz) = e36a30dce6be08ca274846f7e4a2f5ff1c395af0a31996c9a316665485308b0d
1
SHA256 (docbook-website-2.6.0.tar.bz2) = 0e8da409d557c72dccc709b59579665fe2089bc8840e30b1162d4ad81e825804
2
SIZE (website-2.5.0.tar.gz) = 135313
2
SIZE (docbook-website-2.6.0.tar.bz2) = 172118
(-)textproc/website/files/pkg-deinstall.in (-2 / +2 lines)
Lines 2-9 Link Here
2
# This script will remove the website entries added to xml catalog.
2
# This script will remove the website entries added to xml catalog.
3
# -- Rui Lopes <rui@ruilopes.com>
3
# -- Rui Lopes <rui@ruilopes.com>
4
4
5
XMLCATMGR=@XMLCATMGR@
5
XMLCATMGR=%%XMLCATMGR%%
6
CATALOG_PORTS_XML=@CATALOG_PORTS_XML@
6
CATALOG_PORTS_XML=%%CATALOG_PORTS_XML%%
7
7
8
if [ "$2" != "POST-DEINSTALL" ]; then
8
if [ "$2" != "POST-DEINSTALL" ]; then
9
	exit 0
9
	exit 0
(-)textproc/website/files/pkg-install.in (-3 / +3 lines)
Lines 9-17 Link Here
9
#
9
#
10
# -- Rui Lopes <rui@ruilopes.com>
10
# -- Rui Lopes <rui@ruilopes.com>
11
11
12
XMLCATMGR=@XMLCATMGR@
12
XMLCATMGR=%%XMLCATMGR%%
13
CATALOG_PORTS_XML=@CATALOG_PORTS_XML@
13
CATALOG_PORTS_XML=%%CATALOG_PORTS_XML%%
14
XSL_DIR=${PKG_PREFIX}/@INSTDIR@
14
XSL_DIR=${PKG_PREFIX}/%%INSTDIR%%
15
CATALOG_XSL=${XSL_DIR}/catalog
15
CATALOG_XSL=${XSL_DIR}/catalog
16
16
17
if [ "$2" != "POST-INSTALL" ]; then
17
if [ "$2" != "POST-INSTALL" ]; then
(-)textproc/website/pkg-plist (-158 / +189 lines)
Lines 1-124 Link Here
1
%%PORTDOCS%%%%EXAMPLESDIR%%/.tabular
1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ChangeLog
2
%%PORTDOCS%%%%EXAMPLESDIR%%/.textonly
2
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile-example.txt
3
%%PORTDOCS%%%%EXAMPLESDIR%%/ChangeLog
3
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/about.html
4
%%PORTDOCS%%%%EXAMPLESDIR%%/about.html
4
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/about.xml
5
%%PORTDOCS%%%%EXAMPLESDIR%%/about.xml
5
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/autolayout.xml
6
%%PORTDOCS%%%%EXAMPLESDIR%%/autolayout.xml
6
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bookmark/ChangeLog
7
%%PORTDOCS%%%%EXAMPLESDIR%%/bookmark/ChangeLog
7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bookmark/bookmark.xml
8
%%PORTDOCS%%%%EXAMPLESDIR%%/bookmark/bookmark.xml
8
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bookmark/catalog
9
%%PORTDOCS%%%%EXAMPLESDIR%%/bookmark/catalog
9
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bookmark/xml.dcl
10
%%PORTDOCS%%%%EXAMPLESDIR%%/bookmark/xml.dcl
10
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/build-ext.xml
11
%%PORTDOCS%%%%EXAMPLESDIR%%/build-ext.xml
11
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/build-make.xml
12
%%PORTDOCS%%%%EXAMPLESDIR%%/build-make.xml
12
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/build-nontab.xml
13
%%PORTDOCS%%%%EXAMPLESDIR%%/build-textonly.xml
13
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/build.xml
14
%%PORTDOCS%%%%EXAMPLESDIR%%/build.xml
14
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/buildext.html
15
%%PORTDOCS%%%%EXAMPLESDIR%%/buildext.html
15
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/building.html
16
%%PORTDOCS%%%%EXAMPLESDIR%%/building.html
16
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/building.xml
17
%%PORTDOCS%%%%EXAMPLESDIR%%/building.xml
17
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/buildmake.html
18
%%PORTDOCS%%%%EXAMPLESDIR%%/buildmake.html
18
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/catalog.xml
19
%%PORTDOCS%%%%EXAMPLESDIR%%/catalog.xml
19
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom.html
20
%%PORTDOCS%%%%EXAMPLESDIR%%/custom.html
20
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/custom.xml
21
%%PORTDOCS%%%%EXAMPLESDIR%%/custom.xml
21
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/depends.nontabular
22
%%PORTDOCS%%%%EXAMPLESDIR%%/dynxbel.js
22
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/depends.tabular
23
%%PORTDOCS%%%%EXAMPLESDIR%%/example.css
23
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynxbel.js
24
%%PORTDOCS%%%%EXAMPLESDIR%%/formtest.html
24
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.css
25
%%PORTDOCS%%%%EXAMPLESDIR%%/full.html
25
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formtest.html
26
%%PORTDOCS%%%%EXAMPLESDIR%%/full.xml
26
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/full.html
27
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/.xvpics/spacer.png
27
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/full.xml
28
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/ChangeLog
28
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/ChangeLog
29
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/arrow.gif
29
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/arrow.gif
30
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/banner.png
30
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/banner.png
31
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/blank.gif
31
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/blank.gif
32
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/homebanner.png
32
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/homebanner.png
33
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/icons/ChangeLog
33
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/icons/ChangeLog
34
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/icons/iconat.gif
34
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/icons/iconat.gif
35
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/icons/iconhome.gif
35
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/icons/iconhome.gif
36
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/icons/iconsmallrightarrow.gif
36
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/icons/iconsmallrightarrow.gif
37
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/ChangeLog
37
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/ChangeLog
38
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/added.gif
38
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/added.gif
39
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/changed.gif
39
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/changed.gif
40
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/ChangeLog
40
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/ChangeLog
41
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/leaf.gif
41
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/leaf.gif
42
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/open.gif
42
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/open.gif
43
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/pointer.gif
43
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/current/pointer.gif
44
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/ChangeLog
44
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/ChangeLog
45
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/closed.gif
45
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/closed.gif
46
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/leaf.gif
46
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/leaf.gif
47
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/open.gif
47
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/arrow/other/open.gif
48
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/ChangeLog
48
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/ChangeLog
49
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/added.gif
49
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/added.gif
50
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/changed.gif
50
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/changed.gif
51
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/ChangeLog
51
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/ChangeLog
52
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/leaf.gif
52
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/leaf.gif
53
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/open.gif
53
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/open.gif
54
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/pointer.gif
54
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/current/pointer.gif
55
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/ChangeLog
55
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/ChangeLog
56
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/closed.gif
56
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/closed.gif
57
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/leaf.gif
57
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/leaf.gif
58
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/open.gif
58
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder/other/open.gif
59
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/ChangeLog
59
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/ChangeLog
60
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/added.gif
60
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/added.gif
61
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/changed.gif
61
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/changed.gif
62
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/ChangeLog
62
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/ChangeLog
63
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/leaf.gif
63
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/leaf.gif
64
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/open.gif
64
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/open.gif
65
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/pointer.gif
65
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/current/pointer.gif
66
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/ChangeLog
66
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/ChangeLog
67
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/closed.gif
67
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/closed.gif
68
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/leaf.gif
68
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/leaf.gif
69
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/open.gif
69
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/folder16/other/open.gif
70
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/ChangeLog
70
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/ChangeLog
71
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/added.gif
71
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/added.gif
72
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/changed.gif
72
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/changed.gif
73
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/ChangeLog
73
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/ChangeLog
74
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/leaf.gif
74
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/leaf.gif
75
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/open.gif
75
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/open.gif
76
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/pointer.gif
76
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/current/pointer.gif
77
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/ChangeLog
77
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/ChangeLog
78
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/closed.gif
78
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/closed.gif
79
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/leaf.gif
79
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/leaf.gif
80
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/open.gif
80
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/plusminus/other/open.gif
81
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/ChangeLog
81
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/ChangeLog
82
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/added.gif
82
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/added.gif
83
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/changed.gif
83
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/changed.gif
84
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/ChangeLog
84
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/ChangeLog
85
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/leaf.gif
85
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/leaf.gif
86
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/open.gif
86
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/open.gif
87
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/pointer.gif
87
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/current/pointer.gif
88
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/ChangeLog
88
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/ChangeLog
89
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/closed.gif
89
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/closed.gif
90
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/leaf.gif
90
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/leaf.gif
91
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/open.gif
91
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/navicons/triangle/other/open.gif
92
%%PORTDOCS%%%%EXAMPLESDIR%%/graphics/spacer.gif
92
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/note.gif
93
%%PORTDOCS%%%%EXAMPLESDIR%%/index.html
93
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/note.png
94
%%PORTDOCS%%%%EXAMPLESDIR%%/layout.html
94
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/note.svg
95
%%PORTDOCS%%%%EXAMPLESDIR%%/layout.xml
95
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/note.tif
96
%%PORTDOCS%%%%EXAMPLESDIR%%/linking.html
96
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphics/spacer.gif
97
%%PORTDOCS%%%%EXAMPLESDIR%%/olink.xml
97
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/index.html
98
%%PORTDOCS%%%%EXAMPLESDIR%%/param.xml
98
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/layout.html
99
%%PORTDOCS%%%%EXAMPLESDIR%%/php.html
99
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/layout.xml
100
%%PORTDOCS%%%%EXAMPLESDIR%%/php.xml
100
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/linking.html
101
%%PORTDOCS%%%%EXAMPLESDIR%%/rddl.html
101
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-about.html
102
%%PORTDOCS%%%%EXAMPLESDIR%%/rddl.xml
102
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-buildext.html
103
%%PORTDOCS%%%%EXAMPLESDIR%%/revflag.html
103
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-building.html
104
%%PORTDOCS%%%%EXAMPLESDIR%%/revflag.xml
104
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-buildmake.html
105
%%PORTDOCS%%%%EXAMPLESDIR%%/rss.html
105
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-custom.html
106
%%PORTDOCS%%%%EXAMPLESDIR%%/rss.xml
106
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-formtest.html
107
%%PORTDOCS%%%%EXAMPLESDIR%%/subdir/ChangeLog
107
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-full.html
108
%%PORTDOCS%%%%EXAMPLESDIR%%/subdir/test1a.html
108
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-index.html
109
%%PORTDOCS%%%%EXAMPLESDIR%%/subdir/test1b.html
109
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-layout.html
110
%%PORTDOCS%%%%EXAMPLESDIR%%/subdir/txttest1a.html
110
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-linking.html
111
%%PORTDOCS%%%%EXAMPLESDIR%%/subdir/txttest1b.html
111
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-nontab.html
112
%%PORTDOCS%%%%EXAMPLESDIR%%/test1.html
112
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-php.html
113
%%PORTDOCS%%%%EXAMPLESDIR%%/test1.xml
113
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-rddl.html
114
%%PORTDOCS%%%%EXAMPLESDIR%%/test1a.xml
114
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-revflag.html
115
%%PORTDOCS%%%%EXAMPLESDIR%%/test1b.xml
115
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-rss.html
116
%%PORTDOCS%%%%EXAMPLESDIR%%/test2.xml
116
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-test1.html
117
%%PORTDOCS%%%%EXAMPLESDIR%%/test3.html
117
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-test3.html
118
%%PORTDOCS%%%%EXAMPLESDIR%%/test3.xml
118
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nontab.html
119
%%PORTDOCS%%%%EXAMPLESDIR%%/textonly.html
119
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/olink.xml
120
%%PORTDOCS%%%%EXAMPLESDIR%%/website.xml
120
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/param.xml
121
%%PORTDOCS%%%%EXAMPLESDIR%%/wslayout.xml
121
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/php.html
122
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/php.xml
123
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rddl.html
124
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rddl.xml
125
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/revflag.html
126
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/revflag.xml
127
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rss.html
128
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rss.xml
129
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/subdir/.cvskeepemptydir
130
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/subdir/ChangeLog
131
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/subdir/n-test1a.html
132
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/subdir/n-test1b.html
133
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/subdir/test1a.html
134
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/subdir/test1b.html
135
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test1.html
136
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test1.xml
137
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test1a.xml
138
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test1b.xml
139
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2.xml
140
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test3.html
141
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test3.xml
142
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/website.database.xml
143
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/website.xml
144
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wslayout.xml
122
share/xsl/website/VERSION
145
share/xsl/website/VERSION
123
share/xsl/website/catalog
146
share/xsl/website/catalog
124
share/xsl/website/extensions/ChangeLog
147
share/xsl/website/extensions/ChangeLog
Lines 126-137 Link Here
126
share/xsl/website/extensions/saxon64/ChangeLog
149
share/xsl/website/extensions/saxon64/ChangeLog
127
share/xsl/website/extensions/saxon64/com/nwalsh/saxon/ChangeLog
150
share/xsl/website/extensions/saxon64/com/nwalsh/saxon/ChangeLog
128
share/xsl/website/extensions/saxon64/com/nwalsh/saxon/Website.java
151
share/xsl/website/extensions/saxon64/com/nwalsh/saxon/Website.java
129
share/xsl/website/extensions/saxon64/prj.el
130
share/xsl/website/extensions/xalan2.jar
152
share/xsl/website/extensions/xalan2.jar
131
share/xsl/website/extensions/xalan2/ChangeLog
153
share/xsl/website/extensions/xalan2/ChangeLog
132
share/xsl/website/extensions/xalan2/com/nwalsh/xalan/ChangeLog
154
share/xsl/website/extensions/xalan2/com/nwalsh/xalan/ChangeLog
133
share/xsl/website/extensions/xalan2/com/nwalsh/xalan/Website.java
155
share/xsl/website/extensions/xalan2/com/nwalsh/xalan/Website.java
134
share/xsl/website/extensions/xalan2/prj.el
135
share/xsl/website/schema/ChangeLog
156
share/xsl/website/schema/ChangeLog
136
share/xsl/website/schema/dtd/ChangeLog
157
share/xsl/website/schema/dtd/ChangeLog
137
share/xsl/website/schema/dtd/autolayout.dtd
158
share/xsl/website/schema/dtd/autolayout.dtd
Lines 145-166 Link Here
145
share/xsl/website/schema/dtd/website.dtd
166
share/xsl/website/schema/dtd/website.dtd
146
share/xsl/website/schema/dtd/website.mod
167
share/xsl/website/schema/dtd/website.mod
147
share/xsl/website/schema/relaxng/ChangeLog
168
share/xsl/website/schema/relaxng/ChangeLog
169
share/xsl/website/schema/relaxng/autolayout.rnc
148
share/xsl/website/schema/relaxng/autolayout.rng
170
share/xsl/website/schema/relaxng/autolayout.rng
149
share/xsl/website/schema/relaxng/config.xml
171
share/xsl/website/schema/relaxng/calstblx.rnc
150
share/xsl/website/schema/relaxng/extensions.rng
172
share/xsl/website/schema/relaxng/calstblx.rng
151
share/xsl/website/schema/relaxng/forms.rng
173
share/xsl/website/schema/relaxng/dbhierx.mod.rnc
174
share/xsl/website/schema/relaxng/dbhierx.mod.rng
175
share/xsl/website/schema/relaxng/dbpoolx.mod.rnc
176
share/xsl/website/schema/relaxng/dbpoolx.mod.rng
177
share/xsl/website/schema/relaxng/docbookx.rnc
178
share/xsl/website/schema/relaxng/docbookx.rng
179
share/xsl/website/schema/relaxng/extensions.mod.rnc
180
share/xsl/website/schema/relaxng/extensions.mod.rng
181
share/xsl/website/schema/relaxng/forms.mod.rnc
182
share/xsl/website/schema/relaxng/forms.mod.rng
183
share/xsl/website/schema/relaxng/htmltblx.mod.rnc
184
share/xsl/website/schema/relaxng/htmltblx.mod.rng
185
share/xsl/website/schema/relaxng/layout.rnc
152
share/xsl/website/schema/relaxng/layout.rng
186
share/xsl/website/schema/relaxng/layout.rng
153
share/xsl/website/schema/relaxng/rddl.rng
187
share/xsl/website/schema/relaxng/namespaces.mod.rnc
154
share/xsl/website/schema/relaxng/union.xml
188
share/xsl/website/schema/relaxng/namespaces.mod.rng
189
share/xsl/website/schema/relaxng/rddl.mod.rnc
190
share/xsl/website/schema/relaxng/rddl.mod.rng
191
share/xsl/website/schema/relaxng/website-full.rnc
155
share/xsl/website/schema/relaxng/website-full.rng
192
share/xsl/website/schema/relaxng/website-full.rng
193
share/xsl/website/schema/relaxng/website.mod.rnc
194
share/xsl/website/schema/relaxng/website.mod.rng
195
share/xsl/website/schema/relaxng/website.rnc
156
share/xsl/website/schema/relaxng/website.rng
196
share/xsl/website/schema/relaxng/website.rng
157
share/xsl/website/schema/relaxng/websitedb.rng
158
share/xsl/website/tests/ChangeLog
159
share/xsl/website/tests/test.xml
160
share/xsl/website/tests/testcust.xml
161
share/xsl/website/tests/testfull.xml
162
share/xsl/website/xsl/ChangeLog
197
share/xsl/website/xsl/ChangeLog
163
share/xsl/website/xsl/VERSION
164
share/xsl/website/xsl/autolayout.xsl
198
share/xsl/website/xsl/autolayout.xsl
165
share/xsl/website/xsl/chunk-common.xsl
199
share/xsl/website/xsl/chunk-common.xsl
166
share/xsl/website/xsl/chunk-tabular.xsl
200
share/xsl/website/xsl/chunk-tabular.xsl
Lines 178-184 Link Here
178
share/xsl/website/xsl/website.xsl
212
share/xsl/website/xsl/website.xsl
179
share/xsl/website/xsl/xbel.xsl
213
share/xsl/website/xsl/xbel.xsl
180
@dirrm share/xsl/website/xsl
214
@dirrm share/xsl/website/xsl
181
@dirrm share/xsl/website/tests
182
@dirrm share/xsl/website/schema/relaxng
215
@dirrm share/xsl/website/schema/relaxng
183
@dirrm share/xsl/website/schema/dtd
216
@dirrm share/xsl/website/schema/dtd
184
@dirrm share/xsl/website/schema
217
@dirrm share/xsl/website/schema
Lines 192-217 Link Here
192
@dirrm share/xsl/website/extensions/saxon64
225
@dirrm share/xsl/website/extensions/saxon64
193
@dirrm share/xsl/website/extensions
226
@dirrm share/xsl/website/extensions
194
@dirrm share/xsl/website
227
@dirrm share/xsl/website
195
@dirrmtry share/xsl
228
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/subdir
196
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/subdir
229
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/triangle/other
197
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/triangle/other
230
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/triangle/current
198
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/triangle/current
231
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/triangle
199
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/triangle
232
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/plusminus/other
200
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/plusminus/other
233
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/plusminus/current
201
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/plusminus/current
234
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/plusminus
202
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/plusminus
235
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder16/other
203
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder16/other
236
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder16/current
204
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder16/current
237
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder16
205
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder16
238
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder/other
206
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder/other
239
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder/current
207
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder/current
240
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder
208
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/folder
241
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/arrow/other
209
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/arrow/other
242
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/arrow/current
210
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/arrow/current
243
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/arrow
211
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons/arrow
244
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/navicons
212
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/navicons
245
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics/icons
213
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/icons
246
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/graphics
214
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics/.xvpics
247
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/bookmark
215
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/graphics
248
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
216
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/bookmark
217
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%

Return to bug 192812