1 | <?xml version="1.0" encoding="UTF-8" ?> |
---|
2 | <!-- |
---|
3 | $Id: web-extensions.xml 7111 2016-03-15 12:57:46Z nicklas $ |
---|
4 | |
---|
5 | Copyright (C) Nicklas Nordborg |
---|
6 | |
---|
7 | This file is part of BASE - BioArray Software Environment. |
---|
8 | Available at http://base.thep.lu.se/ |
---|
9 | |
---|
10 | BASE is free software; you can redistribute it and/or |
---|
11 | modify it under the terms of the GNU General Public License |
---|
12 | as published by the Free Software Foundation; either version 3 |
---|
13 | of the License, or (at your option) any later version. |
---|
14 | |
---|
15 | BASE is distributed in the hope that it will be useful, |
---|
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
18 | GNU General Public License for more details. |
---|
19 | |
---|
20 | You should have received a copy of the GNU General Public License |
---|
21 | along with BASE. If not, see <http://www.gnu.org/licenses/>. |
---|
22 | --> |
---|
23 | <extensions |
---|
24 | xmlns="http://base.thep.lu.se/extensions.xsd" |
---|
25 | id-base="net.sf.basedb.clients.web." |
---|
26 | > |
---|
27 | <about> |
---|
28 | <version></version> |
---|
29 | <name>Web client extensions points and extensions</name> |
---|
30 | <description> |
---|
31 | This file defines extension points and extensions for |
---|
32 | the web client. The extensions are only loaded when BASE |
---|
33 | starts up as a web server. |
---|
34 | </description> |
---|
35 | <copyright>BASE development team</copyright> |
---|
36 | <email>basedb-users@lists.sourceforge.net</email> |
---|
37 | <url>http://base.thep.lu.se/</url> |
---|
38 | </about> |
---|
39 | |
---|
40 | <plugin-definition |
---|
41 | id="SimpleExport"> |
---|
42 | <about> |
---|
43 | <name>Table exporter</name> |
---|
44 | <description> |
---|
45 | Export all table listings in the web interface as tab-separated |
---|
46 | text files or as XML. This plugin only works from within the web |
---|
47 | client, since it depends on context and table information. |
---|
48 | </description> |
---|
49 | </about> |
---|
50 | <plugin-class>net.sf.basedb.clients.web.plugins.SimpleExport</plugin-class> |
---|
51 | <settings> |
---|
52 | <property name="everyone-use">1</property> |
---|
53 | <property name="immediate-execution">1</property> |
---|
54 | </settings> |
---|
55 | </plugin-definition> |
---|
56 | |
---|
57 | <extension-point |
---|
58 | id="menu.extensions" |
---|
59 | > |
---|
60 | <action-class>net.sf.basedb.clients.web.extensions.menu.MenuItemAction</action-class> |
---|
61 | <name>Menu: extensions</name> |
---|
62 | <description> |
---|
63 | Extension point for adding extensions to the 'Extensions' menu. |
---|
64 | Extensions should provide MenuItemAction instances. The rendering |
---|
65 | is internal and extensions can't use their own rendering factories. |
---|
66 | The context will only include information about the currently logged |
---|
67 | in user, not information about the current page that is displayed. |
---|
68 | The reason for this is that the rendered menu is cached as a string |
---|
69 | in the user session. The menu is not updated on every page request. |
---|
70 | As of BASE 3.3, this extension point also support custom scripts and |
---|
71 | stylesheets. |
---|
72 | </description> |
---|
73 | </extension-point> |
---|
74 | |
---|
75 | <extension-point |
---|
76 | id="bioassayset.list.tools" |
---|
77 | > |
---|
78 | <action-class>net.sf.basedb.clients.web.extensions.toolbar.ButtonAction</action-class> |
---|
79 | <renderer-factory override="true"> |
---|
80 | <factory-class>net.sf.basedb.clients.web.extensions.toolbar.CompactButtonRendererFactory</factory-class> |
---|
81 | </renderer-factory> |
---|
82 | <name>Bioassay set: Tools</name> |
---|
83 | <description> |
---|
84 | Extension point for the Tools column in the bioassayset tree |
---|
85 | view of an experiment. Extensions should provide ActionButton |
---|
86 | instances. The default renderer factory is CompactButtonRendererFactory, |
---|
87 | but this can be overridden by the extensions. Note that the tree |
---|
88 | contains items of more than one type: BioAssaySet, Transformation and |
---|
89 | ExtraValue. The JspContext.getItem() can return any one of those |
---|
90 | types. |
---|
91 | </description> |
---|
92 | </extension-point> |
---|
93 | |
---|
94 | <extension-point |
---|
95 | id="bioassayset.overviewplots" |
---|
96 | > |
---|
97 | <action-class>net.sf.basedb.clients.web.extensions.plot.OverviewPlotAction</action-class> |
---|
98 | <name>Bioassay set: Overview plots</name> |
---|
99 | <description> |
---|
100 | Extension point for overview plots for a bioassay set. The overview |
---|
101 | plots are usually one pre-defined plot per bioassay. For example, |
---|
102 | MA plots for 2-channel data. Extensions should provide OverviewPlotAction |
---|
103 | instances. The rendering is internal and generates one <img> tag |
---|
104 | for each plot. An extension is supposed to generate the image URL that |
---|
105 | leads to a servlet that creates the actual image. We recommend that |
---|
106 | images are cached. See the core plot servlet for details. |
---|
107 | </description> |
---|
108 | </extension-point> |
---|
109 | |
---|
110 | <extension-point |
---|
111 | id="services" |
---|
112 | > |
---|
113 | <action-class>net.sf.basedb.clients.web.extensions.service.ServiceControllerAction</action-class> |
---|
114 | <name>Services</name> |
---|
115 | <description> |
---|
116 | Extension point for services. A service is a piece of code that |
---|
117 | is loaded when the BASE web server starts up. The service is then running |
---|
118 | as long as the BASE web server is running. It is also possible to |
---|
119 | manually stop and start services. This extension point is different from |
---|
120 | most others in that it doesn't affects the visible interface. Since |
---|
121 | services are loaded at startup time, this also means that the |
---|
122 | context passed to ActionFactory methods doesn't have any user |
---|
123 | information. However, the InvokationContext.getClientContext().getSessionControl() |
---|
124 | returns a special SessionControl which gives the extension permission to impersonate |
---|
125 | another user so that it can access the BASE database if needed. |
---|
126 | There is also no meaning for extensions to specify a RendererFactory. |
---|
127 | </description> |
---|
128 | <error-handler-factory> |
---|
129 | <factory-class>net.sf.basedb.util.extensions.LoggingErrorHandlerFactory</factory-class> |
---|
130 | <parameters> |
---|
131 | <rememberLast>true</rememberLast> |
---|
132 | </parameters> |
---|
133 | </error-handler-factory> |
---|
134 | </extension-point> |
---|
135 | |
---|
136 | <extension-point |
---|
137 | id="overview.info-details"> |
---|
138 | <action-class>net.sf.basedb.clients.web.extensions.section.SectionAction</action-class> |
---|
139 | <name>Item overview - node information</name> |
---|
140 | <description> |
---|
141 | Extension point for including more information about the currently selected node |
---|
142 | in the overview. The information is displayed as a section in the right pane. |
---|
143 | This extension point supports custom javascript and stylesheet, but rendering |
---|
144 | is internal. The JspContext is populated with the current 'Node' object from the |
---|
145 | overview which can be used to retreive more information. |
---|
146 | </description> |
---|
147 | </extension-point> |
---|
148 | |
---|
149 | <extension-point |
---|
150 | id="login-form"> |
---|
151 | <action-class>net.sf.basedb.clients.web.extensions.login.LoginFormAction</action-class> |
---|
152 | <name>Login form customization</name> |
---|
153 | <description> |
---|
154 | Extension point for customizing the login form. Makes it possible to change login |
---|
155 | and/or password prompts, help texts, etc. Since there is only one login form, |
---|
156 | only the first extension found for this extension point is used. |
---|
157 | </description> |
---|
158 | </extension-point> |
---|
159 | |
---|
160 | <extension-point |
---|
161 | id="global-skin"> |
---|
162 | <action-class>net.sf.basedb.clients.web.extensions.skin.SkinAction</action-class> |
---|
163 | <name>Skins</name> |
---|
164 | <description> |
---|
165 | Extension point for GUI customizations. Extensions should implement |
---|
166 | the SkinAction interface, which can be used to set the favicon and |
---|
167 | add custom data to a hidden div tag on the page. Most work is expected |
---|
168 | to be done by stylesheets and/or scripts added to the JspContext |
---|
169 | instance passed to factory via the prepareContext method. |
---|
170 | </description> |
---|
171 | </extension-point> |
---|
172 | |
---|
173 | <extension-point |
---|
174 | id="start-page"> |
---|
175 | <action-class>net.sf.basedb.clients.web.extensions.startpage.StartPageAction</action-class> |
---|
176 | <name>Start page</name> |
---|
177 | <description> |
---|
178 | Extension point for selecting the start page that is displayed |
---|
179 | after a user has logged in to BASE. Extensions should implement |
---|
180 | the StartPageAction interface. Use the BASE › Preferences menu |
---|
181 | to select the start page. This extension point doesn't use any |
---|
182 | custom scripts or stylesheets. |
---|
183 | </description> |
---|
184 | </extension-point> |
---|
185 | |
---|
186 | <!-- |
---|
187 | More extension points: |
---|
188 | In addition to the extension points in this file, the web |
---|
189 | client also defines a lot of other extension points that are |
---|
190 | registered programmatically. For more information see |
---|
191 | Extensions -> Installed extensions in the web client interface. |
---|
192 | |
---|
193 | * Toolbar extension points: Adds buttons to toolbars in |
---|
194 | list and single-item view pages. |
---|
195 | * Edit dialog: Adds extra tabs to edit dialogs |
---|
196 | * OnSave: Add callback functionality when saving from an edit dialog |
---|
197 | --> |
---|
198 | |
---|
199 | <extension |
---|
200 | id="bioassayset.overviewplots.maplot" |
---|
201 | extends="net.sf.basedb.clients.web.bioassayset.overviewplots" |
---|
202 | > |
---|
203 | <index>1</index> |
---|
204 | <about> |
---|
205 | <name>MA/Correction factor plots</name> |
---|
206 | <description> |
---|
207 | Generates MA and correction factor plots for |
---|
208 | 2-channel data. |
---|
209 | </description> |
---|
210 | </about> |
---|
211 | <action-factory> |
---|
212 | <factory-class> |
---|
213 | net.sf.basedb.clients.web.extensions.plot.MAPlotFactory |
---|
214 | </factory-class> |
---|
215 | <parameters> |
---|
216 | <width>400</width> |
---|
217 | <height>300</height> |
---|
218 | <plotServlet>/views/experiments/plotter/plot</plotServlet> |
---|
219 | </parameters> |
---|
220 | </action-factory> |
---|
221 | </extension> |
---|
222 | |
---|
223 | |
---|
224 | |
---|
225 | </extensions> |
---|