[Radiant] Routes and Custom Pages Types

2009-08-25 Thread Johannes Fahrenkrug
Hi, I have a custom page type called TripPage. I want to be able to do create a new page with the /trips slug and then do this: /trips/2640024 to display the trip with the id 2630024. I know I could easily do /trips?id=2630024 and access that via @request.params[:id], but I want to make the

Re: [Radiant] Routes and Custom Pages Types

2009-08-25 Thread Sean Cribbs
Johannes, Your TripPage should override Page#find_by_url and return itself or an appropriate child page for URLs that match your scheme. Way back in the day we did that for KCKCC's syllabus pages - wish I still had that example around. Sean Johannes Fahrenkrug wrote: Hi, I have a custom

Re: [Radiant] Routes and Custom Pages Types

2009-08-25 Thread Andrew Neil
On Tue, Aug 25, 2009 at 2:13 PM, Sean Cribbs seancri...@gmail.com wrote: Johannes, Your TripPage should override Page#find_by_url and return itself or an appropriate child page for URLs that match your scheme. Way back in the day we did that for KCKCC's syllabus pages - wish I still had

[Radiant] Is there a way to set the scope for the Search extension?

2009-08-25 Thread Nate
I have a recipe section on a project that has two sections inside it. (recipes) (restaurant favorites)(personal recipes) I would like to aggregate the two recipe subsections and perform searches on only those tow sections. Is it possible without heavily modifying the