Re: [Radiant] Page Parts extension - Passenger failing

2010-05-07 Thread Josh French
Just spotted that I'm getting the following error when creating a page using your file page part example. can't modify frozen hash Is this a problem in Production mode as well? Hi John, I can't reproduce this in either development or production. I tested this with the Radiant RC2 and

Re: [Radiant] Generic CRUD extension (John Polling)

2010-05-06 Thread Josh French
I'm currently having to write a series of extensions for a new site I'm working on. All they are is a series of simple CRUD extensions and very repetitive. I was just wondering if there was a plugin that would cut out on this repetition? Radiant has its own CRUD controller,

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:

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

[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:

[Radiant] [ANN] RadiantCasts 11: PageFactory and PageParts Extensions

2010-05-03 Thread Josh French
With a lot of help from Cristi Duma, RadiantCasts 11 is out: http://radiantcms.org/blog/archives/2010/05/03/radiantcasts-episode-11-radiant-page-parts-and-page-factory-extensions Episode 11 covers PageParts and PageFactory, two extensions for managing large sites and complex content. Your

Re: [Radiant] Custom Fields

2010-04-28 Thread Josh French
I'm looking at using the Custom Fields extension for some pages, for example pages with information about upcoming events. Each of these pages would have a custom field for start/end date, location, organizer, etc. Is there any way to create a template for these pages that would

Re: [Radiant] page factory css

2010-04-28 Thread Josh French
oops. i meant that it's not included on the factory pages but is included on the main page list. That's correct. The CSS only styles the popup on the pages index, so I didn't include it on the new/edit screens. I should have time tomorrow to look at the other issues you filed on Github.

Re: [Radiant] Radiant Digest, Vol 49, Issue 27

2010-04-25 Thread Josh French
There are still some things to be worked out with gems and UI regions I spotted your earlier mention of this and did some digging, but I haven't been able to find anything specifically wrong with the region set stuff. While I was investigating I did uncover a load-order issue, so I wonder if

Re: [Radiant] 0.9.0-rc1 experience (Marshal Linfoot)

2010-04-18 Thread Josh French
Taking 0.9 out for a test drive... here's an overview of what worked and what didn't. Radiant: radiant r9 --database sqlite3 cd r9; rake production db:bootstrap Hi Marshal, Based on these error messages it sounds like you're not actually running 0.9. The latest gem is still Radiant

Re: [Radiant] [Radiant-Dev] [ANN] PageParts extension

2010-04-12 Thread Josh French
PageParts is now available from the extension registry: http://ext.radiantcms.org/extensions/222-page-parts I fear I over-explained this originally, so here's a recap and some screen shots. The combination of page parts and Radius tags makes for a lot of flexibility, but sometimes it's not

Re: [Radiant] Radiant and Custom Page Forms

2010-04-12 Thread Josh French
Late response, but if you're running Radiant on edge you might also check out two recent extensions, PageFactory and PageParts. PageFactory accomplishes the same thing as Stereotypes, allowing you set up pages with default parts. The main difference is that these definitions live in

Re: [Radiant] [ANN] PageFactory extension

2010-04-09 Thread Josh French
PageFactory is now available in the extension registry: http://ext.radiantcms.org/extensions/221-page-factory One issue I haven't figured out how to handle yet is skipping the factory selection popup when there's only one option. My first thought was to return an appropriate header from the

[Radiant] [ANN] PageParts extension

2010-04-06 Thread Josh French
On behalf of Digital Pulp, I'm pleased to announce the release of another extension. We simply call it PageParts, and in my completely biased opinion it's the missing link for anyone who's struggled to represent complex content in Radiant. PageParts allows you to manage rich content,

Re: [Radiant] [ANN] PageFactory extension

2010-04-01 Thread Josh French
: Keep watching this list :) -- Message: 4 Date: Wed, 31 Mar 2010 22:13:58 -0400 From: Chase Allen James chaseaja...@gmail.com Subject: Re: [Radiant] [ANN] PageFactory extension (Josh French) To: radiant@radiantcms.org Message-ID

Re: [Radiant] [ANN] PageFactory extension (Josh French)

2010-03-31 Thread Josh French
This is really awesome stuff. you made my day :-) Great! I'm still tinkering, so let me know if you have any feedback. On 31.03.2010, at 18:42, Josh French wrote: New extension on the loose: PageFactory. This is another take on content types/page templates (defining structure for your

Re: [Radiant] Radiant] Layout Source Control (etc)

2010-03-19 Thread Josh French
Question is, what is the best way of doing this - there seems to be a few extensions out there for copying layouts in and out of the database, but nothing that seems to make a file based layout a first class citizen... We've been using the File System extension

Re: [Radiant] Radiant Digest, Vol 48, Issue 5

2010-03-05 Thread Josh French
Browsing to http://kevin.local:3000/admin/pages does not show the pages for the new site it shows the pages for the site I first created, this is not what I expected Is this a bug/feature or am I missing something? Hi Kevin, There's no automatic detection of the current domain when viewing

Re: [Radiant] Multi_Site and Help Extensions for 0.9

2010-02-22 Thread Josh French
Only multi_site and help were not 0.9 ready as of Friday night. MultiSite should run fine on edge. Were you having a specific problem with it? Josh ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] trouble packaging extension as gem

2010-01-29 Thread Josh French
thanks to some off-list help from Josh French the extension now works as either a gem or traditional vendored extension. the key change was just to add `unloadable` to the KramdownFilter class. John, I just pushed a change which should make that unnecessary. Gem extensions are now

[Radiant] trouble packaging extension as gem

2010-01-26 Thread Josh French
i'm at loss now for why it's not appearing in the drop down when loaded as a gem. no errors or anything unusual just a missing filter. I'm actually at a loss as to why it would appear when vendored if you're not explicitly loading that subclass. Radiant doesn't do any pre-loading of filter

[Radiant] trouble packaging extension as gem

2010-01-26 Thread Josh French
def activate KramdownFilter end is not explicitly enough? Sorry, misread your post. Yes, this is correct, and you shouldn't need to do anything else. just noticed that extracting the textile_filter extension out into a gem also fails in the exact same ways that i've run into...

Re: [Radiant] Fwd: Multi Site extension working in Radiant 0.9?

2010-01-13 Thread Josh French
I am curious if the multi-site extension works with Radiant 0.9. I'd like to upgrade, and I'm curious if it had been tested with that version. Just updated the extension, it's working on edge now. Please let me know if I missed anything. j ___

Re: [Radiant] Stories of stability

2009-12-24 Thread Josh French
Hi Peter, What do folks consider a high-volume site? If I'm looking to handle 3 - 5 million page views monthly, which I can do with a few production Rails servers and a non-trivial production architecture (memcache, n-tier architecture, etc.), do folks think Radiant will be up to the

Re: [Radiant] Sphinx Extension help

2009-11-16 Thread Josh French
When I run a search I'm getting the following error. undefined method `constantize' for nil:NilClass Hi John, This may help: http://jimneath.org/2009/11/09/thinkingsphinx-and-nil-results/ Best, Josh ___ Radiant mailing list Post:

[Radiant] [ANN] Audit Extension

2009-11-09 Thread Josh French
Digital Pulp is releasing a new Radiant extension which provides an audit trail for all interactions with the admin console. Audit will track creation, updates, and deletion of the core models (Users, Pages, Snippets, and Layouts) as well as user logins and logouts. Audit was built with

Re: [Radiant] Sphinx Extension help

2009-10-30 Thread Josh French
This works fine as all the news gets indexed, however I'm struggling to search the news article. When I do a search terms that has NewsArticles in it I get the following error message Hi John, The Sphinx Search extension was initially built to work with arbitrary models but the actual

[Radiant] Re: Site Search

2009-10-11 Thread Josh French
- - - - - - - - - - - - - - - - - - - - - - - Josh French Senior Engineer, Digital Pulp j...@digitalpulp.com // 212.679.0676 x230 ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org

Re: [Radiant] Extensions with 0.8

2009-06-23 Thread Josh French
Shouldn't we just use rubygems? It already supports dependency management and versioning (this looks like the rails plugins vs gems discussion). We could version them with the radiant version so we could automate getting the proper version: - 0.7.1.2 (works on radiant 0.7.1) - 0.8.0.2 (works on

Re: Re: [Radiant] Extensions with 0.8

2009-06-22 Thread Josh French
Not obvious, but Josh French has committed changes for the next release that will allow extension developers to configure dependencies from the extension which might help with the installation process as far as things like error messages go. There will be more development on this in the future

[Radiant] Re: multi_site extension and mysql error

2009-06-15 Thread Josh French
long into my first project, a client website. I'm trying to install multi_site on Radiant 0.7.1. Using script/ extension install leads to a version that seems to be for radiant 0.8.0 (see multi_site_extension.rb) and will not correctly migrate. The very kind Josh French gave me instruction

[Radiant] RailsConf BoF

2009-04-21 Thread Josh French
I'm sussing out interest in a Radiant BoF session at RailsConf. If anyone will be attending RailsConf and thinks they may be interested in attending a BoF session, please let me know. I'm also welcoming any suggestions for topics. Thanks, Josh

Re: [Radiant] So how did things go this weekend?

2008-10-28 Thread Josh French
Josh French -- please fill us in on what you and your group did on Saturday; I missed a lot of that. Andrew O'Brien, Mike Hale, Luke whose last name I am blanking on (apologies), and myself started work on extending the page class to accept arbitrary attributes -- booleans, integers

Re: [Radiant] Radiant T-Shirt design - Please give input!

2008-10-08 Thread Josh French
Second, John suggested putting a pithy saying on the back of the shirt -- especially if we use the large gem in the center front. Radiant CMS (x-ray vision not included) was his suggestion. I'd appreciate some more input on that (or if you want a blank back). I'm of the less-is-more

Re: [Radiant] multiple domains under Phusion Passenger

2008-10-07 Thread Josh French
I'm working on a pair of sites for a client that will be on two subdomains and hosted on a shared host (Dreamhost). I thought the multi-site extension would be ideal for that but have not yet figured out how to do this under Phusion Passenger, the preferred Rails deployment method at DH. To

Re: [Radiant] Can't install radiant

2008-06-25 Thread Josh French
The issue lies in Radiant's extension loader, and affects any extension attempting to set config variables. I'm not sure the onus is on the extension developer to catch an un-initialized environment. Perhaps the upcoming extension registry's local interface should be aware of the state of

Re: [Radiant] Can't install radiant

2008-06-25 Thread Josh French
On Jun 25, 2008, at 3:12 PM, Sean Cribbs wrote: With the other recent problem related to bootstrapping, I'm considering adding a method: Radiant.bootstrapped? I'm wondering if this behavior shouldn't belong to the extension base class. Just yesterday I was wishing for a way to make an

[Radiant] Re: Radiant Digest, Vol 25, Issue 32

2008-04-20 Thread Josh French
Every extension that used shards has been rendered completely useless. None of the Admin UI additions provided by extensions show up anymore. Is there a way to fix this, has shards been integrated into core? I need help! Arik, This is a bug that snuck in to 0.6.5. Sean should be pushing a