Changeset 2803

Show
Ignore:
Timestamp:
03/26/08 13:49:16 (8 months ago)
Author:
ksprotte
Message:

kml.xsl is done - for now

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/projects/bos/tmp/kml.xsl

    r2799 r2803  
    4040              <xsl:value-of select="descendant::bos:description/bos:content[@lang=$lang]"/> 
    4141            </div> 
    42             <br/> 
    43             <xsl:apply-templates select="descendant::bos:image"/> 
     42            <br/>             
     43            <table> 
     44              <tbody> 
     45                <tr> 
     46                  <td><xsl:apply-templates select="descendant::bos:image[1]"/></td> 
     47                  <td><xsl:apply-templates select="descendant::bos:image[2]"/></td> 
     48                  <td><xsl:apply-templates select="descendant::bos:image[3]"/></td> 
     49                </tr> 
     50                <tr> 
     51                  <td valign="top"><xsl:apply-templates select="descendant::bos:image[1]" mode="title"/></td> 
     52                  <td valign="top"><xsl:apply-templates select="descendant::bos:image[2]" mode="title"/></td> 
     53                  <td valign="top"><xsl:apply-templates select="descendant::bos:image[3]" mode="title"/></td> 
     54                </tr> 
     55                <tr> 
     56                  <td><xsl:apply-templates select="descendant::bos:image[4]"/></td> 
     57                  <td><xsl:apply-templates select="descendant::bos:image[5]"/></td> 
     58                  <td><xsl:apply-templates select="descendant::bos:image[6]"/></td> 
     59                </tr> 
     60                <tr> 
     61                  <td valign="top"><xsl:apply-templates select="descendant::bos:image[4]" mode="title"/></td> 
     62                  <td valign="top"><xsl:apply-templates select="descendant::bos:image[5]" mode="title"/></td> 
     63                  <td valign="top"><xsl:apply-templates select="descendant::bos:image[6]" mode="title"/></td> 
     64                </tr> 
     65              </tbody> 
     66            </table> 
    4467          </td> 
    4568        </tr> 
     
    6588    <xsl:param name="h" select="$aspect_ratio * $w"/> 
    6689    <img src="{$server}/image/{$id}" width="{$w}" height="{$h}"/> 
    67     &#160; 
    6890  </xsl:template> 
     91 
     92  <xsl:template match="bos:image" mode="title"> 
     93    <span style="font-size: small;"><xsl:value-of select="bos:title/bos:content[@lang=$lang]"/></span> 
     94  </xsl:template> 
     95 
    6996</xsl:stylesheet> 
    7097