temp bitmap to web

This commit is contained in:
John Bintz 2010-01-06 22:44:09 -05:00
parent e6f352ecb4
commit ffd0a583dd
1 changed files with 0 additions and 42 deletions

View File

@ -7,48 +7,6 @@ Dir[File.dirname(__FILE__) + "/classes/*.rb"].each do |file|
require file
end
#
# Process an input file for the Web
#
class TempBitmapToWeb < OutputFilter
def build(input, output)
quality = @config['quality'] ? @config['quality'] : 80
convert("\"#{input}\" -quality #{quality} \"#{output}\"")
end
def filename(info)
if !@config['start_date']; raise "Must define a start date!"; end
if !@config['period']; raise "Must define a period!"; end
index = info['index'].to_i
if index == 0 && @config['announce_date']
comic_date = @config['announce_date']
else
day_of_week = 0
weeks_from_start = 0
case @config['period']
when "daily"
day_of_week = index % 5
weeks_from_start = (index / 5).floor
when "weekly"
weeks_from_start = index
end
if @config['delay_at_index'] && @config['delay_length_weeks']
if index >= @config['delay_at_index']
weeks_from_start += @config['delay_length_weeks']
end
end
comic_date = Time.parse(@config['start_date']) + ((((day_of_week + weeks_from_start * 7) * 24) + 6) * 60 * 60)
end
info['date'] = comic_date.strftime("%Y-%m-%d")
super(info)
end
end
#
# Code to help with pagination
#