public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/technoweenie/mephisto.git
Click here to lend your support to: mephisto and make a donation at www.pledgie.com !
allow easier liquid extension

git-svn-id: http://svn.techno-weenie.net/projects/mephisto/trunk@2950 
567b1171-46fb-0310-a4c9-b4bef9110e78
technoweenie (author)
Mon Aug 13 18:00:58 -0700 2007
commit  691409783d9bce02f41f0624198939f9712c5013
tree    671e3d2696b65fdcb341fc293b398ac7c186786e
parent  dab37b1e2ada5cd4f73773340e9d49c30095b7e9
...
10
11
12
13
14
15
16
 
 
17
18
19
...
10
11
12
 
 
 
 
13
14
15
16
17
0
@@ -10,10 +10,8 @@ ActiveRecord::Base.observers = [:article_observer, :comment_observer]
0
 
0
 class << Dispatcher
0
   def register_liquid_tags
0
- [CoreFilters, DropFilters, UrlFilters].each { |f| Liquid::Template.register_filter f }
0
- Liquid::Template.register_tag(:textile, Mephisto::Liquid::Textile)
0
- Liquid::Template.register_tag(:commentform, Mephisto::Liquid::CommentForm)
0
- Liquid::Template.register_tag(:head, Mephisto::Liquid::Head)
0
+ Mephisto.liquid_filters.each { |mod| Liquid::Template.register_filter mod }
0
+ Mephisto.liquid_tags.each { |name, klass| Liquid::Template.register_tag name, klass }
0
   end
0
   
0
   def reset_application_with_plugins!

Comments

    No one has commented yet.