OSDN Git Service

t#32046:
[pettanr/pettanr.git] / config / routes.rb
index 4bdb1a5..48f61d0 100644 (file)
@@ -7,6 +7,9 @@ Pettanr::Application.routes.draw do
   Pettanr::Application.licenses.each do |name, klass|
     mount Module.const_get(klass)::Engine => "/#{name}"
   end
+  Pettanr::Application.speech_balloons.each do |klass , name|
+    mount Module.const_get(klass)::Engine => "/#{name}"
+  end
   
   resources :authors do
     new do
@@ -20,16 +23,17 @@ Pettanr::Application.routes.draw do
       get :list
     end
     member do
+      get :edit
       put :update
       delete :destroy
       get :browse
-      get :comics
-      get :stories
+      get :scrolls
+      get :scroll_panels
       get :panels
       get :panel_pictures
+      get :speech_balloons
       get :ground_pictures
       get :ground_colors
-      get :panel_colors
     end
   end
   resources :artists do
@@ -44,6 +48,7 @@ Pettanr::Application.routes.draw do
       get :list
     end
     member do
+      get :edit
       put :update
       delete :destroy
       get :browse
@@ -62,6 +67,7 @@ Pettanr::Application.routes.draw do
       get :list
     end
     member do
+      get :play
       get :edit
       put :update
       delete :destroy
@@ -79,13 +85,13 @@ Pettanr::Application.routes.draw do
       get :list
     end
     member do
-      get :comic
+      get :edit
       put :update
       delete :destroy
       get :browse
     end
   end
-  resources :panels do
+  resources :sheets do
     new do
       get :new
     end
@@ -97,75 +103,165 @@ Pettanr::Application.routes.draw do
       get :list
     end
     member do
+      get :edit
       put :update
       delete :destroy
       get :browse
     end
   end
-  resources :panel_pictures do
+  resources :sheet_panels do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
+      post :create
       get :list
     end
     member do
+      get :edit
+      put :update
+      delete :destroy
       get :browse
     end
   end
-  resources :speech_balloons do
+  resources :scrolls do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
+      get :count
+      post :create
       get :list
     end
     member do
+      get :play
+      get :edit
+      put :update
+      delete :destroy
       get :browse
     end
   end
-  resources :balloons do
+  resources :scroll_panels do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
+      post :create
       get :list
     end
     member do
+      get :edit
+      put :update
+      delete :destroy
       get :browse
     end
   end
-  resources :speeches do
+  resources :panels do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
+      get :count
+      post :create
       get :list
     end
     member do
+      get :catch
+      get :edit
+      put :update
+      delete :destroy
       get :browse
     end
   end
-  resources :panel_colors do
+  resources :panel_pictures do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
+      post :create
+      get :list
+    end
+    member do
+      get :edit
+      put :update
+      delete :destroy
+      get :browse
+    end
+  end
+  resources :speech_balloons do
+    new do
+      get :new
+    end
+    collection do
+      get :index
+      get :show
+      post :create
+      get :list
+    end
+    member do
+      get :edit
+      put :update
+      delete :destroy
+      get :browse
+    end
+  end
+  resources :balloons do
+    collection do
+      get :index
+      get :show
+      get :list
+    end
+    member do
+      get :browse
+    end
+  end
+  resources :speeches do
+    collection do
+      get :index
+      get :show
+      get :list
     end
     member do
       get :browse
     end
   end
   resources :ground_colors do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
     end
     member do
+      get :edit
+      put :update
+      delete :destroy
       get :browse
     end
   end
   resources :ground_pictures do
+    new do
+      get :new
+    end
     collection do
       get :index
       get :show
     end
     member do
+      get :edit
+      put :update
+      delete :destroy
       get :browse
     end
   end
@@ -255,16 +351,6 @@ Pettanr::Application.routes.draw do
       post :create
     end
   end
-  resources :colors do
-    collection do
-      get :index
-      get :show
-      get :list
-    end
-    member do
-      get :browse
-    end
-  end
   resources :system_pictures do
     collection do
       get :index
@@ -358,10 +444,11 @@ Pettanr::Application.routes.draw do
   # Keep in mind you can assign values other than :controller and :action
   match 'resource_pictures/:subdir/:id(.:format)/' => 'resource_pictures#show'
   match 'pictures/:subdir/:id(.:format)/' => 'pictures#show'
-  match 'stories/comic/:id(.:format)' => 'stories#comic'
+  #match 'scroll_panels/scroll/:id(.:format)' => 'scroll_panels#scroll'
+  match 'top/(:action)', :controller => 'top'
   match 'home/(:action)', :controller => 'home'
   match 'system/(:action)', :controller => 'system'
-  match 'authors/(:action(/:id))', :controller => 'authors'
+  #match 'authors/(:action(/:id))', :controller => 'authors'
   
   # Sample of named route:
   #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
@@ -405,11 +492,11 @@ Pettanr::Application.routes.draw do
 
   # You can have the root of your site routed with "root"
   # just remember to delete public/index.html.
-  root :to => 'comics#top'
+  root :to => 'top#index'
 
   # See how all your routes lay out with "rake routes"
 
   # This is a legacy wild controller route that's not recommended for RESTful applications.
   # Note: This route will make all actions in every controller accessible via GET requests.
-  #match ':controller(/:action(/:id(.:format)))'
+  match ':controller(/:action(/:id(.:format)))'
 end