Hi all,

I am using rails to create a wap site. I have using the following code
in the rails to make it work:

#environment.rb
Mime::Type.register "text/vnd.wap.wml", :wml

#controller
def index
    ..... # some unrelated code
    respond_to do |format|
      format.wml # index.wml.erb
    end
end

and I created the view as index.wml.erb

It works well when I visit the site, but if I using redirect_to or
render method in the controller instance method, the browser will tell
me template missing like show.html.erb, which means rails try to
render the view by .html.erb rather than the wml.

Is there any way I could let rails always trying to render .wml by
default?

Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to