home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 October / INTERNET108.ISO / pc / software / windows / building / xmlspy / xmlspyentcomplete5.exe / Data1.cab / _161BE93FC9C84AF8B4AC64F3A2F10FCE < prev    next >
Encoding:
Extensible Markup Language  |  2002-08-26  |  1.8 KB  |  51 lines

  1. <xsl:stylesheet version="1.0" 
  2.                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  3.                 xmlns:doc="urn:schemas-uspto-gov:document"
  4.                 exclude-result-prefixes="doc">
  5.  
  6. <doc:summary doc:public="yes" >
  7.     <doc:title>Component stylesheet for <appendix-data></doc:title>
  8.     <doc:filename>appendix.xsl</doc:filename>
  9.     <doc:version>1.0</doc:version>
  10.     <doc:doctype>numerous</doc:doctype>
  11.     <doc:doctype-date>N/A</doc:doctype-date>
  12.     <doc:dateCreated>2001-01-26</doc:dateCreated>
  13.     <doc:lastModified>2001-02-16</doc:lastModified>
  14.     <doc:description>
  15.         Template rules for formatting the <appendix-data> and <object-reference> children are contained here.  
  16.     </doc:description>
  17. </doc:summary>
  18.  
  19. <!--
  20. **********************************************************
  21. *  John Dunning: 2001-01-29                              *
  22. *   Component file for appendix-data                     *
  23. **********************************************************
  24. -->
  25.  
  26.     <xsl:template match="appendix-data">
  27.         <xsl:apply-templates />
  28.     </xsl:template>
  29.  
  30.     <xsl:template match="object-reference">
  31.         <div class="left_para">
  32.         <table border="0" width="90%">
  33.             <tr>
  34.                 <td width="8%" valign="top">  </td>
  35.                 <td width="85%">
  36.                     <span class="para_text">
  37.                         <xsl:apply-templates />
  38.                     </span>
  39.                 </td>
  40.                 <td width="*"></td>
  41.             </tr>
  42.         </table>
  43.         </div>
  44.     </xsl:template>
  45.     
  46.     <xsl:template match="object-id | object-contents | object-description">
  47.             <xsl:text> </xsl:text>
  48.             <xsl:apply-templates />
  49.     </xsl:template>
  50.  
  51. </xsl:stylesheet>