diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-03-02 08:08:29 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-03-02 08:08:29 +0100 |
commit | a7c93226bd0fa1293e1dc99e679390dc2f8d803c (patch) | |
tree | e4e3de90f99d23817ccaa466f92c7e759c7c9a46 /conf/dokuwiki.php | |
parent | 1d901ab2e0bb93fd121685d355782e3672c0d96d (diff) | |
download | dokuwiki-a7c93226bd0fa1293e1dc99e679390dc2f8d803c.tar.gz dokuwiki-a7c93226bd0fa1293e1dc99e679390dc2f8d803c.zip |
make RSS contents (media/pages) configurable
Diffstat (limited to 'conf/dokuwiki.php')
-rw-r--r-- | conf/dokuwiki.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php index 7a7e4bf1a..8da818638 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -127,14 +127,18 @@ $conf['rss_linkto'] = 'diff'; //what page RSS entries link to: // 'page' - the revised page itself // 'rev' - page showing all revisions // 'current' - most recent revision of page -$conf['rss_content'] = 'abstract'; // what to put in the items by default? +$conf['rss_content'] = 'abstract'; //what to put in the items by default? // 'abstract' - plain text, first paragraph or so // 'diff' - plain text unified diff wrapped in <pre> tags // 'htmldiff' - diff as HTML table // 'html' - the full page rendered in XHTML +$conf['rss_media'] = 'both'; //what should be listed? + // 'both' - page and media changes + // 'pages' - page changes only + // 'media' - media changes only $conf['rss_update'] = 5*60; //Update the RSS feed every n seconds (defaults to 5 minutes) -$conf['recent_days'] = 7; //How many days of recent changes to keep. (days) $conf['rss_show_summary'] = 1; //Add revision summary to title? 0|1 +$conf['recent_days'] = 7; //How many days of recent changes to keep. (days) $conf['broken_iua'] = 0; //Platform with broken ignore_user_abort (IIS+CGI) 0|1 $conf['xsendfile'] = 0; //Use X-Sendfile (1 = lighttpd, 2 = standard) $conf['renderer_xhtml'] = 'xhtml'; //renderer to use for main page generation |