diff options
| author | abranson <abranson@PCUWE01.cern.ch> | 2012-07-06 11:01:14 +0200 |
|---|---|---|
| committer | abranson <abranson@PCUWE01.cern.ch> | 2012-07-06 11:01:14 +0200 |
| commit | 93ba823b147f200f5e5f20d272d1d982509ae021 (patch) | |
| tree | a85232e6737ba4deb3ce70564bc2698c5a1f6e2f /src/main/resources/module.xml | |
| parent | ba883c45793b0bc0e2f9b1744f9bff6a0060c7a5 (diff) | |
CastorXMLUtility is now a static member of gateway. Domain specific
instances can be used by domain applications, but the maps do not
interfere with the kernel.
Diffstat (limited to 'src/main/resources/module.xml')
| -rw-r--r-- | src/main/resources/module.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/main/resources/module.xml b/src/main/resources/module.xml index 2244229..e17cd7e 100644 --- a/src/main/resources/module.xml +++ b/src/main/resources/module.xml @@ -1,12 +1,14 @@ -<CristalModule ns="gui" name="CristalGui" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<CristalModule ns="gui" name="CristalGui">
<Info>
<Description>The default CRISTAL GUI</Description>
<Version>2.3.1</Version>
</Info>
<ResourceURL>com/c2kernel/gui/resources/</ResourceURL>
- <Config target="client" name="OutcomeHandler.CompositeActivityDef.0">com.c2kernel.gui.lifecycle.desc.CompActDefOutcomeHandler</Config>
- <Config target="client" name="OutcomeHandler.ElementaryActivityDef.0">com.c2kernel.gui.lifecycle.desc.ElemActDefOutcomeHandler</Config>
- <Config target="client" name="OutcomeHandler.Schema.0">com.c2kernel.gui.tabs.outcome.BasicOutcomeEditor</Config>
- <Config target="client" name="OutcomeHandler.Script.0">com.c2kernel.gui.tabs.outcome.BasicOutcomeEditor</Config>
- <Config target="client" name="banner">about.png</Config>
+ <Imports/>
+ <Config name="OutcomeHandler.CompositeActivityDef.0" target="client">com.c2kernel.gui.lifecycle.desc.CompActDefOutcomeHandler</Config>
+ <Config name="OutcomeHandler.ElementaryActivityDef.0" target="client">com.c2kernel.gui.lifecycle.desc.ElemActDefOutcomeHandler</Config>
+ <Config name="OutcomeHandler.Schema.0" target="client">com.c2kernel.gui.tabs.outcome.BasicOutcomeEditor</Config>
+ <Config name="OutcomeHandler.Script.0" target="client">com.c2kernel.gui.tabs.outcome.BasicOutcomeEditor</Config>
+ <Config name="banner" target="client">about.png</Config>
+ <Script target="client" event="startup" lang="javascript">Packages.com.c2kernel.utils.Logger.msg("Hi from a startup script");</Script>
</CristalModule>
\ No newline at end of file |
