warn "Roo's roo_rails_helper, aka the spreadsheet view method is currently deprecated with no replacement. If you find it helpful, tell http://github.com/Empact or extract it yourself." def spreadsheet(spreadsheet, sheets, options={}) @rspreadsheet = spreadsheet coordinates = true # default o="" if options[:coordinates] != nil o << ":coordinates uebergeben: #{options[:coordinates]}" coordinates = options[:coordinates] end if options[:bgcolor] bgcolor = options[:bgcolor] else bgcolor = false end sheets.each { |sheet| @rspreadsheet.default_sheet = sheet linenumber = @rspreadsheet.first_row(sheet) if options[:first_row] linenumber += (options[:first_row]-1) end o << '' if options[:first_row] first_row = options[:first_row] end if options[:last_row] last_row = options[:last_row] end if options[:first_column] first_column = options[:first_column] end if options[:last_column] last_column = options[:last_column] end first_row = @rspreadsheet.first_row(sheet) unless first_row last_row = @rspreadsheet.last_row(sheet) unless last_row first_column = @rspreadsheet.first_column(sheet) unless first_column last_column = @rspreadsheet.last_column(sheet) unless last_column if coordinates o << " " o << " " @rspreadsheet.first_column(sheet).upto(@rspreadsheet.last_column(sheet)) {|c| if c < first_column or c > last_column next end o << " " } o << "" end @rspreadsheet.first_row.upto(@rspreadsheet.last_row) do |y| if first_row and (y < first_row or y > last_row) next end o << "" if coordinates o << "" end linenumber += 1 @rspreadsheet.first_column(sheet).upto(@rspreadsheet.last_column(sheet)) do |x| if x < first_column or x > last_column next end if bgcolor o << "" end o << "" end o << "
 " o << " #{Roo::Base.number_to_letter(c)}" o << "
#{linenumber.to_s}" else o << '' end if @rspreadsheet.cell(y,x).to_s.empty? o << " " else o << "#{@rspreadsheet.cell(y,x)}" end o << "
" } # each sheet return o end