Mephisto Comment Notification Mod
I wanted to be able to click a link in my email to see the comment it talked about. So, I modified Luke Redpath’s Comment Notification Plugin to give that to me. First, I had to do some script/console action: >> s = Site.find_first => #<Site:0xb747e014 @attributes={“current_theme_path”=>”wibbish-mephisto”,#… #… >> s.host=’www.ralree.info’ => “www.ralree.info” >> s.save => true >> quit Next, I did a small model modification: # app/models/article.rb, in the public section def full_external_link ["http://", site.host, full_permalink].join(“”) end And a slight [...]

