source: extensions/net.sf.basedb.reggie/trunk/META-INF/extensions.xml @ 1725

Last change on this file since 1725 was 1725, checked in by Nicklas Nordborg, 11 years ago

Preparing for future release Reggie 2.9

File size: 2.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<extensions xmlns="http://base.thep.lu.se/extensions.xsd">
3  <about>
4    <name>Reggie package</name>
5    <description>
6      A package for simplified registration of biosources
7      and samples.
8    </description>
9    <version>2.9-dev</version>
10    <min-base-version>3.1.0</min-base-version>
11    <copyright>BASE development team</copyright>
12    <email>basedb-users@lists.sourceforge.net</email>
13    <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.reggie</url>
14  </about>
15
16  <plugin-definition id="CaliperSampleNameExporter">
17    <about>
18      <name>Caliper sample name exporter</name>
19      <description>
20        Plug-in that export the sample names on a bioplate to a
21        CSV file that can be used by the Caliper software. The
22        exported file has one line for each non-empty well with
23        five columns. Only the first two columns are used:
24        Well coordinate, sample name.
25      </description>
26    </about>
27    <plugin-class>net.sf.basedb.reggie.plugins.CaliperSampleNameExporter</plugin-class>
28    <settings>
29      <property name="everyone-use">1</property>
30      <property name="immediate-execution">1</property>
31    </settings>
32  </plugin-definition>
33
34  <plugin-definition id="CaliperRunParametersExporter">
35    <about>
36      <name>Caliper run parameters exporter</name>
37      <description>
38        Plug-in that export run file parameters that can be used by the
39        Caliper software. The run file include information about Assay Type,
40        Plate Name, selected wells, etc.
41      </description>
42    </about>
43    <plugin-class>net.sf.basedb.reggie.plugins.CaliperRunParametersExporter</plugin-class>
44    <settings>
45      <property name="everyone-use">1</property>
46      <property name="immediate-execution">1</property>
47    </settings>
48  </plugin-definition>
49
50  <extension
51    id="net.sf.basedb.reggie"
52    extends="net.sf.basedb.clients.web.menu.extensions"
53    >
54    <index>10</index>
55    <about>
56      <name>Reggie</name>
57      <description>
58        Menu entry for accessing reggie-specific operations.
59      </description>
60    </about>
61    <action-factory>
62      <factory-class>
63        net.sf.basedb.clients.web.extensions.menu.FixedMenuItemFactory
64      </factory-class>
65      <parameters>
66        <title>Reggie</title>
67        <tooltip>Access reggie operations</tooltip>
68        <onClick>Menu.openUrl('$HOME$/index.jsp?ID='+getSessionId())</onClick>
69        <icon>/images/padding.gif</icon>
70      </parameters>
71    </action-factory>
72  </extension>
73</extensions>
Note: See TracBrowser for help on using the repository browser.