e4aa1b5f95
* Conditionally enable and disable CLI options Closes #13113 Signed-off-by: Martin Bartoš <mabartos@redhat.com> * Support for duplicates in config Signed-off-by: Martin Bartoš <mabartos@redhat.com> * Fix rendering config options in docs Fixes #26515 Signed-off-by: Martin Bartoš <mabartos@redhat.com> * Reorder OptionsDistTest Signed-off-by: Martin Bartoš <mabartos@redhat.com> --------- Signed-off-by: Martin Bartoš <mabartos@redhat.com>
50 lines
No EOL
1.8 KiB
Text
50 lines
No EOL
1.8 KiB
Text
<#macro expectedValues option>
|
|
<#list ctx.options.getOption(option).expectedValues as expectedValue>
|
|
* ${expectedValue}
|
|
</#list>
|
|
</#macro>
|
|
|
|
<#macro list options buildIcon=true anchor=true>
|
|
[cols="12a,4",role="options"]
|
|
|===
|
|
| |Value
|
|
|
|
<#list options as option>
|
|
|
|
|
[.options-key]#``${option.key}``# <#if buildIcon><#if option.build>[.none]#icon:tools[role=options-build]#</#if></#if>
|
|
|
|
[.options-description]#${option.description}#
|
|
|
|
[<#if anchor>#option-extended-${option.key},</#if>role="options-extended"]
|
|
--
|
|
<#if option.descriptionExtended?has_content>[.options-description-extended]#${option.descriptionExtended!}#</#if>
|
|
|
|
*CLI:* `${option.keyCli}` +
|
|
*Env:* `${option.keyEnv}`
|
|
--
|
|
|
|
<#if option.enabledWhen?has_content>
|
|
${option.enabledWhen!}
|
|
</#if>
|
|
|
|
<#if option.deprecated?has_content>
|
|
<#-- Either mark the whole option as deprecated, or just selected values -->
|
|
<#if !option.deprecated.deprecatedValues?has_content>
|
|
*DEPRECATED.*
|
|
</#if>
|
|
${option.deprecated.note!}<#if option.deprecated.newOptionsKeys?has_content><#if option.deprecated.note?has_content> </#if>Use: <#list option.deprecated.newOptionsKeys as key>`+${key}+`<#if key?has_next>, </#if></#list>.</#if>
|
|
<#if option.deprecated.deprecatedValues?has_content>
|
|
*Deprecated values: <#list option.deprecated.deprecatedValues as value>`+${value}+`<#if value?has_next>, </#if></#list>*
|
|
</#if>
|
|
</#if>
|
|
|
|
|<#if option.expectedValues?has_content>
|
|
<#list option.expectedValues as value>`+${value!}+`<#if option.defaultValue?has_content && value = option.defaultValue> (default)</#if><#if value?has_next>, </#if></#list>
|
|
<#else>
|
|
<#if option.defaultValue?has_content>[.options-default]#`+${option.defaultValue!}+`# (default)</#if><#if option.type?has_content && option.defaultValue?has_content> or </#if><#if option.type?has_content && !option.expectedValues?has_content>any `+${option.type!}+`</#if>
|
|
</#if>
|
|
|
|
</#list>
|
|
|
|
|===
|
|
</#macro> |