Ignore:
Timestamp:
2009-02-25T15:58:23+13:00 (15 years ago)
Author:
max
Message:

Simplified the collection about transformation, util.xsl containing all the gslib elements provided by us.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • greenstone3/trunk/web/interfaces/default/transform/util.xsl

    r18482 r18595  
    1616   
    1717   
    18     <xsl:template name="textDirectionAttribute">
    19     <xsl:attribute name="dir"><xsl:if test="/page/@lang='ar' or /page/@lang='fa' or /page/@lang='he' or /page/@lang='ur' or /page/@lang='ps' or /page/@lang='prs'">rtl</xsl:if></xsl:attribute>
    20     </xsl:template>
    21  
    22  
    23     <xsl:template name="defaultDividerBar">
     18<xsl:template name="textDirectionAttribute">
     19    <xsl:attribute name="dir">
     20        <xsl:choose>
     21            <xsl:when test="/page/@lang='ar' or /page/@lang='fa' or /page/@lang='he' or /page/@lang='ur' or /page/@lang='ps' or /page/@lang='prs'">rtl</xsl:when>
     22            <xsl:otherwise>ltr</xsl:otherwise>
     23        </xsl:choose>
     24    </xsl:attribute>
     25</xsl:template>
     26 
     27 
     28<xsl:template name="defaultDividerBar">
    2429   <xsl:param name='text'/>
    2530      <xsl:choose>
     
    3136      </xsl:otherwise>
    3237    </xsl:choose>
    33   </xsl:template>
    34  
    35  
    36     <xsl:template match="error">
     38</xsl:template>
     39 
     40 
     41<xsl:template match="error">
    3742    Error: <xsl:value-of select="."/>
    38   </xsl:template>
     43</xsl:template>
    3944 
    4045 
     
    8489    <!-- site home ....................................................................... -->
    8590
    86 <xsl:template name="homePageTitle">
     91<xsl:template name="siteHomePageTitle">
    8792 <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
    8893<xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'gsdl')"/><xsl:text> </xsl:text>
     
    166171
    167172<!-- about page - collection home ....................................................................... -->
    168 
     173<xsl:variable name="collName" select="/page/pageRequest/paramList/param[@name='c']/@value"/>
     174<xsl:param name="collName" select="/page/pageRequest/paramList/param[@name='c']/@value"/>
     175<xsl:param name="pageType"/>
     176<xsl:variable name="this-element" select="/page/pageResponse/collection|/page/pageResponse/serviceCluster"/>
     177<xsl:variable name="this-service" select="/page/pageResponse/service/@name"/>
     178
     179
     180<xsl:template name="aboutCollectionPageTitle">
     181 <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
     182<xsl:value-of select="/page/pageResponse/*/displayItem[@name='name']"/><xsl:text> </xsl:text>
     183</xsl:template>
     184
     185   
     186<xsl:template name="collectionHomeLinkWithLogoIfAvailable">
     187<a href="{$library_name}?a=p&amp;sa=about&amp;c={$collName}">
     188      <xsl:choose>
     189        <xsl:when test="$this-element/displayItem[@name='icon']">
     190          <img border="0">
     191        <xsl:attribute name="src">
     192          <xsl:value-of select="$this-element/metadataList/metadata[@name='httpPath']"/>/images/<xsl:value-of select="$this-element/displayItem[@name='icon']"/>
     193        </xsl:attribute>   
     194        <xsl:attribute name="alt">
     195          <xsl:value-of select="$this-element/displayItem[@name='name']"/>
     196        </xsl:attribute>
     197        <xsl:attribute name="title">
     198          <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'aboutpage')"/>
     199        </xsl:attribute>
     200          </img>
     201        </xsl:when>
     202        <xsl:otherwise>
     203          <xsl:value-of select="$this-element/displayItem[@name='name']"/>
     204        </xsl:otherwise>
     205      </xsl:choose>
     206    </a>
     207</xsl:template>
     208
     209
     210<xsl:template name="homeButtonTop">
     211<a href="{$library_name}?a=p&amp;sa=home"><xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home_tip')"/></xsl:attribute>
     212<xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home_b')"/></a>
     213</xsl:template>
     214
     215
     216<xsl:template name="helpButtonTop">
     217    <xsl:choose>
     218      <xsl:when test="$pageType='help'">
     219    <li><a><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_b')"/></a></li>
     220      </xsl:when>
     221      <xsl:otherwise>
     222    <li><a href="{$library_name}?a=p&amp;sa=help&amp;c={$collName}"><xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_tip')"/></xsl:attribute>
     223        <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_b')"/>
     224      </a></li>
     225      </xsl:otherwise>
     226    </xsl:choose>
     227</xsl:template>
     228
     229
     230<xsl:template name="preferencesButtonTop">
     231    <xsl:choose>
     232      <xsl:when test="$pageType='pref'">
     233    <li><a><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_b')"/></a></li>
     234      </xsl:when>
     235      <xsl:otherwise>
     236    <li><a href="{$library_name}?a=p&amp;sa=pref&amp;c={$collName}"><xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_tip')"/></xsl:attribute>
     237        <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_b')"/>
     238      </a></li>
     239      </xsl:otherwise>
     240    </xsl:choose>
     241</xsl:template>
     242
     243<xsl:template name="servicesNavigationBar">
     244        <xsl:for-each select="$this-element/serviceList/service">
     245          <xsl:variable name="action"><xsl:choose>
     246          <xsl:when test="@name=$this-service">CURRENT</xsl:when>
     247          <xsl:when test="@type='query'">q</xsl:when>
     248          <xsl:when test="@type='browse'">b</xsl:when>
     249          <xsl:when test="@type='process'">pr</xsl:when>
     250          <xsl:when test="@type='applet'">a</xsl:when>
     251          <xsl:otherwise>DO_NOT_DISPLAY</xsl:otherwise>
     252        </xsl:choose></xsl:variable>
     253          <xsl:choose>
     254        <xsl:when test="$action='CURRENT'">
     255          <li><a><xsl:value-of select="displayItem[@name='name']"/></a></li>
     256        </xsl:when>
     257        <xsl:when test="$action !='DO_NOT_DISPLAY'">
     258          <li><a href="{$library_name}?a={$action}&amp;rt=d&amp;s={@name}&amp;c={$collName}"><xsl:if test="displayItem[@name='description']"><xsl:attribute name='title'><xsl:value-of select="displayItem[@name='description']"/></xsl:attribute></xsl:if><xsl:value-of select="displayItem[@name='name']"/></a></li>
     259        </xsl:when>
     260          </xsl:choose>
     261        </xsl:for-each>
     262</xsl:template>
     263
     264
     265<xsl:template name="collectionDescriptionTextAndServicesLinks">
     266        <xsl:apply-templates select="pageResponse/collection|serviceCluster"/>
     267</xsl:template>
     268
     269<xsl:template match="collection|serviceCluster">
     270      <xsl:value-of select="displayItem[@name='description']" disable-output-escaping="yes"/>
     271     
     272      <xsl:apply-templates select="serviceList">
     273    <xsl:with-param name="collName" select="$collName"/>
     274      </xsl:apply-templates>
     275</xsl:template>
     276
     277
     278 <xsl:template match="serviceList">
     279    <xsl:param name="collName"/>
     280    <h3><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.services')"/></h3>
     281    <xsl:choose>
     282      <xsl:when test="service">
     283    <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.servicehelp')"/>
     284      </xsl:when>
     285      <xsl:otherwise>
     286    <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.noservices')"/>
     287      </xsl:otherwise>
     288    </xsl:choose>
     289   
     290   
     291    <xsl:if test="service">
     292      <ul id="servicelist">     
     293    <xsl:for-each select="service">
     294      <xsl:variable name="action"><xsl:choose>
     295          <xsl:when test="@type='query'">q</xsl:when>
     296          <xsl:when test="@type='browse'">b</xsl:when>
     297          <xsl:when test="@type='process'">pr</xsl:when>
     298          <xsl:when test="@type='applet'">a</xsl:when>
     299          <xsl:otherwise>DO_NOT_DISPLAY</xsl:otherwise>
     300        </xsl:choose></xsl:variable>
     301      <xsl:if test="$action !='DO_NOT_DISPLAY'">
     302        <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>
     303      </xsl:if>
     304    </xsl:for-each>
     305      </ul>
     306    </xsl:if>
     307  </xsl:template>
    169308
    170309
Note: See TracChangeset for help on using the changeset viewer.