Commit 67e7b90de7d91a2ac576d755cd720c995280e939

Authored by Luciano Prestes
1 parent afecfc5c

Fix change in software registration

- Change repository input size
	- Change finality maxlength
	- Change public software tab name to specifications
	- Change acronym field to software tab

Signed-off-by: David Carlos <ddavidcarlos1392@gmail.com>
Signed-off-by: Luciano Prestes <lucianopcbr@gmail.com>
lib/software_info.rb
... ... @@ -14,7 +14,7 @@ class SoftwareInfo &lt; ActiveRecord::Base
14 14  
15 15 has_one :software_categories
16 16  
17   - validates_length_of :finality, :maximum => 100
  17 + validates_length_of :finality, :maximum => 140
18 18 validates_length_of :objectives, :maximum => 4000
19 19 validates_length_of :features, :maximum => 4000
20 20  
... ...
views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb
1   -<h2><%= @profile.software_info.name + _(' Information') %></h2>
  1 +<h1><%= @profile.software_info.name + _(' Information') %></h1>
  2 +
  3 +<h3> <%= _("Acronym") %> </h3>
  4 +<div id="acronym">
  5 + <%= text_field_tag("software[acronym]", @profile.software_info.acronym, :maxlength=>"10") %>
  6 +</div>
2 7  
3 8 <h3> <%= _("Finality") %> </h3>
4 9 <div id="finality">
... ... @@ -18,8 +23,8 @@
18 23 <a id = "version_link" href="<%= @profile.software_info.license_info.link %>" target="BLANK"> <%= @profile.software_info.license_info.link %> </a>
19 24 </div>
20 25  
21   -<div class="formfieldline formfield type-text">
22   - <%= label_tag "repository_url", _("Link to Repository: ") %>
23   - <%= text_field_tag("software[repository_link]", @profile.software_info.repository_link) %>
  26 +<h3> <%= _("Link to Repository") %> </h3>
  27 +<div id='repository_link'>
  28 + <%= text_field_tag("software[repository_link]", @profile.software_info.repository_link, :class => "improve_input_size") %>
24 29 </div>
25 30  
... ...
views/mpog_software_plugin_myprofile/_public_software_info.html.erb
1 1 <h1><%= _('Edit software') %></h1>
2 2  
3   -<div class="formfield type-text">
4   - <%= label_tag(:acronym ,_("Acronym"), :class=>"formlabel") %>
5   - <%= text_field_tag("software[acronym]", @software_info.acronym, :maxlength=>"10") %>
6   -</div>
7   -
8 3 <div class="formfieldline">
9 4 <%= label_tag _("Adherent to e-PING ?") %>
10 5  
... ...
views/mpog_software_plugin_myprofile/edit_software.html.erb
... ... @@ -7,7 +7,7 @@
7 7 <% tabs << {:title => _("Software"), :id => 'basic-info',
8 8 :content => (render :partial => 'main_software_editor_extras')} %>
9 9  
10   -<% tabs << {:title => _("Public Software"), :id => 'especific-info',
  10 +<% tabs << {:title => _("Specifications"), :id => 'especific-info',
11 11 :content => (render :partial => 'public_software_info')} %>
12 12  
13 13 <%= render_tabs(tabs) %>
... ... @@ -17,4 +17,4 @@
17 17 <%= submit_button(:save, _('Save and Configure Community')) %>
18 18 <%= button(:back, _('Back to control panel'), :controller => 'profile_editor') %>
19 19 <% end %>
20   -<% end %>
21 20 \ No newline at end of file
  21 +<% end %>
... ...