Changeset 14004


Ignore:
Timestamp:
2007-04-03T17:44:18+12:00 (17 years ago)
Author:
mdewsnip
Message:

Added process_exp into the GAPlug arguments so it doesn't inherit XMLPlug's process_exp and mess with all .xml files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/GAPlug.pm

    r13147 r14004  
    4747}
    4848
    49 my $arguments = [
    50          ];
     49my $arguments =
     50    [ { 'name' => "process_exp",
     51    'desc' => "{BasPlug.process_exp}",
     52    'type' => "regexp",
     53    'deft' => &get_default_process_exp(),
     54    'reqd' => "no" } ];
    5155
    5256my $options = { 'name'     => "GAPlug",
    5357        'desc'     => "{GAPlug.desc}",
    5458        'abstract' => "no",
    55         'inherits' => "yes" };
     59        'inherits' => "yes",
     60            'args'     => $arguments };
    5661
    5762sub new {
Note: See TracChangeset for help on using the changeset viewer.