Project

rack-p3p

0.04
No commit activity in last 3 years
No release in over 3 years
Rack-P3p is rack middleware for inserting P3P headers into apps. This will allow your application to serve cookies to IE when in an iframe. It will also pull off the cookie on 304 responses, since IE does not like the cookie then.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.0.1
 Project Readme

Rack-P3p is rack middleware for inserting P3P headers into apps. This will allow your application to serve cookies to IE when in an iframe. It will also pull off the cookie on 304 responses, since IE does not like the cookie then.

Usage

To use Rack-P3p in rails, do the following. Anything else and we'll assume you're smart enough to figure it out :-)

Add rack-p3p to your gemfile:

gem 'rack-p3p'

Add it to your middleware stack in config/application.rb:

config.middleware.insert_before ActionDispatch::Session::CookieStore, Rack::P3p

Enjoy.

Credits

The code for this middleware was shamelessly ripped from a rubyonrails-core post from Robert Vogel. Thanks, Rob!