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)
|
* Fixes for Wordpress importer (#274, #252, #271)
|
||||||
* Better error message for invalid post date (#291)
|
* Better error message for invalid post date (#291)
|
||||||
* Print formatted fatal exceptions to stdout on build failure
|
* Print formatted fatal exceptions to stdout on build failure
|
||||||
|
* Add Tumblr importer (#323)
|
||||||
* Bug Fixes
|
* Bug Fixes
|
||||||
* Secure additional path exploits
|
* Secure additional path exploits
|
||||||
|
|
||||||
|
|
|
@ -164,6 +164,7 @@ if ARGV.size > 0
|
||||||
:mephisto => 'Mephisto',
|
:mephisto => 'Mephisto',
|
||||||
:mt => 'MT',
|
:mt => 'MT',
|
||||||
:textpattern => 'TextPattern',
|
:textpattern => 'TextPattern',
|
||||||
|
:tumblr => 'Tumblr',
|
||||||
:typo => 'Typo'
|
:typo => 'Typo'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,6 @@ require 'date'
|
||||||
|
|
||||||
module Jekyll
|
module Jekyll
|
||||||
module Tumblr
|
module Tumblr
|
||||||
|
|
||||||
def self.process(url, grab_images = false)
|
def self.process(url, grab_images = false)
|
||||||
current_page = 0
|
current_page = 0
|
||||||
|
|
||||||
|
@ -116,6 +115,5 @@ HEADER
|
||||||
return url
|
return url
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue