Clean up Tumblr importer and update History.

This commit is contained in:
Tom Preston-Werner 2011-05-09 00:54:26 -07:00
parent 9cc9c233d0
commit b86bc97c5f
3 changed files with 13 additions and 13 deletions

View File

@ -9,6 +9,7 @@
* Fixes for Wordpress importer (#274, #252, #271)
* Better error message for invalid post date (#291)
* Print formatted fatal exceptions to stdout on build failure
* Add Tumblr importer (#323)
* Bug Fixes
* Secure additional path exploits

View File

@ -164,6 +164,7 @@ if ARGV.size > 0
:mephisto => 'Mephisto',
:mt => 'MT',
:textpattern => 'TextPattern',
:tumblr => 'Tumblr',
:typo => 'Typo'
}

View File

@ -8,7 +8,6 @@ require 'date'
module Jekyll
module Tumblr
def self.process(url, grab_images = false)
current_page = 0
@ -116,6 +115,5 @@ HEADER
return url
end
end
end
end