summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_xsltproc
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-01-07 08:48:32 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-01-07 08:48:32 +0000
commit11207a7e48e1a2467a734706d2524c44f42843c4 (patch)
tree46b4602895214f445a51352af029e93ae6e6bc84 /Completion/Unix/Command/_xsltproc
parent99c9b50bb491e8e19774458e82bc9540f6d223f2 (diff)
downloadzsh-11207a7e48e1a2467a734706d2524c44f42843c4.tar.gz
zsh-11207a7e48e1a2467a734706d2524c44f42843c4.zip
new completion functions for lsof, mt and xsltproc
Diffstat (limited to 'Completion/Unix/Command/_xsltproc')
-rw-r--r--Completion/Unix/Command/_xsltproc23
1 files changed, 23 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_xsltproc b/Completion/Unix/Command/_xsltproc
new file mode 100644
index 000000000..ff83c735e
--- /dev/null
+++ b/Completion/Unix/Command/_xsltproc
@@ -0,0 +1,23 @@
+#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'