Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Do not count divider lines as "items" on the timeline. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4913964321c48b6f02be59d38f5e1267 |
| User & Date: | drh 2012-09-05 20:54:56.128 |
Context
|
2012-09-06
| ||
| 10:23 | Show the number of changes following a "fossil update". ... (check-in: 3db1cf69e5 user: drh tags: trunk) | |
| 09:10 | merge trunk <p>enable UNICODE mode (experimental) ... (Closed-Leaf check-in: 2017d2f832 user: jan.nijtmans tags: eclipse-project) | |
|
2012-09-05
| ||
| 20:54 | Do not count divider lines as "items" on the timeline. ... (check-in: 4913964321 user: drh tags: trunk) | |
| 20:45 | Enhancements to localtime processing and to the label resolution on the a=, b=, and c= query parameters to the timeline page. ... (check-in: 41c3c1900b user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
1184 1185 1186 1187 1188 1189 1190 |
url_add_parameter(&url, "c", zCirca);
}else{
blob_appendf(&sql, " ORDER BY event.mtime DESC");
}
blob_appendf(&sql, " LIMIT %d", nEntry);
db_multi_exec("%s", blob_str(&sql));
| | | 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 |
url_add_parameter(&url, "c", zCirca);
}else{
blob_appendf(&sql, " ORDER BY event.mtime DESC");
}
blob_appendf(&sql, " LIMIT %d", nEntry);
db_multi_exec("%s", blob_str(&sql));
n = db_int(0, "SELECT count(*) FROM timeline WHERE etype!='div' /*scan*/");
if( zAfter==0 && zBefore==0 && zCirca==0 ){
blob_appendf(&desc, "%d most recent %ss", n, zEType);
}else{
blob_appendf(&desc, "%d %ss", n, zEType);
}
if( zUser ){
blob_appendf(&desc, " by user %h", zUser);
|
| ︙ | ︙ |