[Radiant] Newbie questions

2011-10-11 Thread debadatta
Hi all, I am new to radiant cms. I am using radiant 1.0.0 rc3. I have some questions. 1. Can anybody suggest me for the complete working tutorial for radiant cms. 2. I have installed it in ubuntu 11.04. While I am watching the view site. I am getting this type of errors like \n This is the

[Radiant] Re: Radiant 1.0.0rc3 assets image upload error

2011-10-11 Thread jsman
Thanks Will, Seems I didn't run the migrations on production database. Regards, Jeffrey On Oct 7, 2:47 pm, William Ross w...@spanner.org wrote: On 7 Oct 2011, at 13:07, jsman wrote: Hello fellow Radiant users, When uploading an image to the asset bucket in Radiant 1.0.0 RC3 I get the

Re: [Radiant] Extend ApplicationHelper

2011-10-11 Thread Jim Gay
On Sun, Oct 9, 2011 at 9:09 AM, Shanison lxsh...@gmail.com wrote: Hi all, I have some methods that needs to be used by all helpers in the extensions. So I need to add some methods to ApplicationHelper. I can't just create the application_helper.rb in my extensions, it will just overwrite the

Re: [Radiant] Extend ApplicationHelper

2011-10-11 Thread Shanison
Thanks for the reply. However if i create new helper module, it won't behave as application_helper. So there is not method inheritance. Then for other modules that i need to use some codes inside this helper, i need to include the new module?

Re: [Radiant] Extend ApplicationHelper

2011-10-11 Thread Jim Gay
On Tue, Oct 11, 2011 at 11:40 AM, Shanison lxsh...@gmail.com wrote: Thanks for the reply. However if i create new helper module, it won't behave as application_helper. So there is not method inheritance.  Then for other modules that i need to use some codes inside this helper, i need to include

Re: [Radiant] Extend ApplicationHelper

2011-10-11 Thread Shanison
You have the following application helper module ApplicationHelper def method_a end end Then if you have other helper module OtherHelper def b method_a # i can call method a here end end I am not sure how this actually works since module has not inheritance. So my question is if I

[Radiant] Creating blog from template

2011-10-11 Thread Bentley78
Good Afternoon all, I have a static template and I have been trying to create a blog from. I have the following in the body of the document: content div class=block h2Title/h2 p class=dateJan strong05spanth/span/strong/p pWords here/p /div /div

Re: [Radiant] Extend ApplicationHelper

2011-10-11 Thread Shanison
I have follow the code in help extension. But it doesn't seem to work. I am using Radiant 0.9.1. I have a a common_helper.rb under my extension my_extension/app/helpers/common_helper.rb. So under class MyExtensionExtension Radiant::Extension def activate