add support for all types of unordered lists in migrate_old_polls

This commit is contained in:
Régis Hanol 2015-05-13 22:10:02 +02:00
parent 01d4085125
commit 06643fb625

View File

@ -13,10 +13,10 @@ task "poll:migrate_old_polls" => :environment do
putc "."
# go back in time
Timecop.freeze(post.created_at + 1.minute) do
post.raw = post.raw.gsub(/\n\n([ ]*- )/, "\n\\1") + "\n\n"
post.raw = post.raw.gsub(/\n\n([ ]*[-\*\+] )/, "\n\\1") + "\n\n"
# fix the RAW when needed
if post.raw !~ /\[poll\]/
lists = /^[ ]*- .+?$\n\n/m.match(post.raw)
lists = /^[ ]*[-\*\+] .+?$\n\n/m.match(post.raw)
next if lists.blank? || lists.length == 0
first_list = lists[0]
post.raw = post.raw.sub(first_list, "\n[poll]\n#{first_list}\n[/poll]\n")