Ignore:
Timestamp:
2012-12-10T16:37:21+13:00 (11 years ago)
Author:
ak19
Message:

When a GS2 collection contains both collect.cfg and collectionConfig.xml (as advanced beatles does) the old code used to end up reading in the GS3 collectionConfig.xml instead of the GS2 collect.cfg and set the GS_mode to GS3. Now colcfg::get_collect_cfg_name takes the gs_mode (instead of determining this and returning it) and works out the collectcfg file name for the gs_mode. That means that the calling functions now need to work out the gs_mode. They do so by setting the gs_mode to gs3 if the site flag is present in the commandline, if not then it defaults to gs2. So from now on, the site flag must be specified for GS3 collections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/basebuilder.pm

    r26094 r26567  
    8686   
    8787    # Read in the collection configuration file.
    88     my ($colcfgname);
    89     ($colcfgname, $gs_mode) = &colcfg::get_collect_cfg_name($outhandle);
     88    if ((defined $site) && ($site ne "")) { # GS3
     89    $gs_mode = "gs3";
     90    }
     91
     92    my $colcfgname = &colcfg::get_collect_cfg_name($outhandle, $gs_mode);
    9093    $self->{'collect_cfg'} = &colcfg::read_collection_cfg ($colcfgname, $gs_mode);
    9194
Note: See TracChangeset for help on using the changeset viewer.