tweak styles for intro page

This commit is contained in:
r888888888
2013-06-24 15:32:17 -07:00
parent 90e90e8be2
commit 3bc4c886c3
5 changed files with 34 additions and 21 deletions

View File

@@ -117,6 +117,27 @@ class Tag < ActiveRecord::Base
end
module StatisticsMethods
def trending
Cache.get("popular-tags", 1.hour) do
CurrentUser.scoped(User.admins.first, "127.0.0.1") do
n = 1
results = []
while results.empty? && n < 256
query = n.days.ago.strftime("date:>%Y-%m-%d")
results = RelatedTagCalculator.calculate_from_sample_to_array(query)
n *= 2
end
results.map! do |tag_name, recent_count|
tag = Tag.find_or_create_by_name(tag_name)
[tag_name, recent_count.to_f / tag.post_count.to_f]
end
results.sort_by! {|x| -x[1]}.map(&:first)
end
end
end
end
module NameMethods