about summary refs log tree commit diff
path: root/Completion/Unix/Command/_xmllint
blob: d28f779924983c3e0a0b66fe23b133b4b51929ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#compdef xmllint

# xmllint: using libxml version 20503

local encoding
encoding=(
  UTF-8
  UTF-16
  ISO-10646-UCS-2
  ISO-10646-UCS-4
  ISO-8859-1
  ISO-8859-2
  ISO-8859-3
  ISO-8859-4
  ISO-8859-5
  ISO-8859-6
  ISO-8859-7
  ISO-8859-8
  ISO-8859-9
  ISO-2022-JP
  SHIFT_JIS
  EUC-JP
)

_arguments \
  '--version[display the version of the XML library used]' \
  '--debug[dump a debug tree of the in-memory document]' \
  '--shell[run a navigating shell]' \
  '--debugent[debug the entities defined in the document]' \
  '--copy[used to test the internal copy implementation]' \
  '--recover[output what was parsable on broken XML documents]' \
  '--noent[substitute entity references by their value]' \
  "(--output -o)--noout[don't output the result tree]" \
  '--htmlout[output results as HTML]' \
  '--nowrap[do not put HTML doc wrapper]' \
  '--valid[validate the document in addition to std well-formed check]' \
  '(--dtdvalid --relaxng)--postvalid[do a posteriori validation, i.e after parsing]' \
  '(--postvalid --relaxng)--dtdvalid[do a posteriori validation against a given DTD]:DTD:_webbrowser' \
  '--timing[print some timings]' \
  '(--noout --output -o)'{--output,-o}'[save to a given file]:output file:_files' \
  '--repeat[repeat 100 times, for timing or profiling]' \
  '--insert[ad-hoc test for valid insertions]' \
  '--compress[turn on gzip compression of output]' \
  '(--html)--sgml[use the DocBook SGML parser]' \
  '(--sgml)--html[use the HTML parser]' \
  '--push[use the push mode of the parser]' \
  '--memory[parse from memory]' \
  '--nowarning[do not emit warnings from parser/validator]' \
  '--noblanks[drop (ignorable?) blanks spaces]' \
  '--format[reformat/reindent the input]' \
  '--testIO[test user I/O support]' \
  '--encode[output in the given encoding]:encoding:(${encoding[@]})' \
  '(--nocatalogs)--catalogs[use SGML catalogs]' \
  '(--catalogs)--nocatalogs[deactivate all catalogs]' \
  '--auto[generate a small doc on the fly]' \
  '--xinclude[do XInclude processing]' \
  '--loaddtd[fetch external DTD]' \
  '--dtdattr[loaddtd + populate the tree with inherited attributes]' \
  '--dropdtd[remove the DOCTYPE of the input docs]' \
  '--stream[use the streaming interface to process very large files]' \
  '--chkregister[verify the node registration code]' \
  '(--dtdvalid --postvalid)--relaxng[do RelaxNG validation against the schema]:schema:_webbrowser' \
  '*:XML file:_webbrowser'