diff options
author | Scott Moreau <oreaus@gmail.com> | 2010-09-02 13:31:33 -0600 |
---|---|---|
committer | Scott Moreau <oreaus@gmail.com> | 2010-09-02 13:31:33 -0600 |
commit | ce6f70d0cd070e32aa7a4c63b1f09aa2bafd8117 (patch) | |
tree | f711353b0ce64d2e9e75255b733e1649302aef42 | |
parent | c725e21f54a0b88697ccfaee5f2686e0a930d387 (diff) | |
download | example-ce6f70d0cd070e32aa7a4c63b1f09aa2bafd8117.tar.gz example-ce6f70d0cd070e32aa7a4c63b1f09aa2bafd8117.tar.bz2 |
Fix metadata.
-rw-r--r-- | example.xml.in | 53 |
1 files changed, 28 insertions, 25 deletions
diff --git a/example.xml.in b/example.xml.in index 74b583f..70ec5ee 100644 --- a/example.xml.in +++ b/example.xml.in @@ -1,30 +1,33 @@ +<?xml version="1.0"?> <compiz> <plugin name="example" useBcop="true"> - <_short>Example plugin</_short> - <_long>Developers are awesome</_long> - <relation type="after"> - <plugin>composite</plugin> - <plugin>opengl</plugin> - <plugin>decor</plugin> - </relation> - <requirement> - <plugin>composite</plugin> - <plugin>opengl</plugin> - </requirement> - <screen> - <option type="key" name="example"> - <_short>Example Action</_short> - <_long>Example action. See what comes out of a terminal? Familiar with the code yet?</_long> - </option> - <option type="key" name="special"> - <_short>Special Action</_short> - <_long>Special action. See how it works</_long> - </option> - <option type="key" name="custom"> - <_short>Custom Action</_short> - <_long>Custom action. Where did that 42 come from? Isn't boost::bind awesome!</_long> - </option> - </screen> + <_short>Example plugin</_short> + <_long>Developers are awesome</_long> + <deps> + <relation type="after"> + <plugin>composite</plugin> + <plugin>opengl</plugin> + <plugin>decor</plugin> + </relation> + <requirement> + <plugin>composite</plugin> + <plugin>opengl</plugin> + </requirement> + </deps> + <options> + <option type="key" name="example"> + <_short>Example Action</_short> + <_long>Example action. See what comes out of a terminal? Familiar with the code yet?</_long> + </option> + <option type="key" name="special"> + <_short>Special Action</_short> + <_long>Special action. See how it works</_long> + </option> + <option type="key" name="custom"> + <_short>Custom Action</_short> + <_long>Custom action. Where did that 42 come from? Isn't boost::bind awesome!</_long> + </option> + </options> </plugin> </compiz> |