|
|
@ -85,50 +85,6 @@ var Collection = PageableCollection.extend({
|
|
|
|
]
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
importFromList : function(models) {
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var proxy = _.extend(new Backbone.Model(), {
|
|
|
|
|
|
|
|
id : "",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
url : self.url + "/import",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toJSON : function() {
|
|
|
|
|
|
|
|
return models;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.listenTo(proxy, "sync", function(proxyModel, models) {
|
|
|
|
|
|
|
|
this.add(models, { merge : true});
|
|
|
|
|
|
|
|
this.trigger("save", this);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return proxy.save();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filterModes : {
|
|
|
|
|
|
|
|
'all' : [
|
|
|
|
|
|
|
|
null,
|
|
|
|
|
|
|
|
null
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'continuing' : [
|
|
|
|
|
|
|
|
'status',
|
|
|
|
|
|
|
|
'continuing'
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'ended' : [
|
|
|
|
|
|
|
|
'status',
|
|
|
|
|
|
|
|
'ended'
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'monitored' : [
|
|
|
|
|
|
|
|
'monitored',
|
|
|
|
|
|
|
|
true
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'missing' : [
|
|
|
|
|
|
|
|
'downloaded',
|
|
|
|
|
|
|
|
false
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sortMappings : {
|
|
|
|
sortMappings : {
|
|
|
|
title : {
|
|
|
|
title : {
|
|
|
|
sortKey : 'sortTitle'
|
|
|
|
sortKey : 'sortTitle'
|
|
|
|