1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
<?php
/**
* This template generates an Atom feed for the requested blog's latest posts
*
* See {@link http://www.mnot.net/drafts/draft-nottingham-atom-format-02.html}
*
* 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/}
*
* @package xmlsrv
*/
$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
/**
* Initialize everything:
*/
$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/atom+xml");
echo '<?xml version="1.0" encoding="utf-8"?'.'>';
?>
<feed version="0.3" xml:lang="<?php $Blog->disp( 'locale', 'xml' ) ?>" xmlns="http://purl.org/atom/ns#">
<title><?php
$Blog->disp( 'name', 'xml' );
single_cat_title( ' - ', 'xml' );
single_month_title( ' - ', 'xml' );
single_post_title( ' - ', 'xml' );
last_comments_title( ' - ', 'xml' ) ;
?></title>
<link rel="alternate" type="text/html" href="<?php $Blog->disp( 'lastcommentsurl', 'xml' ) ?>" />
<generator url="http://b2evolution.net/" version="<?php echo $b2_version ?>">b2evolution</generator>
<modified><?php echo gmdate('Y-m-d\TH:i:s\Z'); ?></modified>
<?php while( $Comment = $CommentList->get_next() )
{ // Loop through comments: ?>
<entry>
<title type="text/plain" mode="xml"><?php echo format_to_output( T_('In response to:'), 'xml' ) ?> <?php $Comment->Item->title( '', '', false, 'xml' ) ?></title>
<link rel="alternate" type="text/html" href="<?php $Comment->permalink() ?>" />
<author>
<name><?php $Comment->author( '', '#', '', '#', 'xml' ) ?></name>
<?php $Comment->author_url( '', '<url>', "</url>\n", false ) ?>
</author>
<id><?php $Comment->permalink() ?></id>
<issued><?php $Comment->date( 'isoZ', true ); ?></issued>
<modified><?php $Comment->date( 'isoZ', true ); ?></modified>
<content type="text/html" mode="escaped"><![CDATA[<?php $Comment->content() ?>]]></content>
</entry>
<?php } // End of comment loop. ?>
</feed>
<?php log_hit(); // log the hit on this page ?>
|