PR: www/142437 Patch the website so that "Errata Notices" are available the same way as "Security Advisories": - RSS feed - Link from the frontpage - Own subpage - Available via navigation menu Initially suggested by: Jason Helfman (jhelfman ett e-e dott com) Patch provided by: John Baldwin (jhb@)
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# $FreeBSD: www/en/security/Makefile,v 1.17 2008/06/20 20:03:28 danger Exp $
 | 
						|
 | 
						|
.if exists(../Makefile.conf)
 | 
						|
.include "../Makefile.conf"
 | 
						|
.endif
 | 
						|
.if exists(../Makefile.inc)
 | 
						|
.include "../Makefile.inc"
 | 
						|
.endif
 | 
						|
 | 
						|
DATA=	so_public_key.asc
 | 
						|
DOCS=	charter.sgml
 | 
						|
DOCS+=	security.sgml
 | 
						|
DOCS+=	advisories.sgml
 | 
						|
DOCS+=  notices.sgml
 | 
						|
 | 
						|
advisories.sgml: advisories.html.inc
 | 
						|
 | 
						|
notices.sgml: notices.html.inc
 | 
						|
 | 
						|
INDEXLINK=	security.html
 | 
						|
 | 
						|
DEPENDSET.DEFAULT=	advisories
 | 
						|
DEPENDSET.errata-rss=	notices
 | 
						|
DEPENDSET.notices=	notices
 | 
						|
XML.DEFAULT=		${XML_ADVISORIES}
 | 
						|
 | 
						|
XMLDOCS=	advisories:mkindex.xsl::advisories.html.inc
 | 
						|
PARAMS.advisories=	--param type "'advisory'"
 | 
						|
NO_DATA.advisories=	yes
 | 
						|
NO_TIDY.advisories=	yes
 | 
						|
 | 
						|
XMLDOCS+=	notices:mkindex.xsl::notices.html.inc
 | 
						|
PARAMS.notices=		--param advisories.xml "'${XML_NOTICES}'"
 | 
						|
PARAMS.notices+=	--param type "'notice'"
 | 
						|
NO_DATA.notices=	yes
 | 
						|
NO_TIDY.notices=	yes
 | 
						|
 | 
						|
XMLDOCS+=	advisories-rdf:security-rdf.xsl::advisories.rdf
 | 
						|
XMLDOCS+=	advisories-rss:security-rss.xsl::rss.xml
 | 
						|
XMLDOCS+=	errata-rss:errata-rss.xsl::errata.xml
 | 
						|
 | 
						|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
 |