Differences From:
File
src/info.c
part of check-in
[4ac16995e8]
- Fix the "Leaves" computation on the vinfo web page. Improvements to the
vinfo web page.
by
drh on
2007-08-19 11:06:53.
[view]
To:
File
src/info.c
part of check-in
[b2e55c0d4d]
- Add the /wiki and /bwiki web pages. Currently renders content from
the check-out as readonly.
by
drh on
2007-09-01 21:11:33.
Also file
src/info.c
part of check-in
[bbcb6326c9]
- Pulled in the navbar and timeline changes.
by
aku on
2007-09-17 00:58:51.
[view]
@@ -212,9 +212,8 @@
" FROM leaves, plink, blob, event"
" WHERE plink.cid=leaves.rid"
" AND blob.rid=leaves.rid"
" AND event.objid=leaves.rid"
- " AND +generation>0"
" ORDER BY event.mtime DESC"
);
while( db_step(&q)==SQLITE_ROW ){
const char *zUuid = db_column_text(&q, 0);
@@ -537,10 +536,12 @@
}
/*
** WEBPAGE: fview
+** URL: /fview/UUID
**
-** Show the complete content of a file identified by g.zExtra
+** Show the complete content of a file identified by UUID
+** as preformatted text.
*/
void fview_page(void){
int rid;
Blob content;