% if len(typeahead) > 0:
<%doc>TRANS: Heading for list of keywords%doc>${_('keywords')}
% for token,count in typeahead:
- ${token|h} (${count|h})
% endfor
|
% endif
% if len(notices) > 0:
|
<%doc>TRANS: Heading for list of notices%doc>${_('notices')}
% for note in notices:
- ${note|h}
% endfor
|
% endif
<% import splunk.searchhelp.describer as describer %>
% if len(args) > 0 or len(nexts) > 0:
|
next
% if len(args) > 0:
<%doc>TRANS: Heading for list of arguments%doc>${_('arguments')}
% for arg,perc in args[:5]:
<% cleanedarg = describer.stylizeVariables(arg) %>
- ${cleanedarg}
% endfor
% endif
% if len(nexts) > 0:
TRANS: Heading for list of commands%doc>${_('commands')}
% for next,perc in nexts[:5]:
${next|h}
% endfor
% endif
|
% endif
% if len(command) > 0:
${command['name']}
${_(command['shortdesc'])}
<%doc>TRANS: Command details%doc>${_('details')}
${_(command['details'])}
<%doc>TRANS: Command syntax heading%doc>${_('syntax')}
${command['syntax']}
% if len(command['examples']) > 0:
<%doc>TRANS: Command usage examples heading%doc>${_('examples')}
% for example,comment in command['examples'][:5]:
${_(comment)} ${example|h}
% endfor
% endif
% if len(command['related']) > 0:
<%doc>TRANS: Related commands heading%doc>${_('related')}
${command['related']|h}
% endif
% if len(command['aliases']) > 0:
<%doc>TRANS: Commands alias names heading%doc>${_('aliases')}
${command['aliases']|h}
% endif
|
% endif
${_('Help')}
${_('Settings')}
|