Changeset 8574

Show
Ignore:
Timestamp:
07/20/10 13:54:33 (7 weeks ago)
Author:
lmurdock
Message:

fixed punctuation for publisher-loc mode none (if last element in citation, use a period)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/XSL-refactor/ambra/webapp/src/main/resources/plos.xsl

    r8550 r8574  
    31273127    </xsl:template> 
    31283128 
    3129     <!-- 11/5/09: viewnlm contains template (publisher-loc mode none) --> 
     3129    <!-- 7/20/10: plos modifications --> 
     3130    <xsl:template match="publisher-loc" mode="none"> 
     3131                <xsl:apply-templates/> 
     3132        <xsl:choose> 
     3133            <xsl:when test="not(following-sibling::*)"> 
     3134                <xsl:text>.</xsl:text> 
     3135            </xsl:when> 
     3136            <xsl:otherwise> 
     3137                <xsl:text>: </xsl:text> 
     3138            </xsl:otherwise> 
     3139        </xsl:choose>    
     3140        </xsl:template> 
    31303141 
    31313142    <!-- 11/5/09: plos modifications (minor) -->