Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the banner for the days= query parameter. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: | 69786b02dedd0ff10f0e3bccad71b3d7 |
User & Date: | drh 2018-04-26 19:55:35 |
Context
2018-04-26
| ||
20:47 | On the banner for days=, ymd=, and yw= include a count of the number of timeline items. check-in: d5fd4e26 user: drh tags: trunk | |
19:55 | Fix a typo in the banner for the days= query parameter. check-in: 69786b02 user: drh tags: trunk | |
19:53 | Add the days= query parameter to /timeline check-in: cd11e359 user: drh tags: trunk | |
Changes
Changes to src/timeline.c.
1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 |
blob_appendf(&desc, "%ss for %h", zEType, zYearMonth); }else if( zYearWeek ){ blob_appendf(&desc, "%ss for week %h beginning on %h", zEType, zYearWeek, zYearWeekStart); }else if( zDay ){ blob_appendf(&desc, "%ss occurring on %h", zEType, zDay); }else if( zNDays ){ blob_appendf(&desc, "%ss with the past %d day%s", zEType, nDays, nDays>1 ? "s" : ""); }else if( zBefore==0 && zCirca==0 && n>=nEntry && nEntry>0 ){ blob_appendf(&desc, "%d most recent %ss", n, zEType); }else{ blob_appendf(&desc, "%d %ss", n, zEType); } if( zUses ){ |
| |
1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 |
blob_appendf(&desc, "%ss for %h", zEType, zYearMonth);
}else if( zYearWeek ){
blob_appendf(&desc, "%ss for week %h beginning on %h",
zEType, zYearWeek, zYearWeekStart);
}else if( zDay ){
blob_appendf(&desc, "%ss occurring on %h", zEType, zDay);
}else if( zNDays ){
blob_appendf(&desc, "%ss within the past %d day%s",
zEType, nDays, nDays>1 ? "s" : "");
}else if( zBefore==0 && zCirca==0 && n>=nEntry && nEntry>0 ){
blob_appendf(&desc, "%d most recent %ss", n, zEType);
}else{
blob_appendf(&desc, "%d %ss", n, zEType);
}
if( zUses ){
|