Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #8185: add_xml_schema_to_scaffold_resource.patch

File add_xml_schema_to_scaffold_resource.patch, 493 bytes (added by Klondike, 2 years ago)

Patch over scaffold_resource controller template.

  • controller.rb

    old new  
    2222  end 
    2323 
    2424  # GET /<%= table_name %>/new 
     25  # GET /<%= table_name %>/new.xml 
    2526  def new 
    2627    @<%= file_name %> = <%= class_name %>.new 
     28     
     29    respond_to do |format| 
     30      format.html # new.erb 
     31      format.xml { render :xml => @<%= file_name %>.to_xml } 
     32    end 
    2733  end 
    2834 
    2935  # GET /<%= table_name %>/1;edit