0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
4.1.5b-1.bak
/
standard
/
htdocs
/
skins
/
_rdf
/
[
Home
]
File: index.main.php
<?php /** * This template generates an RSS 1.0 (RDF) 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://web.resource.org/rss/1.0/} * * @package evoskins * @subpackage rdf * * @version $Id: index.main.php 57 2011-10-26 08:18:58Z sam2kb $ */ 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! // This will normaly have been detected earlier but just for security: debug_die( 'Feeds are disabled.'); } $image_size = $Blog->get_setting( 'image_size' ); headers_content_mightcache( 'application/xml' ); // In most situations, you do NOT want to cache dynamic content! echo '<?xml version="1.0" encoding="'.$io_charset.'"?'.'>'; ?> <!-- generator="<?php echo $app_name; ?>/<?php echo $app_version ?>" --> <rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/"> <channel rdf:about="<?php $Blog->disp( 'url', 'xmlattr' ) ?>"> <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> <dc:language><?php $Blog->disp( 'locale', 'xml' ) ?></dc:language> <admin:generatorAgent rdf:resource="http://b2evolution.net/?v=<?php echo $app_version ?>"/> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase> <items> <rdf:Seq> <?php while( $Item = & mainlist_get_item() ) { // For each blog post, do everything below up to the closing curly brace "}" ?> <rdf:li rdf:resource="<?php $Item->permanent_url( 'single' ) ?>"/> <?php } ?> </rdf:Seq> </items> </channel> <?php $MainList->restart(); while( $Item = & mainlist_get_item() ) { // For each blog post, do everything below up to the closing curly brace "}" // Load Item's creator User: $Item->get_creator_User(); ?> <item rdf:about="<?php $Item->permanent_url( 'single' ) ?>"> <title><?php $Item->title( array( 'format' => 'xml', 'link_type' => 'none', ) ); ?></title> <link><?php $Item->permanent_url( 'single' ) ?></link> <?php $Item->issue_date( array( 'before' => '<dc:date>', 'after' => '</dc:date>', 'date_format' => 'isoZ', 'use_GMT' => true, ) ); ?> <dc:creator><?php $Item->creator_User->preferred_name( 'xml' ) ?></dc:creator> <dc:subject><?php $Item->main_category( 'xml' ) ?></dc:subject> <?php if( $feed_content == 'excerpt' ) { // EXCERPTS --------------------------------------------------------------------- ?> <description><?php $content = $Item->get_excerpt(); // Get content as "htmlbody", otherwise make_rel_links_abs() can't catch <a> and <img> tags // TODO: clean solution : work in format_to_output! echo format_to_output( make_rel_links_abs($content), 'entityencoded' ); // 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> <content:encoded><![CDATA[<?php // Display post excerpt echo $Item->get_excerpt( 'htmlfeed' ); // 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' => 'htmlfeed', ) ); ?>]]></content:encoded> <?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' => $image_size, ), '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> <content:encoded><![CDATA[<?php // URL link, if the post has one: $Item->url_link( array( 'before' => '<p>', 'after' => '</p>', 'podcast' => false, 'format' => 'htmlfeed', ) ); // Display images that are linked to this post: $Item->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' ), 'htmlfeed' ); $Item->content_teaser( array( 'disppage' => 1, 'stripteaser' => true, // sam2kb>fp why true? We DO need to display teaser no matter what $feed_content is 'format' => 'htmlfeed', ) ); if( $feed_content == 'normal' ) { // Teasers only $Item->more_link( array( 'before' => '', 'after' => '', 'disppage' => 1, 'format' => 'htmlfeed', ) ); } else { // Full contents $Item->content_extension( array( 'disppage' => 1, 'force_more' => true, 'format' => 'htmlfeed', ) ); } // 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' => 'htmlfeed', ) ); ?>]]></content:encoded> <?php } ?> </item> <?php } ?> </rdf:RDF>