Changed the Selectricity header into a link, and modified the config/routes.rb file...
[selectricity] / config / routes.rb
index 7a7b1013c146c7564fec40abc96932d36bff9b53..a05b80376764f5dc4829db0b02f06bfc21a3961a 100644 (file)
@@ -11,7 +11,7 @@ ActionController::Routing::Routes.draw do |map|
 
   # You can have the root of your site routed by hooking up '' 
   # -- just remember to delete public/index.html.
 
   # You can have the root of your site routed by hooking up '' 
   # -- just remember to delete public/index.html.
-  map.connect '', :controller => "site"
+  map.connect '', :controller => "site", :action => "index"
  
   map.connect 'quickvote/:action/:id',
                :controller => 'quickvote',
  
   map.connect 'quickvote/:action/:id',
                :controller => 'quickvote',
@@ -28,6 +28,15 @@ ActionController::Routing::Routes.draw do |map|
   # instead of a file named 'wsdl'
   map.connect ':controller/service.wsdl', :action => 'wsdl'
 
   # instead of a file named 'wsdl'
   map.connect ':controller/service.wsdl', :action => 'wsdl'
 
+  # The following pertain to caching and accessing Gruff graphs
+  # To make caching easier, add a line like this to config/routes.rb:
+  # map.graph "graph/:action/:id/image.png", :controller => "graph"
+  #
+  # Then reference it with the named route:
+  #   image_tag graph_url(:action => 'show', :id => 42)
+  map.graph "graphs/:action/:id/image.png", :controller => "graphs"      
+  map.graph "graphs/:action/image.png", :controller => "graphs" #pics w/o id's
+  
   # Install the default route as the lowest priority.
   map.connect ':controller/:action/:id.:format'
   map.connect ':controller/:action/:id'
   # Install the default route as the lowest priority.
   map.connect ':controller/:action/:id.:format'
   map.connect ':controller/:action/:id'

Benjamin Mako Hill || Want to submit a patch?