/[drupal]/contributions/modules/views/theme/views-view-rss.tpl.php
ViewVC logotype

Contents of /contributions/modules/views/theme/views-view-rss.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Tue Dec 2 00:02:06 2008 UTC (11 months, 3 weeks ago) by merlinofchaos
Branch: MAIN
CVS Tags: DRUPAL-6--2-7, DRUPAL-6--2-6, DRUPAL-6--2-5, DRUPAL-6--2-4, DRUPAL-6--2-3, DRUPAL-6--2-2, DRUPAL-6--3-0-ALPHA1, HEAD
Branch point for: DRUPAL-6--2, DRUPAL-6--3, DRUPAL-7--3
Changes since 1.2: +9 -2 lines
File MIME type: text/x-php
#338632 by drewish: Remove use of format_rss_channel and use proper templating instead.
1 <?php
2 // $Id: views-view-rss.tpl.php,v 1.2 2008/07/21 20:56:49 merlinofchaos Exp $
3 /**
4 * @file views-view-rss.tpl.php
5 * Default template for feed displays that use the RSS style.
6 *
7 * @ingroup views_templates
8 */
9 ?>
10 <?php print "<?xml"; ?> version="1.0" encoding="utf-8" <?php print "?>"; ?>
11 <rss version="2.0" xml:base="<?php print $link; ?>"<?php print $namespaces; ?>>
12 <channel>
13 <title><?php print $title; ?></title>
14 <link><?php print $link; ?></link>
15 <description><?php print $description; ?></description>
16 <language><?php print $langcode; ?></language>
17 <?php print $channel_elements; ?>
18 <?php print $items; ?>
19 </channel>
20 </rss>

  ViewVC Help
Powered by ViewVC 1.1.2