Changeset 92153 in vbox
- Timestamp:
- Oct 29, 2021 4:41:20 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147974
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Doxyfile.Main
r89814 r92153 1270 1270 # This tag requires that the tag GENERATE_HTML is set to YES. 1271 1271 1272 GENERATE_HTMLHELP = YES1272 GENERATE_HTMLHELP = NO 1273 1273 1274 1274 # The CHM_FILE tag can be used to specify the file name of the resulting .chm … … 1277 1277 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1278 1278 1279 CHM_FILE = $(PATH_CHM)1279 CHM_FILE = 1280 1280 1281 1281 # The HHC_LOCATION tag can be used to specify the location (absolute path -
trunk/src/VBox/Main/Makefile.kmk
r91487 r92153 267 267 $(call MSG_TOOL,xsltproc,doxygen input,$<,$@) 268 268 $(QUIET)$(RM) -f $(wildcard $(VBOX_MAIN_DOC_DIR)/html/*) $(PATH_TARGET)/docs.Main 269 $(QUIET)$(VBOX_XSLTPROC) - o $(PATH_TARGET)/VirtualBox.idl $(VBOX_PATH_MAIN_SRC)/idl/doxygen.xsl $(VBOX_XIDL_FILE_SRC)270 $(QUIET)$(REDIRECT) -E 'DOCDIR=$(VBOX_MAIN_DOC_DIR)' -E 'PATH_TARGET=$(PATH_TARGET)' -E 'PATH_CHM=$(subst /,\,$(VBOX_MAIN_DOC_DIR)/VirtualBoxAPI.chm)'\269 $(QUIET)$(VBOX_XSLTPROC) --path ".:$(PATH_ROOT)/doc/manual" -o $(PATH_TARGET)/VirtualBox.idl $(VBOX_PATH_MAIN_SRC)/idl/doxygen.xsl $(VBOX_XIDL_FILE_SRC) 270 $(QUIET)$(REDIRECT) -E 'DOCDIR=$(VBOX_MAIN_DOC_DIR)' -E 'PATH_TARGET=$(PATH_TARGET)' \ 271 271 -- doxygen $(VBOX_PATH_MAIN_SRC)/Doxyfile.Main 272 272 $(QUIET)$(TEST) -s "$(PATH_TARGET)/Main.err" -- $(ECHO_EXT) ">>>>>>>>>>>>>>>>>>>> Main.err: >>>>>>>>>>>>>>>>>>>>>>>>" … … 277 277 $(QUIET)$(TEST) -s "$(PATH_TARGET)/Main.err" -- $(ECHO_EXT) "===> $(PATH_TARGET)/Main.err" 278 278 $(QUIET)$(TEST) -s "$(PATH_TARGET)/Main.err" -- $(ECHO_EXT) "===> **************************************************" 279 -$(EXEC_X86_WIN32) $(VBOX_PATH_HTML_HELP_WORKSHOP)/hhc.exe $(subst /,\\,$(VBOX_MAIN_DOC_DIR)/html/index.hhp)280 279 $(APPEND) $(PATH_TARGET)/docs.Main 281 280 # aliases -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r92133 r92153 2154 2154 </const> 2155 2155 <const name="Hex" value="1"> 2156 <desc>Value format is a series of hex bytes ( 09314f3200fe), optionally colons2157 as byte separators (9:31:4f:32::fe).</desc>2156 <desc>Value format is a series of hex bytes (<tt>09314f3200fe</tt>), 2157 optionally colons as byte separators (<tt>9:31:4f:32::fe</tt>).</desc> 2158 2158 </const> 2159 2159 </enum> -
trunk/src/VBox/Main/idl/doxygen.xsl
r82969 r92153 17 17 --> 18 18 19 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 19 <xsl:stylesheet 20 version="1.0" 21 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 22 xmlns:str="http://xsltsl.org/string" 23 exclude-result-prefixes="str" 24 > 25 <!-- The exclude-result-prefixes attribute is needed since otherwise the <tt> 26 tag added for the ID in interface and enum descriptions would get the 27 namespace, confusing doxygen completely. --> 28 29 <xsl:import href="string.xsl"/> 30 20 31 <xsl:output method="html" indent="yes"/> 21 32 22 33 <xsl:strip-space elements="*"/> 23 24 <xsl:include href="typemap-shared.inc.xsl" />25 34 26 35 … … 46 55 <xsl:apply-templates/> 47 56 </xsl:copy> 57 </xsl:template> 58 59 <!-- 60 * special treatment of <tt>, making sure that Doxygen will not interpret its 61 * contents (assuming it is a leaf tag) 62 --> 63 <xsl:template match="desc//tt/text()"> 64 <xsl:variable name="subst1"> 65 <xsl:call-template name="str:subst"> 66 <xsl:with-param name="text" select="." /> 67 <xsl:with-param name="replace" select="'::'" /> 68 <xsl:with-param name="with" select="'\::'" /> 69 </xsl:call-template> 70 </xsl:variable> 71 <xsl:value-of select="$subst1"/> 48 72 </xsl:template> 49 73 … … 235 259 <xsl:apply-templates select="." mode="middle"/> 236 260 @par Interface ID: 237 <tt>{<xsl:call-template name="str ing-to-upper">238 <xsl:with-param name=" str" select="../@uuid"/>261 <tt>{<xsl:call-template name="str:to-upper"> 262 <xsl:with-param name="text" select="../@uuid"/> 239 263 </xsl:call-template>}</tt> 240 264 <xsl:text>
*/
</xsl:text> … … 303 327 <xsl:apply-templates select="." mode="middle"/> 304 328 @par Interface ID: 305 <tt>{<xsl:call-template name="str ing-to-upper">306 <xsl:with-param name=" str" select="../@uuid"/>329 <tt>{<xsl:call-template name="str:to-upper"> 330 <xsl:with-param name="text" select="../@uuid"/> 307 331 </xsl:call-template>}</tt> 308 332 <xsl:text>
*/
</xsl:text>
Note:
See TracChangeset
for help on using the changeset viewer.