mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
26a81b30c2
might be linking to us even if we don't have a link.
26 lines
767 B
Ruby
26 lines
767 B
Ruby
desc "walk all posts updating cooked with latest markdown"
|
|
task "posts:rebake" => :environment do
|
|
RailsMultisite::ConnectionManagement.each_connection do |db|
|
|
puts "Re baking post markdown for #{db} , changes are denoted with # , no change with ."
|
|
i = 0
|
|
Post.select([:id, :user_id, :cooked, :raw, :topic_id, :post_number]).each do |p|
|
|
i += 1
|
|
cooked = p.cook(p.raw, topic_id: p.topic_id)
|
|
if cooked != p.cooked
|
|
Post.exec_sql('update posts set cooked = ? where id = ?', cooked, p.id)
|
|
p.cooked = cooked
|
|
putc "#"
|
|
else
|
|
putc "."
|
|
end
|
|
TopicLink.extract_from(p)
|
|
end
|
|
puts
|
|
puts
|
|
puts "#{i} posts done!"
|
|
puts "-----------------------------------------------"
|
|
puts
|
|
|
|
end
|
|
end
|