From: Dietmar Maurer Date: Fri, 6 Jul 2018 07:32:16 +0000 (+0200) Subject: update files from pve-common X-Git-Url: https://git.proxmox.com/?p=pve-client.git;a=commitdiff_plain;h=322e3659f1db64641a31940c9d35536313eac611;ds=sidebyside update files from pve-common --- diff --git a/PVE/APIClient/RESTHandler.pm b/PVE/APIClient/RESTHandler.pm index a93ba26..22e8169 100644 --- a/PVE/APIClient/RESTHandler.pm +++ b/PVE/APIClient/RESTHandler.pm @@ -566,7 +566,7 @@ my $compute_param_mapping_hash = sub { # generate usage information for command line tools # -# $name ... the name of the method +# $info ... method info # $prefix ... usually something like "$exename $cmd" ('pvesm add') # $arg_param ... list of parameters we want to get as ordered arguments # on the command line (or single parameter name for lists) @@ -577,13 +577,13 @@ my $compute_param_mapping_hash = sub { # 'full' ... text, include description # 'asciidoc' ... generate asciidoc for man pages (like 'full') # $param_cb ... mapping for string parameters to file path parameters -sub usage_str { - my ($self, $name, $prefix, $arg_param, $fixed_param, $format, $param_cb) = @_; +sub getopt_usage { + my ($info, $prefix, $arg_param, $fixed_param, $format, $param_cb) = @_; $format = 'long' if !$format; - my $info = $self->map_method_by_name($name); my $schema = $info->{parameters}; + my $name = $info->{name}; my $prop = $schema->{properties}; my $out = ''; @@ -679,6 +679,14 @@ sub usage_str { return $out; } +sub usage_str { + my ($self, $name, $prefix, $arg_param, $fixed_param, $format, $param_cb) = @_; + + my $info = $self->map_method_by_name($name); + + return getopt_usage($info, $prefix, $arg_param, $fixed_param, $format, $param_cb); +} + # generate docs from JSON schema properties sub dump_properties { my ($prop, $format, $style, $filterFn) = @_;