kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
13 years ago
|
class Widget < ActionView::Base
|
||
|
include ActionView::Helpers::TagHelper
|
||
|
include ActionView::Helpers::AssetTagHelper
|
||
|
include ActionView::Helpers::FormTagHelper
|
||
|
include ActionView::Helpers::JavaScriptHelper
|
||
|
include ReportingHelper
|
||
|
|
||
|
attr_accessor :output_buffer, :controller, :config, :_content_for, :_routes, :subject
|
||
|
|
||
|
extend ProactiveAutoloader
|
||
|
|
||
|
def self.new(subject)
|
||
|
super(subject).tap do |o|
|
||
|
o.subject = subject
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def current_language
|
||
|
::I18n.locale
|
||
|
end
|
||
|
|
||
|
def protect_against_forgery?
|
||
|
false
|
||
|
end
|
||
|
|
||
|
def method_missing(name, *args, &block)
|
||
|
begin
|
||
|
controller.send(name, *args, &block)
|
||
|
rescue NoMethodError
|
||
|
raise NoMethodError, "undefined method `#{name}' for #<#{self.class}:0x#{self.object_id}>"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
module RenderWidgetInstanceMethods
|
||
|
def render_widget(widget, subject, options = {}, &block)
|
||
|
i = widget.new(subject)
|
||
|
if Rails.version.start_with? "3"
|
||
|
i.config = config
|
||
|
i._routes = _routes
|
||
|
else
|
||
|
i.output_buffer = ""
|
||
|
end
|
||
|
i._content_for = @_content_for
|
||
|
i.controller = respond_to?(:controller) ? controller : self
|
||
|
i.render_with_options(options, &block)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
ActionView::Base.send(:include, Widget::RenderWidgetInstanceMethods)
|
||
|
ActionController::Base.send(:include, Widget::RenderWidgetInstanceMethods)
|
||
|
if Rails.version.start_with? "2"
|
||
|
class ::String; def html_safe; self; end; end
|
||
|
end
|
||
|
class ::String; def write(s); concat(s); end; end
|