Differences From:
File
src/info.c
part of check-in
[0f4f6c0325]
- For the "version information" web pages, change the default behavior to
only show the list of files that changed, not the diffs. But there is a
link to get diffs of all files or of individual files. The default behavior
can be changed using a Setup/Timeline configuration option to show diffs
by default.
by
drh on
2009-12-18 23:54:24.
[view]
To:
File
src/info.c
part of check-in
[06b964a0cf]
- removed an extraneous pair of row/cell closing tags. Fixed TH tags which were closed with TD instead of TH.
by
stephan on
2009-12-26 15:30:48.
[view]
@@ -310,14 +310,14 @@
@ </td></tr>
@ <tr><th>Date:</th><td>
hyperlink_to_date(zDate, "</td></tr>");
if( zEUser ){
- @ <tr><th>Edited User:</td><td>
+ @ <tr><th>Edited User:</th><td>
hyperlink_to_user(zEUser,zDate,"</td></tr>");
@ <tr><th>Original User:</th><td>
hyperlink_to_user(zUser,zDate,"</td></tr>");
}else{
- @ <tr><th>User:</td><td>
+ @ <tr><th>User:</th><td>
hyperlink_to_user(zUser,zDate,"</td></tr>");
}
if( zEComment ){
@ <tr><th>Edited Comment:</th><td>%w(zEComment)</td></tr>
@@ -324,9 +324,8 @@
@ <tr><th>Original Comment:</th><td>%w(zComment)</td></tr>
}else{
@ <tr><th>Comment:</th><td>%w(zComment)</td></tr>
}
- @ </td></tr>
if( g.okAdmin ){
db_prepare(&q,
"SELECT rcvfrom.ipaddr, user.login, datetime(rcvfrom.mtime)"
" FROM blob JOIN rcvfrom USING(rcvid) LEFT JOIN user USING(uid)"