~ubuntu-branches/ubuntu/precise/dblatex/precise

« back to all changes in this revision

Viewing changes to .pc/20_db2latex_title_page.patch/xsl/preamble.xsl

  • Committer: Package Import Robot
  • Author(s): Andreas Hoenen
  • Date: 2011-07-09 15:20:37 UTC
  • mfrom: (0.8.1) (0.6.2) (8.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110709152037-8ao9l07dmgyjn6vn
* New upstram release
* New upstream release fixes the following open Debian BTS issues:
  + Don't crash on XeTeX backend compilation of spanish documents with an
    <appendix> element.  Thanks to W. Martin Borgert for reporting.
    Closes: #629110
* Remove patches that have been integrated upstream:
  + 20_filename_replaceable.patch (#623590)
* Take over actualized copyright period of upstream COPYRIGHT to
  debian/copyright.
* Replace python build helper dh_pysupport with dh_python2.
* In draft mode set draft watermark for XeTeX backend, too.  Thanks to W.
  Martin Borgert for reporting and for the patch.  Closes: #629514

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
 
91
91
  <!-- Document title -->
92
92
  <xsl:variable name="title">
93
 
    <xsl:call-template name="normalize-scape">
94
 
      <xsl:with-param name="string">
95
 
        <xsl:choose>
96
 
        <xsl:when test="title">
97
 
          <xsl:value-of select="title"/>
98
 
        </xsl:when>
99
 
        <xsl:when test="$info">
100
 
          <xsl:value-of select="$info/title"/>
101
 
        </xsl:when>
102
 
        </xsl:choose>
103
 
      </xsl:with-param>
104
 
    </xsl:call-template>
 
93
    <xsl:apply-templates select="(title
 
94
                                 |info/title
 
95
                                 |bookinfo/title
 
96
                                 |articleinfo/title
 
97
                                 |artheader/title)[1]" mode="coverpage"/>
105
98
  </xsl:variable>
106
99
 
107
100
  <!-- Get the Authors -->
160
153
  <xsl:call-template name="verbatim.setup"/>
161
154
</xsl:template>
162
155
 
 
156
<!-- FIXME: currently does nothing more than default rendering -->
 
157
<xsl:template match="title" mode="coverpage">
 
158
  <xsl:apply-templates/>
 
159
</xsl:template>
 
160
 
163
161
<!-- ##################################
164
162
     # Preamble setup from parameters #
165
163
     ################################## -->