1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-11 13:01:28 +02:00
zsh/Completion/Unix/Command/_xsltproc
2003-01-07 08:48:32 +00:00

23 lines
1.1 KiB
Text

#compdef xsltproc
_arguments \
'(-)'{--version,-V}'[show libxml and libxslt versions]' \
'(--verbose -v)'{--verbose,-v}"[show logs of what's happening]" \
'(--output -o)'{--output,-o}'[specify output file]:output file:_files' \
'--timing[display the time used]' \
'--repeat[run the transformation 20 times]' \
'--debug[dump the tree of the result instead]' \
'--dumpextensions[dump registered extension elements and functions]' \
'--novalid[skip the DTD loading phase]' \
'--noout[do not dump the result]' \
'--maxdepth[increase the maximum depth]:depth' \
'(--docbook)--html[input document is an HTML file]' \
'(--html)--docbook[input document is SGML docbook]' \
'--param[pass a parameter,value pair]:name::value (xpath expression)' \
'--stringparam[pass a parameter]:name::value' \
'--nonet[refuse to fetch DTDs or entities over network]' \
'--catalogs[use SGML catalogs]' \
'--xinclude[do XInclude processing on document input]' \
{--profile,--norman}'[dump profiling information]' \
'1:stylesheet:_files -g \*.xsl' \
':file:_files -g \*.xml'