Re: [Radiant] How can I create a fork of an extension at Github?

2009-09-15 Thread Andrew Neil
If you are logged in to github, you should see a button labelled fork when you visit the home page for a repository. Just hit that button, and github will create your own fork of the project in question. Once that's done, you can clone your fork of the repository onto your local machine: click the

Re: [Radiant] Using Page_Attachments and Paperclipped Simultaneously?

2009-09-15 Thread Mohit Sindhwani
Alexis Masters wrote: Hello! I've been trying without success to install these two extensions simultaneously. I would use only paperclipped if it were not for the gallery extension, which seems to need page_attachments to operate. Are any of you using either the gallery extension without

[Radiant] Passenger vs thin/mongrel/ebb

2009-09-15 Thread Ollivier Robert
Hello, I've been using mongrel then thin for my small website, with two instances (I have a dual core machine) withlittle or no problem (except when I tried to run 0.8.0, more on this after I'll have tried 0.8.1). Now, I've been hearing about the so called mod_rails aka Passenger. Is there any

Re: [Radiant] Passenger vs thin/mongrel/ebb

2009-09-15 Thread Jim Gay
On Tue, Sep 15, 2009 at 10:01 AM, Ollivier Robert kel...@gmail.com wrote: Hello, I've been using mongrel then thin for my small website, with two instances (I have a dual core machine) withlittle or no problem (except when I tried to run 0.8.0, more on this after I'll have tried 0.8.1).  Now,

Re: [Radiant] Passenger vs thin/mongrel/ebb

2009-09-15 Thread Charlie Robbins
Passenger does work well with Radiant, but in some instances you might need to chown or chgrp certain directories to the DefaultPassengerUser that you've specified in your respective config file (Apache or nginx). Some places I've had to do this recently (assuming radiant mysite) (...)/mysite

Re: [Radiant] Passenger vs thin/mongrel/ebb

2009-09-15 Thread Charlie Robbins
I was running Gallery. Don't really need it anymore. Really wish someone could just introduce the concept of a Gallery (or Group of assets) to Paperclipped. Having two separate extensions managing my assets seems redundant to me. Charlie On Tue, Sep 15, 2009 at 11:25 AM, Nate Turnage

Re: [Radiant] Passenger vs thin/mongrel/ebb

2009-09-15 Thread Steven Southard
As far as paperclipped doing a group of assets it's pretty much there. You can attach images to a page and then using r:assets:each / display all those images. Steven On Sep 15, 2009, at 10:28 AM, Charlie Robbins wrote: I was running Gallery. Don't really need it anymore. Really wish

[Radiant] Per-request caching?

2009-09-15 Thread Rufo Sanchez
Anyone have any pointers toward the best way of implementing per-request caching in Radiant 0.8.x? The basic idea is that we're writing a bunch of extensions to handle a membership database, user login, etc. - logged-in users may have different options appear, will have their name in a corner of

Re: [Radiant] Per-request caching?

2009-09-15 Thread Sean Cribbs
Rufo, The key is adding the correct caching-related headers that will be detected by Rack::Cache. You can do this automatically in your controllers using expires_in, expires_now, and the like. I suggest checking out the ActionController API for more details. Sean Rufo Sanchez wrote:

[Radiant] Re: Radiant Digest, Vol 42, Issue 18

2009-09-15 Thread Alexis Masters
Thanks, Mohit. That vote of confidence is just what I needed to hear. Smiles, ~ Alexis On Sep 15, 2009, at 7:24 AM, radiant-requ...@radiantcms.org wrote: Message: 8 Date: Tue, 15 Sep 2009 19:15:31 +0800 From: Mohit Sindhwani t...@onghu.com Subject: Re: [Radiant] Using Page_Attachments and

[Radiant] Blade Interface merged into edge

2009-09-15 Thread Sean Cribbs
Radiant users, John Long and I just merged the blade branch into the master branch. This includes a large number of changes to the user interface and some fundamental API changes (especially related to the navigation tabs). The work is by no means done on the interface, but now you can

Re: [Radiant] Per-request caching?

2009-09-15 Thread Rufo Sanchez
Gah - I *knew* I was leaving something out of my explanation. :-) The main point is that there are Radius tags that will display certain information on *all* pages on the system that shouldn't be cached when logged in - the caching isn't limited to just our extension's controllers, I can handle

Re: [Radiant] Blade Interface merged into edge

2009-09-15 Thread John W. Long
For those of you who are developing extensions for Radiant, please update them to work with the new interface and give us your feedback on what your like and dislike. The most significant changes in the UI have been made to help extension developers keep things organized. --John On Sep

Re: [Radiant] Per-request caching?

2009-09-15 Thread Sean Cribbs
Radiant::Cache doesn't discriminate between users who are logged in or not. IMO it would be best to either: 1) Turn off all caching by removing the Radiant::Cache middleware. 2) Load your user-specific stuff into the page using Ajax, allowing the caching to still occur. Sean Rufo Sanchez

Re: [Radiant] Re: Radiant Digest, Vol 42, Issue 18

2009-09-15 Thread Mohit Sindhwani
Alexis Masters wrote: Thanks, Mohit. That vote of confidence is just what I needed to hear. Smiles, ~ Alexis Cheers! Ping me if you have any trouble. Cheers, Mohit. 9/16/2009 | 1:29 AM. ___ Radiant mailing list Post: Radiant@radiantcms.org

Re: [Radiant] Per-request caching?

2009-09-15 Thread Cristian Duma
one option is what we did on member extensionhttp://github.com/Aissac/radiant-member-extension/blob/master/lib/site_controller_member_extensions.rb. You need to add a filter to the site_controller that tells it to not cache specific pages (in our case the pages that need member registration). This

Re: [Radiant] Small obstacle for a newby installing settings and paperclipped extentions

2009-09-15 Thread Eric de Hont
Mohit Sindhwani schreef: Eric de Hont wrote: Hi all, Being a newbie to Radiant I have encountered -and gloatsolved/gloat- a little problem. I'll describe the problem and the solution so other people might learn from the mistakes I made. Perhaps a more experienced person can give some

[Radiant] Radiant Phusion Passenger Issue

2009-09-15 Thread Thembile
Hi all, I installed Radiant 0.8.1 on Apache using Passenger on my Ubuntu linux system. I did not install it on the DocumentRoot but at /blog/ (RailsBaseURI /blog Directive) What I notice is that in the admin, I cannot expand the Children pages of Articles, I get an error: The requested URL

Re: [Radiant] Radiant Phusion Passenger Issue

2009-09-15 Thread Jim Gay
On Sep 15, 2009, at 2:28 PM, Thembile wrote: Hi all, I installed Radiant 0.8.1 on Apache using Passenger on my Ubuntu linux system. I did not install it on the DocumentRoot but at /blog/ (RailsBaseURI /blog Directive) What I notice is that in the admin, I cannot expand the Children pages

Re: [Radiant] Blade Interface merged into edge

2009-09-15 Thread john muhl
On Tue, Sep 15, 2009 at 11:10 AM, John W. Long m...@johnwlong.com wrote: For those of you who are developing extensions for Radiant, please update them to work with the new interface and give us your feedback on what your like and dislike. The most significant changes in the UI have been made

Re: [Radiant] Blade Interface merged into edge

2009-09-15 Thread Jim Gay
On Sep 15, 2009, at 3:47 PM, john muhl wrote: On Tue, Sep 15, 2009 at 11:10 AM, John W. Long m...@johnwlong.com wrote: For those of you who are developing extensions for Radiant, please update them to work with the new interface and give us your feedback on what your like and dislike. The

Re: [Radiant] Blade Interface merged into edge

2009-09-15 Thread John W. Long
On Sep 15, 2009, at 3:47 PM, john muhl wrote: i sent a bunch of feedback to the list sometime ago about the blade ui but it was never responded to. should i bother re-sending that? or was the lack of response the response? I must have missed that somehow. Please repost it. -- John Long

Re: [Radiant] Blade Interface merged into edge

2009-09-15 Thread john muhl
On Tue, Sep 15, 2009 at 3:15 PM, John W. Long m...@johnwlong.com wrote: On Sep 15, 2009, at 3:47 PM, john muhl wrote: i sent a bunch of feedback to the list sometime ago about the blade ui but it was never responded to. should i bother re-sending that? or was the lack of response the

Re: [Radiant] Radiant Phusion Passenger Issue

2009-09-15 Thread Thembile
Thanks! On Tue, Sep 15, 2009 at 11:59 AM, Jim Gay j...@saturnflyer.com wrote: On Sep 15, 2009, at 2:28 PM, Thembile wrote: Hi all, I installed Radiant 0.8.1 on Apache using Passenger on my Ubuntu linux system. I did not install it on the DocumentRoot but at /blog/ (RailsBaseURI /blog

Re: [Radiant] Small obstacle for a newby installing settings and paperclipped extentions

2009-09-15 Thread Mohit Sindhwani
Eric de Hont wrote: [snip] Hi Eric, There are a couple of things to keep in mind when working with Radiant, Thanks for enlightening these points. You're most welcome :) Welcome to Radiant Cheers, Mohit. 9/16/2009 | 9:45 AM. ___ Radiant mailing