All verbs should use formatted urls [DHH]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5097 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 73a8d739
......@@ -119,7 +119,7 @@ def save
end
def destroy
connection.delete(self.class.element_path(id, prefix_options)[0..-5])
connection.delete(self.class.element_path(id, prefix_options))
end
def to_xml
......@@ -159,11 +159,11 @@ def connection(refresh = false)
end
def update
connection.put(self.class.element_path(id, prefix_options)[0..-5], to_xml)
connection.put(self.class.element_path(id, prefix_options), to_xml)
end
def create
returning connection.post(self.class.collection_path(prefix_options)[0..-5], to_xml) do |resp|
returning connection.post(self.class.collection_path(prefix_options), to_xml) do |resp|
self.id = resp['Location'][/\/([^\/]*?)(\.\w+)?$/, 1]
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册