Sha256: 7eaba64031e79de58f52f028e928900fec3f0c2e4197ee29cfdd31c52127f16b

Contents?: true

Size: 1.46 KB

Versions: 1

Compression:

Stored size: 1.46 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 = Headers.get_expires_value()%>  
<%remote_form_for :data, :update => params[:div_id], :html => { :onsubmit => "if(!validate_headers_expire(this,'#{params[:div_id]}','#{old_value}')){return false;}"} , :url => {:controller => 'headers', :action => 'save_expires_value', :div_id => params[:div_id], :old_value => old_value}do%>
  <%=text_field :data, :value, :size => '10', :value => h(old_value)%> 
&nbsp;&nbsp;&nbsp;<%=submit_tag 'Save'%>&nbsp;&nbsp;&nbsp;
<%end%> 
<%remote_form_for :cancel, :update => params[:div_id], :url => {:controller => 'headers', :action => 'cancel_expires_value_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.6.1 src/admin_panel/app/views/headers/_add_expires_text_box.html.erb