annotate .svn/pristine/00/00c1a9b51dc321ecb980f25b62c13dfa7fd628ff.svn-base @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents 261b3d9a4903
children
rev   line source
Chris@1464 1 <%= error_messages_for 'auth_source' %>
Chris@1464 2
Chris@1464 3 <div class="box tabular">
Chris@1464 4 <p><%= f.text_field :name, :required => true %></p>
Chris@1464 5 <p><%= f.text_field :host, :required => true %></p>
Chris@1464 6 <p><%= f.text_field :port, :required => true, :size => 6 %> <%= f.check_box :tls, :no_label => true %> LDAPS</p>
Chris@1464 7 <p><%= f.text_field :account %></p>
Chris@1464 8 <p><%= f.password_field :account_password, :label => :field_password,
Chris@1464 9 :name => 'dummy_password',
Chris@1464 10 :value => ((@auth_source.new_record? || @auth_source.account_password.blank?) ? '' : ('x'*15)),
Chris@1464 11 :onfocus => "this.value=''; this.name='auth_source[account_password]';",
Chris@1464 12 :onchange => "this.name='auth_source[account_password]';" %></p>
Chris@1464 13 <p><%= f.text_field :base_dn, :required => true, :size => 60 %></p>
Chris@1464 14 <p><%= f.text_field :filter, :size => 60, :label => :field_auth_source_ldap_filter %></p>
Chris@1464 15 <p><%= f.text_field :timeout, :size => 4 %></p>
Chris@1464 16 <p><%= f.check_box :onthefly_register, :label => :field_onthefly %></p>
Chris@1464 17 </div>
Chris@1464 18
Chris@1464 19 <fieldset class="box tabular"><legend><%=l(:label_attribute_plural)%></legend>
Chris@1464 20 <p><%= f.text_field :attr_login, :required => true, :size => 20 %></p>
Chris@1464 21 <p><%= f.text_field :attr_firstname, :size => 20 %></p>
Chris@1464 22 <p><%= f.text_field :attr_lastname, :size => 20 %></p>
Chris@1464 23 <p><%= f.text_field :attr_mail, :size => 20 %></p>
Chris@1464 24 </fieldset>