not XML, it ends up failing. "init.rb" has a hook adding RedmineDmsf::NoParse into Rails middleware a step before content parsing occurs, and will rewrite content type on put method, within specified target area (identified in init.rb). Controller has been added to override options function (maybe removed later on).
12 lines
394 B
Ruby
12 lines
394 B
Ruby
require 'redmine_dmsf/patches/custom_fields_helper'
|
|
require 'redmine_dmsf/patches/acts_as_customizable'
|
|
require 'redmine_dmsf/patches/project_patch'
|
|
require 'redmine_dmsf/webdav'
|
|
require 'redmine_dmsf/no_parse'
|
|
|
|
module RedmineDmsf
|
|
end
|
|
|
|
#Add plugin's view folder into ActionMailer's paths to search
|
|
ActionMailer::Base.append_view_path(File.expand_path(File.dirname(__FILE__) + '/../app/views'))
|