You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(25) |
Dec
(67) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(125) |
Feb
(23) |
Mar
(167) |
Apr
(2) |
May
|
Jun
(19) |
Jul
(304) |
Aug
(181) |
Sep
(189) |
Oct
(145) |
Nov
(110) |
Dec
(44) |
| 2006 |
Jan
(303) |
Feb
(40) |
Mar
(2) |
Apr
(143) |
May
|
Jun
(74) |
Jul
(31) |
Aug
(7) |
Sep
(21) |
Oct
(33) |
Nov
(102) |
Dec
(36) |
| 2007 |
Jan
|
Feb
(16) |
Mar
(38) |
Apr
(34) |
May
(3) |
Jun
(4) |
Jul
(4) |
Aug
(13) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
(2) |
Feb
|
Mar
(13) |
Apr
|
May
(18) |
Jun
(48) |
Jul
(136) |
Aug
(45) |
Sep
(21) |
Oct
(32) |
Nov
|
Dec
(9) |
| 2009 |
Jan
(4) |
Feb
|
Mar
(33) |
Apr
(23) |
May
(6) |
Jun
(3) |
Jul
(11) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: John W. <j_w...@us...> - 2004-12-10 21:06:41
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10174 Modified Files: SegmentTermDocs.cpp Log Message: Added protection of freqStream SegmentTermDocs::close() |
|
From: John W. <j_w...@us...> - 2004-12-10 21:05:15
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9791 Modified Files: SegmentTermPositions.cpp Log Message: Removed comment at top |
|
From: John W. <j_w...@us...> - 2004-12-10 21:03:55
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9399 Modified Files: SegmentTermPositions.cpp Log Message: Added protection to proxStream in SegmentTermPositions::close() - proxStream is now checked if it is a valid pointer before close is called |
|
From: John W. <j_w...@us...> - 2004-12-10 21:02:24
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8987 Modified Files: SegmentTermEnum.h Log Message: Document every method of the class SegmentTermEnum Changed Term& readTerm(); into Term* readTerm(); Added method void scanTo(const Term *Scratch); |
|
From: John W. <j_w...@us...> - 2004-12-10 21:00:23
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8399 Modified Files: SegmentTermEnum.cpp Log Message: Every method of SegmentTermEnum has been documented In the constructor of SegmentTermEnum - changed buffer = new char_t[0]; into buffer = NULL In destructor of SegmentTermEnum - added check of buffer and termInfo before deletion In SegmentTermEnum::growBuffer(const int_t length) - added check of buffer before deletion in Changed SegmentTermEnum::readTerm() - Instead of a reference to Term& it now returns a pointer Term* In SegmentTermEnum::next() - Changed call term = &readTerm() into term = readTerm(); because readTerm now returns a pointer A new Method void SegmentTermEnum::scanTo(const Term *Scratch) has been added |
|
From: John W. <j_w...@us...> - 2004-12-10 20:53:33
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6693 Modified Files: TermInfosReader.h Log Message: Document each method |
|
From: John W. <j_w...@us...> - 2004-12-10 20:52:42
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6359 Modified Files: TermInfosReader.cpp Log Message: Documented every method of TermInfosReader In the constructor of TermInfosReader - indexInfos initialized to NULL In the destructor of TermInfosReader - Moved destruction of _enum and its InputStream to the destructor of TermInfosReader where it should be - Added close() to destructor of TermInfosReader to be sure an instance will always destroyed properly. In TermInfosReader::readIndex() - indexEnum has become a normal pointer again instead of a reference to the contents of a pointer - InputStream& is has been changed to InputStream *is - removed is.close(); as it is done by destructor of the InputStream is In TermInfosReader::getTerms(const Term& term) - Solved a invalid deletion of memory bug. the call get(term) sometimes returns a NULL which was then deleted. This is now prevented by first checking the returned value of get(term) Ini TermInfosReader::scanEnum(const Term& term) - Replaced the while loop by the call to the new method void scanTo(const Term *Scratch) of the class SegmentTermEnum |
|
From: John W. <j_w...@us...> - 2004-12-10 20:27:57
|
Update of /cvsroot/clucene/src/CLucene/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv493 Modified Files: PriorityQueue.h Log Message: - In the destructor of PriorityQueue the statment delete [] heap has been changed into _DELETE_ARRAY(heap); In case some one forgets to call initialize - In the method clear of PriorityQueue delete heap[i] has been changed into _DELETE(heap[i]); so clear can be called multiple times savely - Solved bug of deleting invalid memory in the method clear() by changing the iteration of the for loop from for (int_t 0 = 1; i < size; i++) into for (int_t 1 = 1; i <= size; i++) heap[0] never gets a valid memory allocation |
|
From: John W. <j_w...@us...> - 2004-12-06 12:59:00
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6728 Modified Files: IndexReader.cpp Log Message: Removed forgotten */ |
|
From: John W. <j_w...@us...> - 2004-12-06 12:53:06
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5519 Modified Files: SegmentInfos.cpp Log Message: In void SegmentInfos::read(Directory& directory) input->close() has been removed as the input stream will be closed by the destructor of InputStream |
|
From: John W. <j_w...@us...> - 2004-12-06 12:43:34
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3232 Modified Files: SegmentInfos.h Log Message: Added documentation about a segment info file |
|
From: John W. <j_w...@us...> - 2004-12-06 12:39:59
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2356 Modified Files: SegmentReader.cpp Log Message: Removed change comment at the top |
|
From: John W. <j_w...@us...> - 2004-12-06 12:38:49
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2128 Modified Files: SegmentReader.cpp Log Message: - Documented each method of the classes Norm and SegmentReader - In SegmentReader::document(const int_t n) changed lucene::document::Document* ret into lucene::document::Document& ret as FieldReader returned a Reference anyway - In void SegmentReader::segmentname(char_t* buffer,const char_t* segment, const char_t* ext, const int_t x) changed char_t* segment into char_t *Segment to prevent confusion with private variable char_t segment - Moved the code n->in.close(); delete &n->in; delete[] n->bytes; to the destructor of Norm, because that is the place where it should be. |
|
From: John W. <j_w...@us...> - 2004-12-06 12:35:31
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1284 Modified Files: SegmentHeader.h Log Message: Documented classes Norm and SegmentReader |
|
From: John W. <j_w...@us...> - 2004-12-03 15:19:17
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6679 Modified Files: SegmentMergeInfo.cpp Log Message: Rolling back unintentional commit revision 1.3 |
|
From: John W. <j_w...@us...> - 2004-12-03 13:20:48
|
Update of /cvsroot/clucene/src/CLucene In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11959 Modified Files: StdHeader.h Log Message: Added macro _DELETE_ARRAY to delete an array properly |
|
From: John W. <j_w...@us...> - 2004-12-03 10:51:32
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12036 Modified Files: SegmentInfo.h Log Message: Added some information about the file format of the segments file |
|
From: John W. <j_w...@us...> - 2004-12-03 09:12:42
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23384 Modified Files: SegmentInfos.cpp Log Message: - Documented each method - In read(Directory& directory) InputStream& input has become InputStream* input because we are dealing with a pointer and not a reference - added protection for input - In write(Directory& directory) utputStream& output has become OutputStream* output because we are dealing with a pointer and not a reference - added protection for output |
|
From: John W. <j_w...@us...> - 2004-12-03 09:11:33
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23169 Modified Files: SegmentMergeInfo.cpp Log Message: - Documented each method - In read(Directory& directory) InputStream& input has become InputStream* input because we are dealing with a pointer and not a reference - added protection for input - In write(Directory& directory) utputStream& output has become OutputStream* output because we are dealing with a pointer and not a reference - added protection for output |
|
From: John W. <j_w...@us...> - 2004-12-03 09:08:19
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22379 Modified Files: SegmentInfos.h Log Message: Added comments |
|
From: John W. <j_w...@us...> - 2004-12-02 20:50:58
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30439 Modified Files: IndexReader.cpp Log Message: - Added Func, Pre Post descriptions and documented the code - In IndexReader::open( Directory& directory, const bool closeDir) changed void *ret into IndexReader *ret. - Rewrote IndexReaderLockWith::doBody() using switch construction. Makes code more readable. |
|
From: John W. <j_w...@us...> - 2004-12-02 20:46:44
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29465 Modified Files: IndexReader.h Log Message: - rewrote comments of methods matching the ones in IndexReader.cpp - removed lastModified that was already commented - removed static boolean indexExists(File directory) as it was commented |
|
From: John W. <j_w...@us...> - 2004-11-29 21:29:20
|
Update of /cvsroot/clucene/src/CLucene/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29977 Modified Files: PrefixQuery.cpp Log Message: * Documented each method of the class PrefixQuery * reader has been set to NULL in constructor * protected the deletion of query in destructor * Fixed memory leak caused by prepare. |
|
From: John W. <j_w...@us...> - 2004-11-29 21:26:07
|
Update of /cvsroot/clucene/src/CLucene/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29205 Modified Files: PrefixQuery.h Log Message: Documented the class PrefixQuery. |
|
From: John W. <j_w...@us...> - 2004-11-29 21:24:28
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28901 Modified Files: FieldInfo.h Log Message: Documented the class FieldInfo. Don't know yet what the member variable number represents. |