Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jun 2001 12:19:32 -0700
From:      Murray Stokely <murray@FreeBSD.org>
To:        freebsd-doc@FreeBSD.org
Subject:   PGP keys in Handbook
Message-ID:  <20010629121932.C87852@meow.osd.bsdi.com>

next in thread | raw e-mail | index | archive | help
  PGP keys are taking up about 50 pages of the printed handbook.  I
think this is great information for the HTML version, but I think that
fingerprints would be sufficient for our PostScript output.  I've made
a change localy that adds a role="pgpkey" attribute to the
<programlisting> tags that close the actual key, and then a vanilla
<programlisting> to enclose the fingerprints.  I've then added a
handler to frebsd.dsl that ignores this tag if the role=pgpkey only in
the print stylesheets.

  Are there any objections to me committing this?

http://people.freebsd.org/~murray/patches/
  freebsd.dsl.diff
  pgpkeys.diff

	- Murray

Index: freebsd.dsl
===================================================================
RCS file: /home/ncvs/doc/share/sgml/freebsd.dsl,v
retrieving revision 1.34
diff -u -r1.34 freebsd.dsl
--- freebsd.dsl	2001/06/24 02:46:40	1.34
+++ freebsd.dsl	2001/06/29 19:02:52
@@ -200,6 +200,13 @@
               3
               1))
  
+        (element programlisting
+          (if (equal? (attribute-string (normalize "role")) "pgpkey")
+            (empty-sosofo)
+            ($verbatim-display$
+		 %indent-programlisting-lines%
+		 %number-programlisting-lines%)))
+
         (define %body-start-indent% 
           0pi)
 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010629121932.C87852>