0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
2.4.1-2
/
standard
/
htdocs
/
skins
/
_rss
/
[
Home
]
File: index.main.php
<?php /** * This template generates an RSS 0.92 feed for the requested blog's latest posts * * For a quick explanation of b2evo 2.0 skins, please start here: * {@link http://manual.b2evolution.net/Skins_2.0} * * See {@link http://backend.userland.com/rss092} * * @package evoskins * @subpackage rss * * @version $Id: index.main.php,v 1.11 2008/01/17 14:38:32 fplanque Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); // Note: even if we request the same post as $Item earlier, the following will do more restrictions (dates, etc.) // Init the MainList object: init_MainList( $Blog->get_setting('posts_per_feed') ); // What level of detail do we want? $feed_content = $Blog->get_setting('feed_content'); if( $feed_content == 'none' ) { // We don't want to provide this feed! global $skins_path; require $skins_path.'_404_not_found.main.php'; exit(); } skin_content_header( 'application/xml' ); // Sets charset! echo '<?xml version="1.0" encoding="'.$io_charset.'"?'.'>'; ?> <!-- generator="<?php echo $app_name; ?>/<?php echo $app_version ?>" --> <rss version="0.92"> <channel> <title><?php $Blog->disp( 'name', 'xml' ); // ------------------------- TITLE FOR THE CURRENT REQUEST ------------------------- request_title( array( 'title_before'=> ' - ', 'title_after' => '', 'title_none' => '', 'glue' => ' - ', 'title_single_disp' => true, 'format' => 'xml', ) ); // ------------------------------ END OF REQUEST TITLE ----------------------------- ?></title> <link><?php $Blog->disp( 'url', 'xml' ) ?></link> <description><?php $Blog->disp( 'shortdesc' ,'xml' ) ?></description> <language><?php $Blog->disp( 'locale', 'xml' ) ?></language> <docs>http://blogs.law.harvard.edu/tech/rss</docs> <?php while( $Item = & mainlist_get_item() ) { // For each blog post, do everything below up to the closing curly brace "}" ?> <item> <title><?php $Item->title( array( 'format' => 'xml', 'link_type' => 'none', ) ); ?></title> <?php if( $feed_content == 'excerpt' ) { // EXCERPTS --------------------------------------------------------------------- ?> <description><?php $content = $Item->get_excerpt( 'entityencoded' ); // fp> this is another one of these "oooooh it's just a tiny little change" // and "we only need to make the links absolute in RSS" // and then you get half baked code! The URL LINK stays RELATIVE!! :(( // TODO: clean solution : work in format_to_output! echo make_rel_links_abs( $content ); // Display Item footer text (text can be edited in Blog Settings): $Item->footer( array( 'mode' => 'xml', 'block_start' => '<div class="item_footer">', 'block_end' => '</div>', 'format' => 'entityencoded', ) ); ?></description> <?php } elseif( $feed_content == 'normal' || $feed_content == 'full' ) { // POST CONTENTS ----------------------------------------------------------------- ?> <description><?php // URL link, if the post has one: $Item->url_link( array( 'before' => '<p>', 'after' => '</p>', 'format' => 'entityencoded', 'podcast' => false, ) ); // Display images that are linked to this post: $content = $Item->get_images( array( 'before' => '<div>', 'before_image' => '<div>', 'before_image_legend' => '<div><i>', 'after_image_legend' => '</i></div>', 'after_image' => '</div>', 'after' => '</div>', 'image_size' => 'fit-320x320' ), 'entityencoded' ); $content .= $Item->get_content_teaser( 1, false, 'entityencoded' ); if( $feed_content == 'normal' ) { // Teasers only $content .= $Item->get_more_link( array( 'before' => '', 'after' => '', 'disppage' => 1, 'format' => 'entityencoded', ) ); } else { // Full contents $content .= $Item->get_content_extension( 1, true, 'entityencoded' ); } // fp> this is another one of these "oooooh it's just a tiny little change" // and "we only need to make the links absolute in RSS" // and then you get half baked code! The URL LINK stays RELATIVE!! :(( // TODO: clean solution : work in format_to_output! echo make_rel_links_abs( $content ); // Display Item footer text (text can be edited in Blog Settings): $Item->footer( array( 'mode' => 'xml', 'block_start' => '<div class="item_footer">', 'block_end' => '</div>', 'format' => 'entityencoded', ) ); ?></description> <link><?php $Item->permanent_url( 'single' ) ?></link> <?php } ?> </item> <?php } ?> </channel> </rss> <?php $Hit->log(); // log the hit on this page // This is a self contained XML document, make sure there is no additional output: exit(); ?>