VirtualBox

Changeset 94199 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Mar 12, 2022 7:18:11 PM (3 years ago)
Author:
vboxsync
Message:

doc/manual,FE/VBoxManage: Convert clonemedium command to refentry documentation, ​bugref:9186

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r94198 r94199  
    206206    { "modifyhd",           USAGE_MODIFYMEDIUM,     VBMG_CMD_TODO, handleModifyMedium,         0 }, /* backward compatibility */
    207207    { "modifyvdi",          USAGE_MODIFYMEDIUM,     VBMG_CMD_TODO, handleModifyMedium,         0 }, /* backward compatibility */
    208     { "clonemedium",        USAGE_CLONEMEDIUM,      VBMG_CMD_TODO, handleCloneMedium,          0 },
    209     { "clonehd",            USAGE_CLONEMEDIUM,      VBMG_CMD_TODO, handleCloneMedium,          0 }, /* backward compatibility */
    210     { "clonevdi",           USAGE_CLONEMEDIUM,      VBMG_CMD_TODO, handleCloneMedium,          0 }, /* backward compatibility */
     208    { "clonemedium",        USAGE_S_NEWCMD,  HELP_CMD_CLONEMEDIUM, handleCloneMedium,          0 },
     209    { "clonehd",            USAGE_S_NEWCMD,  HELP_CMD_CLONEMEDIUM, handleCloneMedium,          0 }, /* backward compatibility */
     210    { "clonevdi",           USAGE_S_NEWCMD,  HELP_CMD_CLONEMEDIUM, handleCloneMedium,          0 }, /* backward compatibility */
    211211    { "encryptmedium",      USAGE_ENCRYPTMEDIUM,    VBMG_CMD_TODO, handleEncryptMedium,        0 },
    212212    { "checkmediumpwd",     USAGE_MEDIUMENCCHKPWD,  VBMG_CMD_TODO, handleCheckMediumPassword,  0 },
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r94198 r94199  
    9999    USAGE_INVALID = 0,
    100100    USAGE_MODIFYMEDIUM,
    101     USAGE_CLONEMEDIUM,
    102101    USAGE_CREATEHOSTIF,
    103102    USAGE_REMOVEHOSTIF,
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp

    r94198 r94199  
    10251025            case 'd':   // disk
    10261026                if (cmd != CMD_NONE)
    1027                     return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Only one command can be specified: '%s'"), ValueUnion.psz);
     1027                    return errorSyntax(Disk::tr("Only one command can be specified: '%s'"), ValueUnion.psz);
    10281028                cmd = CMD_DISK;
    10291029                break;
     
    10311031            case 'D':   // DVD
    10321032                if (cmd != CMD_NONE)
    1033                     return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Only one command can be specified: '%s'"), ValueUnion.psz);
     1033                    return errorSyntax(Disk::tr("Only one command can be specified: '%s'"), ValueUnion.psz);
    10341034                cmd = CMD_DVD;
    10351035                break;
     
    10371037            case 'f':   // floppy
    10381038                if (cmd != CMD_NONE)
    1039                     return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Only one command can be specified: '%s'"), ValueUnion.psz);
     1039                    return errorSyntax(Disk::tr("Only one command can be specified: '%s'"), ValueUnion.psz);
    10401040                cmd = CMD_FLOPPY;
    10411041                break;
     
    10691069                    pszDst = ValueUnion.psz;
    10701070                else
    1071                     return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Invalid parameter '%s'"), ValueUnion.psz);
     1071                    return errorSyntax(Disk::tr("Invalid parameter '%s'"), ValueUnion.psz);
    10721072                break;
    10731073
     
    10761076                {
    10771077                    if (RT_C_IS_GRAPH(c))
    1078                         return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("unhandled option: -%c"), c);
     1078                        return errorSyntax(Disk::tr("unhandled option: -%c"), c);
    10791079                    else
    1080                         return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("unhandled option: %i"), c);
     1080                        return errorSyntax(Disk::tr("unhandled option: %i"), c);
    10811081                }
    10821082                else if (c == VERR_GETOPT_UNKNOWN_OPTION)
    1083                     return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("unknown option: %s"), ValueUnion.psz);
     1083                    return errorSyntax(Disk::tr("unknown option: %s"), ValueUnion.psz);
    10841084                else if (ValueUnion.pDef)
    1085                     return errorSyntax(USAGE_CLONEMEDIUM, "%s: %Rrs", ValueUnion.pDef->pszLong, c);
     1085                    return errorSyntax("%s: %Rrs", ValueUnion.pDef->pszLong, c);
    10861086                else
    1087                     return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("error: %Rrs"), c);
     1087                    return errorSyntax(Disk::tr("error: %Rrs"), c);
    10881088        }
    10891089    }
     
    10921092        cmd = CMD_DISK;
    10931093    if (!pszSrc)
    1094         return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Mandatory UUID or input file parameter missing"));
     1094        return errorSyntax(Disk::tr("Mandatory UUID or input file parameter missing"));
    10951095    if (!pszDst)
    1096         return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Mandatory output file parameter missing"));
     1096        return errorSyntax(Disk::tr("Mandatory output file parameter missing"));
    10971097    if (fExisting && (!format.isEmpty() || enmMediumVariant != MediumVariant_Standard))
    1098         return errorSyntax(USAGE_CLONEMEDIUM, Disk::tr("Specified options which cannot be used with --existing"));
     1098        return errorSyntax(Disk::tr("Specified options which cannot be used with --existing"));
    10991099
    11001100    ComPtr<IMedium> pSrcMedium;
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r94198 r94199  
    639639                     "\n", SEP);
    640640
    641     if (enmCommand == USAGE_CLONEMEDIUM || enmCommand == USAGE_S_ALL)
    642         RTStrmPrintf(pStrm,
    643                            "%s clonemedium %s     [disk|dvd|floppy] <uuid|inputfile> <uuid|outputfile>\n"
    644                      "                            [--format VDI|VMDK|VHD|RAW|<other>]\n"
    645                      "                            [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
    646                      "                            [--existing]\n"
    647                      "\n", SEP);
    648 
    649641    if (enmCommand == USAGE_MEDIUMPROPERTY || enmCommand == USAGE_S_ALL)
    650642        RTStrmPrintf(pStrm,
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette