Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Peter Cooperx http://www.petercooper.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Atom / RSS feed of your GMail account

https://USERNAME:PASSWORD@gmail.google.com/gmail/feed/atom

Stop Google Web Accelerator in your Rails apps

class ApplicationController < ActionController::Base
  before_filter :disable_link_prefetching

  private
    def disable_link_prefetching
      if request.env["HTTP_X_MOZ"] == "prefetch" 
        logger.debug "prefetch detected: sending 403 Forbidden" 
        render_nothing "403 Forbidden" 
        return false
      end
    end
end


Code by David Heinemeier Hansson.
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS