This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(exports) { | |
| window.DS = Ember.Namespace.create(); | |
| })({}); | |
| (function(exports) { | |
| DS.Adapter = Ember.Object.extend({ | |
| commit: function(store, commitDetails) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ========================================================================== | |
| // Project: Ember Data | |
| // Copyright: ©2011 Living Social Inc. and contributors. | |
| // License: Licensed under MIT license (see license.js) | |
| // ========================================================================== | |
| (function(a){window.DS=Ember.Namespace.create()})({}),function(a){DS.Adapter=Ember.Object.extend({commit:function(a,b){b.updated.eachType(function(b,c){this.updateRecords(a,b,c.slice())},this),b.created.eachType(function(b,c){this.createRecords(a,b,c.slice())},this),b.deleted.eachType(function(b,c){this.deleteRecords(a,b,c.slice())},this)},createRecords:function(a,b,c){c.forEach(function(c){this.createRecord(a,b,c)},this)},updateRecords:function(a,b,c){c.forEach(function(c){this.updateRecord(a,b,c)},this)},deleteRecords:function(a,b,c){c.forEach(function(c){this.deleteRecord(a,b,c)},this)},findMany:function(a,b,c){c.forEach(function(c){this.find(a,b,c)},this)}})}({}),function(a){DS.fixtureAdapter=DS.Adapter.create({fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* from http://code.google.com/p/httperf/issues/detail?id=1 */ | |
| Index: configure.ac | |
| =================================================================== | |
| --- configure.ac (revision 132) | |
| +++ configure.ac (working copy) | |
| @@ -83,6 +83,8 @@ | |
| AC_FUNC_VPRINTF | |
| AC_CHECK_FUNCS([getopt_long]) | |
NewerOlder