[Radiant] installation process

2009-05-23 Thread srinivasulu vecha
sir please send installation process of ruby on rails in windows operating system. ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant

Re: [Radiant] installation process

2009-05-23 Thread Mohit Sindhwani
srinivasulu vecha wrote: sir please send installation process of ruby on rails in windows operating system. This is not the correct mailing list for Rails installations. Please check: http://groups.google.com/group/rubyonrails-talk?hl=en By the way, there are enough guides online on how to

[Radiant] simple extension dev question

2009-05-23 Thread Joel Oliveira
Hi everyone - I'm trying to put together a really simple extension for the admin area that relies on a javascript library. I generated the extension and changed the contents of the main extension.rb file to contain def activate admin.page.index.add :top, 'new_header' end and placed a partial

Re: [Radiant] simple extension dev question

2009-05-23 Thread Hamish Rickerby
Hi Joel, I get custom javascript scripts into admin pages in the past I've just added them programmatically. If you call include_javascript(script) in your controller the javascript library should be spat out in the rendered HTML (for an index controller method). I've explained more

Re: [Radiant] simple extension dev question

2009-05-23 Thread Joel Oliveira
Hamish - First off thank you for the info and the link - it went straight into my del.icio.us bookmarks :). Second - It sounds like this example is for an admin extension's controller - yes? I'm looking to add an extra JS script tag for, ideally, the edit page, not new views within the admin.