This appears to be a bug report against the OpenGrok tool, right? Those are best submitted to the OpenGrok project mailing list (cc'ed) or bugzilla, as noted on http://www.opensolaris.org/os/project/opengrok/
-Alan Coopersmith- alan.coopersmith at sun.com Sun Microsystems, Inc. - X Window System Engineering Vasanth wrote: > In the file org/opensolaris/opengrok/history/CVSHistoryParser.java > there is an error in the way the date is parsed on line 60... > > new SimpleDateFormat("yyyy-mm-dd hh:mm:ss ZZZZ", Locale.US); > > > needs to be > > new SimpleDateFormat("yyyy-MM-dd hh:mm:ss ZZZZ", Locale.US); > > > The month format should be capital M instead of m. This caused the wrong > month to be displayed in the history page. > > One more error is with the date format. In come CVS versions the date is > stored in the yyyy/MM/dd format instead of yyyy-MM-dd