Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added checkin-count to (fossil info) output (ML request). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
acea7010b89ecc2393bd2f9de8967218 |
| User & Date: | stephan 2013-01-10 12:51:01.490 |
Context
|
2013-01-11
| ||
| 18:03 | Enhancements to the TICKETCHNG table: (1) Add the tkt_rid column and populate it (if present) with the recordID of the artifact. (2) For columns that appear in both TICKET and TICKETCHNG but are missing from the artifact, fill in the TICKETCHNG value with the value from TICKET at that point in time. (3) Add the test-ticket-rebuild command for testing the above. ... (check-in: a18a49c875 user: drh tags: trunk) | |
| 12:28 | merge trunk ... (check-in: 6e9e6436a6 user: jan.nijtmans tags: allow-backslash-in-card-filename) | |
| 08:10 | Off-by-one error in regexp \u escape sequence parsing. Regexp \x escape sequence should only accept exactly 2 hex digits. Typo. ... (Closed-Leaf check-in: bef9a956c0 user: jan.nijtmans tags: regexp-x) | |
|
2013-01-10
| ||
| 12:51 | Added checkin-count to (fossil info) output (ML request). ... (check-in: acea7010b8 user: stephan tags: trunk) | |
|
2013-01-09
| ||
| 15:59 | Fix incorrect license statement on the http_ssl.c file. No code changes. ... (check-in: c7133bd79d user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
}
#endif
fossil_print("project-code: %s\n", db_get("project-code", ""));
vid = g.localOpen ? db_lget_int("checkout", 0) : 0;
if( vid ){
show_common_info(vid, "checkout:", 1, 1);
}
}else{
int rid;
rid = name_to_rid(g.argv[2]);
if( rid==0 ){
fossil_panic("no such object: %s\n", g.argv[2]);
}
show_common_info(rid, "uuid:", 1, 1);
| > > | 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
}
#endif
fossil_print("project-code: %s\n", db_get("project-code", ""));
vid = g.localOpen ? db_lget_int("checkout", 0) : 0;
if( vid ){
show_common_info(vid, "checkout:", 1, 1);
}
fossil_print("checkin-count: %d\n",
db_int(-1, "SELECT count(distinct mid) FROM mlink /*scan*/"));
}else{
int rid;
rid = name_to_rid(g.argv[2]);
if( rid==0 ){
fossil_panic("no such object: %s\n", g.argv[2]);
}
show_common_info(rid, "uuid:", 1, 1);
|
| ︙ | ︙ |