2011-08-10 02:36:03 +00:00
|
|
|
<?
|
|
|
|
define ('siteHome', "/home/project-web/quake/htdocs");
|
|
|
|
require siteHome . "/parts/library.inc"; // Load function library
|
|
|
|
|
|
|
|
header ("Content-Type: text/xml");
|
|
|
|
echo('<?xml version="1.0" encoding="utf-8"?>' . "\n");
|
|
|
|
?>
|
|
|
|
<rss version="2.0">
|
|
|
|
<channel>
|
|
|
|
<title>QuakeForge News</title>
|
|
|
|
<description>Latest QuakeForge Project news</description>
|
2011-08-10 02:41:02 +00:00
|
|
|
<link>http://www.quakeforge.net/rss.php</link>
|
2011-08-10 02:36:03 +00:00
|
|
|
<copyright>Copyright 1999-2011 Contributors of the QuakeForge Project</copyright>
|
|
|
|
<?
|
|
|
|
$newsFormat = "RSS";
|
|
|
|
|
|
|
|
need ('news');
|
|
|
|
printLatestNews (5);
|
|
|
|
?>
|
2011-08-10 02:47:00 +00:00
|
|
|
</channel>
|
2011-08-10 02:36:03 +00:00
|
|
|
</rss>
|