Changeset 38796 in vbox for trunk/src/VBox/Main/webservice/platform-xidl.xsl
- Timestamp:
- Sep 19, 2011 5:11:11 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74091
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/platform-xidl.xsl
r33540 r38796 9 9 sections are resolved (for easier processing). 10 10 11 Copyright (C) 2006-201 0Oracle Corporation11 Copyright (C) 2006-2011 Oracle Corporation 12 12 13 13 This file is part of VirtualBox Open Source Edition (OSE), as … … 62 62 ignore everything we don't need 63 63 --> 64 <xsl:template match="cpp|class|enumerator |desc|note">64 <xsl:template match="cpp|class|enumerator"> 65 65 </xsl:template> 66 66 67 67 <!-- 68 68 and keep the rest intact (including all attributes) 69 70 NOTE: this drops class and everything in it, which I left unchanged 71 since the other xslt scripts blow up badly. 69 72 --> 70 <xsl:template match="library|module|enum|const|interface|attribute|collection|method|param ">73 <xsl:template match="library|module|enum|const|interface|attribute|collection|method|param|result"> 71 74 <xsl:copy><xsl:copy-of select="@*"/><xsl:apply-templates/></xsl:copy> 75 </xsl:template> 76 77 <!-- 78 keep those completely unchanged, including child nodes (including all 79 attributes) 80 --> 81 <xsl:template match="descGroup|desc|note"> 82 <xsl:copy-of select="."/> 72 83 </xsl:template> 73 84
Note:
See TracChangeset
for help on using the changeset viewer.