Differences From Artifact [1e572c19a3]:
- File src/tag.c — part of check-in [0e83ca88ce] at 2020-12-22 12:13:39 on branch body-feature-class — Removed the parameter from style_finish_page() since the resulting content div class is now redundant with respect to the body class. This potentially breaks CSS made against old class names that a prior commit on this branch changed, but such skins would be made against an unreleased version of Fossil, it's unlikely many are using that first version of the feature anyway, and most of the class names did *not* change unless you were targeting a "div" instead of "body" or just a generic class name. None of the shipping skins are affected. (user: wyoung size: 24787) [more...]
To Artifact [67bfd8aeaf]:
- File src/tag.c — part of check-in [e86aeb72ac] at 2021-01-07 16:26:37 on branch trunk — Add the --format option to the "fossil timeline" command. (user: drh size: 24790) [more...]
| ︙ | ︙ | |||
539 540 541 542 543 544 545 |
" WHERE tagtype>0 AND tagid=%d"
")"
" ORDER BY event.mtime DESC /*sort*/",
timeline_query_for_tty(), zType, tagid
);
db_prepare(&q, "%s", blob_sql_text(&sql));
blob_reset(&sql);
| | | 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 |
" WHERE tagtype>0 AND tagid=%d"
")"
" ORDER BY event.mtime DESC /*sort*/",
timeline_query_for_tty(), zType, tagid
);
db_prepare(&q, "%s", blob_sql_text(&sql));
blob_reset(&sql);
print_timeline(&q, nFindLimit, 79, 0, 0);
db_finalize(&q);
}
}
}else
if(( strncmp(g.argv[2],"list",n)==0 )||( strncmp(g.argv[2],"ls",n)==0 )){
Stmt q;
|
| ︙ | ︙ |