From 135d5257dc3351291a66bdf697c840d516995cd5 Mon Sep 17 00:00:00 2001 From: deva Date: Thu, 28 Jan 2010 15:04:03 +0000 Subject: Option to show only a single news entry. Vague attempt on news->rss feed conversion. --- .cvsignore | 4 ++++ utils/modules/news.php | 13 ++++++++++++- utils/rss.php | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 .cvsignore diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..f088cf6 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,4 @@ +data/* +forum/* +forum/data/* +htdocs/* diff --git a/utils/modules/news.php b/utils/modules/news.php index 4d00b24..8c693c3 100644 --- a/utils/modules/news.php +++ b/utils/modules/news.php @@ -3,6 +3,7 @@ global $UTIL_DIR, $MODULES_DIR; +include_once($UTIL_DIR . "/rss.php"); include_once($UTIL_DIR . "/convert.php"); include_once($UTIL_DIR . "/forms.php"); include_once($UTIL_DIR . "/user.php"); @@ -272,6 +273,8 @@ class News { public function run($params) { + global $newsid; + $str = ""; $module = "all"; @@ -295,7 +298,12 @@ class News { } } - $str .= $this->show($number, $module); + if($newsid && $this->news[$newsid]) { + // $str .= $this->show($number, $module); + $str .= $this->news[$newsid]->show(); + } else { + $str .= $this->show($number, $module); + } return $str; } @@ -334,6 +342,9 @@ class News { fwrite($fp, "\n"); fclose($fp); + + $rss = new RSS($this->file, "rss.xml"); + $rss->write(); } private function read() diff --git a/utils/rss.php b/utils/rss.php index e6aa83f..b4b4b86 100644 --- a/utils/rss.php +++ b/utils/rss.php @@ -68,7 +68,7 @@ class RSS { fwrite($fp, " http://www.executionroom.com/?page=news&id=".$newsentry->time."\n"); fwrite($fp, " ".$newsentry->description."\n"); fwrite($fp, " ".$this->date($newsentry->time)."\n"); - fwrite($fp, " http://www.executionroom.com/?page=news&id=".$newsentry->time."\n"); + fwrite($fp, " http://www.executionroom.com/?page=news&id=".$newsentry->time."&newsid="+$newsentry->time+"\n"); fwrite($fp, " \n"); $i++; if($i > 6) break; -- cgit v1.2.3