diff --git a/lib/RevBank/Plugins.pm b/lib/RevBank/Plugins.pm index 5e9e1e9..b2c64e2 100644 --- a/lib/RevBank/Plugins.pm +++ b/lib/RevBank/Plugins.pm @@ -65,6 +65,9 @@ sub load($class) { sub FETCH_CODE_ATTRIBUTES { return \$ATTR{ +pop }; } + sub HELP1 { + \$::HELP1{ +shift } = +pop; + } sub HELP { \$::HELP{ +shift } = +pop; } diff --git a/plugins/adduser b/plugins/adduser index 9da44a5..2a5a592 100644 --- a/plugins/adduser +++ b/plugins/adduser @@ -1,6 +1,6 @@ #!perl -HELP "adduser " => "Create an account"; +HELP1 "adduser " => "Create an account"; sub command :Tab(adduser) ($self, $cart, $command, @) { $command eq 'adduser' or return NEXT; diff --git a/plugins/deposit b/plugins/deposit index 234e569..6ac93cd 100644 --- a/plugins/deposit +++ b/plugins/deposit @@ -2,7 +2,7 @@ # This plugin must at the end in the plugins file. -HELP "deposit " => "Deposit into an account"; +HELP1 "deposit " => "Deposit into an account"; sub command :Tab(deposit) ($self, $cart, $command, @) { $command eq 'deposit' or return NEXT; diff --git a/plugins/help b/plugins/help index f3abed2..8982d06 100644 --- a/plugins/help +++ b/plugins/help @@ -1,6 +1,6 @@ #!perl -HELP "help" => "The stuff you're looking at right now :)"; +HELP1 "help2" => "Advanced usage instructions"; use List::Util qw(max); @@ -8,28 +8,17 @@ my $bold = "\e[1m"; my $underline = "\e[4m"; my $off = "\e[0m"; -sub command :Tab(help,wtf,omgwtfbbq) ($self, $cart, $command, @) { - return NEXT if $command !~ /^(?:help|wtf|omgwtfbbq)$/; +sub command :Tab(help,help2,wtf,omgwtfbbq) ($self, $cart, $command, @) { + return NEXT if $command !~ /^(?:help2?|wtf|omgwtfbbq)$/; - # GNU less(1) and more(1) are a bad choice to present to total newbies who - # might have no interest in learning to use these surprisingly powerful - # tools, so I will not accepting patches to use either of those, or to use - # the PAGER environment variable (because that will typically be set to - # either one of those by default). For example, typing "v" will excute - # vi... - # On the other hand, busybox(1) has a "more" applet that gives the user - # clear instructions and seems mostly harmless too. - my $pipe; - my $oldhandle = select; - if (open $pipe, "|-", "busybox", "more") { - select $pipe; - } + my $help2 = $command =~ /help2/; + my $hash = $help2 ? \%::HELP : \%::HELP1; say "\n${bold}Valid commands:${off}"; - my $width = max(map length s/[<>]//rg, keys %::HELP); + my $width = max(map length s/[<>]//rg, keys %$hash); - for my $command (sort keys %::HELP) { + for my $command (sort keys %$hash) { my $display = $command; my $length = length $display =~ s/[<>]//rg; @@ -40,18 +29,19 @@ sub command :Tab(help,wtf,omgwtfbbq) ($self, $cart, $command, @) { # Because of markup codes, a simple %-42s doesn't work. $display .= " " x ($width - $length); - say sprintf " %s %s", $display, $::HELP{$command}; + say sprintf " %s %s", $display, $hash->{$command}; } + my $advanced = $help2 + ? "${bold}Advanced usage:${off} pass space separated arguments to parameters" + : ""; # Line intentionally left blank + print <<"END"; ${bold}Simple usage: ${off} press after a command for follow-up prompts -${bold}Advanced usage:${off} pass space separated arguments to parameters +$advanced Complete each transaction with ${underline}account${off} (i.e. enter your name). END - select $oldhandle; - close $pipe; - return ACCEPT; } diff --git a/plugins/products b/plugins/products index cb9228c..297a692 100644 --- a/plugins/products +++ b/plugins/products @@ -1,7 +1,7 @@ #!perl -HELP "" => "Look up products from database"; -HELP "edit" => "Edit product list"; +HELP1 "" => "Add a product to pending transaction"; +HELP "edit" => "Edit product list"; my $filename = 'revbank.products'; diff --git a/plugins/repeat b/plugins/repeat index bb63905..1932796 100644 --- a/plugins/repeat +++ b/plugins/repeat @@ -1,6 +1,7 @@ #!perl -HELP "*, x, x, *" => "Repeat previous/next product N times"; +HELP "*, x, x, *" => "Set quantity of previous/next product"; +HELP "-, +" => "Decrease/increase quantity of previous product"; my $err_stacked = "Stacked repetition is not supported."; my $err_pfand = "Plugins 'pfand' and 'repeat' cannot be combined."; diff --git a/plugins/stock b/plugins/stock index 6933076..53c7f15 100644 --- a/plugins/stock +++ b/plugins/stock @@ -1,6 +1,6 @@ #!perl -HELP "cash" => "Checkout without a user account"; +HELP1 "cash" => "Checkout without a user account"; sub command :Tab(cash) ($self, $cart, $command, @) { return NEXT if $command ne 'cash'; diff --git a/plugins/undo b/plugins/undo index fbc9b98..89af87c 100644 --- a/plugins/undo +++ b/plugins/undo @@ -1,6 +1,6 @@ #!perl -HELP "undo " => "Undo a transaction"; +HELP1 "undo " => "Undo a transaction"; my $filename = ".revbank.undo"; diff --git a/plugins/unlisted b/plugins/unlisted index 81f112f..ca5437d 100644 --- a/plugins/unlisted +++ b/plugins/unlisted @@ -1,6 +1,6 @@ #!perl -HELP "unlisted" => "Buy unlisted product (manual entry)"; +HELP1 "unlisted" => "Buy unlisted product (manual entry)"; sub command :Tab(unlisted,donate) ($self, $cart, $command, @) { $command eq 'unlisted' or $command eq 'donate' or return NEXT; diff --git a/plugins/users b/plugins/users index 2796e91..f1155c1 100644 --- a/plugins/users +++ b/plugins/users @@ -1,8 +1,8 @@ #!perl -HELP "" => "[Pay with your account and] show balance"; -HELP "list" => "List accounts and balances"; -HELP "shame" => "Display Hall of Shame (negative balances)"; +HELP1 "" => "[Pay with your account and] show balance"; +HELP "list" => "List accounts and balances"; +HELP "shame" => "Display Hall of Shame (negative balances)"; sub command :Tab(list,ls,shame,USERS) ($self, $cart, $command, @) { return $self->list if $command eq 'list'; diff --git a/plugins/withdraw b/plugins/withdraw index 6b40e35..9a7ed15 100644 --- a/plugins/withdraw +++ b/plugins/withdraw @@ -1,6 +1,6 @@ #!perl -HELP "withdraw " => "Withdraw from your account"; +HELP1 "withdraw " => "Withdraw from your account"; sub command :Tab(withdraw) ($self, $cart, $command, @) { if (defined parse_amount($command)) { diff --git a/revbank b/revbank index 1e59b40..241eff9 100755 --- a/revbank +++ b/revbank @@ -19,7 +19,7 @@ use RevBank::Messages; use RevBank::Cart; our $VERSION = "3.3"; -our %HELP = ( +our %HELP1 = ( "abort" => "Abort the current transaction", ); diff --git a/revbank.accounts b/revbank.accounts index e69de29..7b3c499 100644 --- a/revbank.accounts +++ b/revbank.accounts @@ -0,0 +1,2 @@ +juerd +163.48 2022-06-04_02:19:56 +@2021-12-03_18:27:54 +bla -36.00 2022-01-19_17:11:25 -@2022-01-19_17:00:43