Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add hyperlink to the annotation of a file in the object description header. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
030a0486970382b51698dae32bd847e1 |
| User & Date: | drh 2011-04-25 20:26:48.792 |
References
|
2011-05-05
| ||
| 20:38 | • Closed ticket [cc52573686]: Add an 'annotate' in the Artifact web page plus 2 other changes ... (artifact: d179bd9728 user: viriketo) | |
Context
|
2011-04-25
| ||
| 22:23 | Change the definition of a "Leaf" to be any node that has no children of any kind (merge or non-merge) in the same branch. A "rebuild" or a "fossil leaves --recompute" is required to recompute the LEAF table after upgrading to this version. ... (check-in: e17fc71319 user: drh tags: trunk) | |
| 20:26 | Add hyperlink to the annotation of a file in the object description header. ... (check-in: 030a048697 user: drh tags: trunk) | |
| 20:10 | Further work toward two-way configuration sync. Need to check in these changes before they are complete in order to deal with another issue. ... (check-in: 71fc181fee user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
798 799 800 801 802 803 804 805 806 807 808 809 810 811 |
@ %h(zName)
}
@ part of check-in
hyperlink_to_uuid(zVers);
@ - %w(zCom) by
hyperlink_to_user(zUser,zDate," on");
hyperlink_to_date(zDate,".");
cnt++;
if( pDownloadName && blob_size(pDownloadName)==0 ){
blob_append(pDownloadName, zName, -1);
}
}
db_finalize(&q);
db_prepare(&q,
| > > > > | 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
@ %h(zName)
}
@ part of check-in
hyperlink_to_uuid(zVers);
@ - %w(zCom) by
hyperlink_to_user(zUser,zDate," on");
hyperlink_to_date(zDate,".");
if( g.okHistory ){
@ <a href="%s(g.zTop)/annotate?checkin=%S(zVers)&filename=%T(zName)">
@ [annotate]</a>
}
cnt++;
if( pDownloadName && blob_size(pDownloadName)==0 ){
blob_append(pDownloadName, zName, -1);
}
}
db_finalize(&q);
db_prepare(&q,
|
| ︙ | ︙ |