Sha256: a14b459000aab723146bc2f6c478f6a77a1a842da8855740848d85b33427f051

Contents?: true

Size: 649 Bytes

Versions: 26

Compression:

Stored size: 649 Bytes

Contents

# -*- coding: utf-8 -*-
class FilterControllerBase < ApplicationController
  def abracadabra_utf8
    render :text => "アブラカダブラ"
  end
  def abracadabra_xhtml_utf8
    response.content_type = "application/xhtml+xml"
    render :text => "アブラカダブラ"
  end
  def index
    @q = params[:q]
  end
  def empty
    render :text => ""
  end
  def rawdata
    send_data "アブラカダブラ", :type => 'application/octet-stream'
  end
  def textarea
    render :text => '<textarea hoge="fuu">アブラカダブラ</textarea>'
  end
  def input_tag
    render :text => '<input hoge="fuu" value="アブラカダブラ" />'
  end
end

Version data entries

26 entries across 18 versions & 1 rubygems

Version Path
jpmobile-1.0.3 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.2 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.1 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-2.0.0.pre.2 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-2.0.0.pre.1 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.7 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.6 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.5 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.4 test/rails/rails_root/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.4 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.3 test/rails/rails_root/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.3 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.2 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.2 test/rails/rails_root/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.1 test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre.1 test/rails/rails_root/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre test/rails/rails_root/app/controllers/filter_controller_base.rb
jpmobile-1.0.0.pre test/rails/overrides/app/controllers/filter_controller_base.rb
jpmobile-0.1.6 test/rails/overrides/app/controllers/filter_controller_base.rb