From: Lukasz Rekucki Date: Fri, 21 Aug 2009 08:14:47 +0000 (+0200) Subject: Wyświetlanie wyników odświeżania. X-Git-Url: https://git.mdrn.pl/redakcja_redmine.git/commitdiff_plain/9a45acb7706ccfa6d4c2377d6020eca842a24dd1 Wyświetlanie wyników odświeżania. --- diff --git a/app/controllers/publications_controller.rb b/app/controllers/publications_controller.rb index bb74d03..7b4164c 100644 --- a/app/controllers/publications_controller.rb +++ b/app/controllers/publications_controller.rb @@ -13,6 +13,8 @@ class PublicationsController < ApplicationController end def refresh + @match_status = [] + regexp = Regexp.new(Setting.plugin_redmine_publications[:pattern]) Repository.all.each do |repo| repo.entries.each do |entry| @@ -20,9 +22,18 @@ class PublicationsController < ApplicationController if match Publication.find_or_create_by_name(:name => match[1], :source_file => entry.path, :repository_id => repo.id) - end + @match_status += [{:path => entry.path, :match => match[1], :matched => true}] + else + @match_status += [{:path => entry.path, :match =>nil, :matched => false}] + end end end + + respond_to do |format| + format.html + format.xml { render :xml => @publications } + format.json { render :json => @publications } + end end def issues diff --git a/app/views/publications/index.html.erb b/app/views/publications/index.html.erb index 9a7e3ce..3fa0299 100644 --- a/app/views/publications/index.html.erb +++ b/app/views/publications/index.html.erb @@ -1,4 +1,5 @@

Publikacje

+

Odśwież listę publikacji

    <% @publications.each do |pub| %>
  1. <%= pub.name %>