forked from ndl/wiki_external_filter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.rb
50 lines (41 loc) · 1.8 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
require 'redmine'
#require 'wiki_external_filter_patch'
#require 'wiki_external_filter_helper'
Rails.logger.info 'Starting wiki_external_filter plugin for Redmine'
$wiki_external_filter_config = (File.dirname(__FILE__) + "/config/wiki_external_filter.yml")
Redmine::Plugin.register :wiki_external_filter do
name 'Wiki External Filter Plugin'
author 'Alexander Tsvyashchenko'
description 'Processes given text using external command and renders its output'
author_url 'http://www.ndl.kiev.ua'
version '0.0.2'
settings :default => {'cache_seconds' => '0'}, :partial => 'wiki_external_filter/settings'
config = WikiExternalFilterHelper.load_config
Rails.logger.debug "Config: #{config.inspect}"
if config
config.keys.each do |name|
Rails.logger.info "Registering #{name} macro with wiki_external_filter"
Redmine::WikiFormatting::Macros.register do
info = config[name]
desc info['description']
macro name do |obj, args|
m = WikiExternalFilterHelper::Macro.new(self, args.to_s, obj.respond_to?('page') ? obj.page.attachments : nil, name, info)
m.render
end
# code borrowed from wiki latex plugin
# code borrowed from wiki template macro
desc info['description']
macro (name + "_include").to_sym do |obj, args|
page = Wiki.find_page(args.to_s, :project => @project)
raise 'Page not found' if page.nil? || !User.current.allowed_to?(:view_wiki_pages, page.wiki.project)
@included_wiki_pages ||= []
raise 'Circular inclusion detected' if @included_wiki_pages.include?(page.title)
@included_wiki_pages << page.title
m = WikiExternalFilterHelper::Macro.new(self, page.content.text, page.attachments, name, info)
@included_wiki_pages.pop
m.render_block(args.to_s)
end
end
end
end
end