Differences From:
File
src/info.c
part of check-in
[ee544f4843]
- Better descriptions of raw artifacts on the "artifact" URL.
by
drh on
2009-08-29 18:47:02.
[view]
To:
File
src/info.c
part of check-in
[58903a0fec]
- Add more hyperlinks on dates and userids.
by
drh on
2009-08-29 22:39:44.
[view]
@@ -419,19 +419,23 @@
if( db_step(&q)==SQLITE_ROW ){
const char *zName = db_column_text(&q, 0);
const char *zUuid = db_column_text(&q, 1);
char *zTitle = mprintf("Wiki Page %s", zName);
+ const char *zDate = db_column_text(&q,2);
+ const char *zUser = db_column_text(&q,3);
style_header(zTitle);
free(zTitle);
login_anonymous_available();
@ <div class="section">Overview</div>
@ <p><table class="label-value">
@ <tr><th>Version:</th><td>%s(zUuid)</td></tr>
- @ <tr><th>Date:</th><td>%s(db_column_text(&q, 2))</td></tr>
+ @ <tr><th>Date:</th><td>
+ hyperlink_to_date(zDate, "</td></tr>");
if( g.okSetup ){
@ <tr><th>Record ID:</th><td>%d(rid)</td></tr>
}
- @ <tr><th>Original User:</th><td>%s(db_column_text(&q, 3))</td></tr>
+ @ <tr><th>Original User:</th><td>
+ hyperlink_to_user(zUser, zDate, "</td></tr>");
if( g.okHistory ){
@ <tr><th>Commands:</th>
@ <td>
/* @ <a href="%s(g.zBaseURL)/wdiff/%d(rid)">diff</a> | */
@@ -527,9 +531,11 @@
@ <a href="%s(g.zTop)/artifact/%s(zUuid)">[%s(zShort)]</a>
}else{
@ [%s(zShort)]
}
- @ %h(zCom) (By: %h(zUser))
+ @ %h(zCom) (By:
+ hyperlink_to_user(zUser, zDate, " on");
+ hyperlink_to_date(zDate, ")");
if( g.okHistory ){
if( fpid ){
@ <a href="%s(g.zBaseURL)/fdiff?v1=%d(fpid)&v2=%d(frid)">[diff]</a>
}