home *** CD-ROM | disk | FTP | other *** search
/ Encyclopaedia Britannica …oncise Encyclopedia 2007 / bcd_concise07.iso / data / jars / CdAtlasLib.jar / BaseAtlas.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2006-06-20  |  1.5 KB  |  47 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <xsl:stylesheet
  4.        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5.        xmlns:html="http://www.w3.org/TR/html4/loose.dtd"
  6.        xmlns:xhtml="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  7.        exclude-result-prefixes="html xhtml"
  8.        version="1.0">
  9.        
  10.        <xsl:import href="xsl/cd/shared/basePage.xsl"/>
  11.  
  12.        <xsl:param name="libName">EB</xsl:param>
  13.        <xsl:variable name="sourceName">
  14.         <xsl:choose>
  15.             <xsl:when test="$libName = 'EBI'">Britannica Student Library</xsl:when>
  16.             <xsl:when test="$libName = 'EBK'">Britannica Elementary Library</xsl:when>
  17.             <xsl:when test="$libName = 'CONCISE'"></xsl:when>
  18.             <xsl:otherwise>Encyclopædia Britannica</xsl:otherwise>
  19.         </xsl:choose>
  20.     </xsl:variable>
  21.  
  22.  
  23.  <xsl:output method="xhtml" omit-xml-declaration="yes" indent="yes" encoding="UTF-8"/>
  24.  
  25. <xsl:template match="wd_title" mode="display">
  26.     <xsl:apply-templates/>
  27. </xsl:template>
  28.  
  29. <xsl:template match="wd_title"/>
  30.  
  31. <xsl:template name="atlasLinks">    
  32. </xsl:template>
  33.  
  34. <xsl:template name="prefix">
  35. </xsl:template>
  36.  
  37.  <!-- uninitiated templates from base xsl -->
  38.  <xsl:template name="buttonActionsJS"/>
  39.  <xsl:template name="relatedContentButton"/>
  40.  <xsl:template name="relatedContentMenu"/>
  41.  <xsl:template name="sidebar"/>
  42.  <xsl:template name="notesButton"/>
  43.  <xsl:template name="notesMenu"/>
  44.  <xsl:template name="articleUpdateCheck"/>
  45.  
  46. </xsl:stylesheet>
  47.