Ignore:
Timestamp:
2000-07-13T10:21:53+12:00 (24 years ago)
Author:
sjboddie
Message:

merged changes to trunk into New_Config_Format branch

Location:
branches/New_Config_Format-branch/gsdl/src/colservr
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/New_Config_Format-branch/gsdl/src/colservr/browsefilter.cpp

    r990 r1279  
    2828/*
    2929   $Log$
     30   Revision 1.10.4.1  2000/07/12 22:21:26  sjboddie
     31   merged changes to trunk into New_Config_Format branch
     32
     33   Revision 1.11  2000/06/29 22:02:23  sjboddie
     34   Made BrowseFilters EndResults option take -1 (i.e. "all"). This is mostly
     35   to be consistent with the QueryFilter
     36
    3037   Revision 1.10  2000/02/29 01:35:56  sjboddie
    3138   tidied up endianness and fastcgi
     
    8592  filtopt.type = FilterOption_t::integert;
    8693  filtopt.repeatable = FilterOption_t::onePerQuery;
    87   filtopt.defaultValue = "10000";
    88   filtopt.validValues.push_back("1");
     94  filtopt.defaultValue = "-1";
     95  filtopt.validValues.push_back("-1");
    8996  filtopt.validValues.push_back("10000");
    9097  filterOptions["EndResults"] = filtopt;
     
    298305
    299306      while (result_here != result_end) {
    300     if (resultnum > endresults) break;
     307    // if endresults is -1 get all results
     308    if ((endresults != -1) && (resultnum > endresults)) break;
    301309    if (resultnum >= startresults) {
    302310      resultdoc.OID = (*result_here);
  • branches/New_Config_Format-branch/gsdl/src/colservr/collectserver.cpp

    r830 r1279  
    2929/*
    3030   $Log$
     31   Revision 1.20.4.1  2000/07/12 22:21:26  sjboddie
     32   merged changes to trunk into New_Config_Format branch
     33
     34   Revision 1.21  2000/06/29 00:22:58  sjboddie
     35   added new numsections field to collection info and made the statusaction
     36   recognize it
     37
    3138   Revision 1.20  1999/12/13 02:56:22  davidb
    3239   Support for cross-collection searching (CCS)
     
    136143    else if (key == "languages") collectinfo.languages = cfgline;
    137144    else if (key == "numdocs") collectinfo.numDocs = value.getint();
     145    else if (key == "numsections") collectinfo.numSections = value.getint();
    138146    else if (key == "numwords") collectinfo.numWords = value.getint();
    139147    else if (key == "numbytes") collectinfo.numBytes = value.getint();
  • branches/New_Config_Format-branch/gsdl/src/colservr/mgsearch.cpp

    r633 r1279  
    2828/*
    2929   $Log$
     30   Revision 1.22.4.1  2000/07/12 22:21:27  sjboddie
     31   merged changes to trunk into New_Config_Format branch
     32
     33   Revision 1.23  2000/07/03 21:58:41  nzdl
     34   removed mg directive that was causing meaningless warning messages
     35   in errout.txt
     36
    3037   Revision 1.22  1999/09/24 02:41:21  rjmcnab
    3138   change to use has_unicode_letdig in text_t
     
    424431  mgq_ask(".set maxparas 500000");
    425432  mgq_ask(".set verbatim true");
    426   mgq_ask(".unset skip_dump");
     433  //  mgq_ask(".unset skip_dump");
    427434  mgq_ask(".set mode docnums");
    428435
  • branches/New_Config_Format-branch/gsdl/src/colservr/win32.mak

    r1000 r1279  
    2525###########################################################################
    2626
    27 GSDLHOME = d:\home\dl\gsdl
    28 STLPATH = d:\home\dl\stl\stlport
     27GSDLHOME = c:\gsdl
     28STLPATH = c:\stlport
    2929
    3030AR = lib
Note: See TracChangeset for help on using the changeset viewer.