X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fcontrollers%2Fspeech_balloon_templates_controller.rb;h=0b2d024951f1c752162ba56f41cc2f625f5ff652;hb=3f4cd8c9a4ce4336a659d7ad7f7093c0c1cd6ee9;hp=6494e0499f57917964bfe3281540f02eb2ae1fc2;hpb=d8b50c09ff9034a9abd9cf10ae839e0402df0e7c;p=pettanr%2Fpettanr.git diff --git a/app/controllers/speech_balloon_templates_controller.rb b/app/controllers/speech_balloon_templates_controller.rb index 6494e049..0b2d0249 100644 --- a/app/controllers/speech_balloon_templates_controller.rb +++ b/app/controllers/speech_balloon_templates_controller.rb @@ -1,63 +1,63 @@ class SpeechBalloonTemplatesController < ApplicationController - layout 'test' if MagicNumber['test_layout'] - if MagicNumber['run_mode'] == 0 + if Manifest.manifest.magic_numbers['run_mode'] == 0 before_filter :authenticate_user, :only => [] else - before_filter :authenticate_reader, :only => [:index, :show] + before_filter :authenticate_reader, :only => [ + :index, :show, :by_panel, :by_system_picture, :count, :count_by_panel, :count_by_system_picture + ] before_filter :authenticate_user, :only => [] end - before_filter :authenticate_admin!, :only => [:list, :browse, :destroy] - + before_filter :authenticate_admin, :only => [:new, :create, :edit, :update, :destroy] + def index - @speech_balloon_templates = SpeechBalloonTemplate.enable_list - - respond_to do |format| - format.html { - render :template => 'system/filer', :locals => { - :items => @speech_balloon_templates, :model => SpeechBalloonTemplate, - :roles => [@user, @admin], :pager => nil - } - } - format.json { render json: @speech_balloon_templates.to_json(SpeechBalloonTemplate.list_json_opt) } - end + filer_list end - + + def by_panel + filer_list + end + + def by_system_picture + filer_list + end + + def show_html_format format + format.html { + } + end + def show - @speech_balloon_template = SpeechBalloonTemplate.show(params[:id], [@user, @admin]) - + set_show respond_to do |format| - format.html # show.html.erb - format.prof { render :template => 'top/prof', :layout => true } - format.json { - render :json => @speech_balloon_template.to_json(SpeechBalloonTemplate.show_json_opt) - } - format.jsonp { - render :json => "callback(" + @speech_balloon_template.to_json() + ")" - } + show_html_format format + show_prof_format format + show_json_format format end end - - def list - @speech_balloon_templates = SpeechBalloonTemplate.all - - respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @speech_balloon_templates } - end + + def count + list_count end - - def browse - @speech_balloon_template = SpeechBalloonTemplate.find(params[:id]) - - respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @speech_balloon_template } - end + + def count_by_panel + list_count end - + + def count_by_system_picture + list_count + end + + def new + form_new + end + + def edit + form_edit + end + def destroy - @speech_balloon_template = SpeechBalloonTemplate.find(params[:id]) - @speech_balloon_template.destroy + @item = SpeechBalloonTemplate.find(params[:id]) + @item.destroy respond_to do |format| format.html { redirect_to :action => :list }