problems upgrading devise in an rails 2 to rails 3 migration

I ran into some problems upgrading devise from 1.0.x to 1.3.x. to use passwords besides bcrypt you have to made 2 changes: in config/initializers/devise.rb config.encryptor = :sha1 (for devise 1.0.x compatibility) in User model (or whatever model calls devise) call devise with both :database_authenticatable and :encryptable you can tell you have issues with this if you see …

Continue reading ‘problems upgrading devise in an rails 2 to rails 3 migration’ »

Firefox seems to load content in noscript tags when javascript is enabled

I can’t find any information about this, partially due to the badly named noscript extension, but it appears that firefox will load an image in a noscript block even when javascript is enabled.  This is troubling for my use because I’ve put a static google map on an app for those that do not have …

Continue reading ‘Firefox seems to load content in noscript tags when javascript is enabled’ »