[Radiant] Problems with Radiant on site5

2010-09-26 Thread Mamed Mamedov
Hello all, I have to start my next project on site5 hosting with SSH access. So, after several days of hard work I have successfully installed radiant gem and created a project there. Thanks to site5 support team. By there are some problems with radiant itself. First, I have decided to use radian

[Radiant] Re: Problems with Radiant on site5

2010-09-26 Thread Mamed Mamedov
Additionaly idea: may be this is connected with radiant I18n features.. Is there any way to disable them? Best Regards, Mamed Mamedov On Sun, Sep 26, 2010 at 2:50 PM, Mamed Mamedov wrote: > Hello all, > > I have to start my next project on site5 hosting with SSH access. So, after > several day

Re: [Radiant] Re: Problems with Radiant on site5

2010-09-26 Thread Jim Gay
On Sun, Sep 26, 2010 at 5:52 AM, Mamed Mamedov wrote: > Additionaly idea: may be this is connected with radiant I18n features.. Is > there any way to disable them? > > Best Regards, > Mamed Mamedov > > > On Sun, Sep 26, 2010 at 2:50 PM, Mamed Mamedov wrote: > >> Hello all, >> >> I have to start m

Re: [Radiant] Re: feed_me extension for metaweblogapi

2010-09-26 Thread Jim Gay
I'm not very familiar with ActionWebService, but you could check other forks for support of rails 3 http://github.com/datanoise/actionwebservice/network Are you running the rails 3 branch of radiant? Because we bundle rails 2.3.8 with the current gem (0.9.1) On Fri, Sep 24, 2010 at 8:12 AM, Bobby

Re: [Radiant] Gallery Extension in Radiant 8.1

2010-09-26 Thread Jim Gay
On Thu, Sep 23, 2010 at 1:32 PM, Alexis Masters wrote: > Hello List : > > I have an older 8.1 Radiant site with the Gallery extension, installed in > early 2009. The client has a fairly large collection of images up there. > > The gallery on this site has never worked properly, though galleries o

Re: [Radiant] anyway to use form_for, fields_for inside radiant extension tags?

2010-09-26 Thread Jim Gay
On Tue, Sep 21, 2010 at 4:21 PM, swartz wrote: > I'm working on a bit of an extension for processing survey data (idea > from and partially based on questionnaire extension that is no longer > maintained). > > I'm trying to use form_for, fields_for and various helpers that rails > provides inside

Re: [Radiant] regexpr problem

2010-09-26 Thread Jim Gay
On Tue, Sep 21, 2010 at 4:50 PM, Horst Rischbode wrote: >  Hi, > > this is really strange. In my pages, I have the following code: > > >    # do something brilliant > > > This regexpr matches to: > /articles/2010/08/ > /articles/2010/08/07/xyz > > All tests with several online regexpr matchers m

Re: [Radiant] Re: Problems with Radiant on site5

2010-09-26 Thread Mamed Mamedov
Hello Jim :) Thanks for your reply to this topic. I am working with radiant more than 1 year, and have many installations of radiant on many places. But this problem is the first time happens. So, everything works OK - when I have disabled cache mechanism of radiant... Happily, this project is not

Re: [Radiant] Re: Problems with Radiant on site5

2010-09-26 Thread Mamed Mamedov
Additionaly, I have found how my "locale" problems works ok: I have added following code to application_controller.rb of radiant: before_filter :set_locale def set_locale # if params[:locale] is nil then I18n.default_locale will be used I18n.locale = params[:locale] end Now it wor

Re: [Radiant] regexpr problem

2010-09-26 Thread Horst Rischbode
Hi Jim, I use this construction within my layout to check, if I am on an article page or some kind of index pages. Some things only should be shown on single article pages (rating, next/previous page,). This is the way, which is given by the blog_tags extension. Is there any other way,

[Radiant] Re: anyway to use form_for, fields_for inside radiant extension tags?

2010-09-26 Thread swartz
Hi Jim, Thank you for replying. I have been down that road before, I had to do this include ActionView::Helpers::FormHelper (for form_for) include ActionView::Helpers::FormTagHelper (for form_tag) include ActionController::RequestForgeryProtection ( for protect_from_forgery?). But after d

[Radiant] Re: anyway to use form_for, fields_for inside radiant extension tags?

2010-09-26 Thread swartz
What I've done before is to call response.template.render :partial => "blah" This rendered the specified partial. However this had to be done for either the whole form, thus there is no point having , , which does not work for me or ... Alternatively, call render only for individual question in