Differences From:
File
src/descendents.c
part of check-in
[b846db063c]
- Changes to the CLI version of the timeline command to show places where
forks occur in the tree and where content is merged. Lots more work is
needed to show the structure of a tree well. This is definitely a work
in progress.
by
drh on
2007-08-25 18:51:54.
Also file
src/descendents.c
part of check-in
[b0ad3f90bc]
- Merging aku's changes into the head.
by
drh on
2007-08-25 19:00:33.
[view]
To:
File
src/descendents.c
part of check-in
[bbdd4f9915]
- Add some javascript to the timeline to gray out versions that are not
part of the line that is moused over. Also include leaf, fork, and merge
markers on the timeline. Experimental.
by
drh on
2007-08-27 04:03:32.
Also file
src/descendents.c
part of check-in
[15652ff081]
- Merged drh's fixes new features (xfer, timeline handling, javascript based timeline highlighting) into my branch.
by
aku on
2007-08-29 02:55:33.
[view]
@@ -131,16 +131,22 @@
if( !g.okRead ){ login_needed(); return; }
style_header("Leaves");
db_prepare(&q,
- "SELECT blob.uuid, datetime(event.mtime,'localtime'),"
- " event.comment, event.user"
+ "SELECT blob.rid, blob.uuid, datetime(event.mtime,'localtime'),"
+ " event.comment, event.user, 1, 1, 0"
" FROM blob, event"
" WHERE blob.rid IN"
" (SELECT cid FROM plink EXCEPT SELECT pid FROM plink)"
" AND event.objid=blob.rid"
" ORDER BY event.mtime DESC"
);
- www_print_timeline(&q, 0);
+ www_print_timeline(&q, 0, 0, 0);
db_finalize(&q);
+ @ <script>
+ @ function xin(id){
+ @ }
+ @ function xout(id){
+ @ }
+ @ </script>
style_footer();
}