Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Removed a copy-paste-induced extra table row. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | stats-report-weekly |
| Files: | files | file ages | folders |
| SHA1: |
607f4439b888d084b33f0484cebc6155 |
| User & Date: | stephan 2013-07-16 16:00:17.667 |
Context
|
2013-07-16
| ||
| 16:15 | Added missing CSS class to the week # row (same as the one above it). ... (check-in: 887150679c user: stephan tags: stats-report-weekly) | |
| 16:00 | Removed a copy-paste-induced extra table row. ... (check-in: 607f4439b8 user: stephan tags: stats-report-weekly) | |
| 15:49 | Added /timeline?yw=YYYY-WW (year/week-of-year). Added links to /stats_report. Disabled year/week links for the year/month view because the current approach is way too slow. ... (check-in: 0019550a03 user: stephan tags: stats-report-weekly) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
1935 1936 1937 1938 1939 1940 1941 |
}
nEventsPerYear = 0;
memcpy(zPrevYear,zTimeframe,4);
rowClass = ++nRowNumber % 2;
@ <tr class='row%d(rowClass)'>
@ <th colspan='3' class='statistics-report-row-year'>%s(zPrevYear)</th>
@ </tr>
| < < | 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 |
}
nEventsPerYear = 0;
memcpy(zPrevYear,zTimeframe,4);
rowClass = ++nRowNumber % 2;
@ <tr class='row%d(rowClass)'>
@ <th colspan='3' class='statistics-report-row-year'>%s(zPrevYear)</th>
@ </tr>
}
}
rowClass = ++nRowNumber % 2;
nEventTotal += nCount;
nEventsPerYear += nCount;
@<tr class='row%d(rowClass)'>
@ <td>
|
| ︙ | ︙ |