2008-07-01から1ヶ月間の記事一覧

acts_as_taggable_on_steroids の tag_cloud

#controller @tag_clouds = Tagging.find(:all, :select => "distinct(tag_id), count(tag_id) as tag_count", :group => "tag_id", :order => "tag_count desc", :limit => 100) #view <% @tag_clouds.each do |tagc| %> <div class="<%= %|tag_#{tagc.count > 10 ? 10 : 5 }| %>"><%= link_to tagc.tag.name, :id =></div>…