Make WordPress Core

Ticket #25229: wp-includes-feed-rdf.2.diff

File wp-includes-feed-rdf.2.diff, 3.5 KB (added by dustyf, 11 years ago)

Second pass at wp-includes/feed-rdf.php - Added spaces throughout the file to meet coding standards, changed tense of short comment.

  • wp-includes/feed-rdf.php

     
    55 * @package WordPress
    66 */
    77
    8 header('Content-Type: ' . feed_content_type('rdf') . '; charset=' . get_option('blog_charset'), true);
     8header( 'Content-Type: ' . feed_content_type('rdf') . '; charset=' . get_option('blog_charset'), true );
    99$more = 1;
    1010
    11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
     11echo '<?xml version="1.0" encoding="'.get_option( 'blog_charset' ).'"?'.'>'; ?>
    1212<rdf:RDF
    1313        xmlns="http://purl.org/rss/1.0/"
    1414        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     
    1616        xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    1717        xmlns:admin="http://webns.net/mvcb/"
    1818        xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19         <?php do_action('rdf_ns'); ?>
     19        <?php
     20        /**
     21         * Fires at the end of the feed root to add namespaces.
     22         *
     23         * @since 2.0.0
     24         */
     25        do_action( 'rdf_ns' );
     26        ?>
    2027>
    2128<channel rdf:about="<?php bloginfo_rss("url") ?>">
    22         <title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
    23         <link><?php bloginfo_rss('url') ?></link>
    24         <description><?php bloginfo_rss('description') ?></description>
    25         <dc:date><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></dc:date>
     29        <title><?php bloginfo_rss( 'name' ); wp_title_rss(); ?></title>
     30        <link><?php bloginfo_rss( 'url' ) ?></link>
     31        <description><?php bloginfo_rss( 'description' ) ?></description>
     32        <dc:date><?php echo mysql2date( 'Y-m-d\TH:i:s\Z', get_lastpostmodified( 'GMT' ), false ); ?></dc:date>
     33        <?php //duplicate_hook ?>
    2634        <sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
     35        <?php //duplicate_hook ?>
    2736        <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
    2837        <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    29         <?php do_action('rdf_header'); ?>
     38        <?php
     39        /**
     40         * Fires at the end of the RDF feed header.
     41         *
     42         * @since 2.0.0
     43         */
     44        do_action( 'rdf_header' );
     45        ?>
    3046        <items>
    3147                <rdf:Seq>
    32                 <?php while (have_posts()): the_post(); ?>
     48                <?php while ( have_posts() ): the_post(); ?>
    3349                        <rdf:li rdf:resource="<?php the_permalink_rss() ?>"/>
    3450                <?php endwhile; ?>
    3551                </rdf:Seq>
    3652        </items>
    3753</channel>
    38 <?php rewind_posts(); while (have_posts()): the_post(); ?>
     54<?php rewind_posts(); while ( have_posts() ): the_post(); ?>
    3955<item rdf:about="<?php the_permalink_rss() ?>">
    4056        <title><?php the_title_rss() ?></title>
    4157        <link><?php the_permalink_rss() ?></link>
    42         <dc:date><?php echo mysql2date('Y-m-d\TH:i:s\Z', $post->post_date_gmt, false); ?></dc:date>
     58        <dc:date><?php echo mysql2date( 'Y-m-d\TH:i:s\Z', $post->post_date_gmt, false ); ?></dc:date>
    4359        <dc:creator><![CDATA[<?php the_author() ?>]]></dc:creator>
    44         <?php the_category_rss('rdf') ?>
    45 <?php if (get_option('rss_use_excerpt')) : ?>
     60        <?php the_category_rss( 'rdf' ) ?>
     61<?php if ( get_option( 'rss_use_excerpt' ) ) : ?>
    4662        <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
    4763<?php else : ?>
    4864        <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
    49         <content:encoded><![CDATA[<?php the_content_feed('rdf') ?>]]></content:encoded>
     65        <content:encoded><![CDATA[<?php the_content_feed( 'rdf' ) ?>]]></content:encoded>
    5066<?php endif; ?>
    51         <?php do_action('rdf_item'); ?>
     67        <?php
     68        /**
     69         * Fires at the end of each RDF feed item.
     70         *
     71         * @since 2.0.0
     72         */
     73        do_action( 'rdf_item' );
     74        ?>
    5275</item>
    5376<?php endwhile;  ?>
    5477</rdf:RDF>