Roundup Tracker - Issues

Issue 2551103

classification
roundup-admin specification should show protected properties (options/pragma for roundup-admin)
Type: rfe Severity: normal
Components: Command-line interface Versions: devel
process
Status: fixed fixed
:
: rouilj : rouilj
Priority: normal : Effort-Low, StarterTicket

Created on 2020-11-13 03:19 by rouilj, last changed 2023-07-14 03:49 by rouilj.

Messages
msg7026 Author: [hidden] (rouilj) Date: 2020-11-13 03:19
The specification command in roundup-admin doesn't show protected 
properties. Also display is missing the protected properties as well.

There should be some way to access actor, creation ....

Either a different command (not really enthused about this)
or add a new command option:

  option show-protected True/False

that when enabled will make all command that deal with protected fields
display them. Since this can be turned on and off it provides a way
to manage the verboseness.

It can probably just toggle the proper option in:

  self.options['show-protected']

Then this can be passed to
cl.getproperties(protected=self.show-protected) replacing any
cl.properties references.

This is also maybe a good way to handle other visbility/options
going forward (e.g. rather than export and exporttable we have:

  option export-files False
  export

to produce the same operation as exporttables.

Also consider implementing a -O flag to roundup-admin to set options
on the command line for easier scripting.
msg7274 Author: [hidden] (rouilj) Date: 2021-06-10 01:48
See also issue685275 for other uses for options.
msg7755 Author: [hidden] (rouilj) Date: 2023-04-13 01:08
changeset:   7252:9c067ed4568b
added pragma command to roundup-admin with basic settings.
Fixing this issue using pragma is TBD.
msg7799 Author: [hidden] (rouilj) Date: 2023-07-14 03:49
changeset:   7543:fc9daba984c0

implements this using display_protected=true pragma.
History
Date User Action Args
2023-07-14 03:49:41rouiljsetstatus: new -> fixed
assignee: rouilj
resolution: remind -> fixed
messages: + msg7799
2023-04-13 01:08:16rouiljsetmessages: + msg7755
2022-09-12 22:32:25rouiljsetresolution: remind
2022-01-28 21:58:06rouiljsettitle: roundup-admin specification should show protected properties -> roundup-admin specification should show protected properties (options/pragma for roundup-admin)
2021-06-10 01:48:25rouiljsetkeywords: + StarterTicket
2021-06-10 01:48:13rouiljsetmessages: + msg7274
2020-11-13 03:19:51rouiljcreate