Changeset 2711 for trunk/gsdl


Ignore:
Timestamp:
2001-08-22T15:22:07+12:00 (23 years ago)
Author:
sjboddie
Message:

Removed the "beta" collect.cfg option to avoid awkward questions from
people about what it does (nothing!)

Location:
trunk/gsdl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/mkcol.pl

    r2584 r2711  
    5757    print STDOUT "                       different from the creator)\n";
    5858    print STDOUT "   -public true|false  If this collection has anonymous access\n";
    59     print STDOUT "   -beta true|false    If this collection is still under development\n";
    6059    print STDOUT "   -title text         The title for the collection\n";
    6160    print STDOUT "   -about text         The about text for the collection\n";
     
    116115        $line =~ s/\*\*maintainer\*\*/$maintainer/g;
    117116        $line =~ s/\*\*public\*\*/$public/g;
    118         $line =~ s/\*\*beta\*\*/$beta/g;
    119117        $line =~ s/\*\*title\*\*/$title/g;
    120118        $line =~ s/\*\*about\*\*/$about/g;
     
    139137              'maintainer/\w+\@[\w\.]+/', \$maintainer,
    140138              'public/true|false/true', \$public,
    141               'beta/true|false/true', \$beta,
    142139              'title/.+/', \$title,
    143140              'about/.+/', \$about,
     
    208205
    209206    $public = "true" unless defined $public;
    210     $beta = "true" unless defined $beta;
    211207
    212208    if (!defined($title) || $title eq "") {
  • trunk/gsdl/collect/modelcol/etc/collect.cfg

    r1993 r2711  
    22maintainer    **maintainer**
    33public        **public**
    4 beta          **beta**
    54
    65indexes        document:text
  • trunk/gsdl/perllib/colcfg.pm

    r2479 r2711  
    3535# {'creator'}->string
    3636# {'public'}->string
    37 # {'beta'}->string
    3837# {'defaultindex'}->string
    3938# {'importdir'}->string
     
    6564
    6665    return &cfgread::read_cfg_file ($filename,
    67                     q/^(creator|public|beta|defaultindex|importdir|/ .
     66                    q/^(creator|public|defaultindex|importdir|/ .
    6867                    q/archivedir|cachedir|builddir|removeold|/ .
    6968                    q/textcompress|buildtype|no_text|keepold|gzip/ .
     
    8079
    8180    &cfgread::write_cfg_file($filename, $data,
    82                  q/^(creator|public|beta|defaultindex|importdir|/ .
     81                 q/^(creator|public|defaultindex|importdir|/ .
    8382                 q/archivedir|cachedir|builddir|removeold|/ .
    8483                 q/textcompress|buildtype|collectdir|no_text|allclassifications)$/,
Note: See TracChangeset for help on using the changeset viewer.