Changeset 20096


Ignore:
Timestamp:
2009-07-29T12:12:47+12:00 (15 years ago)
Author:
kjdon
Message:

package name changes

Location:
gsdl/trunk/perllib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/buildConfigxml.pm

    r20094 r20096  
    11###########################################################################
    22#
    3 # cfgread4gs3.pm --
     3# buildConfigxml.pm --
    44# A component of the Greenstone digital library software
    55# from the New Zealand Digital Library Project at the
     
    2626# reads in configuration files of xml form
    2727
    28 package cfgread4gs3;
     28package buildConfigxml;
    2929use strict;
    3030no strict 'refs';
     
    461461    # the received args: $buildoutfile - destination file: buildConfig.xml
    462462    #                    $buildcfg - all build options, eg, disable_OAI
    463     #                    $collectcfg - contents of collectionConfig.xml read in by read_cfg_file sub in cfgread4gs3.pm.
     463    #                    $collectcfg - contents of collectionConfig.xml read in by read_cfg_file sub in buildConfigxml.pm.
    464464    my ($buildoutfile, $buildcfg, $collectcfg, $disable_OAI) = @_;
    465465    my $line = [];
    466466
    467467    if (!open (COLCFG, ">$buildoutfile")) {
    468     print STDERR "cfgread4gs3::write_cfg_file couldn't write the build config file $buildoutfile\n";
     468    print STDERR "buildConfigxml::write_cfg_file couldn't write the build config file $buildoutfile\n";
    469469    die;
    470470    }
  • gsdl/trunk/perllib/collConfigxml.pm

    r20094 r20096  
    11###########################################################################
    22#
    3 # cfgread4gs3.pm --
     3# collConfigxml.pm --
    44# A component of the Greenstone digital library software
    55# from the New Zealand Digital Library Project at the
     
    2626# reads in configuration files of xml form
    2727
    28 package cfgread4gs3;
     28package collConfigxml;
    2929use strict;
    3030no strict 'refs';
     
    461461    # the received args: $buildoutfile - destination file: buildConfig.xml
    462462    #                    $buildcfg - all build options, eg, disable_OAI
    463     #                    $collectcfg - contents of collectionConfig.xml read in by read_cfg_file sub in cfgread4gs3.pm.
     463    #                    $collectcfg - contents of collectionConfig.xml read in by read_cfg_file sub in collConfigxml.pm.
    464464    my ($buildoutfile, $buildcfg, $collectcfg, $disable_OAI) = @_;
    465465    my $line = [];
    466466
    467467    if (!open (COLCFG, ">$buildoutfile")) {
    468     print STDERR "cfgread4gs3::write_cfg_file couldn't write the build config file $buildoutfile\n";
     468    print STDERR "collConfigxml::write_cfg_file couldn't write the build config file $buildoutfile\n";
    469469    die;
    470470    }
Note: See TracChangeset for help on using the changeset viewer.