<xsl:stylesheet xmlns:rng="http://relaxng.org/ns/structure/1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:teix="http://www.tei-c.org/ns/Examples" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns:edate="http://exslt.org/dates-and-times" xmlns:xd="http://www.pnp-software.com/XSLTdoc" xmlns:estr="http://exslt.org/strings" xmlns:exsl="http://exslt.org/common" xmlns:fo="http://www.w3.org/1999/XSL/Format" extension-element-prefixes="exsl estr edate" exclude-result-prefixes="xd exsl estr edate a fo rng tei teix" version="1.0">
  
  <xd:doc type="stylesheet">
    
<xd:short>
    TEI stylesheet
    dealing  with elements from the
      drama module, making XSL-FO output.
      
</xd:short>
    
<xd:detail>
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

   
   
      
</xd:detail>
    
<xd:author>See AUTHORS</xd:author>
    
<xd:cvsId>$Id: drama.xsl 4801 2008-09-13 10:05:32Z rahtz $</xd:cvsId>
    
<xd:copyright>2008, TEI Consortium</xd:copyright>
  
</xd:doc>

  
  <xd:doc>
    
<xd:short>Process elements  tei:actor</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:actor">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('normal')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:camera</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:camera">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('normal')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:caption</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:caption">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('normal')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:castGroup</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:castGroup">
    
<xsl:apply-templates />
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:castItem</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:castItem">
    
<xsl:call-template name="makeItem" />
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:castItem (when @type is 'list')</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:castItem[@type='list']">
    
<fo:list-item>
      
<xsl:attribute name="space-before.optimum">
        
<xsl:value-of select="$listItemsep" />
      
</xsl:attribute>
      
<fo:list-item-label end-indent="label-end()">
        
<xsl:if test="@xml:id">
          
<xsl:attribute name="id">
            
<xsl:value-of select="@xml:id" />
          
</xsl:attribute>
        
</xsl:if>
        
<xsl:text>
</xsl:text>
        
<fo:block />
      
</fo:list-item-label>
      
<fo:list-item-body start-indent="body-start()">
        
<fo:block>
          
<xsl:call-template name="rend">
            
<xsl:with-param name="defaultvalue" select="string('italic')" />
            
<xsl:with-param name="defaultstyle" select="string('font-style')" />
          
</xsl:call-template>
          
<xsl:text>(</xsl:text>
          
<xsl:apply-templates />
          
<xsl:text>)</xsl:text>
        
</fo:block>
      
</fo:list-item-body>
    
</fo:list-item>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:castList</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:castList">
    
<xsl:if test="child::tei:head">
      
<fo:block font-style="italic" text-align="start" space-before.optimum="4pt">
        
<xsl:for-each select="tei:head">
          
<xsl:apply-templates />
        
</xsl:for-each>
      
</fo:block>
    
</xsl:if>
    
<fo:list-block>
      
<xsl:call-template name="setListIndents" />
      
<xsl:apply-templates />
    
</fo:list-block>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:sp</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:sp">
    
<fo:block text-align="justify" start-indent="1em" text-indent="-1em" space-before="3pt">
      
<xsl:apply-templates />
    
</fo:block>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:sp/tei:p</xd:short>
    
<xd:detail>
      
<p> paragraphs inside speeches do very little</p>
    
</xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:sp/tei:p">
    
<fo:inline>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:speaker</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:speaker">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('italic')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
      
<xsl:text> </xsl:text>
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:stage</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:stage">
    
<fo:block>
      
<xsl:attribute name="text-indent">1em</xsl:attribute>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('italic')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:block>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:p/tei:stage</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:p/tei:stage">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('italic')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:sp/tei:stage</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:sp/tei:stage">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('italic')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:tech</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:tech">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('italic')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
  
  <xd:doc>
    
<xd:short>Process elements  tei:view</xd:short>
    
<xd:detail> </xd:detail>
  
</xd:doc>

  
<xsl:template match="tei:view">
    
<fo:inline>
      
<xsl:call-template name="rend">
        
<xsl:with-param name="defaultvalue" select="string('italic')" />
        
<xsl:with-param name="defaultstyle" select="string('font-style')" />
      
</xsl:call-template>
      
<xsl:apply-templates />
    
</fo:inline>
  
</xsl:template>
</xsl:stylesheet>






































v