@@ -523,6 +523,9 @@ def do_get(self, args):
523523 '' """Usage: get property designator[,designator]*
524524 Get the given property of one or more designator(s).
525525
526+ A designator is a classname and a nodeid concatenated,
527+ eg. bug1, user10, ...
528+
526529 Retrieves the property value of the nodes specified
527530 by the designators.
528531 """
@@ -600,6 +603,9 @@ def do_set(self, args):
600603 The items are specified as a class or as a comma-separated
601604 list of item designators (ie "designator[,designator,...]").
602605
606+ A designator is a classname and a nodeid concatenated,
607+ eg. bug1, user10, ...
608+
603609 This command sets the properties to the values for all designators
604610 given. If the value is missing (ie. "property=") then the property
605611 is un-set. If the property is a multilink, you specify the linked
@@ -732,6 +738,9 @@ def do_display(self, args):
732738 '' """Usage: display designator[,designator]*
733739 Show the property values for the given node(s).
734740
741+ A designator is a classname and a nodeid concatenated,
742+ eg. bug1, user10, ...
743+
735744 This lists the properties and their associated values for the given
736745 node.
737746 """
@@ -971,6 +980,9 @@ def do_history(self, args):
971980 '' """Usage: history designator
972981 Show the history entries of a designator.
973982
983+ A designator is a classname and a nodeid concatenated,
984+ eg. bug1, user10, ...
985+
974986 Lists the journal entries for the node identified by the designator.
975987 """
976988 if len (args ) < 1 :
@@ -1020,6 +1032,9 @@ def do_retire(self, args):
10201032 '' """Usage: retire designator[,designator]*
10211033 Retire the node specified by designator.
10221034
1035+ A designator is a classname and a nodeid concatenated,
1036+ eg. bug1, user10, ...
1037+
10231038 This action indicates that a particular node is not to be retrieved
10241039 by the list or find commands, and its key value may be re-used.
10251040 """
@@ -1044,6 +1059,9 @@ def do_restore(self, args):
10441059 '' """Usage: restore designator[,designator]*
10451060 Restore the retired node specified by designator.
10461061
1062+ A designator is a classname and a nodeid concatenated,
1063+ eg. bug1, user10, ...
1064+
10471065 The given nodes will become available for users again.
10481066 """
10491067 if len (args ) < 1 :
0 commit comments