Re: [Radiant] Modifying look-feel, and an error I'm seeing

2008-11-28 Thread Robert Calco
By gum that did it. Thanks! - Bob On Fri, Nov 28, 2008 at 2:10 PM, Michael Kessler <[EMAIL PROTECTED]>wrote: > Bob, > > The undefined method `[]' for # error comes from an > incompatibility between Ruby 1.8.7 and Rails 2.0.2. Just add > > unless '1.9'.respond_to?(:force_encoding) > String.class

Re: [Radiant] Modifying look-feel, and an error I'm seeing

2008-11-28 Thread Mohit Sindhwani
Adam van den Hoven wrote: Change the admin.subtitle and admin.title properties and you'll be good. You can do it through the console (which I don't like) or install the Settings extension and edit it directly in the UI (which I do like). The settings extension was documented by me for Summer

Re: [Radiant] Modifying look-feel, and an error I'm seeing

2008-11-28 Thread Michael Kessler
Bob, The undefined method `[]' for # error comes from an incompatibility between Ruby 1.8.7 and Rails 2.0.2. Just add unless '1.9'.respond_to?(:force_encoding) String.class_eval do begin remove_method :chars rescue NameError # OK end end end to your environment.rb

Re: [Radiant] Modifying look-feel, and an error I'm seeing

2008-11-28 Thread Adam van den Hoven
Change the admin.subtitle and admin.title properties and you'll be good. You can do it through the console (which I don't like) or install the Settings extension and edit it directly in the UI (which I do like). On 28-Nov-08, at 10:47 AM, Robert Calco wrote: What's the trick to modifyin