Commit 67e7b90de7d91a2ac576d755cd720c995280e939

Authored by Luciano Prestes
1 parent afecfc5c
Exists in master and in 79 other branches add_sisp_to_chef, add_super_archives_plugin, api_for_colab, automates_core_packing, backup_not_prod, changes_in_buttons_on_content_panel, colab_automated_login, colab_spb_plugin_recipe, colab_widgets_settings, design_validation, dev_env_minimal, disable_email_dev, fix_breadcrumbs_position, fix_categories_software_link, fix_edit_institution, fix_edit_software_with_another_license, fix_get_license_info, fix_gitlab_assets_permission, fix_list_style_inside_article, fix_list_style_on_folder_elements, fix_members_pagination, fix_merge_request_url, fix_models_translations, fix_no_license, fix_software_api, fix_software_block_migration, fix_software_communities_translations, fix_software_communities_unit_test, fix_style_create_institution_admin_panel, fix_superarchives_imports, fix_sym_links_noosfero, focus_search_field_theme, gov-user-refactoring, gov-user-refactoring-rails4, header_fix, institution_modal_on_rating, kalibro-conf-refactoring, kalibro-processor-package, lxc_settings, margin_fix, mezuro_cookbook, prezento, refactor_download_block, refactor_software_communities, refactor_software_for_sisp, register_page, release-process, release-process-v2, remove-unused-images, remove_broken_theme, remove_secondary_email_from_user, remove_sisp_buttons, removing_super_archives_email, review_message, scope2method, signals_user_noosfero, sisp_catalog_header, sisp_colab_config, sisp_dev, sisp_dev_master, sisp_simple_version, software_as_organization, software_catalog_style_fix, software_communities_html_refactor, software_infos_api, spb_minimal_env, spb_to_rails4, spec_refactor, stable-4.1, stable-4.2, stable-4.x, temp_soft_comm_refactoring, theme_header, theme_javascript_refactory, thread_dropdown, thread_page, update_search_by_categories, update_software_api, update_softwares_boxes

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 %>
... ...