scratch/layouts/feed.html

17 lines
526 B
HTML
Raw Normal View History

-----
-----
2010-06-15 20:35:21 +00:00
<%
2011-04-20 12:29:01 +00:00
language=@item_rep.path.sub(%r{#{@config[:webprefix]}/},'').sub(/\/.*$/,'')
2010-06-15 20:35:21 +00:00
number_of_char_for_resume=800
%><%= atom_feed( {
:articles => articles.select { |a| a.reps[0].path =~ /\/#{language}\// },
:content_proc =>lambda { |a|
repair_html(
excerptize(
a.compiled_content(:snapshot => :pre),
{:length => number_of_char_for_resume} ))
},
:limit => 40
}) %>