[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xorg-sgml-doctools: Changes to 'upstream-unstable'



 README       |    4 +++-
 configure.ac |    2 +-
 defs.ent     |    4 ++--
 xorg.xsl     |   35 +++++++++++++++++++++++++++++++++++
 4 files changed, 41 insertions(+), 4 deletions(-)

New commits:
commit 70a4707cd1114e6caa99f2b7787bc949f34cae3a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Dec 18 20:52:53 2010 -0800

    xorg-sgml-doctools 1.6
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/configure.ac b/configure.ac
index 8c5e347..9e84999 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.60])
 AC_INIT(xorg-sgml-doctools,
-	[1.5.99.901],
+	[1.6],
 	[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 	xorg-sgml-doctools)
 AM_INIT_AUTOMAKE([foreign dist-bzip2])

commit 8dea4c3be11e03b940040d7372b378a563d2bffb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Dec 18 20:51:57 2010 -0800

    Set defs.ent values for 7.6 final release
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/defs.ent b/defs.ent
index cbd6b5c..22fdccc 100644
--- a/defs.ent
+++ b/defs.ent
@@ -14,7 +14,7 @@
 <!ENTITY nextfullreldate "2011">
 
 <!ENTITY whichfullrel 	 "seventh">
-<!ENTITY rcnum 		 "1">
+<!ENTITY rcnum 		 "0">
 
 <!-- These should be set according to which snapshot/release this is -->
 <!ENTITY % firstsnap 'IGNORE'>

commit 66ce9d160e29c7e492a1d605b4a4a33dc21de1cb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Dec 17 14:09:00 2010 -0800

    Add Arphic PL fonts for Chinese characters in PDF/PS output
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/xorg.xsl b/xorg.xsl
index 3f7ca37..5ab03c9 100644
--- a/xorg.xsl
+++ b/xorg.xsl
@@ -72,7 +72,7 @@ DEALINGS IN THE SOFTWARE.
      http://xmlgraphics.apache.org/fop/1.0/fonts.html#basics
     -->
   <xsl:param name="body.font.family">DejaVu Serif</xsl:param>
-  <xsl:param name="symbol.font.family">serif,Symbol,GNU Unifont</xsl:param>
+  <xsl:param name="symbol.font.family">serif,Symbol,AR PL UMing CN,AR PL ShanHeiSun Uni,GNU Unifont</xsl:param>
 
 
 </xsl:stylesheet>

commit 4d23111ed99f7dd61b988eadcd4a9abfd9242570
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Dec 17 00:01:12 2010 -0800

    Change the release month to December
    
    I must relucantly admit that it is not actually the 47th day of November now.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/defs.ent b/defs.ent
index 864a5bf..cbd6b5c 100644
--- a/defs.ent
+++ b/defs.ent
@@ -4,7 +4,7 @@
 <!-- since we don't do micro (7.x.y) releases of the katamari, *relvers
 	are now the same as *fullrelvers -->
 <!ENTITY majorvers 	 "7">
-<!ENTITY reldate 	 "November 2010">
+<!ENTITY reldate 	 "December 2010">
 <!ENTITY relvers 	 "7.6">
 <!ENTITY fullrelvers 	 "7.6">
 <!ENTITY prevrelvers 	 "7.5">

commit f05de020479281ad9abcf42655aacbd5a32f9b13
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Dec 16 14:52:04 2010 -0800

    Add fop font settings to xorg.xsl to support a wider range of glyphs
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

diff --git a/xorg.xsl b/xorg.xsl
index d3b0612..3f7ca37 100644
--- a/xorg.xsl
+++ b/xorg.xsl
@@ -58,4 +58,21 @@ DEALINGS IN THE SOFTWARE.
     <xsl:attribute name="color">blue</xsl:attribute>
   </xsl:attribute-set>
 
+  <!--
+     Since a number of documents, especially the credits section in the
+     ReleaseNotes, use characters not found in the fop default base-14
+     PostScript fonts, set the fonts for the fop generated documents to
+     use the free DejaVu and GNU Unifont fonts which cover a much wider
+     range of characters.
+
+     DejaVu is available from http://dejavu-fonts.org/
+     GNU Unifont is available from http://unifoundry.com/unifont.html
+
+     To set fop font paths to find them after installing, see
+     http://xmlgraphics.apache.org/fop/1.0/fonts.html#basics
+    -->
+  <xsl:param name="body.font.family">DejaVu Serif</xsl:param>
+  <xsl:param name="symbol.font.family">serif,Symbol,GNU Unifont</xsl:param>
+
+
 </xsl:stylesheet>

commit 25eb7e73fd7bb0c9a47f946867c67eed74fea68f
Author: Matt Dew <matt@osource.org>
Date:   Sat Dec 11 18:54:45 2010 -0500

    Add support for PDF bookmarks in the xorg stylesheet
    
    PDF files can optionally include an active table of contents
    that is displayed alongside the pages in the PDF viewer.
    These references are called bookmarks.
    
    PDF bookmarks are generated using special functions in each
    XSL-FO processor because XSL cannot produce them directly.
    
    Bookmarks will be automatically produced when used with DocBook XSL
    stylesheets version 1.70.0 or later
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/xorg.xsl b/xorg.xsl
index cf6c649..d3b0612 100644
--- a/xorg.xsl
+++ b/xorg.xsl
@@ -41,6 +41,10 @@ DEALINGS IN THE SOFTWARE.
   <!-- Index links should point to indexterm location, not start of section -->
   <xsl:param name="index.links.to.section" select="0"/>
 
+  <!-- PDF bookmarks extensions for FOP version 0.90 and later will be used. -->
+  <xsl:param name="fop.extensions" select="0"></xsl:param>
+  <xsl:param name="fop1.extensions" select="1"></xsl:param>
+
   <!--
      Speed up ps & pdf creation by not creating pages with "draft" image,
      thus not needing to wait for http fetch of draft.png from docbook website.

commit 6c172515b6bdeb7620082f7bb25e149967403885
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Dec 7 19:50:15 2010 -0800

    Make links in pdf output blue so it's easier to tell they're links.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>

diff --git a/xorg.xsl b/xorg.xsl
index 6184b4e..cf6c649 100644
--- a/xorg.xsl
+++ b/xorg.xsl
@@ -46,4 +46,12 @@ DEALINGS IN THE SOFTWARE.
      thus not needing to wait for http fetch of draft.png from docbook website.
     -->
   <xsl:param name="draft.mode" select="no"/>
+
+  <!--
+     Make links in pdf output blue so it's easier to tell they're links.
+    -->
+  <xsl:attribute-set name="xref.properties">
+    <xsl:attribute name="color">blue</xsl:attribute>
+  </xsl:attribute-set>
+
 </xsl:stylesheet>

commit 176afb0397e5c3bf0c5c1967cec65e1d017fc87c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 28 20:09:11 2010 -0800

    Speed up ps/pdf output by not trying to fetch draft.png from web
    
    Force draft mode to "no" instead of default of "maybe" as discussed in
    various posts in http://sources.redhat.com/ml/docbook-apps archives.
    
    For those of us building behind firewalls, shaves approx. 3 minutes off
    document creation for each set of documents by not waiting for download
    of the draft.png watermark image from the docbook website to time out.
    
    Also gets rid of these errors from xmlto:
    
    Nov 28, 2010 8:10:04 PM org.apache.fop.apps.FOURIResolver resolve
    SEVERE: Error with opening URL 'http://docbook.sourceforge.net/release/images/draft.png': Connection timed out
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Adam Jackson <ajax@redhat.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

diff --git a/xorg.xsl b/xorg.xsl
index 0adcdf1..6184b4e 100644
--- a/xorg.xsl
+++ b/xorg.xsl
@@ -40,4 +40,10 @@ DEALINGS IN THE SOFTWARE.
 
   <!-- Index links should point to indexterm location, not start of section -->
   <xsl:param name="index.links.to.section" select="0"/>
+
+  <!--
+     Speed up ps & pdf creation by not creating pages with "draft" image,
+     thus not needing to wait for http fetch of draft.png from docbook website.
+    -->
+  <xsl:param name="draft.mode" select="no"/>
 </xsl:stylesheet>

commit 8c4f0ad1f49448940d12430b664045ae6c52f892
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Nov 11 17:15:49 2010 -0800

    Update README to cover using xorg.css directly in installed docs
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/README b/README
index c456853..5d60900 100644
--- a/README
+++ b/README
@@ -1,7 +1,9 @@
 This package provides a common set of SGML entities and XML/CSS style
 sheets used in building/formatting the documentation provided in other
 X.Org packages.   It's typically only needed by people building from
-source who want to produce formatted documentation from their builds.
+source who want to produce formatted documentation from their builds,
+or those who have installed the HTML version of the documentation,
+which refers to the included common xorg.css stylesheet.
 
 All questions regarding this software should be directed at the
 Xorg mailing list:


Reply to: