search for: esimpli

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

Did you mean: simpli
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
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
2006 May 15
0
Routing fails for files under public without file extensions
All, Rails 1.1.2 Windows XP Pro Ruby 1.8.4 I have a scenario where my app. needs to request files from my public directory. The app. writes certain files into my public directory and depending on circumstances, these files may or may not have file extensions. I am unable to successfully retrieve an image file (a GIF) from anywhere in my public directory unless the file ends with
2006 Apr 26
2
Routing to a static HTML file under RAILS_ROOT
I have a regular plain old static HTML file under my RAILS_ROOT that I would like to serve as itself (without any dynamic anything). How can I write a route to "pass the 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