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-11-29 21:21:30
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28201 Modified Files: TermInfo.cpp Log Message: Added documentation for each method of the class TermInfo |
|
From: John W. <j_w...@us...> - 2004-11-29 21:20:26
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27944 Modified Files: TermInfo.h Log Message: Documented the class TermInfo |
|
From: John W. <j_w...@us...> - 2004-11-29 21:06:11
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25276 Modified Files: Term.cpp Log Message: Added documentation for each method of the class Term |
|
From: John W. <j_w...@us...> - 2004-11-29 21:03:54
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24821 Modified Files: Term.h Log Message: Added documentation about class Term Removed declaration of the method int_t hashCode() as it was not implemented |
|
From: John W. <j_w...@us...> - 2004-11-26 10:16:13
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9860 Modified Files: SegmentsReader.cpp Log Message: SF: 1047474 - SegmentsReader memory leak normsCache.setDoDelete(true, DELETE_TYPE_DELETE_ARRAY); was not good enough. The normcache did not delete its values, which caused a memory leak. The suggestion by Ken, adding normsCache(true, DELETE_TYPE_DELETE_ARRAY, true, DELETE_TYPE_DELETE_ARRAY) is the proper solution |
|
From: John W. <j_w...@us...> - 2004-11-25 10:34:20
|
Update of /cvsroot/clucene/src/CLucene/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23254 Modified Files: StringBuffer.h Log Message: Added descriptions of each method and member variable of StringBuffer |
|
From: John W. <j_w...@us...> - 2004-11-25 10:33:20
|
Update of /cvsroot/clucene/src/CLucene/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23092 Modified Files: StringBuffer.cpp Log Message: Commented the code extensively. Each method has now a Func Pre Post description Func - Description of the function of the method Pre - The precondion of the method. i.e. what conditions mus be met before a method can be called Post - The postcondition of the method. i.e. in what state is the instance left behind and what is returned |
|
From: David R. <woo...@us...> - 2004-11-24 16:42:38
|
Update of /cvsroot/clucene/src/CLucene/store In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22400 Modified Files: InputStream.cpp Log Message: Work around a bug in MSVC 7.1's optimizer (see source code for detailed explanation). |
|
From: John W. <j_w...@us...> - 2004-11-24 11:43:13
|
Update of /cvsroot/clucene/src/CLucene/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17437 Modified Files: StringBuffer.h StringBuffer.cpp Log Message: SF: 1064862 - StandardTokenizer Rev 1.9 assert in ReadCompany() When compiling with _UNICODE define calls like str.append('&') were directed to void StringBuffer::append(const int_t value). This occured because wchar_t is an unsigned short (defined in crtdefs.h) a 16 bit integer on Windows and a LPWSTR (Long Pointer Wide String) for which is 32 bit integer. So the te compiler gets fooled. The correct sollution for this problem would be to have developers place a cast in front of literal characters. For instance: append((const uchar_t) character). However Paul Jones (joneswoohoo) suggested this is expecting to much from most developers. I agree, so I added his suggestion of adding a new method: append(const char character) to the StringBuffer for _UNICODE only. |
|
From: John W. <j_w...@us...> - 2004-11-23 16:35:52
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27116 Modified Files: IndexReader.cpp Log Message: IndexReader::Delete(Term* term) contained a memory leak. The temporary instance variable docs was never deleted. Now docs is deleted before the number of deleted documents is returned. |
|
From: John W. <j_w...@us...> - 2004-11-21 14:20:24
|
Update of /cvsroot/clucene/src/CLucene/analysis/standard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24320 Removed Files: Standard.h Log Message: SF: 1052220 - obsolete header file This file has become obsolete. |
|
From: Ben v. K. <ust...@us...> - 2004-11-21 04:55:22
|
Update of /cvsroot/clucene/examples/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31678 Modified Files: Main.cpp Log Message: commmented out highlighter test so that tests can compile |
|
From: Ben v. K. <ust...@us...> - 2004-11-21 03:40:17
|
Update of /cvsroot/clucene/src/CLucene In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3983 Modified Files: StdHeader.cpp Log Message: included necessary stat.h include |
|
From: Ben v. K. <ust...@us...> - 2004-11-19 05:02:26
|
Update of /cvsroot/clucene/examples/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19693 Modified Files: Main.cpp Log Message: added Clucene.h header. util example want compiling |
|
From: John W. <j_w...@us...> - 2004-11-18 15:30:27
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29398 Modified Files: SegmentsReader.cpp Log Message: SF: 1047474 - SegmentsReader memory leak The data in the normCache could get corrupted, since it's was being loaded with string keys that may be deleted while still in use by the normCache. To prevent this from happening the normsCache now takes care of the deletion of its data upon destruction of the object. This is done in the constructor of SegmentsReader. In the method GetNorms field is duplicated to and the copy of field is stored in the normCache |
|
From: John W. <j_w...@us...> - 2004-11-18 11:57:10
|
Update of /cvsroot/clucene/src/CLucene/store In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12050 Modified Files: FSDirectory.cpp Log Message: SF: 1051982 - Problem with deleting self in FSDirectory::close() The mutex FSDIR_CLOSE is now released immediately after refcount has been decreased. De decrease value of refcount is stored into a temporary variable adjustedRefCount for later use. |
|
From: John W. <j_w...@us...> - 2004-11-17 11:29:22
|
Update of /cvsroot/clucene/src/CLucene In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19142 Modified Files: StdHeader.h Log Message: Removed the first unnecessary include of CLConfig.h. It was included twice. |
|
From: John W. <j_w...@us...> - 2004-11-17 10:42:53
|
Update of /cvsroot/clucene/src/CLucene In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9635 Modified Files: StdHeader.h Log Message: Changed macro _DELETE(x) When a pointer x is deleted with the macro _DELETE(x) x is checked to see if it is valid pointer. This addition prevents deletion of NULL pointers. |
|
From: John W. <j_w...@us...> - 2004-11-17 09:47:22
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29261 Modified Files: SegmentsReader.cpp Log Message: SF: 1064293 - SegmentsTermDocs should initialise term to 0 Member variable term of SegmentsTermDocs is now initialized to 0. In SegmentsTermDocs::close() term is checked if it is a valid pointer before getting finalized |
|
From: John W. <j_w...@us...> - 2004-11-16 12:30:29
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8434 Modified Files: DocumentWriter.cpp Log Message: SF: 1059426 - delete of NULL pointer in DocumentWriter::invertDocument In the for loop "Tokenize field and add to postingTable" the deletion of token t is moved infront of the if condition so t gets always deleted with the assurance that t is a valid pointer |
|
From: John W. <j_w...@us...> - 2004-11-16 11:49:28
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv511 Modified Files: IndexWriter.cpp Log Message: SF: 1059564 mergeFactor and maxMergeDocs have changed from const static int_t member variables into int_t members. Therefor they now need to be initialized during construction of the IndexWriter. When an IndexWriter is instantiated mergeFactor will be set to 10 and maxMergeDocs to INT_MAX |
|
From: John W. <j_w...@us...> - 2004-11-16 11:44:52
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32237 Modified Files: IndexWriter.h Log Message: SF: 1059564 mergeFactor and maxMergeDocs have changed from const static int_t member variables into int_t members. This change has two side effects: * mergeFactor and maxMergeDocs can now be changed per instance of indexWriter * mergeFactor and maxMergeDocs can now be changed by a developer without causing warnings |