Commit graph

7 commits

Author SHA1 Message Date
Kim Alvefur
21740a1382 util.argparse: Add support for repeatable parameters
These are gathered into arrays
2022-01-05 04:46:27 +01:00
Matthew Wild
69ce40a6d2 util.argparse: Translate '-' to '_' in long option names for convenience
A review of existing code suggests nothing will break. So, here we go...
2023-04-07 13:24:29 +01:00
Matthew Wild
93347db124 util.argparse: Revise 553c6204fe5b with a different approach
The second return value is (not insensibly) assumed to be an error. Instead of
returning a value there in the success case, copy the positional arguments
into the existing opts table.
2022-04-25 15:24:56 +01:00
Matthew Wild
0eef6dde1e util.argparse: Return final 'arg' table with positional arguments for convenience
This is the same as the input table (which is mutated during processing), but
if that table was created on the fly, such as by packing `...` it's convenient
if it also gets returned from the parse function.
2022-04-25 15:09:41 +01:00
Kim Alvefur
8145673928 Merge 0.11->trunk 2021-10-12 14:59:18 +02:00
Kim Alvefur
2b2f9903ae util.argparse: Move exiting and error to util.startup
It's not so nice to have a library that exits the entire application
from under you, so this and the error reporting belongs in util.startup.

The argparse code was originally in util.startup but moved out in
1196f1e8d178 but the error handling should have stayed.
2020-06-17 19:32:12 +02:00
Kim Alvefur
e199091987 util.startup: Break out command line argument parsing into util.argparse
This will allow using it from other places such as prosodyctl
sub-commands and plugins
2020-02-19 21:38:00 +01:00