X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fcontrollers%2Fground_colors_controller.rb;h=168bda309b43a9db21e9bc862f690b2c39410cdc;hb=69b61b39006c1951fc8c08746e884e63e50233b3;hp=e9456f909699803f5652c61c89a27f2d43cc7260;hpb=9f5258607f0be5c8c6f4f8f9efb85ec462f33b68;p=pettanr%2Fpettanr.git diff --git a/app/controllers/ground_colors_controller.rb b/app/controllers/ground_colors_controller.rb index e9456f90..168bda30 100644 --- a/app/controllers/ground_colors_controller.rb +++ b/app/controllers/ground_colors_controller.rb @@ -1,117 +1,56 @@ class GroundColorsController < ApplicationController - layout 'test' if MagicNumber['test_layout'] - if MagicNumber['run_mode'] == 0 - before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy] - before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy] + if Manifest.manifest.magic_numbers['run_mode'] == 0 + before_filter :authenticate_user, :only => [] + before_filter :authenticate_author, :only => [] else - before_filter :authenticate_reader, :only => [:index, :show] - before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy] - before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy] + before_filter :authenticate_reader, :only => [ + :index, :show, :by_panel, :by_author, :count, :count_by_panel, :count_by_author + ] + before_filter :authenticate_user, :only => [] + before_filter :authenticate_author, :only => [] end + def self.model + GroundColor + end + def index - @page = GroundColor.page params[:page] - @page_size = GroundColor.page_size params[:page_size] - @ground_colors = GroundColor.list(@page, @page_size) - - respond_to do |format| - format.html { - @paginate = GroundColor.list_paginate(@page, @page_size) - } - format.json { render :json => @ground_colors.to_json(GroundColor.list_json_opt) } - end + filer_list end - def show - @ground_color = GroundColor.show(params[:id], [@user, @admin]) - respond_to do |format| - format.html # show.html.erb - format.json { render json: @ground_color.to_json(GroundColor.show_json_opt) } - end + def by_panel + filer_list end - def new - raise Pettanr::NotWork unless @author.working_panel - @panel = Panel.edit(@author.working_panel, @author) - @ground_color = GroundColor.new :panel_id => @panel.id, :code => params[:code].to_i - @ground_color.supply_default - - respond_to do |format| - format.html - format.json { render :json => @ground_color.to_json(GroundColor.show_json_opt) } - end + def by_author + filer_list end - - def edit - @ground_color = GroundColor.show(params[:id], @author) - @panel = Panel.edit(@ground_color.panel.id, @author) - - respond_to do |format| - format.html - end + + def show_html_format format + format.html { + @ground_color = @item + } end - - def create - raise Pettanr::NotWork unless @author.working_panel - @panel = Panel.edit(@author.working_panel, @author) - - @ground_color = GroundColor.new - @ground_color.attributes = params[:ground_color] - @ground_color.overwrite @panel.id - + + def show + set_show respond_to do |format| - if @ground_color.valid? - if @ground_color.store @author - flash[:notice] = I18n.t('flash.notice.created', :model => Panel.model_name.human) - format.html { redirect_to @panel } - format.json { render json: @panel.panel_elements_as_json, status: :created, location: @panel } - else - flash[:notice] = I18n.t('flash.notice.not_created', :model => GroundColor.model_name.human) - format.html { render action: "new" } - format.json { render json: @ground_color.errors, status: :unprocessable_entity } - end - else - flash[:notice] = I18n.t('flash.notice.not_created', :model => GroundColor.model_name.human) - format.html { render action: "new" } - format.json { render json: @ground_color.errors, status: :unprocessable_entity } - end + show_html_format format + show_prof_format format + show_json_format format end end - - def update - @ground_color = GroundColor.show(params[:id], @author) - @ground_color.attributes = params[:ground_color] - @panel = Panel.edit(@ground_color.panel.id, @author) - @ground_color.overwrite @panel.id - - respond_to do |format| - if @ground_color.store @author - flash[:notice] = I18n.t('flash.notice.updated', :model => GroundColor.model_name.human) - format.html { redirect_to @ground_color } - format.json { head :ok } - else - flash[:notice] = I18n.t('flash.notice.not_updated', :model => GroundColor.model_name.human) - format.html { render action: "edit" } - format.json { render json: @ground_color.errors, status: :unprocessable_entity } - end - end + + def count + list_count end - - def destroy - @ground_color = GroundColor.show(params[:id], @author) - @panel = Panel.edit(@ground_color.panel.id, @author) - - respond_to do |format| - if @ground_color.remove @author - flash[:notice] = I18n.t('flash.notice.destroyed', :model => GroundColor.model_name.human) - format.html { redirect_to @panel } - format.json { head :ok } - else - flash[:notice] = I18n.t('flash.notice.not_destroyed', :model => GroundColor.model_name.human) - format.html { redirect_to @ground_color } - format.json { render json: @ground_color.errors, status: :unprocessable_entity } - end - end + + def count_by_panel + list_count + end + + def count_by_author + list_count end end