home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / Sharpdev / 099bsetup.exe / field.xslt < prev    next >
Extensible Markup Language  |  2003-08-28  |  2KB  |  57 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  4. <xsl:include href="common.xslt"/>
  5.  
  6. <xsl:param name='id'/>
  7.  
  8. <xsl:template match="/">
  9.       <xsl:apply-templates select="DOC.NET/assembly/module/namespace/*/field[@id=$id]"/>
  10. </xsl:template>
  11.  
  12. <xsl:template match="field">
  13.  
  14. <html dir="LTR">
  15. <head>
  16. <title>
  17.     <xsl:value-of select="../@name"/>.<xsl:value-of select="@name"/>
  18.     <xsl:text> Field</xsl:text>
  19. </title>
  20. </head>
  21.  
  22. <link rel="stylesheet" type="text/css" href="MsdnHelp.css"/>
  23.  
  24. <body>
  25. <h1><xsl:value-of select="../@name"/>.<xsl:value-of select="@name"/> Field</h1>
  26.  
  27. <xsl:call-template name="summary-section"/>
  28. <xsl:call-template name="field-or-event-syntax"/>
  29. <p/>
  30. <xsl:call-template name="remarks-section"/>
  31. <xsl:call-template name="example-section"/>
  32. <xsl:call-template name="seealso-section">
  33.     <xsl:with-param name="page">field</xsl:with-param>
  34. </xsl:call-template>
  35.  
  36. <object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="viewastext">
  37.     <xsl:element name="param">
  38.         <xsl:attribute name="name">Keyword</xsl:attribute>
  39.         <xsl:attribute name="value"><xsl:value-of select='@name'/> field</xsl:attribute>
  40.     </xsl:element>
  41.     <xsl:element name="param">
  42.         <xsl:attribute name="name">Keyword</xsl:attribute>
  43.         <xsl:attribute name="value"><xsl:value-of select='@name'/> field, <xsl:value-of select='../@name'/> class</xsl:attribute>
  44.     </xsl:element>
  45.     <xsl:element name="param">
  46.         <xsl:attribute name="name">Keyword</xsl:attribute>
  47.         <xsl:attribute name="value"><xsl:value-of select='../@name'/>.<xsl:value-of select='@name'/> field</xsl:attribute>
  48.     </xsl:element>
  49. </object>
  50.  
  51. </body>
  52. </html>
  53.  
  54. </xsl:template>
  55.  
  56. </xsl:stylesheet>
  57.