Changeset 99513 in vbox
- Timestamp:
- Apr 21, 2023 9:59:02 PM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157010
- Location:
- trunk
- Files:
-
- 50 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/docbook-refentry-to-C-help.xsl
r99118 r99513 149 149 <!-- Then comes the description and other refsect1 --> 150 150 <xsl:for-each select="./refsect1"> 151 <!-- assertions --> 151 152 <xsl:if test="name(*[1]) != 'title'"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Expected title as the first element in refsect1.</xsl:message></xsl:if> 152 153 <xsl:if test="text()"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>No text supported in refsect1.</xsl:message></xsl:if> 154 <xsl:if test="not(@id)"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refsect1 must have an @id attribute.</xsl:message></xsl:if> 155 <xsl:if test="not(starts-with(@id, concat(../@id, '-')))"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Wrong @id refsect1 prefix: '<xsl:value-of select="@id"/>', expected it to start with '<xsl:value-of select="../@id"/>-'</xsl:message></xsl:if> 156 157 <!-- .... --> 153 158 <xsl:if test="not(./remark[@role='help-skip'])"> 154 159 <xsl:variable name="sTitle"> … … 321 326 <xsl:if test="text()"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refsect2 shouldn't contain text</xsl:message></xsl:if> 322 327 <xsl:if test="count(./title) != 1"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refsect2 requires a title (<xsl:value-of select="ancestor-or-self::*[@id][1]/@id"/>)</xsl:message></xsl:if> 328 <xsl:if test="not(@id)"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refsect2 must have an @id attribute.</xsl:message></xsl:if> 329 <xsl:if test="not(starts-with(@id, concat(../../@id, '-')))"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Wrong @id refsect2 prefix: '<xsl:value-of select="@id"/>', expected it to start with '<xsl:value-of select="../../@id"/>-'</xsl:message></xsl:if> 323 330 324 331 <!-- title / command synopsis - sets the scope. --> … … 731 738 <xsl:template name="calc-scope-refsect1"> 732 739 <xsl:choose> 733 <xsl:when test=" title[text() = 'Description']">740 <xsl:when test="contains(@id, '-description') or title[text() = 'Description']"> 734 741 <xsl:text>RTMSGREFENTRYSTR_SCOPE_GLOBAL</xsl:text> 735 742 </xsl:when> 736 <xsl:when test=" @idor remark[@role='help-scope']">743 <xsl:when test="(@id and not(contains(@id, '-see-also')) and not(contains(@id, '-examples'))) or remark[@role='help-scope']"> 737 744 <xsl:call-template name="calc-scope-from-remark-or-id"/> 738 745 </xsl:when> … … 746 753 <xsl:template name="calc-scope-refsect2"> 747 754 <xsl:choose> 748 <xsl:when test=" @idor remark[@role='help-scope']">755 <xsl:when test="(@id and not(contains(@id, '-see-also')) and not(contains(@id, '-examples'))) or remark[@role='help-scope']"> 749 756 <xsl:call-template name="calc-scope-from-remark-or-id"/> 750 757 </xsl:when> -
trunk/doc/manual/docbook-refentry-to-H-help.xsl
r98103 r99513 99 99 <xsl:for-each select=".//refsect1[@id] | .//refsect2[@id]"> 100 100 <xsl:variable name="sThisId" select="@id"/> 101 <xsl:if test="not($RefEntry[@id = $sThisId]) and not($RefEntry/refsynopsisdiv/cmdsynopsis[@id = concat('synopsis-', $sThisId)])"> 101 <xsl:if test=" not($RefEntry[@id = $sThisId]) 102 and not($RefEntry/refsynopsisdiv/cmdsynopsis[@id = concat('synopsis-', $sThisId)]) 103 and not(contains($sThisId, '-see-also')) 104 and not(contains($sThisId, '-examples')) "> <!-- controlvm is too big, so skip these two --> 102 105 <xsl:variable name="sSubNm"> 103 106 <xsl:text>HELP_SCOPE_</xsl:text> -
trunk/doc/manual/en_US/man_VBoxHeadless.xml
r99155 r99513 70 70 </refsynopsisdiv> 71 71 72 <refsect1 >72 <refsect1 id="vboxheadless-description"> 73 73 <title>Description</title> 74 74 <para> … … 209 209 </refsect1> 210 210 211 <refsect1 >211 <refsect1 id="vboxheadless-examples"> 212 212 <title>Examples</title> 213 213 <remark role="help-scope" condition="GLOBAL"/> … … 229 229 </refsect1> 230 230 231 <refsect1 >231 <refsect1 id="vboxheadless-see-also"> 232 232 <title>See Also</title> 233 233 <para> -
trunk/doc/manual/en_US/man_VBoxManage-adoptstate.xml
r99154 r99513 58 58 </refsynopsisdiv> 59 59 60 <refsect1 >60 <refsect1 id="vboxmanage-adoptstate-description"> 61 61 <title>Description</title> 62 62 <para> … … 92 92 </refsect1> 93 93 94 <refsect1 >94 <refsect1 id="vboxmanage-adoptstate-examples"> 95 95 <title>Examples</title> 96 96 <remark role="help-scope" condition="GLOBAL" /> … … 104 104 </refsect1> 105 105 106 <refsect1 >106 <refsect1 id="vboxmanage-adoptstate-see-also"> 107 107 <title>See Also</title> 108 108 <para> -
trunk/doc/manual/en_US/man_VBoxManage-bandwidthctl.xml
r99155 r99513 95 95 </refsynopsisdiv> 96 96 97 <refsect1 >97 <refsect1 id="vboxmanage-bandwidthctl-description"> 98 98 <title>Description</title> 99 99 <para> … … 280 280 </refsect1> 281 281 282 <refsect1 >282 <refsect1 id="vboxmanage-bandwidthctl-examples"> 283 283 <title>Examples</title> 284 284 <remark role="help-scope" condition="GLOBAL"/> -
trunk/doc/manual/en_US/man_VBoxManage-checkmediumpwd.xml
r99155 r99513 58 58 </refsynopsisdiv> 59 59 60 <refsect1 >60 <refsect1 id="vboxmanage-checkmediumpwd-description"> 61 61 <title>Description</title> 62 62 <para> … … 89 89 </refsect1> 90 90 91 <refsect1 >91 <refsect1 id="vboxmanage-checkmediumpwd-examples"> 92 92 <title>Examples</title> 93 93 <remark role="help-scope" condition="GLOBAL" /> … … 105 105 </refsect1> 106 106 107 <refsect1 >107 <refsect1 id="vboxmanage-checkmediumpwd-see-also"> 108 108 <title>See Also</title> 109 109 <para> -
trunk/doc/manual/en_US/man_VBoxManage-clonemedium.xml
r99155 r99513 81 81 </refsynopsisdiv> 82 82 83 <refsect1 >83 <refsect1 id="vboxmanage-clonemedium-description"> 84 84 <title>Description</title> 85 85 <para> … … 195 195 </refsect1> 196 196 197 <refsect1 >197 <refsect1 id="vboxmanage-clonemedium-examples"> 198 198 <title>Examples</title> 199 199 <remark role="help-scope" condition="GLOBAL" /> … … 212 212 </refsect1> 213 213 214 <refsect1 >214 <refsect1 id="vboxmanage-clonemedium-see-also"> 215 215 <title>See Also</title> 216 216 <para> -
trunk/doc/manual/en_US/man_VBoxManage-clonevm.xml
r98103 r99513 74 74 </refsynopsisdiv> 75 75 76 <refsect1 >76 <refsect1 id="vboxmanage-clonevm-description"> 77 77 <title>Description</title> 78 78 <para> … … 87 87 </refsect1> 88 88 89 <refsect1 >89 <refsect1 id="vboxmanage-clonevm-common-args"> 90 90 <title>Command Operand and Options</title> 91 91 <para> … … 239 239 </refsect1> 240 240 241 <refsect1 >241 <refsect1 id="vboxmanage-clonevm-examples"> 242 242 <title>Examples</title> 243 243 <para> … … 266 266 </refsect1> 267 267 268 <refsect1 >268 <refsect1 id="vboxmanage-clonevm-see-also"> 269 269 <title>See Also</title> 270 270 <para> -
trunk/doc/manual/en_US/man_VBoxManage-closemedium.xml
r98103 r99513 63 63 </refsynopsisdiv> 64 64 65 <refsect1 >65 <refsect1 id="vboxmanage-closemedium-description"> 66 66 <title>Description</title> 67 67 <para> … … 102 102 </refsect1> 103 103 104 <refsect1 >104 <refsect1 id="vboxmanage-closemedium-examples"> 105 105 <title>Examples</title> 106 106 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-cloud.xml
r99161 r99513 50 50 <!-- Cloud list --> 51 51 <!-- The 'id' is mandatory and must start with 'synopsis-'. --> 52 <cmdsynopsis id="synopsis-vboxmanage-cloud list-instances">52 <cmdsynopsis id="synopsis-vboxmanage-cloud-list-instances"> 53 53 <command>VBoxManage cloud</command> 54 54 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 59 59 <arg>--compartment-id=<replaceable>string</replaceable></arg> 60 60 </cmdsynopsis> 61 <cmdsynopsis id="synopsis-vboxmanage-cloud list-images">61 <cmdsynopsis id="synopsis-vboxmanage-cloud-list-images"> 62 62 <command>VBoxManage cloud</command> 63 63 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 68 68 <arg>--state=<replaceable>string</replaceable></arg> 69 69 </cmdsynopsis> 70 <cmdsynopsis id="synopsis-vboxmanage-cloud list-vnicattachments">70 <cmdsynopsis id="synopsis-vboxmanage-cloud-list-vnicattachments"> 71 71 <command>VBoxManage cloud</command> 72 72 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 83 83 84 84 <!-- Cloud instance commands --> 85 <cmdsynopsis id="synopsis-vboxmanage-cloud instance-create" sepchar=" ">85 <cmdsynopsis id="synopsis-vboxmanage-cloud-instance-create" sepchar=" "> 86 86 <command moreinfo="none">VBoxManage cloud</command> 87 87 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 108 108 <arg>--cloud-init-script-path=<replaceable>path to a script</replaceable></arg> 109 109 </cmdsynopsis> 110 <cmdsynopsis id="synopsis-vboxmanage-cloud instance-info" sepchar=" ">110 <cmdsynopsis id="synopsis-vboxmanage-cloud-instance-info" sepchar=" "> 111 111 <command moreinfo="none">VBoxManage cloud</command> 112 112 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 116 116 <arg choice="req">--id=<replaceable>unique id</replaceable></arg> 117 117 </cmdsynopsis> 118 <cmdsynopsis id="synopsis-vboxmanage-cloud instance-terminate" sepchar=" ">118 <cmdsynopsis id="synopsis-vboxmanage-cloud-instance-terminate" sepchar=" "> 119 119 <command moreinfo="none">VBoxManage cloud</command> 120 120 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 124 124 <arg choice="req">--id=<replaceable>unique id</replaceable></arg> 125 125 </cmdsynopsis> 126 <cmdsynopsis id="synopsis-vboxmanage-cloud instance-start" sepchar=" ">126 <cmdsynopsis id="synopsis-vboxmanage-cloud-instance-start" sepchar=" "> 127 127 <command moreinfo="none">VBoxManage cloud</command> 128 128 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 132 132 <arg choice="req">--id=<replaceable>unique id</replaceable></arg> 133 133 </cmdsynopsis> 134 <cmdsynopsis id="synopsis-vboxmanage-cloud instance-pause" sepchar=" ">134 <cmdsynopsis id="synopsis-vboxmanage-cloud-instance-pause" sepchar=" "> 135 135 <command moreinfo="none">VBoxManage cloud</command> 136 136 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 140 140 <arg choice="req">--id=<replaceable>unique id</replaceable></arg> 141 141 </cmdsynopsis> 142 <cmdsynopsis id="synopsis-vboxmanage-cloud instance-reset" sepchar=" ">142 <cmdsynopsis id="synopsis-vboxmanage-cloud-instance-reset" sepchar=" "> 143 143 <command moreinfo="none">VBoxManage cloud</command> 144 144 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 150 150 151 151 <!-- Cloud image commands --> 152 <cmdsynopsis id="synopsis-vboxmanage-cloud image-create" sepchar=" "> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->152 <cmdsynopsis id="synopsis-vboxmanage-cloud-image-create" sepchar=" "> <!-- The 'id' is mandatory and must start with 'synopsis-'. --> 153 153 <command>VBoxManage cloud</command> 154 154 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 161 161 <arg>--instance-id=<replaceable>unique id</replaceable></arg> 162 162 </cmdsynopsis> 163 <cmdsynopsis id="synopsis-vboxmanage-cloud image-info" sepchar=" ">163 <cmdsynopsis id="synopsis-vboxmanage-cloud-image-info" sepchar=" "> 164 164 <command>VBoxManage cloud</command> 165 165 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 169 169 <arg choice="req">--id=<replaceable>unique id</replaceable></arg> 170 170 </cmdsynopsis> 171 <cmdsynopsis id="synopsis-vboxmanage-cloud image-delete" sepchar=" ">171 <cmdsynopsis id="synopsis-vboxmanage-cloud-image-delete" sepchar=" "> 172 172 <command>VBoxManage cloud</command> 173 173 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 177 177 <arg choice="req">--id=<replaceable>unique id</replaceable></arg> 178 178 </cmdsynopsis> 179 <cmdsynopsis id="synopsis-vboxmanage-cloud image-import" sepchar=" ">179 <cmdsynopsis id="synopsis-vboxmanage-cloud-image-import" sepchar=" "> 180 180 <command>VBoxManage cloud</command> 181 181 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 187 187 <arg>--object-name=<replaceable>name</replaceable></arg> 188 188 </cmdsynopsis> 189 <cmdsynopsis id="synopsis-vboxmanage-cloud image-export" sepchar=" ">189 <cmdsynopsis id="synopsis-vboxmanage-cloud-image-export" sepchar=" "> 190 190 <command>VBoxManage cloud</command> 191 191 <arg choice="req">--provider=<replaceable>name</replaceable></arg> … … 246 246 </refsynopsisdiv> 247 247 248 <refsect1 >248 <refsect1 id="vboxmanage-cloud-image-description"> 249 249 <title>Description</title> 250 250 … … 268 268 269 269 <!-- Cloud list commands --> 270 <refsect2 id="vboxmanage-cloud list-instances">270 <refsect2 id="vboxmanage-cloud-list-instances"> 271 271 <title>cloud list instances</title> 272 272 <remark role="help-copy-synopsis"/> … … 294 294 </refsect2> 295 295 296 <refsect2 id="vboxmanage-cloud list-images">296 <refsect2 id="vboxmanage-cloud-list-images"> 297 297 <title>cloud list images</title> 298 298 <remark role="help-copy-synopsis"/> … … 321 321 </refsect2> 322 322 323 <refsect2 id="vboxmanage-cloud list-vnicattachments">323 <refsect2 id="vboxmanage-cloud-list-vnicattachments"> 324 324 <title>cloud list vnic attachments</title> 325 325 <remark role="help-copy-synopsis"/> … … 356 356 357 357 <!-- Cloud instance commands --> 358 <refsect2 id="vboxmanage-cloud instance-create">358 <refsect2 id="vboxmanage-cloud-instance-create"> 359 359 <title>cloud instance create</title> 360 360 <remark role="help-copy-synopsis"/> … … 417 417 </refsect2> 418 418 419 <refsect2 id="vboxmanage-cloud instance-info">419 <refsect2 id="vboxmanage-cloud-instance-info"> 420 420 <title>cloud instance info</title> 421 421 <para> … … 429 429 </refsect2> 430 430 431 <refsect2 id="vboxmanage-cloud instance-terminate">431 <refsect2 id="vboxmanage-cloud-instance-terminate"> 432 432 <title>cloud instance termination</title> 433 433 <para> … … 441 441 </refsect2> 442 442 443 <refsect2 id="vboxmanage-cloud instance-start">443 <refsect2 id="vboxmanage-cloud-instance-start"> 444 444 <title>cloud instance start</title> 445 445 <para> … … 453 453 </refsect2> 454 454 455 <refsect2 id="vboxmanage-cloud instance-pause">455 <refsect2 id="vboxmanage-cloud-instance-pause"> 456 456 <title>cloud instance pause</title> 457 457 <para> … … 465 465 </refsect2> 466 466 467 <refsect2 id="vboxmanage-cloud instance-reset">467 <refsect2 id="vboxmanage-cloud-instance-reset"> 468 468 <title>cloud instance reset</title> 469 469 <para> … … 478 478 479 479 <!-- Cloud image commands --> 480 <refsect2 id="vboxmanage-cloud image-create">480 <refsect2 id="vboxmanage-cloud-image-create"> 481 481 <title>cloud image create</title> 482 482 <remark role="help-copy-synopsis"/> … … 510 510 </refsect2> 511 511 512 <refsect2 id="vboxmanage-cloud image-info">512 <refsect2 id="vboxmanage-cloud-image-info"> 513 513 <title>cloud image info</title> 514 514 <remark role="help-copy-synopsis"/> … … 523 523 </refsect2> 524 524 525 <refsect2 id="vboxmanage-cloud image-delete">525 <refsect2 id="vboxmanage-cloud-image-delete"> 526 526 <title>cloud image delete</title> 527 527 <remark role="help-copy-synopsis"/> … … 536 536 </refsect2> 537 537 538 <refsect2 id="vboxmanage-cloud image-import">538 <refsect2 id="vboxmanage-cloud-image-import"> 539 539 <title>cloud image import</title> 540 540 <remark role="help-copy-synopsis"/> … … 568 568 </refsect2> 569 569 570 <refsect2 id="vboxmanage-cloud image-export">570 <refsect2 id="vboxmanage-cloud-image-export"> 571 571 <title>cloud image export</title> 572 572 <remark role="help-copy-synopsis"/> -
trunk/doc/manual/en_US/man_VBoxManage-cloudprofile.xml
r99161 r99513 87 87 </refsynopsisdiv> 88 88 89 <refsect1 >89 <refsect1 id="vboxmanage-cloudprofile-description"> 90 90 <title>Description</title> 91 91 -
trunk/doc/manual/en_US/man_VBoxManage-common.xml
r99176 r99513 78 78 </refsynopsisdiv> 79 79 80 <refsect1 >80 <refsect1 id="vboxmanage-common-description"> 81 81 <title>Description</title> 82 82 <para> … … 226 226 </refsect1> 227 227 228 <refsect1 >228 <refsect1 id="vboxmanage-common-examples"> 229 229 <title>Examples</title> 230 230 <remark role="help-scope" condition="GLOBAL"/> … … 279 279 </refsect1> 280 280 281 <refsect1 >281 <refsect1 id="vboxmanage-common-see-also"> 282 282 <title>See Also</title> 283 283 <para> -
trunk/doc/manual/en_US/man_VBoxManage-controlvm.xml
r99176 r99513 757 757 </refsynopsisdiv> 758 758 759 <refsect1 >759 <refsect1 id="vboxmanage-controlvm-description"> 760 760 <title>Description</title> 761 761 <para> … … 2121 2121 </refsect1> 2122 2122 2123 <refsect1 >2123 <refsect1 id="vboxmanage-controlvm-examples"> 2124 2124 <title>Examples</title> 2125 2125 <remark role="help-scope" condition="GLOBAL" /> … … 2137 2137 </refsect1> 2138 2138 2139 <refsect1 >2139 <refsect1 id="vboxmanage-controlvm-see-also"> 2140 2140 <title>See Also</title> 2141 2141 <para> -
trunk/doc/manual/en_US/man_VBoxManage-convertfromraw.xml
r99153 r99513 86 86 </refsynopsisdiv> 87 87 88 <refsect1 >88 <refsect1 id="vboxmanage-convertfromraw-description"> 89 89 <title>Description</title> 90 90 <para> … … 244 244 </refsect1> 245 245 246 <refsect1 >246 <refsect1 id="vboxmanage-convertfromraw-examples"> 247 247 <title>Examples</title> 248 248 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-createmedium.xml
r99176 r99513 83 83 </refsynopsisdiv> 84 84 85 <refsect1 >85 <refsect1 id="vboxmanage-createmedium-description"> 86 86 <title>Description</title> 87 87 <para> … … 208 208 </refsect1> 209 209 210 <refsect1 >210 <refsect1 id="vboxmanage-createmedium-examples"> 211 211 <title>Examples</title> 212 212 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-createvm.xml
r99176 r99513 63 63 </refsynopsisdiv> 64 64 65 <refsect1 >65 <refsect1 id="vboxmanage-createvm-description"> 66 66 <title>Description</title> 67 67 <para> … … 87 87 </refsect1> 88 88 89 <refsect1 >89 <refsect1 id="vboxmanage-createvm-common-options"> 90 90 <title>Command Options</title> 91 91 <para> … … 186 186 </refsect1> 187 187 188 <refsect1 >188 <refsect1 id="vboxmanage-createvm-examples"> 189 189 <title>Examples</title> 190 190 <remark role="help-scope" condition="GLOBAL" /> … … 201 201 </refsect1> 202 202 203 <refsect1 >203 <refsect1 id="vboxmanage-createvm-see-also"> 204 204 <title>See Also</title> 205 205 <para> -
trunk/doc/manual/en_US/man_VBoxManage-debugvm.xml
r99154 r99513 191 191 </cmdsynopsis> 192 192 </refsynopsisdiv> 193 <refsect1 >193 <refsect1 id="vboxmanage-debugvm-description"> 194 194 <title>Description</title> 195 195 -
trunk/doc/manual/en_US/man_VBoxManage-dhcpserver.xml
r99192 r99513 255 255 </refsynopsisdiv> 256 256 257 <refsect1 >257 <refsect1 id="vboxmanage-dhcpserver-description"> 258 258 <title>Description</title> 259 259 -
trunk/doc/manual/en_US/man_VBoxManage-discardstate.xml
r99154 r99513 57 57 </refsynopsisdiv> 58 58 59 <refsect1 >59 <refsect1 id="vboxmanage-discardstate-description"> 60 60 <title>Description</title> 61 61 <para> … … 83 83 </refsect1> 84 84 85 <refsect1 >85 <refsect1 id="vboxmanage-discardstate-examples"> 86 86 <title>Examples</title> 87 87 <remark role="help-scope" condition="GLOBAL" /> … … 94 94 </refsect1> 95 95 96 <refsect1 >96 <refsect1 id="vboxmanage-discardstate-see-also"> 97 97 <title>See Also</title> 98 98 <para> -
trunk/doc/manual/en_US/man_VBoxManage-encryptmedium.xml
r98103 r99513 61 61 </refsynopsisdiv> 62 62 63 <refsect1 >63 <refsect1 id="vboxmanage-encryptmedium-description"> 64 64 <title>Description</title> 65 65 <para> … … 142 142 </refsect1> 143 143 144 <refsect1 >144 <refsect1 id="vboxmanage-encryptmedium-examples"> 145 145 <title>Examples</title> 146 146 <remark role="help-scope" condition="GLOBAL"/> -
trunk/doc/manual/en_US/man_VBoxManage-encryptvm.xml
r98103 r99513 94 94 </refsynopsisdiv> 95 95 96 <refsect1 >96 <refsect1 id="vboxmanage-encryptvm-description"> 97 97 <title>Description</title> 98 98 <para> … … 186 186 </refsect1> 187 187 188 <refsect1 >188 <refsect1 id="vboxmanage-encryptvm-examples"> 189 189 <title>Examples</title> 190 190 <remark role="help-scope" condition="GLOBAL" /> … … 196 196 </refsect1> 197 197 198 <refsect1 >198 <refsect1 id="vboxmanage-encryptvm-see-also"> 199 199 <title>See Also</title> 200 200 <para> -
trunk/doc/manual/en_US/man_VBoxManage-export.xml
r99153 r99513 110 110 </refsynopsisdiv> 111 111 112 <refsect1 >112 <refsect1 id="vboxmanage-export-description"> 113 113 <title>Description</title> 114 114 <para> … … 424 424 </refsect1> 425 425 426 <refsect1 >426 <refsect1 id="vboxmanage-export-examples"> 427 427 <title>Example</title> 428 428 <remark role="help-scope" condition="GLOBAL"/> -
trunk/doc/manual/en_US/man_VBoxManage-extpack.xml
r98103 r99513 63 63 </refsynopsisdiv> 64 64 65 <refsect1 >65 <refsect1 id="vboxmanage-extpack-description"> 66 66 <title>Description</title> 67 67 … … 133 133 </refsect1> 134 134 135 <refsect1 >135 <refsect1 id="vboxmanage-extpack-examples"> 136 136 <title>Examples</title> 137 137 <remark role="help-scope" condition="EXTPACK_UNINSTALL,EXTPACK"/> -
trunk/doc/manual/en_US/man_VBoxManage-getextradata.xml
r99154 r99513 63 63 </refsynopsisdiv> 64 64 65 <refsect1 >65 <refsect1 id="vboxmanage-getextradata-description"> 66 66 <title>Description</title> 67 67 <para> … … 101 101 </refsect1> 102 102 103 <refsect1 >103 <refsect1 id="vboxmanage-getextradata-examples"> 104 104 <title>Examples</title> 105 105 <remark role="help-scope" condition="GLOBAL"/> … … 143 143 </refsect1> 144 144 145 <refsect1 >145 <refsect1 id="vboxmanage-getextradata-see-also"> 146 146 <title>See Also</title> 147 147 <para> -
trunk/doc/manual/en_US/man_VBoxManage-hostonlyif.xml
r99153 r99513 74 74 </refsynopsisdiv> 75 75 76 <refsect1 >76 <refsect1 id="vboxmanage-hostonlyif-description"> 77 77 <title>Description</title> 78 78 <para> … … 190 190 </refsect1> 191 191 192 <refsect1 >192 <refsect1 id="vboxmanage-hostonlyif-examples"> 193 193 <title>Examples</title> 194 194 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-hostonlynet.xml
r98103 r99513 82 82 </refsynopsisdiv> 83 83 84 <refsect1 >84 <refsect1 id="vboxmanage-hostonlynet-description"> 85 85 <title>Description</title> 86 86 -
trunk/doc/manual/en_US/man_VBoxManage-list.xml
r98103 r99513 86 86 </refsynopsisdiv> 87 87 88 <refsect1 >88 <refsect1 id="vboxmanage-list-description"> 89 89 <title>Description</title> 90 90 <para> … … 507 507 </refsect1> 508 508 509 <refsect1 >509 <refsect1 id="vboxmanage-list-examples"> 510 510 <title>Examples</title> 511 511 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-mediumio.xml
r98103 r99513 87 87 </refsynopsisdiv> 88 88 89 <refsect1 >89 <refsect1 id="vboxmanage-mediumio-description"> 90 90 <title>Description</title> 91 91 -
trunk/doc/manual/en_US/man_VBoxManage-mediumproperty.xml
r98103 r99513 95 95 </refsynopsisdiv> 96 96 97 <refsect1 >97 <refsect1 id="vboxmanage-mediumproperty-description"> 98 98 <title>Description</title> 99 99 <para> … … 202 202 </refsect1> 203 203 204 <refsect1 >204 <refsect1 id="vboxmanage-mediumproperty-examples"> 205 205 <title>Examples</title> 206 206 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-modifymedium.xml
r98103 r99513 70 70 </refsynopsisdiv> 71 71 72 <refsect1 >72 <refsect1 id="vboxmanage-modifymedium-description"> 73 73 <title>Description</title> 74 74 <para> … … 233 233 </refsect1> 234 234 235 <refsect1 >235 <refsect1 id="vboxmanage-modifymedium-examples"> 236 236 <title>Examples</title> 237 237 <remark role="help-scope" condition="GLOBAL" /> … … 248 248 </refsect1> 249 249 250 <refsect1 >250 <refsect1 id="vboxmanage-modifymedium-see-also"> 251 251 <title>See Also</title> 252 252 <para> -
trunk/doc/manual/en_US/man_VBoxManage-modifynvram.xml
r99154 r99513 131 131 </refsynopsisdiv> 132 132 133 <refsect1 >133 <refsect1 id="vboxmanage-modifynvram-description"> 134 134 <title>Description</title> 135 135 -
trunk/doc/manual/en_US/man_VBoxManage-movevm.xml
r99154 r99513 59 59 </refsynopsisdiv> 60 60 61 <refsect1 >61 <refsect1 id="vboxmanage-movevm-description"> 62 62 <title>Description</title> 63 63 <para> … … 100 100 </refsect1> 101 101 102 <refsect1 >102 <refsect1 id="vboxmanage-movevm-examples"> 103 103 <title>Examples</title> 104 104 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-natnetwork.xml
r98103 r99513 101 101 </refsynopsisdiv> 102 102 103 <refsect1 >103 <refsect1 id="vboxmanage-natnetwork-description"> 104 104 <title>Description</title> 105 105 <para> … … 349 349 </refsect1> 350 350 351 <refsect1 >351 <refsect1 id="vboxmanage-natnetwork-examples"> 352 352 <title>Examples</title> 353 353 <remark role="help-scope" condition="GLOBAL"/> -
trunk/doc/manual/en_US/man_VBoxManage-registervm.xml
r98103 r99513 55 55 </refsynopsisdiv> 56 56 57 <refsect1 >57 <refsect1 id="vboxmanage-registervm-description"> 58 58 <title>Description</title> 59 59 <para> … … 94 94 </refsect1> 95 95 96 <refsect1 >96 <refsect1 id="vboxmanage-registervm-examples"> 97 97 <title>Examples</title> 98 98 <remark role="help-scope" condition="GLOBAL" /> … … 105 105 </refsect1> 106 106 107 <refsect1 >107 <refsect1 id="vboxmanage-registervm-see-also"> 108 108 <title>See Also</title> 109 109 <para> -
trunk/doc/manual/en_US/man_VBoxManage-setextradata.xml
r99154 r99513 61 61 </refsynopsisdiv> 62 62 63 <refsect1 >63 <refsect1 id="vboxmanage-setextradata-description"> 64 64 <title>Description</title> 65 65 <para> … … 98 98 </refsect1> 99 99 100 <refsect1 >100 <refsect1 id="vboxmanage-setextradata-examples"> 101 101 <title>Examples</title> 102 102 <remark role="help-scope" condition="GLOBAL"/> … … 115 115 </refsect1> 116 116 117 <refsect1 >117 <refsect1 id="vboxmanage-setextradata-see-also"> 118 118 <title>See Also</title> 119 119 <para> -
trunk/doc/manual/en_US/man_VBoxManage-setproperty.xml
r98103 r99513 55 55 </refsynopsisdiv> 56 56 57 <refsect1 >57 <refsect1 id="vboxmanage-setproperty-description"> 58 58 <title>Description</title> 59 59 <para> … … 211 211 </refsect1> 212 212 213 <refsect1 >213 <refsect1 id="vboxmanage-setproperty-examples"> 214 214 <title>Examples</title> 215 215 <remark role="help-scope" condition="GLOBAL" /> … … 222 222 </refsect1> 223 223 224 <refsect1 >224 <refsect1 id="vboxmanage-setproperty-see-also"> 225 225 <title>See Also</title> 226 226 <para> -
trunk/doc/manual/en_US/man_VBoxManage-sharedfolder.xml
r99154 r99513 73 73 </refsynopsisdiv> 74 74 75 <refsect1 >75 <refsect1 id="vboxmanage-sharedfolder-description"> 76 76 <title>Description</title> 77 77 <para> … … 195 195 </refsect1> 196 196 197 <refsect1 >197 <refsect1 id="vboxmanage-sharedfolder-examples"> 198 198 <title>Examples</title> 199 199 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_VBoxManage-showmediuminfo.xml
r98103 r99513 62 62 </refsynopsisdiv> 63 63 64 <refsect1 >64 <refsect1 id="vboxmanage-showmediuminfo-description"> 65 65 <title>Description</title> 66 66 <para> … … 119 119 </refsect1> 120 120 121 <refsect1 >121 <refsect1 id="vboxmanage-showmediuminfo-examples"> 122 122 <title>Examples</title> 123 123 <remark role="help-scope" condition="GLOBAL" /> … … 134 134 </refsect1> 135 135 136 <refsect1 >136 <refsect1 id="vboxmanage-showmediuminfo-see-also"> 137 137 <title>See Also</title> 138 138 <para> -
trunk/doc/manual/en_US/man_VBoxManage-showvminfo.xml
r98108 r99513 73 73 </refsynopsisdiv> 74 74 75 <refsect1 >75 <refsect1 id="vboxmanage-showvminfo-description"> 76 76 <title>Description</title> 77 77 <para> … … 164 164 </refsect1> 165 165 166 <refsect1 >166 <refsect1 id="vboxmanage-showvminfo-examples"> 167 167 <title>Examples</title> 168 168 <remark role="help-scope" condition="GLOBAL"/> … … 213 213 </refsect1> 214 214 215 <refsect1 >215 <refsect1 id="vboxmanage-showvminfo-see-also"> 216 216 <title>See Also</title> 217 217 <para> -
trunk/doc/manual/en_US/man_VBoxManage-signova.xml
r98103 r99513 70 70 </refsynopsisdiv> 71 71 72 <refsect1 >72 <refsect1 id="vboxmanage-signova-description"> 73 73 <title>Description</title> 74 74 <para> -
trunk/doc/manual/en_US/man_VBoxManage-startvm.xml
r99154 r99513 66 66 </refsynopsisdiv> 67 67 68 <refsect1 >68 <refsect1 id="vboxmanage-startvm-description"> 69 69 <title>Description</title> 70 70 <para> … … 170 170 </refsect1> 171 171 172 <refsect1 >172 <refsect1 id="vboxmanage-startvm-examples"> 173 173 <title>Examples</title> 174 174 <remark role="help-scope" condition="GLOBAL" /> … … 184 184 </refsect1> 185 185 186 <refsect1 >186 <refsect1 id="vboxmanage-startvm-see-also"> 187 187 <title>See Also</title> 188 188 <para> -
trunk/doc/manual/en_US/man_VBoxManage-storageattach.xml
r99154 r99513 123 123 </refsynopsisdiv> 124 124 125 <refsect1 >125 <refsect1 id="vboxmanage-storageattach-description"> 126 126 <title>Description</title> 127 127 <para> … … 520 520 </refsect1> 521 521 522 <refsect1 >522 <refsect1 id="vboxmanage-storageattach-examples"> 523 523 <title>Examples</title> 524 524 <remark role="help-scope" condition="GLOBAL" /> … … 539 539 </refsect1> 540 540 541 <refsect1 >541 <refsect1 id="vboxmanage-storageattach-see-also"> 542 542 <title>See Also</title> 543 543 <para> -
trunk/doc/manual/en_US/man_VBoxManage-storagectl.xml
r99154 r99513 91 91 </refsynopsisdiv> 92 92 93 <refsect1 >93 <refsect1 id="vboxmanage-storagectl-description"> 94 94 <title>Description</title> 95 95 <para> … … 179 179 </refsect1> 180 180 181 <refsect1 >181 <refsect1 id="vboxmanage-storagectl-examples"> 182 182 <title>Examples</title> 183 183 <remark role="help-scope" condition="GLOBAL" /> … … 197 197 </refsect1> 198 198 199 <refsect1 >199 <refsect1 id="vboxmanage-storagectl-see-also"> 200 200 <title>See Also</title> 201 201 <para> -
trunk/doc/manual/en_US/man_VBoxManage-unattended.xml
r99154 r99513 87 87 </refsynopsisdiv> 88 88 89 <refsect1 >89 <refsect1 id="vboxmanage-unattended-description"> 90 90 <title>Description</title> 91 91 -
trunk/doc/manual/en_US/man_VBoxManage-unregistervm.xml
r99154 r99513 59 59 </refsynopsisdiv> 60 60 61 <refsect1 >61 <refsect1 id="vboxmanage-unregistervm-description"> 62 62 <title>Description</title> 63 63 <para> … … 107 107 </refsect1> 108 108 109 <refsect1 >109 <refsect1 id="vboxmanage-unregistervm-examples"> 110 110 <title>Examples</title> 111 111 <remark role="help-scope" condition="GLOBAL" /> … … 124 124 </refsect1> 125 125 126 <refsect1 >126 <refsect1 id="vboxmanage-unregistervm-see-also"> 127 127 <title>See Also</title> 128 128 <para> -
trunk/doc/manual/en_US/man_VBoxManage-updatecheck.xml
r98103 r99513 66 66 </refsynopsisdiv> 67 67 68 <refsect1 >68 <refsect1 id="vboxmanage-updatecheck-description"> 69 69 <title>Description</title> 70 70 -
trunk/doc/manual/en_US/man_VBoxManage-usbdevsource.xml
r98103 r99513 60 60 </refsynopsisdiv> 61 61 62 <refsect1 >62 <refsect1 id="vboxmanage-usbdevsource-description"> 63 63 <title>Description</title> 64 64 <para> … … 118 118 </refsect1> 119 119 120 <refsect1 >120 <refsect1 id="vboxmanage-usbdevsource-examples"> 121 121 <title>Examples</title> 122 122 <remark role="help-scope" condition="GLOBAL" /> -
trunk/doc/manual/en_US/man_vboximg-mount.xml
r99155 r99513 78 78 </refsynopsisdiv> 79 79 80 <refsect1 id="vboximg-mount- intro">80 <refsect1 id="vboximg-mount-description"> 81 81 <title>Description</title> 82 82 <para> … … 308 308 </refsect1> 309 309 310 <refsect1 >310 <refsect1 id="vboximg-mount-examples"> 311 311 <title>Examples</title> 312 312 <remark role="help-scope" condition="MOUNT-MOUNT,MOUNT-LIST"/> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r98852 r99513 650 650 { 651 651 case kCloudList_Images: 652 setCurrentSubcommand(HELP_SCOPE_CLOUD LIST_IMAGES);652 setCurrentSubcommand(HELP_SCOPE_CLOUD_LIST_IMAGES); 653 653 return listCloudImages(a, GetState.iNext, pCommonOpts); 654 654 655 655 case kCloudList_Instances: 656 setCurrentSubcommand(HELP_SCOPE_CLOUD LIST_INSTANCES);656 setCurrentSubcommand(HELP_SCOPE_CLOUD_LIST_INSTANCES); 657 657 return listCloudInstances(a, GetState.iNext, pCommonOpts); 658 658 case kCloudList_Machines: … … 662 662 663 663 case kCloudList_VnicAttachments: 664 setCurrentSubcommand(HELP_SCOPE_CLOUD LIST_VNICATTACHMENTS);664 setCurrentSubcommand(HELP_SCOPE_CLOUD_LIST_VNICATTACHMENTS); 665 665 return listCloudVnicAttachments(a, GetState.iNext, pCommonOpts); 666 666 … … 1427 1427 /* Sub-commands: */ 1428 1428 case kCloudInstance_Create: 1429 setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_CREATE);1429 setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_CREATE); 1430 1430 return createCloudInstance(a, GetState.iNext, pCommonOpts); 1431 1431 1432 1432 case kCloudInstance_Start: 1433 setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_START);1433 setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_START); 1434 1434 return startCloudInstance(a, GetState.iNext, pCommonOpts); 1435 1435 1436 1436 case kCloudInstance_Pause: 1437 setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_PAUSE);1437 setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_PAUSE); 1438 1438 return pauseCloudInstance(a, GetState.iNext, pCommonOpts); 1439 1439 1440 1440 case kCloudInstance_Info: 1441 setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_INFO);1441 setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_INFO); 1442 1442 return showCloudInstanceInfo(a, GetState.iNext, pCommonOpts); 1443 1443 1444 1444 case kCloudInstance_Update: 1445 // setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_UPDATE);1445 // setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_UPDATE); 1446 1446 return updateCloudInstance(a, GetState.iNext, pCommonOpts); 1447 1447 1448 1448 case kCloudInstance_Terminate: 1449 setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_TERMINATE);1449 setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_TERMINATE); 1450 1450 return terminateCloudInstance(a, GetState.iNext, pCommonOpts); 1451 1451 1452 1452 case kCloudInstance_Reset: 1453 setCurrentSubcommand(HELP_SCOPE_CLOUD INSTANCE_RESET);1453 setCurrentSubcommand(HELP_SCOPE_CLOUD_INSTANCE_RESET); 1454 1454 return resetCloudInstance(a, GetState.iNext, pCommonOpts); 1455 1455 … … 2080 2080 /* Sub-commands: */ 2081 2081 case kCloudImage_Create: 2082 setCurrentSubcommand(HELP_SCOPE_CLOUD IMAGE_CREATE);2082 setCurrentSubcommand(HELP_SCOPE_CLOUD_IMAGE_CREATE); 2083 2083 return createCloudImage(a, GetState.iNext, pCommonOpts); 2084 2084 2085 2085 case kCloudImage_Export: 2086 setCurrentSubcommand(HELP_SCOPE_CLOUD IMAGE_EXPORT);2086 setCurrentSubcommand(HELP_SCOPE_CLOUD_IMAGE_EXPORT); 2087 2087 return exportCloudImage(a, GetState.iNext, pCommonOpts); 2088 2088 2089 2089 case kCloudImage_Import: 2090 setCurrentSubcommand(HELP_SCOPE_CLOUD IMAGE_IMPORT);2090 setCurrentSubcommand(HELP_SCOPE_CLOUD_IMAGE_IMPORT); 2091 2091 return importCloudImage(a, GetState.iNext, pCommonOpts); 2092 2092 2093 2093 case kCloudImage_Info: 2094 setCurrentSubcommand(HELP_SCOPE_CLOUD IMAGE_INFO);2094 setCurrentSubcommand(HELP_SCOPE_CLOUD_IMAGE_INFO); 2095 2095 return showCloudImageInfo(a, GetState.iNext, pCommonOpts); 2096 2096 2097 2097 case kCloudImage_Update: 2098 // setCurrentSubcommand(HELP_SCOPE_CLOUD IMAGE_UPDATE);2098 // setCurrentSubcommand(HELP_SCOPE_CLOUD_IMAGE_UPDATE); 2099 2099 return updateCloudImage(a, GetState.iNext, pCommonOpts); 2100 2100 2101 2101 case kCloudImage_Delete: 2102 setCurrentSubcommand(HELP_SCOPE_CLOUD IMAGE_DELETE);2102 setCurrentSubcommand(HELP_SCOPE_CLOUD_IMAGE_DELETE); 2103 2103 return deleteCloudImage(a, GetState.iNext, pCommonOpts); 2104 2104 -
trunk/src/VBox/Runtime/common/fs/isomakercmd-man.xml
r98103 r99513 62 62 </refsynopsisdiv> 63 63 64 <refsect1 >64 <refsect1 id="viso-description"> 65 65 <title>Description</title> 66 66 <para>Construct a virtual ISO 9660 / Joliet / UDF / HFS hybrid image and either write it to a
Note:
See TracChangeset
for help on using the changeset viewer.