Changeset 1319


Ignore:
Timestamp:
2000-08-02T12:45:15+12:00 (24 years ago)
Author:
kjm18
Message:

added level info to queryparamclass for mgpp collections

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

Legend:

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

    r1285 r1319  
    3939  subcollection.clear();
    4040  language.clear();
     41  level.clear();
    4142  querystring.clear();
    4243  search_type = 0; // 0 = boolean, 1 = ranked
     
    5455  subcollection = q.subcollection;
    5556  language = q.language;
     57  level = q.level;
    5658  querystring = q.querystring;
    5759  search_type = q.search_type;
     
    7173      (x.subcollection == y.subcollection) &&
    7274      (x.language == y.language) &&
     75      (x.level == y.level) &&
    7376      (x.querystring == y.querystring) &&
    7477      (x.search_type == y.search_type) &&
     
    9194  outs << text_t2ascii << " collection = \"" << q.collection << "\"\n";
    9295  outs << text_t2ascii << " index = \"" << q.index << "\"\n";
     96  outs << text_t2ascii << " level = \"" << q.level << "\"\n";
    9397  outs << text_t2ascii << " subcollection = \"" << q.subcollection << "\"\n";
    9498  outs << text_t2ascii << " language = \"" << q.language << "\"\n";
  • trunk/gsdl/src/colservr/queryinfo.h

    r1285 r1319  
    5858  text_t subcollection;
    5959  text_t language;
    60  
     60  text_t level; // for new mg stuff
    6161  text_t querystring;
    6262  int search_type; // 0 = boolean, 1 = ranked
Note: See TracChangeset for help on using the changeset viewer.