-
Notifications
You must be signed in to change notification settings - Fork 26
/
init.rb
52 lines (45 loc) · 2.04 KB
/
init.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
# Redmine Xapian is a Redmine plugin to allow attachments searches by content.
#
# Xabier Elkano, Karel Pičman <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require 'redmine'
require "#{File.dirname(__FILE__)}/lib/redmine_xapian"
Redmine::Plugin.register :redmine_xapian do
name 'Xapian search plugin'
author 'Xabier Elkano/Karel Pičman'
url 'https://www.redmine.org/plugins/xapian_search'
author_url 'https://github.com/xelkano/redmine_xapian/graphs/contributors'
description 'With this plugin you will be able to do searches by file name and by strings inside your documents'
version '3.0.7'
requires_redmine version_or_higher: '5.1.0'
languages = %w[danish dutch english finnish french german german2 hungarian italian kraaij_pohlmann
lovins norwegian porter portuguese romanian russian spanish swedish turkish]
settings partial: 'settings/redmine_xapian_settings',
default: {
'enable' => true,
'index_database' => File.expand_path('file_index', Rails.root),
'stemming_lang' => 'english',
'stemming_strategy' => 'STEM_SOME',
'stem_langs' => languages,
'save_search_scope' => false,
'enable_cjk_ngrams' => false
}
end
Redmine::Search.map do |search|
search.register :attachments
search.register :repofiles
end