Merged updates from trunk into stable branch
[feedcatcher.git] / vendor / rails / actionpack / lib / action_view / helpers.rb
1 module ActionView #:nodoc:
2 module Helpers #:nodoc:
3 autoload :ActiveRecordHelper, 'action_view/helpers/active_record_helper'
4 autoload :AssetTagHelper, 'action_view/helpers/asset_tag_helper'
5 autoload :AtomFeedHelper, 'action_view/helpers/atom_feed_helper'
6 autoload :BenchmarkHelper, 'action_view/helpers/benchmark_helper'
7 autoload :CacheHelper, 'action_view/helpers/cache_helper'
8 autoload :CaptureHelper, 'action_view/helpers/capture_helper'
9 autoload :DateHelper, 'action_view/helpers/date_helper'
10 autoload :DebugHelper, 'action_view/helpers/debug_helper'
11 autoload :FormHelper, 'action_view/helpers/form_helper'
12 autoload :FormOptionsHelper, 'action_view/helpers/form_options_helper'
13 autoload :FormTagHelper, 'action_view/helpers/form_tag_helper'
14 autoload :JavascriptHelper, 'action_view/helpers/javascript_helper'
15 autoload :NumberHelper, 'action_view/helpers/number_helper'
16 autoload :PrototypeHelper, 'action_view/helpers/prototype_helper'
17 autoload :RecordIdentificationHelper, 'action_view/helpers/record_identification_helper'
18 autoload :RecordTagHelper, 'action_view/helpers/record_tag_helper'
19 autoload :SanitizeHelper, 'action_view/helpers/sanitize_helper'
20 autoload :ScriptaculousHelper, 'action_view/helpers/scriptaculous_helper'
21 autoload :TagHelper, 'action_view/helpers/tag_helper'
22 autoload :TextHelper, 'action_view/helpers/text_helper'
23 autoload :TranslationHelper, 'action_view/helpers/translation_helper'
24 autoload :UrlHelper, 'action_view/helpers/url_helper'
25
26 def self.included(base)
27 base.extend(ClassMethods)
28 end
29
30 module ClassMethods
31 include SanitizeHelper::ClassMethods
32 end
33
34 include ActiveRecordHelper
35 include AssetTagHelper
36 include AtomFeedHelper
37 include BenchmarkHelper
38 include CacheHelper
39 include CaptureHelper
40 include DateHelper
41 include DebugHelper
42 include FormHelper
43 include FormOptionsHelper
44 include FormTagHelper
45 include JavaScriptHelper
46 include NumberHelper
47 include PrototypeHelper
48 include RecordIdentificationHelper
49 include RecordTagHelper
50 include SanitizeHelper
51 include ScriptaculousHelper
52 include TagHelper
53 include TextHelper
54 include TranslationHelper
55 include UrlHelper
56 end
57 end