Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Jeroen Janssen
On Sat, Jan 31, 2009 at 7:48 AM, Adam van den Hoven adam.vandenho...@gmail.com wrote: I was talking about editing radiant directly and bending to my will but writing a script to handle it is probably smarter. Sigh I do hate it when lofty ideas are shot down. :) Now if I could only bypass the

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Mohit Sindhwani
Adam van den Hoven wrote: I was talking about editing radiant directly and bending to my will but writing a script to handle it is probably smarter. Sigh I do hate it when lofty ideas are shot down. :) Now if I could only bypass the interactive portions of the bootstrap. My usual way to do

Re: [Radiant] Basecamp

2009-01-31 Thread nurilized
I couldnt manage to see the prototype, serve installed and prototype.git pulled but it gives me the error: Internal Server Error no such file to load -- haml ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] Basecamp

2009-01-31 Thread nurilized
Had to install haml gem, sorry. Fixed. On Sat, Jan 31, 2009 at 3:32 PM, nurilized nurili...@googlemail.com wrote: I couldnt manage to see the prototype, serve installed and prototype.git pulled but it gives me the error: Internal Server Error no such file to load -- haml

Re: [Radiant] Rake census:layouts

2009-01-31 Thread Andrew Neil
On 12 Oct 2008, at 16:32, Andrew Neil wrote: I just wrote a rake task for showing stats about how many pages are using each Layout. I'm spring cleaning a site which uses unique layouts for quite a few pages. There are a few old drafts which are no longer in use, so I wanted to know which

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Andrew Neil
I wonder if rails templates could be used for setting up a fresh Radiant site to taste: http://m.onkey.org/2008/12/4/rails-templates That would be very nice. Drew On 31 Jan 2009, at 06:03, Mohit Sindhwani wrote: Adam van den Hoven wrote: Absolutely. I'm talking about tailoring

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Jeroen Janssen
On Sat, Jan 31, 2009 at 3:13 PM, Andrew Neil andrew.jr.n...@googlemail.com wrote: I wonder if rails templates could be used for setting up a fresh Radiant site to taste: http://m.onkey.org/2008/12/4/rails-templates That would be very nice. If I read correctly, this feature would

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Sean Cribbs
I'm working on it, I promise! Had a few bumps in the road, but things are rolling smoothly now, hopefully. Bear in mind that Radiant Machine won't likely allow you to run your own extensions, at least initially. Part of making it viable to automate a large number of deployments is to limit

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Sean Cribbs
rake db:bootstrap takes a number of environment variable options. Take for example, this line from the script for demo.radiantcms.org: rake production db:bootstrap ADMIN_NAME=Administrator ADMIN_USERNAME=admin ADMIN_PASSWORD=radiant

Re: [Radiant] Basecamp

2009-01-31 Thread Sean Cribbs
You'll need the Haml gem. `gem install haml` Sean nurilized wrote: I couldnt manage to see the prototype, serve installed and prototype.git pulled but it gives me the error: Internal Server Error no such file to load -- haml ___ Radiant mailing list

Re: [Radiant] Rake census:layouts

2009-01-31 Thread Jim Gay
+1 core worthy On Jan 31, 2009, at 8:58 AM, Andrew Neil wrote: On 12 Oct 2008, at 16:32, Andrew Neil wrote: I just wrote a rake task for showing stats about how many pages are using each Layout. I'm spring cleaning a site which uses unique layouts for quite a few pages. There are a few

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Andrew Neil
On 31 Jan 2009, at 06:48, Adam van den Hoven wrote: I was talking about editing radiant directly and bending to my will but writing a script to handle it is probably smarter. Sigh I do hate it when lofty ideas are shot down. :) Now if I could only bypass the interactive portions of the

[Radiant] Extension UI - Opinions requested.

2009-01-31 Thread Jeffrey Jones
Howdy all. I am currently making an extension to embed Google Maps into radiant. It is coming along nicely but now I have a question about the UI (Never my strong point) and what you lot would think is better. * Currently the index page lists all the Google Maps currently setup (Name, Desc,

Re: [Radiant] Extension UI - Opinions requested.

2009-01-31 Thread Sean Cribbs
Have screenshots? That might help us get a better picture of what you mean. Sean Jeffrey Jones wrote: Howdy all. I am currently making an extension to embed Google Maps into radiant. It is coming along nicely but now I have a question about the UI (Never my strong point) and what you lot

Re: [Radiant] paperclipped

2009-01-31 Thread Steven Southard
I've resolved the problem or at least it works okay now. My code looked like this: def flush_deletes #:nodoc: logger.info([paperclip] Deleting files for #{name}) @queued_for_delete.each do |path| begin logger.info([paperclip] - #{path})

Re: [Radiant] Extension UI - Opinions requested.

2009-01-31 Thread Jeffrey Jones
Nothing really useful, I suppose it boils down to. Parents (Level 1) have children (Level 2), there are only two levels, should those children (level 2) be displayed in the same manner as children of a page on the main pages tab? Or should the children only be displayed in the show action of

[Radiant] Bad Gateway Error

2009-01-31 Thread Peter Soutter
Hi, I'm hoping that someone might be able to help me. I run a website www.goodtravelcompany.com, which was created using radiant. For someone unexplained reason the website is down and the following error message is being displayed: Bad Gateway The proxy server received an invalid response

Re: [Radiant] Bad Gateway Error

2009-01-31 Thread john muhl
It looks like Apache is unable to connect to whatever is behind it serving the ruby requests. Make sure your mongrels or passenger or whatever are still running. On Sat, Jan 31, 2009 at 10:48 AM, Peter Soutter pe...@goodtravelcompany.com wrote: Hi, I'm hoping that someone might be able to help

Re: [Radiant] Bad Gateway Error

2009-01-31 Thread Jeffrey Jones
Sounds like the radiant app is running on mongrel and apache is proxying to it. It also sounds like the mongrel process (which Radiant uses) has stopped running. You will have to check that the mongrel process is running by SSHing into your account and seeing if it is running using ps. If it

Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-31 Thread Adam van den Hoven
Ah ha! Ok. well now I have something to work with! I think that this will be more than adequate for my needs. Thanks! On 31-Jan-09, at 6:30 AM, Sean Cribbs wrote: rake db:bootstrap takes a number of environment variable options. Take for example, this line from the script for