* Alessandro Curci <[EMAIL PROTECTED]> [2007-05-28 09:20]: >The commented code belongs to class KonquerorBrowser, >and failed because the ENV['HOME'] parameter is null. > > @@configDir = File.join(ENV['HOME'], '.kde', 'share', 'config') > @@globalConfig = File.join(@@configDir, 'kdeglobals') > @@konquerorConfig = File.join(@@configDir, 'konquerorrc')
There are two problems here. The first is that ENV['HOME'] is nil on Windows. That's covered by ticket #8463. The second is that KonquerorBrowser#teardown, which uses these files, is called even when Konqueror isn't supported. I added ticket #8498 with a patch. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
