Changeset 3790


Ignore:
Timestamp:
2003-03-05T12:04:54+13:00 (21 years ago)
Author:
mdewsnip
Message:

Used "freq" instead of "count" for term frequencies, and used a book image icon for the query result links. Eventually, a book or folder or page (or...) icon should be used depending on the result level.

File:
1 edited

Legend:

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

    r3765 r3790  
    111111    <xsl:for-each select="content/termList/term">
    112112      <xsl:if test="position() > 1">, </xsl:if>
    113       <xsl:value-of select="@name"/>: <xsl:value-of select="@count"/>
     113      <xsl:value-of select="@name"/>: <xsl:value-of select="@freq"/>
    114114    </xsl:for-each>
    115115    </small><br/>
     
    151151  <xsl:variable name="library" select="ancestor::page/config/library_name"/>
    152152
    153   <td><a href="{$library}?a=d&amp;c={$collName}&amp;d={@name}">link</a></td>
     153  <td>
     154    <a href="{$library}?a=d&amp;c={$collName}&amp;d={@name}">
     155      <img src="interfaces/default/images/book.gif" width="18" height="11" border="0" alt="open this document and view contents"/> <!-- TO DO -->
     156    </a>
     157  </td>
    154158  <td><xsl:value-of select="metadataList/metadata[@name='Title']"/></td>
    155159</xsl:template>
Note: See TracChangeset for help on using the changeset viewer.