Show
Ignore:
Timestamp:
01/14/12 19:10:26 (12 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

Lepší odsazení, tabulátory.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vstup/makra/měřák.xsl

    r51 r87  
    1111        xmlns:xs="http://www.w3.org/2001/XMLSchema" 
    1212        exclude-result-prefixes="fn h s k m xs"> 
    13      
    14     <!-- Ukázka vlastního „makra“: --> 
    15     <xsl:template match="m:měřák"> 
    16         <xsl:variable name="hodnota" select="number(@hodnota)"/> 
    17         <xsl:variable name="šířkaGrafu" select="128"/> 
    18                 <xsl:choose>                     
    19                         <xsl:when test="$hodnota &gt;= 0 and $hodnota &lt;= 100">                                
    20                                 <div style="border: 1px solid black; width: {$šířkaGrafu}px; height: 16px; padding: 0px; text-align: center; background-color: #cfc;">                   
     13 
     14        <!-- Ukázka vlastního „makra“: --> 
     15        <xsl:template match="m:měřák"> 
     16                <xsl:variable name="hodnota" select="number(@hodnota)"/> 
     17                <xsl:variable name="šířkaGrafu" select="128"/> 
     18                <xsl:choose> 
     19                        <xsl:when test="$hodnota &gt;= 0 and $hodnota &lt;= 100"> 
     20                                <div style="border: 1px solid black; width: {$šířkaGrafu}px; height: 16px; padding: 0px; text-align: center; background-color: #cfc;"> 
    2121                                        <div style="margin: 0px; background-color: #A4E666; width: {@hodnota*$šířkaGrafu div 100}px; height: 16px;"><xsl:call-template name="varováníRetardace"/></div> 
    2222                                        <p style="margin: 0px; font-size: 12px; position: relative; top: -15px;"> 
    2323                                                <xsl:value-of select="@hodnota"/>/100 
    24                                         </p>     
     24                                        </p> 
    2525                                </div> 
    2626                        </xsl:when>