class NodeController < ApplicationController
require 'xml/libxml'
+ skip_before_filter :verify_authenticity_token
before_filter :authorize, :only => [:create, :update, :delete]
before_filter :require_allow_write_api, :only => [:create, :update, :delete]
before_filter :require_public_data, :only => [:create, :update, :delete]
def read
node = Node.find(params[:id])
if node.visible?
- response.headers['Last-Modified'] = node.timestamp.rfc822
+ response.last_modified = node.timestamp
render :text => node.to_xml.to_s, :content_type => "text/xml"
else
render :text => "", :status => :gone