Re: [Radiant] Re: show upcoming events

2010-06-18 Thread Josh French
, 2010, at 7:36 AM, Josh French wrote: If you're on edge Brian Loomis Brian Loomis

Re: [Radiant] New Feature: Add Child Menu

2010-07-21 Thread Josh French
I was curious to see if PageFactory would still work with these changes and, as I guessed, it did not. PageFactory now works on edge. You'll need to swap out the add-child menu though: config.extensions -= [:page_types] Let me know if you run into anything I didn't catch. j

Re: [Radiant] search custom extension

2010-08-03 Thread Josh French
On Aug 2, 2010, at 9:21 PM, sethg wrote: I have also downloaded the search extension, I was wondering what I would put in the search extension in order to search the queens model too. Which search extension? There are a few. - - - - - - - - - - - - - - - - - - - - - - - Josh French Senior

Re: [Radiant] create new page on heroku

2010-08-12 Thread Josh French
We ran into this before on another extension, there's an SQL difference with Postgres that affects some group queries. I just need to remember which one and I'll apply the fix. j On Aug 12, 2010, at 6:55 PM, Steven Southard wrote: With 9.1 on Heroku I am having a problem saving new pages.

Re: [Radiant] error creating file page_parts

2010-09-16 Thread Josh French
The error occurred while evaluating nil.include? Is this happening in development mode? If so, it is probably my favorite* ActiveRecord bug: https://rails.lighthouseapp.com/projects/8994/tickets/1339-arbase-should-not-be-nuking-its-children-just-because-it-lost-interest The workaround is to

Re: [Radiant] error creating file page_parts

2010-09-16 Thread Josh French
Mongrel running in dev mode - still getting the error. In production - no error. You won't see this in production thanks to class caching; this only happens in dev mode, when certain modules fail to reload cleanly between requests. I created a new 0.9.1 project using just the extensions and

Re: [Radiant] Making an Extension with Controllers/Views Publicly Accessible

2010-10-19 Thread Josh French
Hey Jeff, Add `no_login_required` to any public controller that descends from SiteController. It's defined here: http://github.com/radiant/radiant/blob/master/lib/login_system.rb#L85 On Oct 19, 2010, at 4:32 PM, Jeff Casimir wrote: Hey all, I'm working on an extension that has

Re: [Radiant] Re: Caching and Application/Site Controllers

2010-10-22 Thread Josh French
So do you think it's possible to add the logic to a middleware object and add the middleware object to the stack? Actually... wouldn't that work as long as it was inserted before Rack::Cache? Can someone more familiar with the caching layer confirm/deny? On Oct 21, 2010, at 10:38 PM, Stan