bison-patches
[Top][All Lists]
Advanced

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

xhtml document's title


From: Wojciech Polak
Subject: xhtml document's title
Date: Sat, 05 Jan 2008 23:31:59 +0100

I committed this.

Index: ChangeLog
===================================================================
RCS file: /sources/bison/bison/ChangeLog,v
retrieving revision 1.1763
diff -u -r1.1763 ChangeLog
--- ChangeLog   22 Dec 2007 18:35:01 -0000      1.1763
+++ ChangeLog   5 Jan 2008 22:25:12 -0000
@@ -1,3 +1,8 @@
+2008-01-05  Wojciech Polak  <address@hidden>
+
+       * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an
XHTML
+       document's title with the input grammar file name.
+
 2007-12-22  Joel E. Denny  <address@hidden>
 
        Automate regression testing of the XML/XSLT implementation.
Discussed
Index: data/xslt/xml2xhtml.xsl
===================================================================
RCS file: /sources/bison/bison/data/xslt/xml2xhtml.xsl,v
retrieving revision 1.9
diff -u -r1.9 xml2xhtml.xsl
--- data/xslt/xml2xhtml.xsl     15 Dec 2007 02:08:02 -0000      1.9
+++ data/xslt/xml2xhtml.xsl     5 Jan 2008 22:25:12 -0000
@@ -4,7 +4,7 @@
     xml2html.xsl - transform Bison XML Report into XHTML.
     $Id: xml2xhtml.xsl,v 1.9 2007/12/15 02:08:02 jdenny Exp $
 
-    Copyright (C) 2007 Free Software Foundation, Inc.
+    Copyright (C) 2007, 2008 Free Software Foundation, Inc.
 
     This file is part of Bison, the GNU Compiler Compiler.
 
@@ -39,7 +39,10 @@
 <xsl:template match="/">
   <html>
     <head>
-      <title>GNU Bison XML Automaton Report</title>
+      <title>
+       <xsl:value-of select="bison-xml-report/filename"/>
+       <xsl:text> - GNU Bison XML Automaton Report</xsl:text>
+      </title>
       <style type="text/css"><![CDATA[
       body {
         font-family: "Nimbus Sans L", Arial, sans-serif;
@@ -89,7 +92,7 @@
       GNU Bison <xsl:value-of select="/bison-xml-report/@version"/></a>
       XML Automaton Report, written by
       <a href="http://www.gnu.org.ua/~polak/"; title="Wojciech
Polak">Wojciech Polak</a>.
-      Copyright (C) 2007 Free Software Foundation, Inc.<br />
+      Copyright (C) 2007, 2008 Free Software Foundation, Inc.<br />
       Verbatim copying and distribution of this entire page is
permitted
       in any medium, provided this notice is preserved.</div>
     </body>







reply via email to

[Prev in Thread] Current Thread [Next in Thread]