15 lines
338 B
Ruby
15 lines
338 B
Ruby
class ScreenshotController < ApplicationController
|
|
|
|
def single
|
|
@fpath = "screenshots/" + params[:filename]
|
|
fabsolute = RAILS_ROOT + "/public/images/screenshots/" + params[:filename]
|
|
@fsize = IO.read(fabsolute)[0x10..0x18].unpack('NN')
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
format.xml
|
|
end
|
|
end
|
|
|
|
|
|
end
|