Changeset 280
- Timestamp:
- 08/06/08 10:54:00 (4 months ago)
- Files:
-
- trunk/Phergie/Plugin/FeedTicker.php (modified) (3 diffs)
- trunk/Phergie/phergie.ini (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Phergie/Plugin/FeedTicker.php
r278 r280 94 94 95 95 /** 96 * If true, the new feed items are buffered until something happens on 97 * the channel, indicating some kind of presence / readership is available 98 * 99 * @var bool 100 */ 101 protected $smartBuffer = true; 102 103 /** 96 104 * Processes necessary configuration setting values. 97 105 * … … 116 124 $globalUrl = trim($this->getPluginIni('filter_url')); 117 125 $globalArticle = trim($this->getPluginIni('filter_article')); 126 if ($this->getPluginIni('smart_buffer') !== null) { 127 $this->smartBuffer = (bool) $this->getPluginIni('smart_buffer'); 128 } 118 129 119 130 $i = 0; … … 292 303 $this->cache[$id] = $articles; 293 304 } 305 306 if (!$this->smartBuffer) { 307 $this->checkQueue(); 308 } 294 309 } 295 310 trunk/Phergie/phergie.ini
r274 r280 162 162 163 163 ; feedticker.fetch : 164 ; the frequency, in seconds, at which the feeds are checked for new data;164 ; the frequency, in minutes, at which the feeds are checked for new data; 165 165 ; the default is 30 minutes 166 166 feedticker.fetch = 30 … … 170 170 ; sent to the channel; the default is 5 minutes 171 171 feedticker.post = 5 172 173 ; feedticker.smart_buffer : 174 ; if true, the new feed items are buffered until something happens on 175 ; the channel, indicating some kind of presence / readership is available 176 ; the default is true 177 feedticker.smart_buffer = true 172 178 173 179 ; feedticker.format :