From 67db00adae018c7e5f9e98e5a144bd841e82a90c Mon Sep 17 00:00:00 2001 From: Alejandro Jose Leiva Palomo Date: Wed, 20 Sep 2023 08:17:36 -0600 Subject: [PATCH] fix: correcting top comment on profile values comment Signed-off-by: Alejandro Jose Leiva Palomo --- trestle/common/const.py | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/trestle/common/const.py b/trestle/common/const.py index a7e7ee3bc..cb87530ca 100644 --- a/trestle/common/const.py +++ b/trestle/common/const.py @@ -490,15 +490,23 @@ # """ -YAML_PROFILE_VALUES_COMMENT = """ # You may set values for parameters in the assembled Profile by adding +YAML_PROFILE_VALUES_COMMENT = """ # This section contains the parameters that are part of this control. + # Each parameter has properties. Only the profile-values and display-name properties are editable. + # The other properties are informational. # - # profile-values: - # - value 1 - # - value 2 + # The values property for a parameter represents values inherited from the OSCAL catalog. + # To override the catalog settings, use bullets under profile-values as shown below: # - # below a section of values: - # The values list refers to the values in the catalog, and the profile-values represent values - # in SetParameters of the Profile. + # profile-values: + # - value 1 + # - value 2 + # + # If the "- " placeholder appears under profile-values, it is the same as if + # the profile-values property were left empty. + # + # Some parameters may show an aggregates property which lists other parameters. This means + # the parameter value is made up of the values from the other parameters. For parameters + # that aggregate, profile-values is not applicable. # """