Ignore:
Timestamp:
2006-12-14T15:39:54+13:00 (17 years ago)
Author:
shaoqun
Message:

replaced some div tags with ul and li tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/web/interfaces/default/transform/about.xsl

    r13267 r13505  
    3232      <xsl:with-param name="collName" select="$collName"/>
    3333    </xsl:call-template>     
    34     <div class="document">
     34    <div id="content">
    3535        <xsl:value-of select="displayItem[@name='description']" disable-output-escaping="yes"/>
    3636        <xsl:apply-templates select="serviceList">
     
    4343  <xsl:template match="serviceList">
    4444    <xsl:param name="collName"/>
    45     <div class="servicelist">
    4645    <h3><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.services')"/></h3>
    4746    <xsl:choose>
     
    5554   
    5655    <xsl:if test="service">
    57         <xsl:for-each select="service">
    58     <div class="serviceitem">
    59            <xsl:variable name="action"><xsl:choose>
     56     <ul id="servicelist">     
     57      <xsl:for-each select="service">
     58        <xsl:variable name="action"><xsl:choose>
    6059          <xsl:when test="@type='query'">q</xsl:when>
    6160          <xsl:when test="@type='browse'">b</xsl:when>
     
    6564        </xsl:choose></xsl:variable>
    6665       <xsl:if test="$action !='DO_NOT_DISPLAY'">
    67             <a class="servicelink" href="{$library_name}?a={$action}&amp;rt=d&amp;s={@name}&amp;c={$collName}"><xsl:value-of select="displayItem[@name='name']"/></a><span  class="leftspace"><xsl:value-of select="displayItem[@name='description']"/></span>
     66           <li><a href="{$library_name}?a={$action}&amp;rt=d&amp;s={@name}&amp;c={$collName}"><xsl:value-of select="displayItem[@name='name']"/></a><xsl:value-of select="displayItem[@name='description']"/></li>
    6867      </xsl:if>
    69         </div>
    70     </xsl:for-each>
     68    </xsl:for-each>
     69      </ul>
    7170     </xsl:if>
    72     </div>
    73  </xsl:template>
     71  </xsl:template>
    7472
    7573</xsl:stylesheet> 
Note: See TracChangeset for help on using the changeset viewer.