Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | extend new "comment" feature of "info" subcommand to include username |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
391ef2853b287ed9e95905487490e3a7 |
| User & Date: | bch 2010-08-16 19:06:28.000 |
Context
|
2010-08-18
| ||
| 02:22 | Update the internal SQLite to a 3.7.1 release candidate. ... (check-in: 07afdea6e2 user: drh tags: trunk) | |
|
2010-08-16
| ||
| 19:06 | extend new "comment" feature of "info" subcommand to include username ... (check-in: 391ef2853b user: bch tags: trunk) | |
| 12:11 | Add the "comment:" field to the output of "fossil info". ... (check-in: da52ff9363 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
66 67 68 69 70 71 72 |
/* 01234567890123 */
printf("%-13s %s %s\n", zUuidName, zUuid, zDate ? zDate : "");
free(zUuid);
free(zDate);
}
if( zUuid && showComment ){
zComment = db_text(0,
| | | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
/* 01234567890123 */
printf("%-13s %s %s\n", zUuidName, zUuid, zDate ? zDate : "");
free(zUuid);
free(zDate);
}
if( zUuid && showComment ){
zComment = db_text(0,
"SELECT coalesce(ecomment,comment) || ' (user: ' || coalesce(euser,user,'?') || ')' FROM event WHERE objid=%d",
rid
);
}
db_prepare(&q, "SELECT uuid, pid FROM plink JOIN blob ON pid=rid "
" WHERE cid=%d", rid);
while( db_step(&q)==SQLITE_ROW ){
const char *zUuid = db_column_text(&q, 0);
|
| ︙ | ︙ |