Differences From Artifact [27267403dd]:
- File src/descendents.c — part of check-in [82fc5abb60] at 2008-02-26 17:57:11 on branch trunk — Cut over to the new timeline code. Remove the older timeline. (user: drh size: 5133) [more...]
To Artifact [44bebd8abf]:
- File src/descendents.c — part of check-in [d57de28756] at 2008-05-05 23:15:29 on branch trunk — The "h" capability is now used to enable hyperlinks to non-wiki pages. When "h" is missing, many pages give a hyperlink to the login page and automatically fill in "anonymous" as the user name. The login page jumps back to the target page after a successful login. (user: drh size: 5164)
| ︙ | ︙ | |||
187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
void leaves_page(void){
Stmt q;
login_check_credentials();
if( !g.okRead ){ login_needed(); return; }
style_header("Leaves");
db_prepare(&q,
"%s"
" AND blob.rid IN"
" (SELECT cid FROM plink EXCEPT SELECT pid FROM plink)"
" ORDER BY event.mtime DESC",
timeline_query_for_www()
);
| > | 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
void leaves_page(void){
Stmt q;
login_check_credentials();
if( !g.okRead ){ login_needed(); return; }
style_header("Leaves");
login_anonymous_available();
db_prepare(&q,
"%s"
" AND blob.rid IN"
" (SELECT cid FROM plink EXCEPT SELECT pid FROM plink)"
" ORDER BY event.mtime DESC",
timeline_query_for_www()
);
|
| ︙ | ︙ |