<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -59,7 +59,7 @@ Start making calls to SwxGateway#process
   
 Use your framework's preferred method to wrap the swx bytecode in a file shell and send it on its way. Here's how Rails and Merb do it:
 
-  send_data(@swx_bytecode, :filename =&gt; 'data.swf', :type =&gt; 'application/swf')
+  send_data(@swx_bytecode, :filename =&gt; 'data.swf', :type =&gt; 'application/swf', :disposition =&gt; 'inline')
   
 ==== Example of Gem Usage
 
@@ -82,7 +82,7 @@ Here's a full Merb app (this and a Flash client are included in examples/standal
 
   class SwxRuby &lt; Merb::Controller
     def gateway
-      send_data(SwxGateway.process(params), :filename =&gt; 'data.swf', :type =&gt; 'application/swf')
+      send_data(SwxGateway.process(params), :filename =&gt; 'data.swf', :type =&gt; 'application/swf', :disposition =&gt; 'inline')
     end
   end
   </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -32,6 +32,6 @@ Merb::Router.prepare { |r| r.match('/').to(:controller =&gt; 'swx_ruby_controller',
 
 class SwxRubyController &lt; Merb::Controller
   def gateway
-    send_data(SwxGateway.process(params), :filename =&gt; 'data.swf', :type =&gt; 'application/swf')
+    send_data(SwxGateway.process(params), :filename =&gt; 'data.swf', :type =&gt; 'application/swf', :disposition =&gt; 'inline')
   end
 end
\ No newline at end of file</diff>
      <filename>examples/standalone/standalone.rb</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@ ActionController::Base.class_eval do
 											 params[:url], 
 											 SwxGateway.swx_config['allow_domain']
 										 )
-			send_data(swf_bytecode, :type =&gt; 'application/swf', :filename =&gt; 'data.swf')
+			send_data(swf_bytecode, :type =&gt; 'application/swf', :filename =&gt; 'data.swf', :disposition =&gt; 'inline')
 		else
 			render_without_swx(*args, &amp;block)
 		end</diff>
      <filename>lib/swxruby/rails_integration/render_decorator.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 class SwxController &lt; ApplicationController
   def gateway
     # request handler takes in the params hash 
-		send_data(SwxGateway.process(params), :type =&gt; 'application/swf', :filename =&gt; 'data.swf')
+		send_data(SwxGateway.process(params), :type =&gt; 'application/swf', :filename =&gt; 'data.swf', :disposition =&gt; 'inline')
   end
 end</diff>
      <filename>lib/swxruby/rails_integration/swx_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -62,7 +62,7 @@ if File.exist?(RSPEC_ON_RAILS_FILE)
 	  end
 	
 		it 'should stream the generated SWX bytecode back to the user' do
-			@controller.should_receive(:send_data).with('swx bytecode', :type =&gt; 'application/swf', :filename =&gt; 'data.swf')
+			@controller.should_receive(:send_data).with('swx bytecode', :type =&gt; 'application/swf', :filename =&gt; 'data.swf', :disposition =&gt; 'inline')
 			@controller.render(:swx =&gt; 'some data')
 		end
 	end</diff>
      <filename>spec/swxruby/rails_integration/render_decorator_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e56ec9a0e2e0b1a596695eede5be9fe69ab553e4</id>
    </parent>
  </parents>
  <author>
    <name>Bronson McKinley</name>
    <email>bronsonmckinley@gmail.com</email>
  </author>
  <url>http://github.com/meekish/swxruby/commit/10851c3702b7870e7d02fc8540c79c9f51fd4f1e</url>
  <id>10851c3702b7870e7d02fc8540c79c9f51fd4f1e</id>
  <committed-date>2009-01-17T19:42:35-08:00</committed-date>
  <authored-date>2009-01-17T19:42:35-08:00</authored-date>
  <message>Flash Player 10 didn't like the Content-Disposition header
SWX Bug with Flash Player 10 Fixed: http://swxformat.org/181</message>
  <tree>949c2469ea6e14eca06d017b86d3d18a63a2752d</tree>
  <committer>
    <name>Bronson McKinley</name>
    <email>bronsonmckinley@gmail.com</email>
  </committer>
</commit>
