Re: [Radiant] Localization

2008-12-19 Thread Haselwanter Edmund
Hi, On 19.12.2008, at 08:46, Istvan Hoka wrote: The extension is in use in production on two sites so far: http://www.atp-exodus.ro , (Romanian, English, German) and http://euro5.ro (Romanian and English). The version on github is slightly outdated but I will push my local changes asap if

[Radiant] Re: E-Commerce, Anyone?

2008-12-19 Thread Benedikt Eickhoff
Todd Mcgregor wrote: > I need to build a site with shopping cart functionality and I was hoping > to develop the site with Radiant. Has anyone built an e-commerce site > with Radiant? Any ideas, tips or tricks you'd like to share? > > Thanks. You may want to have a look at http://railskits.com/ .

Re: [Radiant] PageAttachments migration looking for Admin::PagesController

2008-12-19 Thread Tim Gossett
It appears that I'm to blame for rage_attachments only supporting change to the new codebase. Because this is going to affect a whole lot of extensions, I think it'd be a good idea for us to figure out if and how an extension might support Radiant versions both before and after 0.7.0-RC1. I can th

[Radiant] Re: Restrict Access to Tabs in Admin UI

2008-12-19 Thread Todd Mcgregor
Todd Mcgregor wrote: > Is there any way to restrict access to the tabs that are displayed in > the admin UI? For example, I installed the paperclipped extension, which > adds the "Assets" tab, and I'd like to restrict that tab to a handful of > users, or better yet to a group set up using the page

Re: [Radiant] PageAttachments migration looking for Admin::PagesController

2008-12-19 Thread Tim Gossett
It looks like this works: (Admin::PagesController ? Admin::PagesController : Admin::PageController).send :include, PageAttachmentsInterface Simple enough, right? -- Tim ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.o

[Radiant] Radius tags in Textile

2008-12-19 Thread Jordan Isip
Is there a way to disable radius line-breaks when using Textile? Since I have a few nested radius tags, it is outputting a bunch of tags. ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site:

[Radiant] Extension Migrations Rollback

2008-12-19 Thread Rick Mendes
I am working on a new project using Radiant 0.6.9. I float in and out of Rails projects that do and do not use Radiant. I may have been spoiled by coming off of a Rails 2.1 project without Radiant where I had the db:rollback task at my disposal. I am doing all of my development on this project in

Re: [Radiant] PageAttachments migration looking for Admin::PagesController

2008-12-19 Thread Erik Ostrom
Won't that fail with a NameError when it tries to evaluate Admin::PagesController in 0.6.9? Here's a succinct, if not pretty, way of doing it (untested on edge, but it seems right): (Admin::PagesController rescue Admin::PageController).send :include, ... --Erik On Fri, Dec 19, 2008 at 6:44