source: extensions/net.sf.basedb.mev/trunk/META-INF/extensions.xml @ 1264

Last change on this file since 1264 was 1264, checked in by Nicklas Nordborg, 13 years ago

Preparing for future release 1.8

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<extensions xmlns="http://base.thep.lu.se/extensions.xsd">
3  <about>
4    <name>MEV Launcher package</name>
5    <description>
6      This package adds the possibility to launch the MEV
7      application with Java web start and automatically have
8      it import data from the current bioassay set.
9    </description>
10    <version>1.8pre</version>
11    <copyright>BASE 2 development team</copyright>
12    <email>basedb-users@lists.sourceforge.net</email>
13    <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev</url>
14  </about>
15  <extension
16    id="net.sf.basedb.mev.launchmev"
17    extends="net.sf.basedb.clients.web.bioassayset.list.tools"
18    >
19    <index>1</index>
20    <about>
21      <name>MeV Launcher</name>
22      <description>
23        Adds an action to the "Tools" column that starts MeV using Java
24        web start and automatically loads data from the current bioassay
25        set. The bioassay set must have a MeV TDMS file attached to it.
26      </description>
27    </about>
28    <action-factory>
29      <factory-class>
30        net.sf.basedb.mev.factory.MevButtonFactory
31      </factory-class>
32      <parameters>
33        <title>Start MeV</title>
34        <tooltip>
35          Launch MeV with data from this bioassay set. If
36          you have not yet created any MeV file you will be
37          given the option to do so.
38        </tooltip>
39        <onClick>MeV.launch($ID$)</onClick>
40        <icon>~/images/tm4.png</icon>
41        <script>~/scripts/mev.jsp</script>
42      </parameters>
43    </action-factory>
44  </extension>
45  <extension
46    id="net.sf.basedb.mev.options"
47    extends="net.sf.basedb.clients.web.menu.extensions"
48    >
49    <index>1</index>
50    <about>
51      <name>MeV Launcher options</name>
52      <description>
53        Opens a dialog where a user can specify options for the MeV Launcher
54      </description>
55    </about>
56    <action-factory>
57      <factory-class>
58        net.sf.basedb.clients.web.extensions.menu.FixedMenuItemFactory
59      </factory-class>
60      <parameters>
61        <title>MeV Launcher options&amp;hellip;</title>
62        <tooltip>Specify options for the MeV Launcher</tooltip>
63        <onClick>Main.openPopup('$HOME$/options.jsp?ID='+getSessionId(), 'MeVLauncherOptions', 500, 400)</onClick>
64        <icon>~/images/tm4.png</icon>
65      </parameters>
66    </action-factory>
67  </extension>
68</extensions>
Note: See TracBrowser for help on using the repository browser.