opengrok
opengrok copied to clipboard
display first line of commit comment for each file in directory listing
If history cache is enabled, display first line of commit comment for each file in directory listing (ala Github) by adding new column to the table.
I'm just a little worried if this is not quite performance problematic with current design
I think the biggest blocker is the amount of data - each file's history would have to be read in.
After the history cache serialization scheme was changed via PR #4268 so that partial deserialization is possible, similar thing was done in PR #4275. So, nothing prevents from adding the extra column now.