command line order is problematic #166

Closed
opened 2007-10-03 22:15:52 +00:00 by zandr · 37 comments
zandr commented 2007-10-03 22:15:52 +00:00
Owner

allmydata-tahoe put -u http://localhost:port LOCAL_FILE REMOTE_FILE

Assuming we're going to have to specify the -u at all (can we stash that in ~/.allmydata or similar?), it seems that options that are generic regardless of the command should be before the verb.

This is made more annoying by the fact that the usage/help specifies "put LOCAL_FILE REMOTE_FILE" with no meniton of -u, and the error if you get that wrong is an unhelpful "wrong number of arguments."

allmydata-tahoe put -u <http://localhost:port> LOCAL_FILE REMOTE_FILE Assuming we're going to have to specify the -u at all (can we stash that in ~/.allmydata or similar?), it seems that options that are generic regardless of the command should be *before* the verb. This is made more annoying by the fact that the usage/help specifies "put LOCAL_FILE REMOTE_FILE" with no meniton of -u, and the error if you get that wrong is an unhelpful "wrong number of arguments."
tahoe-lafs added the
c/unknown
p/major
t/defect
v/0.6.0
labels 2007-10-03 22:15:52 +00:00
tahoe-lafs added this to the undecided milestone 2007-10-03 22:15:52 +00:00

As of an hour ago, you no longer need the '-u' .. all CLI commands default to using ~/.tahoe , including 'create-client' and 'start'. See #120 for details.

The other criticisms are still outstanding though. The short answer is that not all commands accept those "generic" parameters, so they live after the verb. Also, the directory to use (for start/stop/restart) can come as an actual argument (as opposed to an option/parameter/flag), so 'tahoe start node1' works. This is specifically useful for 'tahoe restart -m node*', to kick a whole directory full of nodes at once.

That said, enough of the CLI commands take that argument that maybe it should be moved before the verb. And certainly the silent confusion with LOCAL_FILE REMOTE_FILE is a big problem.

As of an hour ago, you no longer need the '-u' .. all CLI commands default to using ~/.tahoe , including 'create-client' and 'start'. See #120 for details. The other criticisms are still outstanding though. The short answer is that not all commands accept those "generic" parameters, so they live after the verb. Also, the directory to use (for start/stop/restart) can come as an actual argument (as opposed to an option/parameter/flag), so 'tahoe start node1' works. This is specifically useful for 'tahoe restart -m node*', to kick a whole directory full of nodes at once. That said, enough of the CLI commands take that argument that maybe it *should* be moved before the verb. And certainly the silent confusion with LOCAL_FILE REMOTE_FILE is a big problem.

I kind of think the node-admin commands -- create-introducer, create-client, start, stop, and restart ought to be under a separate executable name than the "CLI" commands -- ls, put, get, mv, rm, etc..

This would fix Zandr's original complaint, and it would fit my brain. The first command could be tahoeadmin and the second one could be tahoe, for example.

I kind of think the node-admin commands -- `create-introducer`, `create-client`, `start`, `stop`, and `restart` ought to be under a separate executable name than the "CLI" commands -- `ls`, `put`, `get`, `mv`, `rm`, etc.. This would fix Zandr's original complaint, and it would fit my brain. The first command could be `tahoeadmin` and the second one could be `tahoe`, for example.
zooko added
v/0.6.1
and removed
v/0.6.0
labels 2007-10-19 22:45:27 +00:00

sounds reasonable to me. That matches how svn/svnadmin works too.

I'll work on this if nobody else beats me to it.

sounds reasonable to me. That matches how svn/svnadmin works too. I'll work on this if nobody else beats me to it.
warner added
c/code-frontend
and removed
c/unknown
labels 2007-10-19 22:54:09 +00:00

hm, or how about 'tahoe ls' vs 'tahoe admin create-client' ? That way we only install a single
executable to /usr/bin/tahoe (reducing user-perceived complexity), while still hiding the admin-only commands from a normal 'tahoe --help' or bare 'tahoe' command.

If we write man pages, we could have separate ones for tahoe(1) and tahoe_admin(1). A couple tools I've been looking at recently do it this way, like imapfilter.

There are other projects that use this approach; the ones that come to mind are more distributed and make it more likely that regular users will be using the "admin"-oriented commands. darcs and mercurial both have 'init' and various repair/optimize operations as part of their normal subcommand set (they install exactly one executable), but still have a flat command namespace.

Hm, so I guess this is a flat-vs-nested question as well as a UI-affordance (keeping the 'tahoe help' listing short enough to find the interesting commands) question. So the three options here are:

  1. 'tahoe ls' vs 'tahoe create-client' (the 0.6.1 behavior)
  2. 'tahoe ls' vs 'tahoeadmin create-client'
  3. 'tahoe ls' vs 'tahoe admin create-client'

I'm leaning towards number three right now.. thoughts?

hm, or how about 'tahoe ls' vs 'tahoe admin create-client' ? That way we only install a single executable to /usr/bin/tahoe (reducing user-perceived complexity), while still hiding the admin-only commands from a normal 'tahoe --help' or bare 'tahoe' command. If we write man pages, we could have separate ones for tahoe(1) and tahoe_admin(1). A couple tools I've been looking at recently do it this way, like imapfilter. There are other projects that use this approach; the ones that come to mind are more distributed and make it more likely that regular users will be using the "admin"-oriented commands. darcs and mercurial both have 'init' and various repair/optimize operations as part of their normal subcommand set (they install exactly one executable), but still have a flat command namespace. Hm, so I guess this is a flat-vs-nested question as well as a UI-affordance (keeping the 'tahoe help' listing short enough to find the interesting commands) question. So the three options here are: 1. 'tahoe ls' vs 'tahoe create-client' (the 0.6.1 behavior) 1. 'tahoe ls' vs 'tahoeadmin create-client' 1. 'tahoe ls' vs 'tahoe admin create-client' I'm leaning towards number three right now.. thoughts?
zandr commented 2007-10-22 19:33:15 +00:00
Author
Owner

I'm with you, 3. is the way to go. Attention should be paid to producing meaningful error/usage info, as described in the initial report.

I'm with you, 3. is the way to go. Attention should be paid to producing meaningful error/usage info, as described in the initial report.

I'm happy with 3. I asked my friend Seb about it in e-mail, and his comment was something like "order of options shouldn't matter -- I didn't realize how much I cared about this until I met git, where order of options matters and it's a pain".

So, I don't know if tahoe can be made insensitive to order of options, but let it be known that there is at least one person out there who would like that.

I'm happy with 3. I asked my friend Seb about it in e-mail, and his comment was something like "order of options shouldn't matter -- I didn't realize how much I cared about this until I met git, where order of options matters and it's a pain". So, I don't know if tahoe can be made insensitive to order of options, but let it be known that there is at least one person out there who would like that.

We're focussing on an imminent v0.7.0 (see the roadmap) which hopefully has [#197 Small Distributed Mutable Files] and also a fix for [#199 bad SHA-256]. So I'm bumping less urgent tickets to v0.7.1.

We're focussing on an imminent v0.7.0 (see [the roadmap](http://allmydata.org/trac/tahoe/roadmap)) which hopefully has [#197 Small Distributed Mutable Files] and also a fix for [#199 bad SHA-256]. So I'm bumping less urgent tickets to v0.7.1.
zooko added
p/minor
and removed
p/major
labels 2007-11-13 19:40:31 +00:00
zooko added
c/code-frontend-cli
and removed
c/code-frontend
labels 2008-01-15 21:37:05 +00:00

As far as I understand the current cli is good enough for Zandr to use for Allmydata 3.0 rollout, so I'm bumping this ticket to "undecided" milestone and if Zandr wants something different then he should speak up.

As far as I understand the current cli is good enough for Zandr to use for Allmydata 3.0 rollout, so I'm bumping this ticket to "undecided" milestone and if Zandr wants something different then he should speak up.
zooko added this to the undecided milestone 2008-01-23 02:49:29 +00:00

Putting options after the verb creates a security hazard on Unix platforms: if the user tries to use wildcards to specify multiple local files (for tahoe cp, say), then a local filename may begin with - and be treated as an argument. If options had to be before the verb, that couldn't happen.

Although this hazard can be worked around either by prefixing each wildcard argument with ./ or (for most commands) using -- before any filename arguments, it's very easy to forget to do that. Also, more users know about the -- workaround than ./, and Tahoe does not currently appear to support --.

OTOH, requiring tahoe -r cp would look backwards to many users. I don't know how to resolve that.

(Windows doesn't have this problem because the shell doesn't automatically glob arguments.)

Putting options after the verb creates a security hazard on Unix platforms: if the user tries to use wildcards to specify multiple local files (for `tahoe cp`, say), then a local filename may begin with `-` and be treated as an argument. If options had to be before the verb, that couldn't happen. Although this hazard can be worked around either by prefixing each wildcard argument with `./` or (for most commands) using `--` before any filename arguments, it's very easy to forget to do that. Also, more users know about the `--` workaround than `./`, and Tahoe does not currently appear to support `--`. OTOH, requiring `tahoe -r cp` would look backwards to many users. I don't know how to resolve that. (Windows doesn't have this problem because the shell doesn't automatically glob arguments.)
daira added
p/major
and removed
p/minor
labels 2009-12-13 04:48:29 +00:00

Riastradh on irc:

I typed `tahoe -d . ls root:' and it crashed, complaining that I have no ~/.tahoe directory, not complaining that I put the option in the wrong place.

So the problem is also that the error message when you get the argument order wrong can be quite unhelpful.

Riastradh on irc: > I typed `tahoe -d . ls root:' and it crashed, complaining that I have no ~/.tahoe directory, not complaining that I put the option in the wrong place. So the problem is also that the error message when you get the argument order wrong can be quite unhelpful.

Replying to davidsarah:

So the problem is also that the error message when you get the argument order wrong can be quite unhelpful.

Another example of that, from munderwo on IRC:

tahoe create-alias default -d infra-client
.../bin/tahoe:  Wrong number of arguments.

(should be "tahoe create-alias -d infra-client default").

Replying to [davidsarah](/tahoe-lafs/trac/issues/166#issuecomment-363146): > So the problem is also that the error message when you get the argument order wrong can be quite unhelpful. Another example of that, from munderwo on IRC: ``` tahoe create-alias default -d infra-client .../bin/tahoe: Wrong number of arguments. ``` (should be "`tahoe create-alias -d infra-client default`").

Greg Troxel wrote on tahoe-dev:

I'm trying to gradually get more serious in my tahoe usage - private grid and backups, not just playing with the pubgrid.

I now on several machines have client directories ~/.tahoe-pubgrid and ~/.tahoe-gdt. I have separate server processes on server machines.

So, I find myself doing

tahoe deep-check -d ~/.tahoe-gdt --add-lease --repair
tahoe deep-check -d ~/.tahoe-pubgrid --add-lease --repair

and naturally would like to have aliases

  tahoep () { tahoe -d ${HOME}/.tahoe-pubgrid $*; }
  tahoeg () { tahoe -d ${HOME}/.tahoe-gdt $*; }

but that won't work, because one must do "tahoe command options".

Since -d is about everything, it would be nice if it were accepted at the beginning.

Greg Troxel wrote on tahoe-dev: > I'm trying to gradually get more serious in my tahoe usage - private grid and backups, not just playing with the pubgrid. > > I now on several machines have client directories `~/.tahoe-pubgrid` and `~/.tahoe-gdt`. I have separate server processes on server machines. > > So, I find myself doing ``` tahoe deep-check -d ~/.tahoe-gdt --add-lease --repair tahoe deep-check -d ~/.tahoe-pubgrid --add-lease --repair ``` > and naturally would like to have aliases ``` tahoep () { tahoe -d ${HOME}/.tahoe-pubgrid $*; } tahoeg () { tahoe -d ${HOME}/.tahoe-gdt $*; } ``` > but that won't work, because one must do "tahoe command options". > > Since -d is about everything, it would be nice if it were accepted at the beginning.
daira modified the milestone from eventually to 1.11.0 2012-05-31 18:29:45 +00:00

#1751 was another aspect of this: --node-directory is ignored when it appears before the subcommand. In general, the tahoe command/subcommand parser looks for arguments in two places: tahoe --ARG1 SUBCOMMAND --ARG2, but how they're combined is up to the subcommand.

What do people think about the following proposal?:

  • the generic arguments (--quiet, --version, --version-and-path, --node-directory/-d) will only be accepted in the ARG1 slot, and all commands that use them (i.e. anything that needs a node directory to work with) will honor them from there.
  • the tahoe create-*/start/stop/restart NODEDIR shortcuts will continue to work
  • tahoe create-*/start/stop/restart will continue to accept a --basedir/-C option in the ARG2 slot
  • only one of ARG1--node-directory / ARG2--basedir / NODEDIR will be accepted. Providing more than one will produce an error.

Note that there are several tahoe commands that don't need a node-directory (everything under "tahoe debug" and "tahoe admin"), but seeing how those are in the minority, I think it's better to put --node-directory in the ARG1 slot and have those commands just ignore it, rather than putting --node-directory in the ARG2 slot for every single command that can use it.

#1751 was another aspect of this: `--node-directory` is ignored when it appears before the subcommand. In general, the tahoe command/subcommand parser looks for arguments in two places: `tahoe --ARG1 SUBCOMMAND --ARG2`, but how they're combined is up to the subcommand. What do people think about the following proposal?: * the generic arguments (`--quiet`, `--version`, `--version-and-path`, `--node-directory/-d`) will only be accepted in the ARG1 slot, and all commands that use them (i.e. anything that needs a node directory to work with) will honor them from there. * the `tahoe create-*/start/stop/restart NODEDIR` shortcuts will continue to work * `tahoe create-*/start/stop/restart` will continue to accept a `--basedir/-C` option in the ARG2 slot * only one of `ARG1--node-directory` / `ARG2--basedir` / `NODEDIR` will be accepted. Providing more than one will produce an error. Note that there are several tahoe commands that don't need a node-directory (everything under "tahoe debug" and "tahoe admin"), but seeing how those are in the minority, I think it's better to put `--node-directory` in the ARG1 slot and have those commands just ignore it, rather than putting `--node-directory` in the ARG2 slot for every single command that can use it.

+1 for the comment:363150 proposal.

+1 for the [comment:363150](/tahoe-lafs/trac/issues/166#issuecomment-363150) proposal.

Hm, actually, would anyone mind if I removed the --basedir/-C option too? It's never been accepted in the ARG1 position (only in the ARG2 position for create/start/stop/restart), so it'd be simpler to remove it completely than to move it to a new place.

Hm, actually, would anyone mind if I removed the `--basedir/-C` option too? It's never been accepted in the ARG1 position (only in the ARG2 position for create/start/stop/restart), so it'd be simpler to remove it completely than to move it to a new place.

I think users probably have scripts using --basedir/-C in the ARG2 position for create/start/stop/restart, so that should continue to be accepted. It's easy in that case; just ignore the option.

I think users probably have scripts using `--basedir`/`-C` in the ARG2 position for create/start/stop/restart, so that should continue to be accepted. It's easy in that case; just ignore the option.

Attachment fix-args.diff (43390 bytes) added

fix handling of --node-directory

**Attachment** fix-args.diff (43390 bytes) added fix handling of --node-directory

Ok, that patch makes the changes proposed in comment:363150, leaves
--basedir in place according to comment:21 (but pays
attention to --basedir rather than ignoring it). It also
requires that --version, --version-and-path, and
--quiet live in ARG1, rejecting them if they appear in ARG2.
Tests that exercise command-line parsing have been updated to
match.

The patch is a bit big because it changes the way we use base
classes in src/allmydata/scripts/ . Previously
common.BaseOptions provided --version and
--node-directory, and '''both''' the ARG1-handling
runner.Options '''and''' all the ARG2-handling parsers
inherited from it, and then the basedir-needing parsers
additionally inherited from common.BasedirMixin.

In the new world, BaseOptions is much smaller (it forbids
--version and sets up .command_name), BasedirOptions is a
parent class instead of a mixin, the ARG1 parser inherits from
neither (but now contains the --node-directory handler), and
the ARG2 parsers all inherit from BaseOptions, or
BasedirOptions if they need --basedir/BASEDIR
(create/start/stop/restart).

Ok, that patch makes the changes proposed in [comment:363150](/tahoe-lafs/trac/issues/166#issuecomment-363150), leaves `--basedir` in place according to comment:21 (but pays attention to `--basedir` rather than ignoring it). It also requires that `--version`, `--version-and-path`, and `--quiet` live in ARG1, rejecting them if they appear in ARG2. Tests that exercise command-line parsing have been updated to match. The patch is a bit big because it changes the way we use base classes in `src/allmydata/scripts/` . Previously `common.BaseOptions` provided `--version` and `--node-directory`, and '''both''' the ARG1-handling `runner.Options` '''and''' all the ARG2-handling parsers inherited from it, and then the basedir-needing parsers additionally inherited from `common.BasedirMixin`. In the new world, `BaseOptions` is much smaller (it forbids --version and sets up .command_name), `BasedirOptions` is a parent class instead of a mixin, the ARG1 parser inherits from neither (but now contains the `--node-directory` handler), and the ARG2 parsers all inherit from `BaseOptions`, or `BasedirOptions` if they need `--basedir/BASEDIR` (create/start/stop/restart).

Will review.

Will review.
daira modified the milestone from 1.11.0 to 1.10.0 2012-05-31 22:42:44 +00:00
warner was unassigned by daira 2012-05-31 22:42:44 +00:00
daira self-assigned this 2012-05-31 22:42:44 +00:00

typo: 'argumnent' (on line 49 of the patch)

typo: 'argumnent' (on line 49 of the patch)

Attachment 166-2.diff (766 bytes) added

improved patch (add default nodedir to --help in all commands, fix typo)

**Attachment** 166-2.diff (766 bytes) added improved patch (add default nodedir to --help in all commands, fix typo)

After discussing this on IRC we ended up with the following unresolved issues:

  • --help for subcommands no longer mentions the global options
  • because the new version accepts -d/--node-directory only before the command, and the old version accepted it only after the command (and ignored it if before), there is no way to write a script that works with both.

We considered allowing -d both before and after but could not decide whether that was worth the complexity. Zooko?

After discussing this on IRC we ended up with the following unresolved issues: - `--help` for subcommands no longer mentions the global options - because the new version accepts `-d`/`--node-directory` only before the command, and the old version accepted it only after the command (and ignored it if before), there is no way to write a script that works with both. We considered allowing `-d` both before and after but could not decide whether that was worth the complexity. Zooko?
daira removed their assignment 2012-06-15 01:29:56 +00:00
zooko was assigned by daira 2012-06-15 01:29:56 +00:00

Attachment 166-3.diff (776 bytes) added

add "global-opts" to command synopses

**Attachment** 166-3.diff (776 bytes) added add "global-opts" to command synopses

latest patch (also visible in https://github.com/warner/tahoe-lafs/tree/166-args) fixes the first issue (mentioning global options)

So the remaining question is -d before the subcommand. I'm not hugely motivated to make it possible to write new scripts that work with old versions (unlike py2/py3 I think once you've upgrated to a new tahoe version, you'll just stick with it). And I prefer the simplicity of having fewer options (I still want to remove the -C/--basedir option from the node-admin commands, but want to respect David-Sarah's opinion that people may have scripts that will break).

latest patch (also visible in <https://github.com/warner/tahoe-lafs/tree/166-args>) fixes the first issue (mentioning global options) So the remaining question is `-d` before the subcommand. I'm not hugely motivated to make it possible to write new scripts that work with old versions (unlike py2/py3 I think once you've upgrated to a new tahoe version, you'll just stick with it). And I prefer the simplicity of having fewer options (I still want to remove the `-C/--basedir` option from the node-admin commands, but want to respect David-Sarah's opinion that people may have scripts that will break).
zooko removed their assignment 2012-09-04 16:06:42 +00:00
daira was assigned by zooko 2012-09-04 16:06:42 +00:00
daira was unassigned by zooko 2012-09-04 16:07:30 +00:00
warner was assigned by zooko 2012-09-04 16:07:30 +00:00

I believed that I could pass options to the tahoe utility instead of its subcommand so I attempted to run:
>tahoe -d /home/arc/myLAEgateway/ backup /home/arc/sandbox/KandRC/ KandR:
which failed (with an ugly traceback).

I believed that I could pass options to the tahoe utility instead of its subcommand so I attempted to run: `>tahoe -d /home/arc/myLAEgateway/ backup /home/arc/sandbox/KandRC/ KandR:` which failed (with an ugly traceback).
warner was unassigned by daira 2012-12-20 17:04:52 +00:00
daira self-assigned this 2012-12-20 17:04:52 +00:00

On the dev call this morning, we agreed that davidsarah will look at the 166-3.diff patch and if they don't raise any major objections, warner will land it this coming weekend. Hopefully we can resolve the -d issue in the 1.11 timeframe.

On the dev call this morning, we agreed that davidsarah will look at the 166-3.diff patch and if they don't raise any major objections, warner will land it this coming weekend. Hopefully we can resolve the `-d` issue in the 1.11 timeframe.
daira removed their assignment 2013-01-03 16:27:35 +00:00
zooko was assigned by daira 2013-01-03 16:27:35 +00:00

Replying to davidsarah:

After discussing this on IRC we ended up with the following unresolved issues:

  • --help for subcommands no longer mentions the global options

This seems like an important issue to me. Users have a hard enough time that if they ask for help we should really give it.

  • because the new version accepts -d/--node-directory only before the command, and the old version accepted it only after the command (and ignored it if before), there is no way to write a script that works with both.

We considered allowing -d both before and after but could not decide whether that was worth the complexity. Zooko?

Hm... I'm not sure if there are any script-writers who are going to care about this. I guess since I don't have any evidence either way, I'd like to err on the side of ease-of-development on this. Especially since I'm reviewing this patch right now for inclusion in Tahoe-LAFS v1.10. So I think we should not worry about this compatibility-break.

Replying to [davidsarah](/tahoe-lafs/trac/issues/166#issuecomment-363160): > After discussing this on IRC we ended up with the following unresolved issues: > - `--help` for subcommands no longer mentions the global options This seems like an important issue to me. Users have a hard enough time that if they ask for help we should really give it. > - because the new version accepts `-d`/`--node-directory` only before the command, and the old version accepted it only after the command (and ignored it if before), there is no way to write a script that works with both. > > We considered allowing `-d` both before and after but could not decide whether that was worth the complexity. Zooko? Hm... I'm not sure if there are any script-writers who are going to care about this. I guess since I don't have any evidence either way, I'd like to err on the side of ease-of-development on this. Especially since I'm reviewing this patch right now for inclusion in Tahoe-LAFS v1.10. So I think we should not worry about this compatibility-break.

Replying to warner:

And I prefer the simplicity of having fewer options (I still want to remove the -C/--basedir option from the node-admin commands, but want to respect David-Sarah's opinion that people may have scripts that will break).

FWIW, I would prefer that simplicity too. I think Tahoe-LAFS currently has too much complexity in various ways, but one of those ways is the command-line syntax. I don't know whether anyone has scripts that would break, and if they do, maybe it would be not a big deal for them to detect the breakage and update their scripts. David-Sarah: is there any process by which we can prune old or redundant command-line syntax with sufficient grace period? Is it worth the effort to emit a "deprecation warning" sort of thing for options that we would like to remove in the future?

Replying to [warner](/tahoe-lafs/trac/issues/166#issuecomment-363163): > And I prefer the simplicity of having fewer options (I still want to remove the `-C/--basedir` option from the node-admin commands, but want to respect David-Sarah's opinion that people may have scripts that will break). FWIW, I would prefer that simplicity too. I think Tahoe-LAFS currently has too much complexity in various ways, but one of those ways is the command-line syntax. I don't know whether anyone has scripts that would break, and if they do, maybe it would be not a big deal for them to detect the breakage and update their scripts. David-Sarah: is there any process by which we can prune old or redundant command-line syntax with sufficient grace period? Is it worth the effort to emit a "deprecation warning" sort of thing for options that we would like to remove in the future?

reviewed https://github.com/warner/tahoe-lafs/commit/c7e8d6907abc873a60279e2eef48769fe9c10b9f

(There is very little to say about it. It is an important patch, but a very simple one. ☺ There was one typo that Brian found and this patch fixes it.)

reviewed <https://github.com/warner/tahoe-lafs/commit/c7e8d6907abc873a60279e2eef48769fe9c10b9f> (There is very little to say about it. It is an important patch, but a very simple one. ☺ There was one typo that Brian found and this patch fixes it.)

reviewed: https://github.com/warner/tahoe-lafs/commit/96200cf7d26f1b0fd6f39856c403063f3f0f0211

Once again, this was very easy to review, since it simply renames a variable. Thanks to warner for making patches which are easy to review!

reviewed: <https://github.com/warner/tahoe-lafs/commit/96200cf7d26f1b0fd6f39856c403063f3f0f0211> Once again, this was *very* easy to review, since it simply renames a variable. Thanks to warner for making patches which are easy to review!
reviewed: <https://github.com/warner/tahoe-lafs/commit/de15710cc29bb8104f9ee0f9e365f28c7ec7d24d#commitcomment-2972281> Good work!
zooko removed their assignment 2013-04-09 06:43:38 +00:00
warner was assigned by zooko 2013-04-09 06:43:38 +00:00

Rebased to changeset:3ee950f09ed8b7f6 and landed.

Rebased to changeset:3ee950f09ed8b7f6 and landed.
warner added the
r/fixed
label 2013-04-09 18:26:24 +00:00

The following are filesystem command options but should probably be global options:

  -u, --node-url=     Specify the URL of the Tahoe gateway node, such as
                      'http://127.0.0.1:3456'. This overrides the URL found in
                      the --node-directory .
      --dir-cap=      Specify which dirnode URI should be used as the 'tahoe'
                      alias.

Also, in e.g. tahoe ls --help, --version is listed as a command option but does not work in that position:

[...]/bin/tahoe:  --version not allowed on subcommands
The following are filesystem command options but should probably be global options: ``` -u, --node-url= Specify the URL of the Tahoe gateway node, such as 'http://127.0.0.1:3456'. This overrides the URL found in the --node-directory . --dir-cap= Specify which dirnode URI should be used as the 'tahoe' alias. ``` Also, in e.g. `tahoe ls --help`, `--version` is listed as a command option but does not work in that position: ``` [...]/bin/tahoe: --version not allowed on subcommands ```

Some commands, such as tahoe ls, don't show "global-opts" in their --help synopsis.

Some commands, such as `tahoe ls`, don't show "`global-opts`" in their `--help` synopsis.
Daira Hopwood <david-sarah@jacaranda.org> commented 2013-04-22 15:11:19 +00:00
Author
Owner

In changeset:57e997809055960a:

Add "[global-opts]" to help synopsis for tahoe ls. refs #166

Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
In changeset:57e997809055960a: ``` Add "[global-opts]" to help synopsis for tahoe ls. refs #166 Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org> ```

Replying to daira:

Some commands, such as tahoe ls, don't show "global-opts" in their --help synopsis.

tahoe ls was the only one.

Replying to [daira](/tahoe-lafs/trac/issues/166#issuecomment-363185): > Some commands, such as `tahoe ls`, don't show "`global-opts`" in their `--help` synopsis. `tahoe ls` was the only one.

NEWS entry added in changeset:becae165d2971bd3.

NEWS entry added in changeset:becae165d2971bd3.
Sign in to join this conversation.
No labels
c/code
c/code-dirnodes
c/code-encoding
c/code-frontend
c/code-frontend-cli
c/code-frontend-ftp-sftp
c/code-frontend-magic-folder
c/code-frontend-web
c/code-mutable
c/code-network
c/code-nodeadmin
c/code-peerselection
c/code-storage
c/contrib
c/dev-infrastructure
c/docs
c/operational
c/packaging
c/unknown
c/website
kw:2pc
kw:410
kw:9p
kw:ActivePerl
kw:AttributeError
kw:DataUnavailable
kw:DeadReferenceError
kw:DoS
kw:FileZilla
kw:GetLastError
kw:IFinishableConsumer
kw:K
kw:LeastAuthority
kw:Makefile
kw:RIStorageServer
kw:StringIO
kw:UncoordinatedWriteError
kw:about
kw:access
kw:access-control
kw:accessibility
kw:accounting
kw:accounting-crawler
kw:add-only
kw:aes
kw:aesthetics
kw:alias
kw:aliases
kw:aliens
kw:allmydata
kw:amazon
kw:ambient
kw:annotations
kw:anonymity
kw:anonymous
kw:anti-censorship
kw:api_auth_token
kw:appearance
kw:appname
kw:apport
kw:archive
kw:archlinux
kw:argparse
kw:arm
kw:assertion
kw:attachment
kw:auth
kw:authentication
kw:automation
kw:avahi
kw:availability
kw:aws
kw:azure
kw:backend
kw:backoff
kw:backup
kw:backupdb
kw:backward-compatibility
kw:bandwidth
kw:basedir
kw:bayes
kw:bbfreeze
kw:beta
kw:binaries
kw:binutils
kw:bitcoin
kw:bitrot
kw:blacklist
kw:blocker
kw:blocks-cloud-deployment
kw:blocks-cloud-merge
kw:blocks-magic-folder-merge
kw:blocks-merge
kw:blocks-raic
kw:blocks-release
kw:blog
kw:bom
kw:bonjour
kw:branch
kw:branding
kw:breadcrumbs
kw:brians-opinion-needed
kw:browser
kw:bsd
kw:build
kw:build-helpers
kw:buildbot
kw:builders
kw:buildslave
kw:buildslaves
kw:cache
kw:cap
kw:capleak
kw:captcha
kw:cast
kw:centos
kw:cffi
kw:chacha
kw:charset
kw:check
kw:checker
kw:chroot
kw:ci
kw:clean
kw:cleanup
kw:cli
kw:cloud
kw:cloud-backend
kw:cmdline
kw:code
kw:code-checks
kw:coding-standards
kw:coding-tools
kw:coding_tools
kw:collection
kw:compatibility
kw:completion
kw:compression
kw:confidentiality
kw:config
kw:configuration
kw:configuration.txt
kw:conflict
kw:connection
kw:connectivity
kw:consistency
kw:content
kw:control
kw:control.furl
kw:convergence
kw:coordination
kw:copyright
kw:corruption
kw:cors
kw:cost
kw:coverage
kw:coveralls
kw:coveralls.io
kw:cpu-watcher
kw:cpyext
kw:crash
kw:crawler
kw:crawlers
kw:create-container
kw:cruft
kw:crypto
kw:cryptography
kw:cryptography-lib
kw:cryptopp
kw:csp
kw:curl
kw:cutoff-date
kw:cycle
kw:cygwin
kw:d3
kw:daemon
kw:darcs
kw:darcsver
kw:database
kw:dataloss
kw:db
kw:dead-code
kw:deb
kw:debian
kw:debug
kw:deep-check
kw:defaults
kw:deferred
kw:delete
kw:deletion
kw:denial-of-service
kw:dependency
kw:deployment
kw:deprecation
kw:desert-island
kw:desert-island-build
kw:design
kw:design-review-needed
kw:detection
kw:dev-infrastructure
kw:devpay
kw:directory
kw:directory-page
kw:dirnode
kw:dirnodes
kw:disconnect
kw:discovery
kw:disk
kw:disk-backend
kw:distribute
kw:distutils
kw:dns
kw:do_http
kw:doc-needed
kw:docker
kw:docs
kw:docs-needed
kw:dokan
kw:dos
kw:download
kw:downloader
kw:dragonfly
kw:drop-upload
kw:duplicity
kw:dusty
kw:earth-dragon
kw:easy
kw:ec2
kw:ecdsa
kw:ed25519
kw:egg-needed
kw:eggs
kw:eliot
kw:email
kw:empty
kw:encoding
kw:endpoint
kw:enterprise
kw:enum34
kw:environment
kw:erasure
kw:erasure-coding
kw:error
kw:escaping
kw:etag
kw:etch
kw:evangelism
kw:eventual
kw:example
kw:excess-authority
kw:exec
kw:exocet
kw:expiration
kw:extensibility
kw:extension
kw:failure
kw:fedora
kw:ffp
kw:fhs
kw:figleaf
kw:file
kw:file-descriptor
kw:filename
kw:filesystem
kw:fileutil
kw:fips
kw:firewall
kw:first
kw:floatingpoint
kw:flog
kw:foolscap
kw:forward-compatibility
kw:forward-secrecy
kw:forwarding
kw:free
kw:freebsd
kw:frontend
kw:fsevents
kw:ftp
kw:ftpd
kw:full
kw:furl
kw:fuse
kw:garbage
kw:garbage-collection
kw:gateway
kw:gatherer
kw:gc
kw:gcc
kw:gentoo
kw:get
kw:git
kw:git-annex
kw:github
kw:glacier
kw:globalcaps
kw:glossary
kw:google-cloud-storage
kw:google-drive-backend
kw:gossip
kw:governance
kw:grid
kw:grid-manager
kw:gridid
kw:gridsync
kw:grsec
kw:gsoc
kw:gvfs
kw:hackfest
kw:hacktahoe
kw:hang
kw:hardlink
kw:heartbleed
kw:heisenbug
kw:help
kw:helper
kw:hint
kw:hooks
kw:how
kw:how-to
kw:howto
kw:hp
kw:hp-cloud
kw:html
kw:http
kw:https
kw:i18n
kw:i2p
kw:i2p-collab
kw:illustration
kw:image
kw:immutable
kw:impressions
kw:incentives
kw:incident
kw:init
kw:inlineCallbacks
kw:inotify
kw:install
kw:installer
kw:integration
kw:integration-test
kw:integrity
kw:interactive
kw:interface
kw:interfaces
kw:interoperability
kw:interstellar-exploration
kw:introducer
kw:introduction
kw:iphone
kw:ipkg
kw:iputil
kw:ipv6
kw:irc
kw:jail
kw:javascript
kw:joke
kw:jquery
kw:json
kw:jsui
kw:junk
kw:key-value-store
kw:kfreebsd
kw:known-issue
kw:konqueror
kw:kpreid
kw:kvm
kw:l10n
kw:lae
kw:large
kw:latency
kw:leak
kw:leasedb
kw:leases
kw:libgmp
kw:license
kw:licenss
kw:linecount
kw:link
kw:linux
kw:lit
kw:localhost
kw:location
kw:locking
kw:logging
kw:logo
kw:loopback
kw:lucid
kw:mac
kw:macintosh
kw:magic-folder
kw:manhole
kw:manifest
kw:manual-test-needed
kw:map
kw:mapupdate
kw:max_space
kw:mdmf
kw:memcheck
kw:memory
kw:memory-leak
kw:mesh
kw:metadata
kw:meter
kw:migration
kw:mime
kw:mingw
kw:minimal
kw:misc
kw:miscapture
kw:mlp
kw:mock
kw:more-info-needed
kw:mountain-lion
kw:move
kw:multi-users
kw:multiple
kw:multiuser-gateway
kw:munin
kw:music
kw:mutability
kw:mutable
kw:mystery
kw:names
kw:naming
kw:nas
kw:navigation
kw:needs-review
kw:needs-spawn
kw:netbsd
kw:network
kw:nevow
kw:new-user
kw:newcaps
kw:news
kw:news-done
kw:news-needed
kw:newsletter
kw:newurls
kw:nfc
kw:nginx
kw:nixos
kw:no-clobber
kw:node
kw:node-url
kw:notification
kw:notifyOnDisconnect
kw:nsa310
kw:nsa320
kw:nsa325
kw:numpy
kw:objects
kw:old
kw:openbsd
kw:openitp-packaging
kw:openssl
kw:openstack
kw:opensuse
kw:operation-helpers
kw:operational
kw:operations
kw:ophandle
kw:ophandles
kw:ops
kw:optimization
kw:optional
kw:options
kw:organization
kw:os
kw:os.abort
kw:ostrom
kw:osx
kw:osxfuse
kw:otf-magic-folder-objective1
kw:otf-magic-folder-objective2
kw:otf-magic-folder-objective3
kw:otf-magic-folder-objective4
kw:otf-magic-folder-objective5
kw:otf-magic-folder-objective6
kw:p2p
kw:packaging
kw:partial
kw:password
kw:path
kw:paths
kw:pause
kw:peer-selection
kw:performance
kw:permalink
kw:permissions
kw:persistence
kw:phone
kw:pickle
kw:pip
kw:pipermail
kw:pkg_resources
kw:placement
kw:planning
kw:policy
kw:port
kw:portability
kw:portal
kw:posthook
kw:pratchett
kw:preformance
kw:preservation
kw:privacy
kw:process
kw:profile
kw:profiling
kw:progress
kw:proxy
kw:publish
kw:pyOpenSSL
kw:pyasn1
kw:pycparser
kw:pycrypto
kw:pycrypto-lib
kw:pycryptopp
kw:pyfilesystem
kw:pyflakes
kw:pylint
kw:pypi
kw:pypy
kw:pysqlite
kw:python
kw:python3
kw:pythonpath
kw:pyutil
kw:pywin32
kw:quickstart
kw:quiet
kw:quotas
kw:quoting
kw:raic
kw:rainhill
kw:random
kw:random-access
kw:range
kw:raspberry-pi
kw:reactor
kw:readonly
kw:rebalancing
kw:recovery
kw:recursive
kw:redhat
kw:redirect
kw:redressing
kw:refactor
kw:referer
kw:referrer
kw:regression
kw:rekey
kw:relay
kw:release
kw:release-blocker
kw:reliability
kw:relnotes
kw:remote
kw:removable
kw:removable-disk
kw:rename
kw:renew
kw:repair
kw:replace
kw:report
kw:repository
kw:research
kw:reserved_space
kw:response-needed
kw:response-time
kw:restore
kw:retrieve
kw:retry
kw:review
kw:review-needed
kw:reviewed
kw:revocation
kw:roadmap
kw:rollback
kw:rpm
kw:rsa
kw:rss
kw:rst
kw:rsync
kw:rusty
kw:s3
kw:s3-backend
kw:s3-frontend
kw:s4
kw:same-origin
kw:sandbox
kw:scalability
kw:scaling
kw:scheduling
kw:schema
kw:scheme
kw:scp
kw:scripts
kw:sdist
kw:sdmf
kw:security
kw:self-contained
kw:server
kw:servermap
kw:servers-of-happiness
kw:service
kw:setup
kw:setup.py
kw:setup_requires
kw:setuptools
kw:setuptools_darcs
kw:sftp
kw:shared
kw:shareset
kw:shell
kw:signals
kw:simultaneous
kw:six
kw:size
kw:slackware
kw:slashes
kw:smb
kw:sneakernet
kw:snowleopard
kw:socket
kw:solaris
kw:space
kw:space-efficiency
kw:spam
kw:spec
kw:speed
kw:sqlite
kw:ssh
kw:ssh-keygen
kw:sshfs
kw:ssl
kw:stability
kw:standards
kw:start
kw:startup
kw:static
kw:static-analysis
kw:statistics
kw:stats
kw:stats_gatherer
kw:status
kw:stdeb
kw:storage
kw:streaming
kw:strports
kw:style
kw:stylesheet
kw:subprocess
kw:sumo
kw:survey
kw:svg
kw:symlink
kw:synchronous
kw:tac
kw:tahoe-*
kw:tahoe-add-alias
kw:tahoe-admin
kw:tahoe-archive
kw:tahoe-backup
kw:tahoe-check
kw:tahoe-cp
kw:tahoe-create-alias
kw:tahoe-create-introducer
kw:tahoe-debug
kw:tahoe-deep-check
kw:tahoe-deepcheck
kw:tahoe-lafs-trac-stream
kw:tahoe-list-aliases
kw:tahoe-ls
kw:tahoe-magic-folder
kw:tahoe-manifest
kw:tahoe-mkdir
kw:tahoe-mount
kw:tahoe-mv
kw:tahoe-put
kw:tahoe-restart
kw:tahoe-rm
kw:tahoe-run
kw:tahoe-start
kw:tahoe-stats
kw:tahoe-unlink
kw:tahoe-webopen
kw:tahoe.css
kw:tahoe_files
kw:tahoewapi
kw:tarball
kw:tarballs
kw:tempfile
kw:templates
kw:terminology
kw:test
kw:test-and-set
kw:test-from-egg
kw:test-needed
kw:testgrid
kw:testing
kw:tests
kw:throttling
kw:ticket999-s3-backend
kw:tiddly
kw:time
kw:timeout
kw:timing
kw:to
kw:to-be-closed-on-2011-08-01
kw:tor
kw:tor-protocol
kw:torsocks
kw:tox
kw:trac
kw:transparency
kw:travis
kw:travis-ci
kw:trial
kw:trickle
kw:trivial
kw:truckee
kw:tub
kw:tub.location
kw:twine
kw:twistd
kw:twistd.log
kw:twisted
kw:twisted-14
kw:twisted-trial
kw:twitter
kw:twn
kw:txaws
kw:type
kw:typeerror
kw:ubuntu
kw:ucwe
kw:ueb
kw:ui
kw:unclean
kw:uncoordinated-writes
kw:undeletable
kw:unfinished-business
kw:unhandled-error
kw:unhappy
kw:unicode
kw:unit
kw:unix
kw:unlink
kw:update
kw:upgrade
kw:upload
kw:upload-helper
kw:uri
kw:url
kw:usability
kw:use-case
kw:utf-8
kw:util
kw:uwsgi
kw:ux
kw:validation
kw:variables
kw:vdrive
kw:verify
kw:verlib
kw:version
kw:versioning
kw:versions
kw:video
kw:virtualbox
kw:virtualenv
kw:vista
kw:visualization
kw:visualizer
kw:vm
kw:volunteergrid2
kw:volunteers
kw:vpn
kw:wapi
kw:warners-opinion-needed
kw:warning
kw:weapi
kw:web
kw:web.port
kw:webapi
kw:webdav
kw:webdrive
kw:webport
kw:websec
kw:website
kw:websocket
kw:welcome
kw:welcome-page
kw:welcomepage
kw:wiki
kw:win32
kw:win64
kw:windows
kw:windows-related
kw:winscp
kw:workaround
kw:world-domination
kw:wrapper
kw:write-enabler
kw:wui
kw:x86
kw:x86-64
kw:xhtml
kw:xml
kw:xss
kw:zbase32
kw:zetuptoolz
kw:zfec
kw:zookos-opinion-needed
kw:zope
kw:zope.interface
p/blocker
p/critical
p/major
p/minor
p/normal
p/supercritical
p/trivial
r/cannot reproduce
r/duplicate
r/fixed
r/invalid
r/somebody else's problem
r/was already fixed
r/wontfix
r/worksforme
t/defect
t/enhancement
t/task
v/0.2.0
v/0.3.0
v/0.4.0
v/0.5.0
v/0.5.1
v/0.6.0
v/0.6.1
v/0.7.0
v/0.8.0
v/0.9.0
v/1.0.0
v/1.1.0
v/1.10.0
v/1.10.1
v/1.10.2
v/1.10a2
v/1.11.0
v/1.12.0
v/1.12.1
v/1.13.0
v/1.14.0
v/1.15.0
v/1.15.1
v/1.2.0
v/1.3.0
v/1.4.1
v/1.5.0
v/1.6.0
v/1.6.1
v/1.7.0
v/1.7.1
v/1.7β
v/1.8.0
v/1.8.1
v/1.8.2
v/1.8.3
v/1.8β
v/1.9.0
v/1.9.0-s3branch
v/1.9.0a1
v/1.9.0a2
v/1.9.0b1
v/1.9.1
v/1.9.2
v/1.9.2a1
v/cloud-branch
v/unknown
No milestone
No project
No assignees
5 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: tahoe-lafs/trac#166
No description provided.