Clean up Tumblr importer and update History.
This commit is contained in:
parent
9cc9c233d0
commit
b86bc97c5f
|
@ -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
|
||||
|
||||
|
|
|
@ -164,6 +164,7 @@ if ARGV.size > 0
|
|||
:mephisto => 'Mephisto',
|
||||
:mt => 'MT',
|
||||
:textpattern => 'TextPattern',
|
||||
:tumblr => 'Tumblr',
|
||||
:typo => 'Typo'
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue