2009-11-01 12:00:47 +00:00
|
|
|
<?php
|
2009-07-29 13:44:28 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
2005-06-28 21:21:59 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
/**
|
|
|
|
* Contains block_rss_client
|
|
|
|
* @package block_rss_client
|
|
|
|
* @copyright Daryl Hawes
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL
|
|
|
|
*/
|
|
|
|
|
2005-08-11 15:27:47 +00:00
|
|
|
/**
|
2009-07-29 13:44:28 +00:00
|
|
|
* A block which displays Remote feeds
|
|
|
|
*
|
2014-02-13 10:55:46 +13:00
|
|
|
* @package block_rss_client
|
2009-07-29 13:44:28 +00:00
|
|
|
* @copyright Daryl Hawes
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL
|
2005-08-11 15:27:47 +00:00
|
|
|
*/
|
2009-07-29 13:44:28 +00:00
|
|
|
|
2005-08-11 15:27:47 +00:00
|
|
|
class block_rss_client extends block_base {
|
2015-07-17 16:39:25 +01:00
|
|
|
/** The maximum time in seconds that cron will wait between attempts to retry failing RSS feeds. */
|
|
|
|
const CLIENT_MAX_SKIPTIME = 43200; // 60 * 60 * 12 seconds.
|
2004-12-14 18:09:20 +00:00
|
|
|
|
2017-01-23 13:32:59 +00:00
|
|
|
/** @var bool track whether any of the output feeds have recorded failures */
|
|
|
|
private $hasfailedfeeds = false;
|
|
|
|
|
2004-12-14 18:09:20 +00:00
|
|
|
function init() {
|
2012-02-24 14:54:20 +08:00
|
|
|
$this->title = get_string('pluginname', 'block_rss_client');
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|
|
|
|
|
2006-04-05 08:35:40 +00:00
|
|
|
function applicable_formats() {
|
2008-02-29 07:05:12 +00:00
|
|
|
return array('all' => true, 'tag' => false); // Needs work to make it work on tags MDL-11960
|
2006-04-05 08:35:40 +00:00
|
|
|
}
|
|
|
|
|
2004-12-14 18:09:20 +00:00
|
|
|
function specialization() {
|
2004-12-30 18:08:38 +00:00
|
|
|
// After the block has been loaded we customize the block's title display
|
2004-12-14 18:09:20 +00:00
|
|
|
if (!empty($this->config) && !empty($this->config->title)) {
|
2004-12-30 18:08:38 +00:00
|
|
|
// There is a customized block title, display it
|
2004-12-14 18:09:20 +00:00
|
|
|
$this->title = $this->config->title;
|
2004-12-30 18:08:38 +00:00
|
|
|
} else {
|
|
|
|
// No customized block title, use localized remote news feed string
|
2005-05-17 15:21:32 +00:00
|
|
|
$this->title = get_string('remotenewsfeed', 'block_rss_client');
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|
|
|
|
}
|
2005-08-11 12:45:38 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
/**
|
|
|
|
* Gets the footer, which is the channel link of the last feed in our list of feeds
|
|
|
|
*
|
|
|
|
* @param array $feedrecords The feed records from the database.
|
|
|
|
* @return block_rss_client\output\footer|null The renderable footer or null if none should be displayed.
|
|
|
|
*/
|
|
|
|
protected function get_footer($feedrecords) {
|
2017-01-23 13:32:59 +00:00
|
|
|
global $PAGE;
|
2015-12-01 17:22:35 -05:00
|
|
|
$footer = null;
|
|
|
|
|
|
|
|
if ($this->config->block_rss_client_show_channel_link) {
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->libdir.'/simplepie/moodle_simplepie.php');
|
|
|
|
|
|
|
|
$feedrecord = array_pop($feedrecords);
|
|
|
|
$feed = new moodle_simplepie($feedrecord->url);
|
|
|
|
$channellink = new moodle_url($feed->get_link());
|
|
|
|
|
|
|
|
if (!empty($channellink)) {
|
|
|
|
$footer = new block_rss_client\output\footer($channellink);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-23 13:32:59 +00:00
|
|
|
if ($this->hasfailedfeeds) {
|
|
|
|
if (has_any_capability(['block/rss_client:manageownfeeds', 'block/rss_client:manageanyfeeds'], $this->context)) {
|
|
|
|
if ($footer === null) {
|
|
|
|
$footer = new block_rss_client\output\footer();
|
|
|
|
}
|
|
|
|
$manageurl = new moodle_url('/blocks/rss_client/managefeeds.php', ['courseid' => $PAGE->course->id]);
|
|
|
|
$footer->set_failed($manageurl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
return $footer;
|
|
|
|
}
|
|
|
|
|
2004-12-14 18:09:20 +00:00
|
|
|
function get_content() {
|
2009-07-29 13:44:28 +00:00
|
|
|
global $CFG, $DB;
|
2004-12-31 07:42:22 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
if ($this->content !== NULL) {
|
2004-12-14 18:09:20 +00:00
|
|
|
return $this->content;
|
|
|
|
}
|
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
// initalise block content object
|
2004-12-14 18:09:20 +00:00
|
|
|
$this->content = new stdClass;
|
2005-07-06 00:51:20 +00:00
|
|
|
$this->content->text = '';
|
|
|
|
$this->content->footer = '';
|
|
|
|
|
2004-12-31 07:42:22 +00:00
|
|
|
if (empty($this->instance)) {
|
2004-12-14 18:09:20 +00:00
|
|
|
return $this->content;
|
|
|
|
}
|
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
if (!isset($this->config)) {
|
|
|
|
// The block has yet to be configured - just display configure message in
|
|
|
|
// the block if user has permission to configure it
|
|
|
|
|
|
|
|
if (has_capability('block/rss_client:manageanyfeeds', $this->context)) {
|
|
|
|
$this->content->text = get_string('feedsconfigurenewinstance2', 'block_rss_client');
|
|
|
|
}
|
2004-12-14 18:09:20 +00:00
|
|
|
|
2009-07-29 11:18:55 +00:00
|
|
|
return $this->content;
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|
2007-07-30 17:11:55 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
// How many feed items should we display?
|
|
|
|
$maxentries = 5;
|
|
|
|
if ( !empty($this->config->shownumentries) ) {
|
|
|
|
$maxentries = intval($this->config->shownumentries);
|
|
|
|
}elseif( isset($CFG->block_rss_client_num_entries) ) {
|
|
|
|
$maxentries = intval($CFG->block_rss_client_num_entries);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
* Begin Normal Display of Block Content
|
|
|
|
* --------------------------------- */
|
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
$renderer = $this->page->get_renderer('block_rss_client');
|
|
|
|
$block = new \block_rss_client\output\block();
|
2009-07-29 13:44:28 +00:00
|
|
|
|
2009-07-29 11:18:55 +00:00
|
|
|
if (!empty($this->config->rssid)) {
|
2015-12-01 17:22:35 -05:00
|
|
|
list($rssidssql, $params) = $DB->get_in_or_equal($this->config->rssid);
|
|
|
|
$rssfeeds = $DB->get_records_select('block_rss_client', "id $rssidssql", $params);
|
|
|
|
|
|
|
|
if (!empty($rssfeeds)) {
|
|
|
|
$showtitle = false;
|
|
|
|
if (count($rssfeeds) > 1) {
|
|
|
|
// When many feeds show the title for each feed.
|
|
|
|
$showtitle = true;
|
|
|
|
}
|
2009-07-29 13:44:28 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
foreach ($rssfeeds as $feed) {
|
|
|
|
if ($renderablefeed = $this->get_feed($feed, $maxentries, $showtitle)) {
|
|
|
|
$block->add_feed($renderablefeed);
|
|
|
|
}
|
|
|
|
}
|
2004-12-14 18:09:20 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
$footer = $this->get_footer($rssfeeds);
|
2004-12-31 03:11:03 +00:00
|
|
|
}
|
2004-12-30 18:08:38 +00:00
|
|
|
}
|
2005-08-11 12:45:38 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
$this->content->text = $renderer->render_block($block);
|
|
|
|
if (isset($footer)) {
|
|
|
|
$this->content->footer = $renderer->render_footer($footer);
|
|
|
|
}
|
2009-07-29 13:44:28 +00:00
|
|
|
|
2004-12-30 18:08:38 +00:00
|
|
|
return $this->content;
|
|
|
|
}
|
2005-08-11 12:45:38 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
|
2004-12-30 18:08:38 +00:00
|
|
|
function instance_allow_multiple() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function has_config() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function instance_allow_config() {
|
|
|
|
return true;
|
|
|
|
}
|
2005-08-11 12:45:38 +00:00
|
|
|
|
2005-01-19 23:59:21 +00:00
|
|
|
/**
|
2009-07-29 13:44:28 +00:00
|
|
|
* Returns the html of a feed to be displaed in the block
|
|
|
|
*
|
|
|
|
* @param mixed feedrecord The feed record from the database
|
|
|
|
* @param int maxentries The maximum number of entries to be displayed
|
|
|
|
* @param boolean showtitle Should the feed title be displayed in html
|
2015-12-01 17:22:35 -05:00
|
|
|
* @return block_rss_client\output\feed|null The renderable feed or null of there is an error
|
2005-01-19 23:59:21 +00:00
|
|
|
*/
|
2015-12-01 17:22:35 -05:00
|
|
|
public function get_feed($feedrecord, $maxentries, $showtitle) {
|
2009-07-29 13:44:28 +00:00
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->libdir.'/simplepie/moodle_simplepie.php');
|
2007-07-30 17:11:55 +00:00
|
|
|
|
2017-01-19 16:58:20 +00:00
|
|
|
if ($feedrecord->skipuntil) {
|
|
|
|
// Last attempt to gather this feed via cron failed - do not try to fetch it now.
|
2017-01-23 13:32:59 +00:00
|
|
|
$this->hasfailedfeeds = true;
|
2017-01-19 16:58:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
$simplepiefeed = new moodle_simplepie($feedrecord->url);
|
2008-02-20 08:11:02 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
if(isset($CFG->block_rss_client_timeout)){
|
2015-12-01 17:22:35 -05:00
|
|
|
$simplepiefeed->set_cache_duration($CFG->block_rss_client_timeout * 60);
|
2009-07-29 13:44:28 +00:00
|
|
|
}
|
2007-09-03 10:26:44 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
if ($simplepiefeed->error()) {
|
|
|
|
debugging($feedrecord->url .' Failed with code: '.$simplepiefeed->error());
|
|
|
|
return null;
|
2009-07-29 13:44:28 +00:00
|
|
|
}
|
2005-01-29 03:01:18 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
if(empty($feedrecord->preferredtitle)){
|
2015-12-01 17:22:35 -05:00
|
|
|
$feedtitle = $this->format_title($simplepiefeed->get_title());
|
2009-07-29 13:44:28 +00:00
|
|
|
}else{
|
|
|
|
$feedtitle = $this->format_title($feedrecord->preferredtitle);
|
|
|
|
}
|
2005-03-08 17:46:51 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
if (empty($this->config->title)){
|
|
|
|
//NOTE: this means the 'last feed' displayed wins the block title - but
|
|
|
|
//this is exiting behaviour..
|
|
|
|
$this->title = strip_tags($feedtitle);
|
|
|
|
}
|
2007-07-30 17:11:55 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
$feed = new \block_rss_client\output\feed($feedtitle, $showtitle, $this->config->block_rss_client_show_channel_image);
|
|
|
|
|
|
|
|
if ($simplepieitems = $simplepiefeed->get_items(0, $maxentries)) {
|
|
|
|
foreach ($simplepieitems as $simplepieitem) {
|
|
|
|
try {
|
|
|
|
$item = new \block_rss_client\output\item(
|
|
|
|
$simplepieitem->get_id(),
|
|
|
|
new moodle_url($simplepieitem->get_link()),
|
|
|
|
$simplepieitem->get_title(),
|
|
|
|
$simplepieitem->get_description(),
|
|
|
|
new moodle_url($simplepieitem->get_permalink()),
|
|
|
|
$simplepieitem->get_date('U'),
|
|
|
|
$this->config->display_description
|
|
|
|
);
|
|
|
|
|
|
|
|
$feed->add_item($item);
|
|
|
|
} catch (moodle_exception $e) {
|
|
|
|
// If there is an error with the RSS item, we don't
|
|
|
|
// want to crash the page. Specifically, moodle_url can
|
|
|
|
// throw an exception of the param is an extremely
|
|
|
|
// malformed url.
|
|
|
|
debugging($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
// Feed image.
|
|
|
|
if ($imageurl = $simplepiefeed->get_image_url()) {
|
2013-04-06 19:57:28 +02:00
|
|
|
try {
|
2015-12-01 17:22:35 -05:00
|
|
|
$image = new \block_rss_client\output\channel_image(
|
|
|
|
new moodle_url($imageurl),
|
|
|
|
$simplepiefeed->get_image_title(),
|
|
|
|
new moodle_url($simplepiefeed->get_image_link())
|
|
|
|
);
|
|
|
|
|
|
|
|
$feed->set_image($image);
|
2013-04-06 19:57:28 +02:00
|
|
|
} catch (moodle_exception $e) {
|
2015-12-01 17:22:35 -05:00
|
|
|
// If there is an error with the RSS image, we don'twant to
|
|
|
|
// crash the page. Specifically, moodle_url can throw an
|
|
|
|
// exception if the param is an extremely malformed url.
|
|
|
|
debugging($e->getMessage());
|
2013-04-06 19:57:28 +02:00
|
|
|
}
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|
2009-07-29 13:44:28 +00:00
|
|
|
|
2015-12-01 17:22:35 -05:00
|
|
|
return $feed;
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|
2005-11-13 22:50:45 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
/**
|
|
|
|
* Strips a large title to size and adds ... if title too long
|
|
|
|
*
|
|
|
|
* @param string title to shorten
|
|
|
|
* @param int max character length of title
|
|
|
|
* @return string title s() quoted and shortened if necessary
|
|
|
|
*/
|
2007-07-31 19:34:20 +00:00
|
|
|
function format_title($title,$max=64) {
|
|
|
|
|
2013-08-06 20:58:28 +02:00
|
|
|
if (core_text::strlen($title) <= $max) {
|
2007-07-31 19:34:20 +00:00
|
|
|
return s($title);
|
|
|
|
} else {
|
2013-08-06 20:58:28 +02:00
|
|
|
return s(core_text::substr($title,0,$max-3).'...');
|
2007-07-31 19:34:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
/**
|
2015-07-17 16:39:25 +01:00
|
|
|
* cron - goes through all the feeds. If the feed has a skipuntil value
|
|
|
|
* that is less than the current time cron will attempt to retrieve it
|
|
|
|
* with the cache duration set to 0 in order to force the retrieval of
|
|
|
|
* the item and refresh the cache.
|
2009-07-29 13:44:28 +00:00
|
|
|
*
|
2015-07-17 16:39:25 +01:00
|
|
|
* If a feed fails then the skipuntil time of that feed is set to be
|
|
|
|
* later than the next expected cron time. The amount of time will
|
|
|
|
* increase each time the fetch fails until the maximum is reached.
|
|
|
|
*
|
|
|
|
* If a feed that has been failing is successfully retrieved it will
|
|
|
|
* go back to being handled as though it had never failed.
|
|
|
|
*
|
|
|
|
* CRON should therefor process requests for permanently broken RSS
|
|
|
|
* feeds infrequently, and temporarily unavailable feeds will be tried
|
|
|
|
* less often until they become available again.
|
|
|
|
*
|
|
|
|
* @return boolean Always returns true
|
2009-07-29 13:44:28 +00:00
|
|
|
*/
|
2007-07-31 19:34:20 +00:00
|
|
|
function cron() {
|
2008-06-02 20:15:51 +00:00
|
|
|
global $CFG, $DB;
|
2009-07-29 13:44:28 +00:00
|
|
|
require_once($CFG->libdir.'/simplepie/moodle_simplepie.php');
|
2007-07-31 19:34:20 +00:00
|
|
|
|
2015-07-17 16:39:25 +01:00
|
|
|
// Get the legacy cron time, strangely the cron property of block_base
|
|
|
|
// does not seem to get set. This means we must retrive it here.
|
|
|
|
$this->cron = $DB->get_field('block', 'cron', array('name' => 'rss_client'));
|
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
// We are going to measure execution times
|
2007-07-31 19:34:20 +00:00
|
|
|
$starttime = microtime();
|
2015-07-17 16:39:25 +01:00
|
|
|
$starttimesec = time();
|
2007-07-31 19:34:20 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
// Fetch all site feeds.
|
2008-06-02 20:15:51 +00:00
|
|
|
$rs = $DB->get_recordset('block_rss_client');
|
2007-07-31 19:34:20 +00:00
|
|
|
$counter = 0;
|
|
|
|
mtrace('');
|
2008-06-02 20:15:51 +00:00
|
|
|
foreach ($rs as $rec) {
|
2007-07-31 19:34:20 +00:00
|
|
|
mtrace(' ' . $rec->url . ' ', '');
|
2015-07-17 16:39:25 +01:00
|
|
|
|
|
|
|
// Skip feed if it failed recently.
|
|
|
|
if ($starttimesec < $rec->skipuntil) {
|
|
|
|
mtrace('skipping until ' . userdate($rec->skipuntil));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
// Fetch the rss feed, using standard simplepie caching
|
|
|
|
// so feeds will be renewed only if cache has expired
|
2013-10-15 13:22:19 +01:00
|
|
|
core_php_time_limit::raise(60);
|
2009-07-29 13:44:28 +00:00
|
|
|
|
|
|
|
$feed = new moodle_simplepie();
|
2009-11-01 12:00:47 +00:00
|
|
|
// set timeout for longer than normal to be agressive at
|
2009-07-30 18:57:19 +00:00
|
|
|
// fetching feeds if possible..
|
|
|
|
$feed->set_timeout(40);
|
2009-07-29 13:44:28 +00:00
|
|
|
$feed->set_cache_duration(0);
|
|
|
|
$feed->set_feed_url($rec->url);
|
|
|
|
$feed->init();
|
|
|
|
|
|
|
|
if ($feed->error()) {
|
2015-07-17 16:39:25 +01:00
|
|
|
// Skip this feed (for an ever-increasing time if it keeps failing).
|
|
|
|
$rec->skiptime = $this->calculate_skiptime($rec->skiptime);
|
|
|
|
$rec->skipuntil = time() + $rec->skiptime;
|
|
|
|
$DB->update_record('block_rss_client', $rec);
|
|
|
|
mtrace("Error: could not load/find the RSS feed - skipping for {$rec->skiptime} seconds.");
|
2009-07-29 13:44:28 +00:00
|
|
|
} else {
|
|
|
|
mtrace ('ok');
|
2015-07-17 16:39:25 +01:00
|
|
|
// It worked this time, so reset the skiptime.
|
|
|
|
if ($rec->skiptime > 0) {
|
|
|
|
$rec->skiptime = 0;
|
|
|
|
$rec->skipuntil = 0;
|
|
|
|
$DB->update_record('block_rss_client', $rec);
|
|
|
|
}
|
|
|
|
// Only increase the counter when a feed is sucesfully refreshed.
|
|
|
|
$counter ++;
|
2007-07-31 19:34:20 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-02 20:15:51 +00:00
|
|
|
$rs->close();
|
2007-07-31 19:34:20 +00:00
|
|
|
|
2009-07-29 13:44:28 +00:00
|
|
|
// Show times
|
2007-07-31 19:34:20 +00:00
|
|
|
mtrace($counter . ' feeds refreshed (took ' . microtime_diff($starttime, microtime()) . ' seconds)');
|
|
|
|
|
2015-07-17 16:39:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates a new skip time for a record based on the current skip time.
|
|
|
|
*
|
|
|
|
* @param int $currentskip The curreent skip time of a record.
|
|
|
|
* @return int A new skip time that should be set.
|
|
|
|
*/
|
|
|
|
protected function calculate_skiptime($currentskip) {
|
|
|
|
// The default time to skiptime.
|
|
|
|
$newskiptime = $this->cron * 1.1;
|
|
|
|
if ($currentskip > 0) {
|
|
|
|
// Double the last time.
|
|
|
|
$newskiptime = $currentskip * 2;
|
|
|
|
}
|
|
|
|
if ($newskiptime > self::CLIENT_MAX_SKIPTIME) {
|
|
|
|
// Do not allow the skip time to increase indefinatly.
|
|
|
|
$newskiptime = self::CLIENT_MAX_SKIPTIME;
|
|
|
|
}
|
|
|
|
return $newskiptime;
|
2007-07-31 19:34:20 +00:00
|
|
|
}
|
2004-12-14 18:09:20 +00:00
|
|
|
}
|