home *** CD-ROM | disk | FTP | other *** search
/ Organic Chemistry (8th Edition) / Image.iso / pc / organic / media / content / links.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-12-31  |  2.5 KB  |  81 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xlink="http://www.w3.org/1999/xlink">
  3.  
  4. <!-- Edugen XSL Stylesheets V1.0 =======================================
  5.  
  6.      File links.xsl
  7.      
  8.      This file is part of the Edugen XSL Stylesheets.
  9.      Copyright (c) 2002 WWL Corp. - A Subsidiary of John Wiley & Sons, Inc.
  10. ========================================================================= -->
  11.  
  12. <xsl:output method="html" indent="no"/>
  13.  
  14. <!-- version -->
  15. <xsl:param name="version">1.0</xsl:param>
  16. <!-- dynamic param -->
  17. <xsl:param name="selector" select="/*"/>
  18.  
  19. <xsl:attribute-set name="body_attributes">
  20.     <xsl:attribute name="bgcolor">#ffffff</xsl:attribute>
  21.     <xsl:attribute name="text">#000000</xsl:attribute>
  22. </xsl:attribute-set>
  23.  
  24. <!-- ============= root =============================== -->
  25. <xsl:template match="/">
  26. <html>
  27. <xsl:comment>
  28. Copyright (c) 2002 WWL Corp. - A Subsidiary of John Wiley & Sons, Inc.
  29. Thank you for examining our code
  30. </xsl:comment>
  31. <head>
  32. <title>Page</title>
  33. <meta name="generator" content="Edugen XSL Stylesheets V{$version}"/>
  34. </head>
  35. <body xsl:use-attribute-sets="body_attributes">
  36. <xsl:apply-templates select="$selector"/>
  37. </body>
  38. </html>
  39. </xsl:template>
  40. <!-- ====== end of root =============================== -->
  41.  
  42. <!-- ============= link =============================== -->
  43. <xsl:template match="SEC|PAGE|ITEM">
  44. <script type="text/javascript" language="JavaScript">
  45. <![CDATA[var pageid=']]><xsl:value-of select='@ID'/><![CDATA[';]]>
  46. <![CDATA[
  47. if (pageid=="")
  48. {
  49.     document.write("Sorry, there is no item that you have queried.")
  50. }
  51. else
  52. {
  53.     self.location.replace("<?11?>?sid=<?1003?>&msg=7000&pageid=" + pageid);
  54. }
  55. ]]>
  56. </script>
  57. </xsl:template>
  58. <xsl:template match="TEST">
  59. <script type="text/javascript" language="JavaScript">
  60. <![CDATA[var pageid=']]><xsl:value-of select='@ID'/><![CDATA[';]]>
  61. <![CDATA[
  62. if (pageid=="")
  63. {
  64.     document.write("Sorry, there is no item that you have queried.")
  65. }
  66. else
  67. {
  68.     self.location.replace("<?11?>?sid=<?1003?>&msg=7000&pageid="+pageid+"t");
  69. }
  70. ]]>
  71. </script>
  72. </xsl:template>
  73. <!-- ====== end of link =============================== -->
  74.  
  75. <!-- =========================================================================
  76.      Thank you for examining our code.
  77.      Please direct all questions, bug reports, or suggestions for changes
  78.      to the info@maris.com
  79. ========================================================================== -->
  80.  
  81. </xsl:stylesheet>