Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Show the edited user id in annotations. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e7efca9ee92021d8e2f07464b2883a73 |
| User & Date: | drh 2010-01-19 14:15:50.000 |
Context
|
2010-01-19
| ||
| 17:34 | Cleanup of the code used to resolve tag names in contexts where an artifact ID can be entered. ... (check-in: bf56b2ddf4 user: drh tags: trunk) | |
| 14:15 | Show the edited user id in annotations. ... (check-in: e7efca9ee9 user: drh tags: trunk) | |
|
2010-01-18
| ||
| 22:23 | Add the --stopper option to the "ui" and "server" commands on windows. The argument is the name of a file, which if it exists, causes the server to abort upon receiving the next inbound TCP connection. Use this to shut down fossil servers running as a windows service. ... (check-in: 23c0d16718 user: drh tags: trunk) | |
Changes
Changes to src/diff.c.
| ︙ | ︙ | |||
694 695 696 697 698 699 700 |
fossil_panic("unable to retrieve content of artifact #%d", rid);
}
db_multi_exec("CREATE TEMP TABLE ok(rid INTEGER PRIMARY KEY)");
compute_ancestors(mid, 1000000000);
annotation_start(p, &toAnnotate);
db_prepare(&q,
| | > | 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 |
fossil_panic("unable to retrieve content of artifact #%d", rid);
}
db_multi_exec("CREATE TEMP TABLE ok(rid INTEGER PRIMARY KEY)");
compute_ancestors(mid, 1000000000);
annotation_start(p, &toAnnotate);
db_prepare(&q,
"SELECT mlink.fid, blob.uuid, date(event.mtime), "
" coalesce(event.euser,event.user) "
" FROM mlink, blob, event"
" WHERE mlink.fnid=%d"
" AND mlink.mid IN ok"
" AND blob.rid=mlink.mid"
" AND event.objid=mlink.mid"
" ORDER BY event.mtime DESC",
fnid
|
| ︙ | ︙ |