Ignore:
Timestamp:
2010-01-21T15:59:35+13:00 (14 years ago)
Author:
mdewsnip
Message:

Changed lots of occurrences of "GDBM" in comments, variable names and function names, where the code isn't GDBM-specific. Part of making the code less GDBM-specific.

File:
1 edited

Legend:

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

    r21563 r21564  
    22#
    33# IncrementalDocument.pm -- An object to encapsulate the Greenstone
    4 #                           document retrieved from the GDBM database.
     4#                           document retrieved from the info database.
    55#
    66# A component of the Greenstone digital library software
     
    4848    $self->{'collection'} = $collection;
    4949
    50     # An associative array of information retrieved from the GDBM database
     50    # An associative array of information retrieved from the info database
    5151    # which maps a key string to a nested associative array listing values.
    5252    $self->{'data'} = {};
     
    147147    my ($self) = @_;
    148148    #rint STDERR "IncrementalDocument::loadDocument()\n";
    149     # Load the raw text for the document object from GDBM
     149    # Load the raw text for the document object from the info database
    150150    my $collection = $self->{'collection'};
    151151    my $index_text_directory_path = &util::filename_cat($ENV{'GSDLHOME'}, "collect", $collection, "index", "text");
     
    185185    my $text = $self->toString();
    186186
    187     # Now store the object in the database using the GDBM utilities
     187    # Now store the object in the info database
    188188    my $collection = $self->{'collection'};
    189189
Note: See TracChangeset for help on using the changeset viewer.