OSDN Git Service

temp
[pettanr/pettanr.git] / app / controllers / system_pictures_controller.rb
index 7b6da92..374788c 100644 (file)
@@ -10,38 +10,29 @@ class SystemPicturesController < ApplicationController
   end
   before_filter :authenticate_admin!, :only => [:list, :browse, :new, :create]
 
-  # GET /system_pictures
-  # GET /system_pictures.json
+  @@model = SystemPicture
   def index
-    @page = SystemPicture.page params[:page]
-    @page_size = SystemPicture.page_size params[:page_size]
-    @system_pictures = SystemPicture.list(@page, @page_size)
+    set_filer
 
     respond_to do |format|
-      format.html {
-        @paginate = SystemPicture.list_paginate(@page, @page_size)
-        render :template => 'system/filer', :locals => {
-          :items => @system_pictures, :model => SystemPicture, 
-          :roles => [@user, @admin], :pager => @paginate
-        }
-      }
-      format.json { render json: @system_pictures.to_json(SystemPicture.list_json_opt) }
+      format_filer format
+      format.json { render json: @items.to_json(@@model.list_json_opt) }
     end
   end
 
-  # GET /system_pictures/1
-  # GET /system_pictures/1.json
   def show
-    @system_picture = SystemPicture.show(params[:id], [@user, @admin, @demand_user])
+    @item = SystemPicture.show(params[:id], @operators)
     
     respond_to do |format|
-      opt = {:type => @system_picture.mime_type, :disposition=>"inline"}
-      format.png { send_data(@system_picture.restore, opt ) }
-      format.gif { send_data(@system_picture.restore, opt ) }
-      format.jpeg { send_data(@system_picture.restore, opt ) }
-      format.html # show.html.erb
-      format.prof  { render :template => 'top/prof', :layout => true }
-      format.json { render json: @system_picture.to_json(SystemPicture.show_json_opt)}
+      opt = {:type => @item.mime_type, :disposition=>"inline"}
+      format.png { send_data(@item.restore, opt ) }
+      format.gif { send_data(@item.restore, opt ) }
+      format.jpeg { send_data(@item.restore, opt ) }
+      format.html {
+        @system_picture = @item
+      }
+      format_prof format
+      format.json { render json: @item.to_json(SystemPicture.show_json_opt)}
     end
   end