Changeset 51

Show
Ignore:
Timestamp:
07/11/06 00:27:20 (2 years ago)
Author:
evdb
Message:

Fixes to RSS formatting

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/t/node/family.t

    r43 r51  
    118118 
    119119my $got_thread_400 = PrlMnks::Node->new( node_id => 400 )->as_thread(); 
     120delete $got_thread_400->{nodes}; 
    120121is_deeply( 
    121122    $got_thread_400,       # 
     
    125126 
    126127my $got_thread_402 = PrlMnks::Node->new( node_id => 402 )->as_thread(); 
     128delete $got_thread_402->{nodes}; 
    127129is_deeply( 
    128130    $got_thread_402,       # 
  • trunk/t/plugin/rss/rss.t

    r49 r51  
    6565ok -e $paths{508223}, "found '$paths{508223}'"; 
    6666 
    67 getc; 
    68  
    6967# Delete all the rss. 
    7068my $rss_dir = PrlMnks->shared('rss'); 
  • trunk/templates/rss/index.mason

    r49 r51  
    1414        <title><% $node_data->{title} %></title> 
    1515        <link>http://www.prlmnks.org/html/<% $node_data->{node_id} %>.html</link> 
    16 %#        <description>RSS feeds from perlmonks.org</description> 
     16        <description>RSS feeds from perlmonks.org</description> 
    1717        <language>en</language> 
    1818        <ttl>5</ttl> 
     
    4949        <guid isPermaLink="true">http://www.prlmnks.org/html/<% $node_data->{node_id} %>.html</guid> 
    5050 
    51         <description><% $node_data->{content} | h %></description> 
     51        <description> 
     52            <% $node_data->{content} | h %> 
     53        </description> 
    5254    </item> 
    5355</%def>