From 9a45acb7706ccfa6d4c2377d6020eca842a24dd1 Mon Sep 17 00:00:00 2001 From: Lukasz Rekucki Date: Fri, 21 Aug 2009 10:14:47 +0200 Subject: [PATCH] =?utf8?q?Wy=C5=9Bwietlanie=20wynik=C3=B3w=20od=C5=9Bwie?= =?utf8?q?=C5=BCania.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- app/controllers/publications_controller.rb | 13 ++++++++++++- app/views/publications/index.html.erb | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) 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 %>
  2. -- 2.20.1