X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FFeed.php;h=635b04e4d45641dc813748b16867dc987b56fb3f;hb=9f38f56fb5aff2c39981bb8c51d2e99c42d65215;hp=a30ba5cecbfbf8afdf9efcadfbf53cd2cc99f7a0;hpb=d514374a0062202d680af131a8479eace677be70;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Feed.php b/includes/Feed.php index a30ba5cecb..635b04e4d4 100644 --- a/includes/Feed.php +++ b/includes/Feed.php @@ -245,7 +245,7 @@ abstract class ChannelFeed extends FeedItem { global $wgRequest; $ctype = $wgRequest->getVal( 'ctype', 'application/xml' ); $allowedctypes = array( 'application/xml', 'text/xml', 'application/rss+xml', 'application/atom+xml' ); - return (in_array( $ctype, $allowedctypes ) ? $ctype : 'application/xml'); + return ( in_array( $ctype, $allowedctypes ) ? $ctype : 'application/xml' ); } /** @@ -282,7 +282,7 @@ class RSSFeed extends ChannelFeed { } /** - * Ouput an RSS 2.0 header + * Output an RSS 2.0 header */ function outHeader() { global $wgVersion; @@ -306,19 +306,19 @@ class RSSFeed extends ChannelFeed { function outItem( $item ) { ?> - <?php print $item->getTitle() ?> - getUrl(), PROTO_CURRENT ) ?> - rssIsPermalink ) print ' isPermaLink="false"' ?>>getUniqueId() ?> + <?php print $item->getTitle(); ?> + getUrl(), PROTO_CURRENT ); ?> + rssIsPermalink ) { print ' isPermaLink="false"'; } ?>>getUniqueId(); ?> getDescription() ?> - getDate() ) { ?>formatTime( $item->getDate() ) ?> - getAuthor() ) { ?>getAuthor() ?> - getComments() ) { ?>getComments(), PROTO_CURRENT ) ?> + getDate() ) { ?>formatTime( $item->getDate() ); ?> + getAuthor() ) { ?>getAuthor(); ?> + getComments() ) { ?>getComments(), PROTO_CURRENT ); ?> @@ -362,7 +362,7 @@ class AtomFeed extends ChannelFeed { } /** - * Atom 1.0 requires a unique, opaque IRI as a unique indentifier + * Atom 1.0 requires a unique, opaque IRI as a unique identifier * for every feed we create. For now just use the URL, but who * can tell if that's right? If we put options on the feed, do we * have to change the id? Maybe? Maybe not. @@ -392,15 +392,15 @@ class AtomFeed extends ChannelFeed { global $wgMimeType; ?> - getUniqueId() ?> - <?php print $item->getTitle() ?> - - getDate() ) { ?> - formatTime( $item->getDate() ) ?>Z + getUniqueId(); ?> + <?php print $item->getTitle(); ?> + + getDate() ) { ?> + formatTime( $item->getDate() ); ?>Z getDescription() ?> - getAuthor() ) { ?>getAuthor() ?> + getAuthor() ) { ?>getAuthor(); ?> '). + * Outputs the footer for Atom 1.0 feed (basically '\'). */ function outFooter() {?>