Changeset 4282
- Timestamp:
- 12/20/07 18:42:50 (9 months ago)
- Location:
- trunk/tools/api-browser
- Files:
-
- 6 added
- 4 removed
- 2 modified
-
.compatibility (added)
-
build.xml (modified) (1 diff)
-
index.html (deleted)
-
output (added)
-
output/index.html (added)
-
output/plugins.html (added)
-
output/ui.html (added)
-
output/validation.html (added)
-
plugins.html (deleted)
-
style.xsl (modified) (1 diff)
-
ui.html (deleted)
-
validation.html (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/api-browser/build.xml
r4208 r4282 41 41 42 42 <target name="transform" description="Transform XML via XSL to HTML"> 43 <delete file="index.html" /> 44 <delete file="validation.html" /> 45 <delete file="ui.html" /> 46 <delete file="plugins.html" /> 47 <xslt includes="index.xml,validation.xml,ui.xml,plugins.xml" destdir="." style="style.xsl" /> 43 <delete dir="output" /> 44 <mkdir dir="output" /> 45 <xslt includes="*.xml" excludes="build.xml" destdir="output" style="style.xsl" /> 48 46 </target> 49 47 -
trunk/tools/api-browser/style.xsl
r4208 r4282 211 211 <xsl:call-template name="break" /> 212 212 </xsl:for-each> 213 <br/> 214 <xsl:for-each select="longdesc"> 215 <xsl:call-template name="break" /> 216 </xsl:for-each> 213 217 </div> 214 218 <xsl:if test="option">
