54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/milkode/cdweb/lib/package_list.rb', line 54
def favorite_list(params)
names = @grndb.packages.favs.map{|r| r.name}[0..FAVORITE_LIST_NUM-1]
list = names.map_with_index {|v, index|
"<strong><a id='favorite_list_#{index}' href='#{Mkurl.new(@suburl + '/home/' + v, params).inherit_query_shead}' onclick='topic_path(\"favorite_list_#{index}\");'>#{v}</a></strong>"
}.join(" \n")
<<EOF
#{list}
<a href="#{@suburl}/home?sort=favtime">...</a>
EOF
end
|