svn commit: r44788 - in head/share: misc xml

Glen Barber gjb at FreeBSD.org
Wed May 7 18:57:41 UTC 2014


Author: gjb
Date: Wed May  7 18:57:40 2014
New Revision: 44788
URL: http://svnweb.freebsd.org/changeset/doc/44788

Log:
  Add a few elements to the db.common.attributes definition:
   - vendorurl
   - sponsor
   - sponsorurl
   - contrib
  
  This will allow attribution for sponsored or contributed
  work on FreeBSD in the release notes.
  
  This is a prerequisite to additional upcoming changes.
  
  While here, modify docbook.css to recognize a new 'contrib'
  <span> class.
  
  Also, set FreeBSD=%H on docbook50.dtd to allow the commit
  to go through.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/misc/docbook.css
  head/share/xml/docbook50.dtd

Modified: head/share/misc/docbook.css
==============================================================================
--- head/share/misc/docbook.css	Wed May  7 18:25:53 2014	(r44787)
+++ head/share/misc/docbook.css	Wed May  7 18:57:40 2014	(r44788)
@@ -394,3 +394,8 @@ pre.screen strong {
 	line-height: 1.2;
 	margin: 0 0 0 -1em;
 }
+
+span.contrib {
+	font-size: small;
+	font-style: italic;
+}

Modified: head/share/xml/docbook50.dtd
==============================================================================
--- head/share/xml/docbook50.dtd	Wed May  7 18:25:53 2014	(r44787)
+++ head/share/xml/docbook50.dtd	Wed May  7 18:57:40 2014	(r44788)
@@ -1,3 +1,6 @@
+<!--
+     $FreeBSD$
+-->
 <!ELEMENT xi:include (xi:fallback?)>
 
 <!ATTLIST xi:include
@@ -35,10 +38,14 @@
 	security	CDATA	#IMPLIED
 	userlevel	CDATA	#IMPLIED
 	vendor	CDATA	#IMPLIED
+	vendorurl	CDATA	#IMPLIED
 	wordsize	CDATA	#IMPLIED
 	annotations	CDATA	#IMPLIED
 	edition		CDATA	#IMPLIED
 	releasetype	CDATA	#IMPLIED
+	sponsor		CDATA	#IMPLIED
+	sponsorurl	CDATA	#IMPLIED
+	contrib		(sponsor|vendor|off)	#IMPLIED
 ">
 
 <!ENTITY % db.common.linking.attributes "


More information about the svn-doc-head mailing list