Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | In the Checkins By File report, use filenames as the secondary sort key. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
840343d4be1774bb37a0e0e6aab38ef8 |
| User & Date: | drh 2015-01-27 03:10:10.856 |
Context
|
2015-01-27
| ||
| 03:53 | Increase the version number to 1.31, due to the change to the MLINK schema. ... (check-in: 09fe92ad72 user: drh tags: trunk) | |
| 03:10 | In the Checkins By File report, use filenames as the secondary sort key. ... (check-in: 840343d4be user: drh tags: trunk) | |
| 03:06 | Fix a stray "@" character in the filenames of the Checkins By File report. ... (check-in: 811d10ac7a user: drh tags: trunk) | |
Changes
Changes to src/statrep.c.
| ︙ | ︙ | |||
469 470 471 472 473 474 475 |
"INSERT INTO statrep(filename, cnt)"
" SELECT filename.name, count(distinct mlink.mid)"
" FROM filename, mlink"
" WHERE filename.fnid=mlink.fnid"
" GROUP BY 1"
);
db_prepare(&query,
| | | 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
"INSERT INTO statrep(filename, cnt)"
" SELECT filename.name, count(distinct mlink.mid)"
" FROM filename, mlink"
" WHERE filename.fnid=mlink.fnid"
" GROUP BY 1"
);
db_prepare(&query,
"SELECT filename, cnt FROM statrep ORDER BY cnt DESC, filename /*sort*/"
);
mxEvent = db_int(1, "SELECT max(cnt) FROM statrep");
@ <h1>Checkins Per File</h1>
@ <table class='statistics-report-table-events' border='0'
@ cellpadding='2' cellspacing='0' id='statsTable'>
@ <thead><tr>
@ <th>File</th>
|
| ︙ | ︙ |