[Radiant] Re: Using Pow presents a problem

2011-08-29 Thread Jomz
I have also seen this. I don't know the exact reasons, but you can 'fix' it with this setting in development.rb: config.cache_classes = true This also means however that you will have to restart the server way more often to see your changes.. On Aug 29, 9:18 pm, Dave hunkyb...@gmail.com wrote:

[Radiant] Re: Can Radiant be something for my site

2011-08-29 Thread Jomz
I don't see why not. Easily! On Aug 27, 12:48 pm, roelof rwob...@hotmail.com wrote: Hello, Im looking for a new CMS for my site. Can I make this site (http://www.tamarawobben.nl) in Radiant. Roelof

[Radiant] Re: Just before write parse of pages in extensions.

2011-08-29 Thread Jomz
Somewhat stabbing in the dark here, but I would probably put something like this in the extension's activate method; Page.send(:include, HamlHack::PagePartExtensions) And in lib/haml_hack/page_extensions.rb: module HamlHack::PageExtensions def self.included(base) base.class_eval do

[Radiant] Re: Attachments with Database Mailer?

2011-07-30 Thread Jomz
hi Marshal, Actually, I've been planning to merge the attachments support into the master branch and then into the official fork and gem. My fork has gotten a bit nasty over the years though, so I suspect it will take me some time to go through all the code.. I'll get to it eventually, but if

[Radiant] Re: Attachments with Database Mailer?

2011-07-25 Thread Jomz
hi Rachel, My fork of mailer supports attachments: https://github.com/jomz/radiant-mailer-extension I have combined it with database_mailer succesfully, but the behavior is not what you're after.. For some reason, when database_mailer is installed, mail attachments break, but they do get saved

[Radiant] Re: Globalize2 bug?

2011-04-05 Thread Jomz
with other extensions.. It has recently been refactored, and is much more robust now. Please try again with https://github.com/jomz/radiant-globalize2-extension (or gem install radiant-globalize2-extension ), and let me know if you still encounter problems. On Mar 4, 7:58 pm, wlai will@gmail.com

[Radiant] Re: Conditional tags wiki info: typo or user ignorance?

2011-03-04 Thread Jomz
r:if_url matches=^/ doesn't make much sense.. It means any url starting with a /, so ... any url. This will indeed always render. r:unless_url matches=^/about$ means if we are not on the /about page, so this will also render on every page except the about page. I think this is what you're after: