Sha256: cd738a3edf5cef4f9cbeb35ceee1426df2706513d9513df248a6e1b08059aee0

Contents?: true

Size: 1.9 KB

Versions: 1

Compression:

Stored size: 1.9 KB

Contents

<%#
  # WebROaR - Ruby Application Server - http://webroar.in/
  # Copyright (C) 2009  Goonj LLC
  #
  # This file is part of WebROaR.
  #
  # WebROaR is free software: you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
  # the Free Software Foundation, either version 3 of the License, or
  # (at your option) any later version.
  #
  # WebROaR is distributed in the hope that it will be useful,
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  # GNU General Public License for more details.
  #
  # You should have received a copy of the GNU General Public License
  # along with WebROaR.  If not, see <http://www.gnu.org/licenses/>.
  #%>
  
<%old_value = get_old_value_for_div(params[:div_id])%>	
<%= remote_form_for :data, :update => params[:div_id],:html => {:onsubmit => "if(!validate_server_specification(this,'#{params[:div_id]}','#{old_value}')){return false;}"}, :url => {:controller => 'server_specification', :action => 'save_data', :div_id => params[:div_id], :old_value => old_value} do %>
  <%if params[:div_id] == 'log_div'%>
    <%=select :data, :value, %w{INFO WARN SEVERE FATAL}, :selected => old_value%>
  <%elsif params[:div_id] == 'access_log_div' %>
    <%=select :data, :value, %w{Enabled Disabled}, :selected => old_value %>
  <%elsif params[:div_id] == 'key_div' or params[:div_id] == 'certificate_div'%>
    <%=text_field :data, :value, :size => '15', :value => old_value%>	
  <%else%>
    <%=text_field :data, :value, :size => '10', :value => h(old_value)%>	
  <%end%>
  &nbsp;&nbsp;&nbsp;<%=submit_tag 'Save'%>&nbsp;&nbsp;&nbsp;
<% end %>   
<%= remote_form_for :cancel, :update => params[:div_id], :url => {:controller => 'server_specification', :action => 'cancel_edit', :div_id => params[:div_id], :old_value => old_value} do %>
  <%=submit_tag 'Cancel'%>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webroar-0.7.0 src/admin_panel/app/views/server_specification/_add_div.html.erb