require 'xml/libxml'
before_filter :authorize
+ after_filter :compress_output
- def create
+ def create\r
response.headers["Content-Type"] = 'application/xml'
if request.put?
node = nil
node.user_id = @user.id
node.visible = 1
if node.save_with_history
- render :text => node.id
+ render :text => node.id.to_s
else
render :nothing => true, :status => 500
end