[Pkg-javascript-commits] [backbone] 123/211: Adding XHR object to Model.parse and Collection.parse method signatures. jQuery and Zepto use the same callback signature: response, status, xhr.
Jonas Smedegaard
js at moszumanska.debian.org
Sat May 3 17:00:12 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to tag 0.5.0
in repository backbone.
commit 4881621a72629578dd642b5760adf30989937165
Author: Samuel Clay <samuel at ofbrooklyn.com>
Date: Fri Apr 22 11:25:50 2011 -0400
Adding XHR object to Model.parse and Collection.parse method signatures. jQuery and Zepto use the same callback signature: response, status, xhr.
---
backbone.js | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/backbone.js b/backbone.js
index 0e1ba80..b41c77c 100644
--- a/backbone.js
+++ b/backbone.js
@@ -28,11 +28,11 @@
Backbone.VERSION = '0.3.3';
// Require Underscore, if we're on the server, and it's not already present.
- var _ = root._ || root.$;
+ var _ = root._;
if (!_ && (typeof require !== 'undefined')) _ = require('underscore')._;
// For Backbone's purposes, jQuery or Zepto owns the `$` variable.
- var $ = root.jQuery || root.Zepto || root.$;
+ var $ = root.jQuery || root.Zepto;
// Runs Backbone.js in *noConflict* mode, returning the `Backbone` variable
// to its previous owner. Returns a reference to this Backbone object.
@@ -274,8 +274,8 @@
options || (options = {});
var model = this;
var success = options.success;
- options.success = function(resp) {
- if (!model.set(model.parse(resp), options)) return false;
+ options.success = function(resp, _, xhr) {
+ if (!model.set(model.parse(resp, xhr), options)) return false;
if (success) success(model, resp);
};
options.error = wrapError(options.error, model, options);
@@ -290,9 +290,9 @@
if (attrs && !this.set(attrs, options)) return false;
var model = this;
var success = options.success;
- options.success = function(resp) {
- if (!model.set(model.parse(resp), options)) return false;
- if (success) success(model, resp);
+ options.success = function(resp, _, xhr) {
+ if (!model.set(model.parse(resp, xhr), options)) return false;
+ if (success) success(model, resp, request);
};
options.error = wrapError(options.error, model, options);
var method = this.isNew() ? 'create' : 'update';
@@ -324,7 +324,7 @@
// **parse** converts a response into the hash of attributes to be `set` on
// the model. The default implementation is just to pass the response along.
- parse : function(resp) {
+ parse : function(resp, xhr) {
return resp;
},
@@ -514,8 +514,8 @@
options || (options = {});
var collection = this;
var success = options.success;
- options.success = function(resp) {
- collection[options.add ? 'add' : 'refresh'](collection.parse(resp), options);
+ options.success = function(resp, _, xhr) {
+ collection[options.add ? 'add' : 'refresh'](collection.parse(resp, xhr), options);
if (success) success(collection, resp);
};
options.error = wrapError(options.error, collection, options);
@@ -545,7 +545,7 @@
// **parse** converts a response into a list of models to be added to the
// collection. The default implementation is just to pass it through.
- parse : function(resp) {
+ parse : function(resp, xhr) {
return resp;
},
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/backbone.git
More information about the Pkg-javascript-commits
mailing list