Re: [Radiant] Problem installing the settings extension

2010-05-04 Thread Pavel Timofeev
Hi Jayakumar, Open the file vendor/extensions/settings/settings_extension.rb and replace lines 19-21 with this code: tab 'Settings' do add_item 'Application', '/admin/settings', :after = 'Extensions' end to this one: admin.tabs.add 'Application', '/admin/settings' It should help. Pavel On

Re: [Radiant] Page Parts extension - Passenger failing

2010-05-04 Thread John Polling
Also to add to my problems I can't get page_factory and page_parts to work together. When I add a part such as part Start Date, :page_part_type = DatePagePart The part appears, but the page_part_type doesn't set to a DatePagePart. I'm guessing this is a config problem, but I have no idea

Re: [Radiant] Page Parts extension - Passenger failing

2010-05-04 Thread Josh French
Hi John, There are no configuration options for either PageParts or PageFactory; rather, you've uncovered a couple load order/load path issues on my part. While I look into them, here's the awkward workaround: 1) Load PageParts before PageFactory by editing config/environment, eg:

[Radiant] Pagination on 0.9.0RC2...

2010-05-04 Thread Chris Grant
I'm having some issues getting pagination to work properly with the latest release candidate. My code layout code looks like this and the archive is /blog/: r:find url=/blog/ r:children:each order=desc by=published_at paginated=true per_page=2 div class=postr:if_first top-post/r:if_first div

Re: [Radiant] Page Parts extension - Passenger failing

2010-05-04 Thread Josh French
Hi John, Can you update your copy of PageParts and try again? I've just pushed a change which should hopefully solve both of those issues. Please let me know if it works for you or not. Best, j ___ Radiant mailing list Post: Radiant@radiantcms.org

Re: [Radiant] Page Parts extension - Passenger failing

2010-05-04 Thread John Polling
Hi Josh, Thanks for looking into this so quickly. Will run an update first thing in the morning. John On 4 May 2010, at 21:33, Josh French j...@digitalpulp.com wrote: Hi John, Can you update your copy of PageParts and try again? I've just pushed a change which should hopefully solve both

[Radiant] Page Parts extension - Passenger failing

2010-05-04 Thread Josh French
Thanks for looking into this so quickly. Will run an update first thing in the morning. Oops -- you'll have to update PageFactory as well. I believe that's the last of it. j ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] Problem installing the settings extension

2010-05-04 Thread Yevgeniy A. Viktorov
Or switch to 0.9rc: sudo gem install radiant --pre You will need to re-create your project: radiant new_project Or upgrade your project: rake radiant:update rake db:bootstrap ; !!! this will reset current database On Tue, May 04, 2010 at 07:07:45PM +0800, Pavel Timofeev

Re: [Radiant] Problem installing the settings extension

2010-05-04 Thread Jim Gay
If you're on radiant 0.8 then you can checkout radiant-settings to this commit: git checkout eec6e84dd7fc35ca94d2b50e9a12ef96d8b5d1d2 Otherwise settings is up to date for radiant 0.9. For that you can do as Yevgeniy suggests and install the prerelease gem, but all you'll need to do is run rake

Re: [Radiant] Problem installing the settings extension

2010-05-04 Thread Jim Gay
On Tue, May 4, 2010 at 9:48 PM, Jim Gay j...@saturnflyer.com wrote: If you're on radiant 0.8 then you can checkout radiant-settings to this commit: git checkout eec6e84dd7fc35ca94d2b50e9a12ef96d8b5d1d2 Otherwise settings is up to date for radiant 0.9. For that you can do as Yevgeniy