Commit e987e18ea5f65f593ad6ed862d9af6e80165e16a

Authored by Luciano Prestes
1 parent 946f97e5
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

Update design of software catalog

lib/ext/search_controller.rb
... ... @@ -114,7 +114,7 @@ class SearchController
114 114 end
115 115  
116 116 def prepare_software_infos_params
117   - @titles[:software_infos] = _("Public Software Catalog")
  117 + @titles[:software_infos] = _("Result Search")
118 118 @selected_categories_id = params[:selected_categories_id]
119 119 @selected_categories_id ||= []
120 120 @selected_categories_id = @selected_categories_id.map(&:to_i)
... ...
po/pt/software_communities.po
... ... @@ -408,15 +408,15 @@ msgstr "Categorias"
408 408  
409 409 #: plugins/software_communities/views/search/_catalog_filter.html.erb:33
410 410 msgid "Clean up"
411   -msgstr "Limpe formulário"
  411 +msgstr "Limpar"
412 412  
413 413 #: plugins/software_communities/views/search/_catalog_filter.html.erb:34
414 414 msgid "Close"
415   -msgstr "Feche"
  415 +msgstr "Fechar"
416 416  
417 417 #: plugins/software_communities/views/search/_catalog_filter.html.erb:37
418   -msgid "All Software Projects:"
419   -msgstr "Todos os Projetos de Software"
  418 +msgid "Software Projects:"
  419 +msgstr "Projetos de Software:"
420 420  
421 421 #: plugins/software_communities/views/search/_catalog_filter.html.erb:40
422 422 msgid "Include in results"
... ...
views/search/_catalog_filter.html.erb
... ... @@ -29,16 +29,19 @@
29 29 <br />
30 30 </div>
31 31 </div>
  32 +
  33 + <div class="project-software"> <%= _("Software Projects:") %>
  34 + <label>
  35 + <%= check_box_tag("include_non_public", true, @include_non_public) %>
  36 + <%= _("Include in results") %>
  37 + </label>
  38 + <span class"doubts-catalog-software" title="<%= _('Include software development projects that are not yet officially Brazilian Public Software.') %>">(?)</span>
  39 + </div>
  40 +
32 41 <br />
  42 +
33 43 <%= button_tag _("Clean up"), :id => "cleanup-filter-catalg", :type => "button" %>
34 44 <%= button_tag _("Close"), :id => "close-filter-catalog", :type => "button" %>
35 45 </div>
36 46  
37   - <div class="project-software"> <%= _("All Software Projects:") %>
38   - <label>
39   - <%= check_box_tag("include_non_public", true, @include_non_public) %>
40   - <%= _("Include in results") %>
41   - </label>
42   - <span class"doubts-catalog-software" title="<%= _('Include software development projects that are not yet officially Brazilian Public Software.') %>">(?)</span>
43   - </div>
44 47 </div>
... ...
views/search/_software_search_form.html.erb
1 1 <div class='search-form'>
  2 + <h3> <%= _("Search Public Software Catalog") %> </h3>
  3 +
2 4 <%= form_tag( { :controller => 'search', :action => @asset ? @asset : 'index', :asset => nil, :category_path => ( @category ? @category.path : nil ) },
3 5 :method => 'get', :class => 'search_form' ) do %>
4 6  
... ... @@ -17,6 +19,8 @@
17 19 <%= render :partial => 'search_form_extra_fields' %>
18 20 <%= render :partial => 'catalog_filter' %>
19 21  
  22 + <br />
  23 +
20 24 <div id="catalog-display-options">
21 25 <div id="catalog-display-options-count">
22 26 <strong id="software-count"><%= "#{@software_count} Software(s)" %></strong>
... ...
views/search/software_infos.html.erb
  1 +<h2>Catálogo de Software Público</h2>
  2 +
1 3 <div id="software-search-container">
2 4 <%= search_page_title( @titles[@asset], @category ) %>
3 5  
4 6 <%= render :partial => 'software_search_form', :locals => { :hint => _("Type words about the %s you're looking for") % @asset.to_s.singularize } %>
5 7  
6   - <%= render partial:"catalog_result_list" %>
7   -
8   - <div id="software-pagination">
9   - <% if params[:display] != 'map' %>
10   - <%= pagination_links @searches[@asset][:results] %>
11   - <% end %>
12   - </div>
13   -
14 8 <div style="clear: both"></div>
15 9  
16 10 <% if @asset == :product %>
... ... @@ -18,4 +12,12 @@
18 12 jQuery('.search-product-price-details').altBeautify();
19 13 <% end %>
20 14 <% end %>
  15 +</div>
  16 +
  17 +<%= render partial:"catalog_result_list" %>
  18 +
  19 +<div id="software-pagination">
  20 + <% if params[:display] != 'map' %>
  21 + <%= pagination_links @searches[@asset][:results] %>
  22 + <% end %>
21 23 </div>
22 24 \ No newline at end of file
... ...