annotate vendor/plugins/rfpdf/lib/rfpdf.rb @ 1478:5ca1f4a47171 bibplugin_db_migrations

Close obsolete branch bibplugin_db_migrations
author Chris Cannam
date Fri, 30 Nov 2012 14:40:50 +0000
parents cbce1fd3b1b7
children
rev   line source
Chris@0 1 # Copyright (c) 2006 4ssoM LLC <www.4ssoM.com>
Chris@0 2 #
Chris@0 3 # The MIT License
Chris@0 4 #
Chris@0 5 # Permission is hereby granted, free of charge, to any person obtaining a copy
Chris@0 6 # of this software and associated documentation files (the "Software"), to deal
Chris@0 7 # in the Software without restriction, including without limitation the rights
Chris@0 8 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Chris@0 9 # copies of the Software, and to permit persons to whom the Software is
Chris@0 10 # furnished to do so, subject to the following conditions:
Chris@0 11 #
Chris@0 12 # The above copyright notice and this permission notice shall be included in
Chris@0 13 # all copies or substantial portions of the Software.
Chris@0 14 #
Chris@0 15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Chris@0 16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Chris@0 17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Chris@0 18 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Chris@0 19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Chris@0 20 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
Chris@0 21 # THE SOFTWARE.
Chris@0 22
Chris@441 23 require 'action_controller'
Chris@441 24 require 'action_view'
Chris@0 25
Chris@441 26 require 'rfpdf/action_controller'
Chris@441 27 require 'rfpdf/action_view'
Chris@441 28
Chris@441 29 require 'rfpdf/template_handler/compile_support'
Chris@441 30
Chris@441 31 require 'rfpdf/template_handlers/base'
Chris@441 32
Chris@441 33
Chris@441 34 class ActionController::Base
Chris@441 35 include RFPDF::ActionController
Chris@441 36 end
Chris@441 37
Chris@441 38 class ActionView::Base
Chris@441 39 include RFPDF::ActionView
Chris@441 40 end