search for: esimply

Displaying 4 results from an estimated 4 matches for "esimply".

Did you mean: simply
2006 Mar 27
3
regular expression matching in routes.rb
All, I have a route specified as: map.connect '':folder/:filename'', :folder => /htmlfiles/, :controller => "eSimply", :action => "preview_HTML" I expect it to invoke the "preview_HTML" action in the "eSimply" controller. Given an argument of "htmlfiles/xyz.html", it keeps saying that it can''t find an "htmlfiles" action. As you can see, I'...
2006 Jul 03
2
1.1.4: link_to with mixed case controller names "broken"?
I have a side navigation bar with links embedded in it like the following: <%= link_to( ''Create Job'', { :controller => ''eSimply'', :action => ''upload'' }) %> This link now shows a routing exception Recognition failed for "/eSimply/upload" This link has worked for over through Rails 1.1.3 a month. I can only assume that the upgrade to Rails 1.1.4 broke it. I...
2006 May 15
0
Routing fails for files under public without file extensions
...tempt to request it directly. However, if I add an extension onto it, then it can be retrieved. Doesn''t matter where the file is - could be directly under public or several directories below. Here''s my routes.rb file: map.connect '''', :controller => "eSimply" map.connect ''target_lists/update/:action/:id/:data'', :controller => "listManagement", :data => nil map.connect '':controller/:action/:id'' map.connect '':controller/:action/*filename'' I don''t see any problems with m...
2006 Apr 26
2
Routing to a static HTML file under RAILS_ROOT
...e request through" succesfully. I tried map.connect ''path_to_file'', :controller => nil, :action => nil, :id => nil but that didn''t work. Also, note that I have this route already configured: map.connect '''', :controller => "eSimply" so I''m thinking that maybe that picks up everything? Thanks, Wes -- Posted via http://www.ruby-forum.com/.