view .svn/pristine/0a/0a62a3ae28a4f2df93a63c650d603c29ff087559.svn-base @ 1368:987e71e73116 bibliography_testing

Setup of testing framework for the bibliography plugin.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 20 Aug 2013 18:00:06 +0100
parents cbb26bc654de
children
line wrap: on
line source
<% form_tag({:action => 'edit', :tab => 'mail_handler'}) do %>

<div class="box tabular settings">
  <p>
    <%= setting_text_area :mail_handler_body_delimiters, :rows => 5 %>
    <br /><em><%= l(:text_line_separated) %></em>
  </p>
</div>

<div class="box tabular settings">
<p><%= setting_check_box :mail_handler_api_enabled,
         :onclick => "if (this.checked) { Form.Element.enable('settings_mail_handler_api_key'); } else { Form.Element.disable('settings_mail_handler_api_key'); }"%></p>

<p><%= setting_text_field :mail_handler_api_key, :size => 30,
                                                 :id => 'settings_mail_handler_api_key',
                                                 :disabled => !Setting.mail_handler_api_enabled? %>
  <%= link_to_function l(:label_generate_key), "if ($('settings_mail_handler_api_key').disabled == false) { $('settings_mail_handler_api_key').value = randomKey(20) }" %>
</p>
</div>

<%= submit_tag l(:button_save) %>

<% end %>