You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2011/07/20 15:12:46 UTC

svn commit: r1148755 - in /incubator/deltacloud/trunk/server: lib/sinatra/rack_date.rb server.rb

Author: mfojtik
Date: Wed Jul 20 13:12:45 2011
New Revision: 1148755

URL: http://svn.apache.org/viewvc?rev=1148755&view=rev
Log:
Added HTTP 'Date' header (RFC2616 sec-13)

Added:
    incubator/deltacloud/trunk/server/lib/sinatra/rack_date.rb
Modified:
    incubator/deltacloud/trunk/server/server.rb

Added: incubator/deltacloud/trunk/server/lib/sinatra/rack_date.rb
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/lib/sinatra/rack_date.rb?rev=1148755&view=auto
==============================================================================
--- incubator/deltacloud/trunk/server/lib/sinatra/rack_date.rb (added)
+++ incubator/deltacloud/trunk/server/lib/sinatra/rack_date.rb Wed Jul 20 13:12:45 2011
@@ -0,0 +1,38 @@
+
+# Copyright (c) 2008 The Committers
+
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to
+# deal in the Software without restriction, including without limitation the
+# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+# sell copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+require 'time'
+
+module Rack
+  class Date
+
+    def initialize(app, no_cache_control = nil, cache_control = nil)
+      @app = app
+    end
+
+    def call(env)
+      status, headers, body = @app.call(env)
+      headers['Date'] = Time.new.httpdate if not headers['Date']
+      [status, headers, body]
+    end
+
+  end
+end
+

Modified: incubator/deltacloud/trunk/server/server.rb
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/server.rb?rev=1148755&r1=1148754&r2=1148755&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/server.rb (original)
+++ incubator/deltacloud/trunk/server/server.rb Wed Jul 20 13:12:45 2011
@@ -28,6 +28,7 @@ require 'lib/deltacloud/helpers/blob_str
 require 'sinatra/rack_driver_select'
 require 'sinatra/rack_runtime'
 require 'sinatra/rack_etag'
+require 'sinatra/rack_date'
 require 'sinatra/rack_matrix_params'
 
 set :version, '0.3.0'
@@ -42,6 +43,7 @@ use Rack::Runtime
 use Rack::MatrixParams
 use Rack::DriverSelect
 use Rack::MediaType
+use Rack::Date
 
 configure do
   set :raise_errors => false