Differences From Artifact [945efe289e]:
- File src/rss.c — part of check-in [9be1b00392] at 2009-01-25 20:13:46 on branch trunk — Rename the "vinfo" page to "ci" and the "vedit" page to "ci_edit". (user: drh size: 3929) [more...]
To Artifact [03cab3dcb1]:
- File src/rss.c — part of check-in [9812c6c5ab] at 2009-10-15 17:20:00 on branch trunk — Add "Generate RSS feed for timeline" option to Timeline preferences. Don't output RSS when it's turned off. (user: dmitry size: 4057)
| ︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | + + + + + |
}
/*
** WEBPAGE: timeline.rss
*/
void page_timeline_rss(void){
// Do not output RSS if it's turned off in Timeline preferences
if (!db_get_boolean("timeline-generate-rss", 1))
return;
Stmt q;
int nLine=0;
char *zPubDate, *zProjectName, *zProjectDescr, *zFreeProjectName=0;
Blob bSQL;
const char *zType = PD("y","all"); /* Type of events. All if NULL */
const char zSQL1[] =
@ SELECT
|
| ︙ |