Ignore:
Timestamp:
2006-08-02T16:30:23+12:00 (18 years ago)
Author:
mdewsnip
Message:

Now shows the stopwords removed by Lucene, many thanks to Me and DL Consulting Ltd.

File:
1 edited

Legend:

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

    r12262 r12380  
    5151    termfreqobj.termfreq = atoi(term_frequency_str);
    5252    queryresult_ptr->orgterms.push_back(termfreqobj);
     53  }
     54
     55  if (element_name == "StopWord") {
     56    char* stop_word_value_str = get_attribute(attributes, "value");
     57    queryresult_ptr->stopwords.insert((text_t) stop_word_value_str);
    5358  }
    5459
Note: See TracChangeset for help on using the changeset viewer.