File: ex5.xml

package info (click to toggle)
php-console-commandline 1.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 632 kB
  • sloc: php: 1,396; xml: 166; sh: 5; makefile: 4
file content (24 lines) | stat: -rw-r--r-- 834 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<command>
    <description>A great program that can list foo elements !</description>
    <version>1.0.0</version>
    <option name="verbose">
        <short_name>-v</short_name>
        <long_name>--verbose</long_name>
        <description>turn on verbose output</description>
        <action>StoreTrue</action>
    </option>
    <command>
        <name>list</name>
        <description>output the list of foo elements</description>
        <argument name="item">
            <description>May be either "foo", "bar", "baz"</description>
            <multiple>true</multiple>
            <choices>
                <choice>foo</choice>
                <choice>bar</choice>
                <choice>baz</choice>
            </choices>
        </argument>
    </command>
</command>