Changeset 51
- Timestamp:
- 07/11/06 00:27:20 (2 years ago)
- Files:
-
- trunk/t/node/family.t (modified) (2 diffs)
- trunk/t/plugin/rss/rss.t (modified) (1 diff)
- trunk/templates/rss/index.mason (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/t/node/family.t
r43 r51 118 118 119 119 my $got_thread_400 = PrlMnks::Node->new( node_id => 400 )->as_thread(); 120 delete $got_thread_400->{nodes}; 120 121 is_deeply( 121 122 $got_thread_400, # … … 125 126 126 127 my $got_thread_402 = PrlMnks::Node->new( node_id => 402 )->as_thread(); 128 delete $got_thread_402->{nodes}; 127 129 is_deeply( 128 130 $got_thread_402, # trunk/t/plugin/rss/rss.t
r49 r51 65 65 ok -e $paths{508223}, "found '$paths{508223}'"; 66 66 67 getc;68 69 67 # Delete all the rss. 70 68 my $rss_dir = PrlMnks->shared('rss'); trunk/templates/rss/index.mason
r49 r51 14 14 <title><% $node_data->{title} %></title> 15 15 <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> 17 17 <language>en</language> 18 18 <ttl>5</ttl> … … 49 49 <guid isPermaLink="true">http://www.prlmnks.org/html/<% $node_data->{node_id} %>.html</guid> 50 50 51 <description><% $node_data->{content} | h %></description> 51 <description> 52 <% $node_data->{content} | h %> 53 </description> 52 54 </item> 53 55 </%def>
