Changeset 15595


Ignore:
Timestamp:
2008-05-20T13:46:00+12:00 (16 years ago)
Author:
mdewsnip
Message:

(Adding new DB support) Removed a bunch of "gdbm"s from comments etc.

Location:
gsdl/trunk/src/colservr
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/colservr/mgppqueryfilter.cpp

    r15594 r15595  
    306306}
    307307
    308 // mgppsearchptr and db_ptr are assumed to be valid
     308// textsearchptr and db_ptr are assumed to be valid
    309309void mgppqueryfilterclass::do_multi_query (const FilterRequest_t &request,
    310310                       const vector<queryparamclass> &query_params,
  • gsdl/trunk/src/colservr/mgppqueryfilter.h

    r10954 r15595  
    2626 *********************************************************************/
    2727
    28 
    2928#ifndef MGPPQUERYFILTER_H
    3029#define MGPPQUERYFILTER_H
    3130
    3231#include "queryfilter.h"
     32
    3333
    3434class mgppqueryfilterclass : public queryfilterclass {
     
    3838  bool full_text_browse (int filterRequestOptions);
    3939
    40   // mgsearchptr and gdbmptr are assumed to be valid
     40  // textsearchptr and db_ptr are assumed to be valid
    4141  void do_multi_query (const FilterRequest_t &request,
    4242               const vector<queryparamclass> &query_params,
     
    5858            FilterResponse_t &response,
    5959            comerror_t &err, ostream &logout); 
     60};
    6061
    6162
    62 };
    63 
    6463#endif
    65 
    66 
    67 
  • gsdl/trunk/src/colservr/mgqueryfilter.cpp

    r15558 r15595  
    187187
    188188// do query that might involve multiple sub queries
    189 // mgsearchptr and db_ptr are assumed to be valid
     189// textsearchptr and db_ptr are assumed to be valid
    190190void mgqueryfilterclass::do_multi_query (const FilterRequest_t &request,
    191191                       const vector<queryparamclass> &query_params,
  • gsdl/trunk/src/colservr/mgqueryfilter.h

    r12314 r15595  
    2626 *********************************************************************/
    2727
    28 
    2928#ifndef MGQUERYFILTER_H
    3029#define MGQUERYFILTER_H
    3130
    3231#include "queryfilter.h"
     32
    3333
    3434// resultsorderer_t is used to sort the query results
     
    6060
    6161  // do query that might involve multiple sub queries
    62   // mgsearchptr and gdbmptr are assumed to be valid
     62  // mgsearchptr and db_ptr are assumed to be valid
    6363  void do_multi_query (const FilterRequest_t &request,
    6464               const vector<queryparamclass> &query_params,
     
    8888
    8989#endif
    90 
  • gsdl/trunk/src/colservr/phrasesearch.h

    r15558 r15595  
    3737// looks for the phrase in the metadata or text associated with
    3838// a document number. This function has not been coded with all
    39 // situations in mind and expects mgsearch and gdbm set up ready to go
     39// situations in mind and expects mgsearch and db set up ready to go
    4040bool OID_phrase_search (mgsearchclass &mgsearch,
    4141            dbclass &db,
  • gsdl/trunk/src/colservr/queryfilter.cpp

    r15587 r15595  
    326326
    327327queryfilterclass::~queryfilterclass () {
    328   // don't delete db_ptr or mgsearchptr here, they'll
    329   // be cleaned up by mggdbmsource
     328  // don't delete db_ptr or textsearchptr here, they'll be cleaned up by the source
    330329}
    331330
Note: See TracChangeset for help on using the changeset viewer.