integration cleanups
This commit is contained in:
parent
846920e7c2
commit
e0f4c6935e
@ -42,7 +42,7 @@ class FileProcessor
|
||||
end
|
||||
end
|
||||
|
||||
page_index += 1
|
||||
@page_index += 1
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -1,18 +1,19 @@
|
||||
require File.dirname(__FILE__) + '/OutputFilter.rb'
|
||||
require File.dirname(__FILE__) + '/../modules/ImageProcessing.rb'
|
||||
|
||||
#
|
||||
# Process an input file for the Web
|
||||
#
|
||||
class TempBitmapToWeb < OutputFilter
|
||||
include ImageProcessing
|
||||
|
||||
def build(input, output)
|
||||
quality = @config['quality'] ? @config['quality'] : 80
|
||||
convert("\"#{input}\" -quality #{quality} \"#{output}\"")
|
||||
end
|
||||
|
||||
def filename(info)
|
||||
index = info['index'].to_i
|
||||
|
||||
info['date'] = @config['publish_dates'][index].strftime(@config['date_format'])
|
||||
info['date'] = @config['publish_dates'][info['index'].to_i - 1].strftime(@config['date_format'])
|
||||
super(info)
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user