diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-29 15:23:57 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-29 15:23:57 +0000 |
| commit | 39683a412a91bedfbf5e4380ee1e0db8860e9ef4 (patch) | |
| tree | 2b424ca6095ea388997c0bcb8066e8f0ade35907 /plugins/markasjunk | |
| parent | 73588f24e29e8e21bb65bbd4d8844e366c9b3046 (diff) | |
Add package.xml
git-svn-id: https://svn.roundcube.net/trunk@3440 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/markasjunk')
| -rw-r--r-- | plugins/markasjunk/markasjunk.php | 2 | ||||
| -rw-r--r-- | plugins/markasjunk/package.xml | 60 |
2 files changed, 61 insertions, 1 deletions
diff --git a/plugins/markasjunk/markasjunk.php b/plugins/markasjunk/markasjunk.php index 046645872..4c15a270f 100644 --- a/plugins/markasjunk/markasjunk.php +++ b/plugins/markasjunk/markasjunk.php @@ -6,7 +6,7 @@ * Sample plugin that adds a new button to the mailbox toolbar * to mark the selected messages as Junk and move them to the Junk folder * - * @version 1.0 + * @version @package_version@ * @author Thomas Bruederli */ class markasjunk extends rcube_plugin diff --git a/plugins/markasjunk/package.xml b/plugins/markasjunk/package.xml new file mode 100644 index 000000000..22b1b5689 --- /dev/null +++ b/plugins/markasjunk/package.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?> +<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.9.0" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 + http://pear.php.net/dtd/tasks-1.0.xsd + http://pear.php.net/dtd/package-2.0 + http://pear.php.net/dtd/package-2.0.xsd"> + <name>markasjunk</name> + <channel>pear.roundcube.net</channel> + <summary>Mark messages as Junk</summary> + <description>Adds a new button to the mailbox toolbar to mark the selected messages as Junk and move them to the configured Junk folder.</description> + <lead> + <name>Thomas Bruederli</name> + <user>thomasb</user> + <email>roundcube@gmail.com</email> + <active>yes</active> + </lead> + <date>2010-03-29</date> + <time>13:20:00</time> + <version> + <release>1.0</release> + <api>1.0</api> + </version> + <stability> + <release>stable</release> + <api>stable</api> + </stability> + <license uri="http://www.gnu.org/licenses/gpl-2.0.html">GNU GPLv2</license> + <notes>-</notes> + <contents> + <dir baseinstalldir="/" name="/"> + <file name="markasjunk.php" role="php"> + <tasks:replace from="@name@" to="name" type="package-info"/> + <tasks:replace from="@package_version@" to="version" type="package-info"/> + </file> + <file name="markasjunk.js" role="data"> + <tasks:replace from="@name@" to="name" type="package-info"/> + <tasks:replace from="@package_version@" to="version" type="package-info"/> + </file> + <file name="localization/en_US.inc" role="data"></file> + <file name="localization/cs_CZ.inc" role="data"></file> + <file name="localization/et_EE.inc" role="data"></file> + <file name="localization/pl_PL.inc" role="data"></file> + <file name="localization/ru_RU.inc" role="data"></file> + <file name="localization/sv_DE.inc" role="data"></file> + <file name="skins/default/junk_act.png" role="data"></file> + <file name="skins/default/junk_pas.png" role="data"></file> + </dir> + <!-- / --> + </contents> + <dependencies> + <required> + <php> + <min>5.2.1</min> + </php> + <pearinstaller> + <min>1.7.0</min> + </pearinstaller> + </required> + </dependencies> + <phprelease/> +</package> |
