Source for file rss.comments.php
Documentation is available at rss.comments.php
* This template generates an RSS 0.92 feed for the requested blog's latest comments
* See {@link http://backend.userland.com/rss092}
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
$skin =
''; // We don't want this do be displayed in a skin !
$disp =
'comments'; // What we want is the latest comments
$show_statuses =
array(); // Restrict to published comments
$resolve_extra_path =
false; // We don't want extra path resolution on this page
require
dirname(__FILE__
).
'/../b2evocore/_blog_main.php' ;
$CommentList =
& new CommentList( $blog, "'comment'", $show_statuses, '', '', 'DESC', '', 20 );
header("Content-type: application/xml");
echo
"<?xml version=\"1.0\"?".
">";
<!-- generator="b2evolution/
<?php echo
$b2_version ?>" -->
$Blog->disp( 'name', 'xml' );
<link>
<?php $Blog->disp( 'lastcommentsurl', 'xml' ) ?></link>
<description></description>
<language>
<?php $Blog->disp( 'locale', 'xml' ) ?></language>
<docs>http://backend.userland.com/rss092</docs>
<?php while( $Comment =
$CommentList->get_next() )
{ // Loop through comments: ?>
<title>
<?php echo
format_to_output( T_('In response to:'), 'xml' ) ?> <?php $Comment->Item->title( '', '', false, 'xml' ) ?></title>
<description>
<?php $Comment->content( 'entityencoded' ) ?></description>
<link>
<?php $Comment->permalink() ?></link>
<?php } // End of comment loop. ?>
<?php log_hit(); // log the hit on this page ?>