100+ results for 'Backbone.Collection.extend'
Not the results you expected?
modelcollections.js (git://github.com/jspears/bobamo.git) JavaScript · 125 lines
InstanceModel.js (git://github.com/ging/horizon-js.git) JavaScript · 204 lines
localforage.backbone.js (https://bitbucket.org/aswinvk28/smartpan-stock-drupal.git) JavaScript · 189 lines
15 //
16 // var MyModel = Backbone.Model.extend({})
17 // var MyCollection = Backbone.Collection.extend({
18 // model: MyModel
19 // });
21 // becomes
22 //
23 // var MyModel = Backbone.Collection.extend({
24 // sync: Backbone.localforage.sync('ModelNamespace')
25 // });
26 // var MyCollection = Backbone.Collection.extend({
27 // model: MyModel,
28 // sync: Backbone.localforage.sync('MyCollection')
spiro-models.js (https://hg.codeplex.com/restfulobjects) JavaScript · 256 lines
sync.js (git://github.com/documentcloud/backbone.git) JavaScript · 239 lines
myMessage.js (https://git01.codeplex.com/mobileshop) JavaScript · 103 lines
Todo.js (git://github.com/radekstepan/fundamental.js.git) JavaScript · 59 lines
collection-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 251 lines
88 * @constructs
89 */
90 var DatasetCollectionElementCollection = Backbone.Collection.extend( BASE_MVC.LoggableMixin ).extend(
91 /** @lends DatasetCollectionElementCollection.prototype */{
92 model: DatasetCollectionElement,
176 //==============================================================================
177 /** @class Backbone collection for a collection of collection collections collecting correctly. */
178 var DatasetCollectionCollection = Backbone.Collection.extend( BASE_MVC.LoggableMixin ).extend({
180 model: DatasetCollection,
myOrder.js (https://git01.codeplex.com/mobileshop) JavaScript · 101 lines
app.js (git://github.com/andrewdavey/cassette.git) JavaScript · 172 lines
proposal-edit.js
(https://bitbucket.org/dwaiter/proposalmatic/)
JavaScript · 206 lines
✨ Summary
This JavaScript code sets up a web application for managing proposal snippets, including creating and editing proposals, adding and removing snippets, and reordering snippets within a proposal. It uses Backbone.js to manage data and views, and jQuery to handle DOM interactions and AJAX requests. The application also includes features like sorting and dragging snippets.
This JavaScript code sets up a web application for managing proposal snippets, including creating and editing proposals, adding and removing snippets, and reordering snippets within a proposal. It uses Backbone.js to manage data and views, and jQuery to handle DOM interactions and AJAX requests. The application also includes features like sorting and dragging snippets.
59 // Library Snippets ------------------------------------------------------------
60 window.LibrarySnipList = Backbone.Collection.extend({
61 model: SnippetVersion,
62 url: '/snippets/a/snippetversion/'
106 // Proposal Snippets -----------------------------------------------------------
107 window.ProposalSnipList = Backbone.Collection.extend({
108 model: SnippetVersion,
109 url: '/snippets/a/snippetversion/'
sessions.js (git://github.com/NancyFx/Nancy.git) JavaScript · 60 lines
FieldModel.js (git://github.com/drupal/drupal.git) JavaScript · 92 lines
employee.js (git://github.com/jspears/bobamo.git) JavaScript · 64 lines
main.js (https://bitbucket.org/saritafurtado/backbone.git) JavaScript · 214 lines
app.js (git://github.com/mdp/middlefiddle.git) JavaScript · 203 lines
production-admin.js (git://github.com/tekpub/mvc3.git) JavaScript · 298 lines
main.js (https://bitbucket.org/ldavismead/backbone-twitter-search) JavaScript · 191 lines
ImageModel.js (git://github.com/ging/horizon-js.git) JavaScript · 41 lines
user-model.js (https://bitbucket.org/chapmanb/galaxy-central/) JavaScript · 100 lines
tours.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 131 lines
file.js (https://gitlab.com/henrymazer/carto-db.git) JavaScript · 165 lines
todos.js (git://github.com/maccman/book-assets.git) JavaScript · 164 lines
social_subscription.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 114 lines
user-model.js (https://bitbucket.org/chapmanb/galaxy-central/) JavaScript · 1 lines
1 var User=Backbone.Model.extend(LoggableMixin).extend({urlRoot:"api/users",defaults:{id:null,username:"("+_l("anonymous user")+")",email:"",total_disk_usage:0,nice_total_disk_usage:"",quota_percent:null},initialize:function(a){this.log("User.initialize:",a);this.on("loaded",function(b,c){this.log(this+" has loaded:",b,c)});this.on("change",function(b,c){this.log(this+" has changed:",b,c.changes)})},isAnonymous:function(){return(!this.get("email"))},loadFromApi:function(d,b){d=d||User.CURRENT_ID_STR;b=b||{};var a=this,c=b.success;b.success=function(f,e){a.trigger("loaded",f,e);if(c){c(f,e)}};if(d===User.CURRENT_ID_STR){b.url=this.urlRoot+"/"+User.CURRENT_ID_STR}return BaseModel.prototype.fetch.call(this,b)},toString:function(){var a=[this.get("username")];if(this.get("id")){a.unshift(this.get("id"));a.push(this.get("email"))}return"User("+a.join(":")+")"}});User.CURRENT_ID_STR="current";User.getCurrentUserFromApi=function(b){var a=new User();a.loadFromApi(User.CURRENT_ID_STR,b);return a};var UserCollection=Backbone.Collection.extend(LoggableMixin).extend({model:User,urlRoot:"api/users"});
visualization-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 1 lines
1 var Visualization=Backbone.Model.extend({defaults:{config:{}},urlRoot:function(){var a="/api/visualizations";return((window.galaxy_config&&galaxy_config.root)?(galaxy_config.root+a):(a))},initialize:function(a){if(_.isObject(a.config)&&_.isObject(this.defaults.config)){_.defaults(a.config,this.defaults.config)}this._setUpListeners()},_setUpListeners:function(){},set:function(b,c){if(b==="config"){var a=this.get("config");if(_.isObject(a)){c=_.extend(_.clone(a),c)}}Backbone.Model.prototype.set.call(this,b,c);return this},toString:function(){var a=this.get("id")||"";if(this.get("title")){a+=":"+this.get("title")}return"Visualization("+a+")"}});var VisualizationCollection=Backbone.Collection.extend({model:Visualization,url:function(){return galaxy_config.root+"api/visualizations"},initialize:function(b,a){a=a||{}},set:function(c,a){var b=this;c=_.map(c,function(e){var f=b.get(e.id);if(!f){return e}var d=f.toJSON();_.extend(d,e);return d});Backbone.Collection.prototype.set.call(this,c,a)},toString:function(){return(["VisualizationCollection(",[this.historyId,this.length].join(),")"].join(""))}});
datasets.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 377 lines
IgniteWorkflows.js (https://bitbucket.org/ahmed_bilal_360factors/jira7-core.git) JavaScript · 76 lines
traces.js (git://github.com/NancyFx/Nancy.git) JavaScript · 81 lines
ReportCollection.js (https://bitbucket.org/AnuSekar/btree_pos.git) JavaScript · 885 lines
357 });
359 admin.SalesDetailItemReportCollection = Backbone.Collection.extend({
360 model: admin.SalesDetailsItemReportModel,
361 url: '/btree/admin/get_all_detailsales_item',
366 });
368 admin.ClaimPointsReportCollection = Backbone.Collection.extend({
369 model: admin.SalesDetailsItemReportModel,
370 url: '/btree/admin/customer_pointclaim',
myCart.js (https://git01.codeplex.com/mobileshop) JavaScript · 206 lines
starred_counts.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 89 lines
user-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 131 lines
list.js (https://bitbucket.org/nicjen/lgv.git) JavaScript · 162 lines
providers.js (git://github.com/NancyFx/Nancy.git) JavaScript · 60 lines
citation-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 73 lines
methods.js (git://github.com/NancyFx/Nancy.git) JavaScript · 100 lines
models.js (git://github.com/overviewer/Minecraft-Overviewer.git) JavaScript · 48 lines
comments.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 48 lines
VolumeSnapshotModel.js (git://github.com/ging/horizon-js.git) JavaScript · 59 lines
dispatchMode.js (https://git01.codeplex.com/mobileshop) JavaScript · 62 lines
coupon.js (https://git01.codeplex.com/mobileshop) JavaScript · 96 lines
library-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 205 lines
model.js (https://bitbucket.org/deximer/generalwill) JavaScript · 246 lines
partCollection.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 149 lines
baseCollection.es6.js (git://github.com/reviewboard/reviewboard.git) JavaScript · 58 lines
tiles.js (https://bitbucket.org/dbezrukov/photoload.git) JavaScript · 86 lines
photos_bla.js (https://bitbucket.org/dbezrukov/photoload.git) JavaScript · 142 lines
user-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 127 lines
FlavorModel.js (git://github.com/ging/horizon-js.git) JavaScript · 49 lines
model.js (https://bitbucket.org/okfn/wdmmg/) JavaScript · 68 lines
library-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 247 lines
19 });
21 var Libraries = Backbone.Collection.extend({
22 url: Galaxy.root + 'api/libraries',
110 });
112 var Folder = Backbone.Collection.extend({
113 model: LibraryItem,
199 });
201 var HistoryContents = Backbone.Collection.extend({
202 urlRoot : Galaxy.root + 'api/histories/',
203 initialize: function(options){
sits.js (https://bitbucket.org/dbezrukov/photoload.git) JavaScript · 86 lines
KeypairModel.js (git://github.com/ging/horizon-js.git) JavaScript · 40 lines
VolumeModel.js (git://github.com/ging/horizon-js.git) JavaScript · 57 lines
icon-button.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 184 lines
app.js (git://github.com/pieter-vanderwerff/backbone-require-wire.git) JavaScript · 68 lines
ui-select-library.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 128 lines
citation-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 75 lines
datasets.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 149 lines
cellFieldCollection.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 85 lines
demo.js (https://gitlab.com/hecto932/WebAppRealTime.git) JavaScript · 218 lines
README.md (https://bitbucket.org/aswinvk28/smartpan-stock-drupal.git) Markdown · 41 lines
backbone-d3.js (git://github.com/jspears/bobamo.git) JavaScript · 78 lines
base_jobs.js (https://gitlab.com/jack/chronos.git) JavaScript · 191 lines
simple.html (https://bitbucket.org/aswinvk28/smartpan-stock-drupal.git) HTML · 82 lines
client.js (git://github.com/cmpolis/Apples-and-Oranges.git) JavaScript · 215 lines
16 var Noun = Backbone.Model.extend();
18 var NounCollection = Backbone.Collection.extend({
19 model: Noun
20 });
72 var User = Backbone.Model.extend();
74 var UserCollection = Backbone.Collection.extend({
75 model: User
76 });
112 var PlayedNoun = Backbone.Model.extend();
114 var PlayedNounCollection = Backbone.Collection.extend({
115 model: PlayedNoun
116 });
visualization-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 143 lines
UserModel.js (git://github.com/ging/horizon-js.git) JavaScript · 38 lines
collection-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 1 lines
1 define(["mvc/dataset/hda-model","mvc/base-mvc","utils/localization"],function(g,i,c){var j=Backbone.Model.extend(i.LoggableMixin).extend({defaults:{id:null,model_class:"DatasetCollectionElement",element_identifier:null,element_index:null,element_type:null},initialize:function(l,k){this.info(this+".initialize:",l,k);k=k||{};this.object=this._createObjectModel();this.on("change:object",function(){this.object=this._createObjectModel()})},_createObjectModel:function(){if(_.isUndefined(this.object)){this.object=null}if(!this.get("object")){return this.object}var k=this.get("object");this.unset("object",{silent:true});this.debug("DCE, element_type:",this.get("element_type"));switch(this.get("element_type")){case"dataset_collection":this.object=new f(k);break;case"hda":this.object=new g.HistoryDatasetAssociation(k);break;default:throw new TypeError("Unknown element_type: "+this.get("element_type"))}return this.object},toString:function(){var k=(this.object)?(""+this.object):(this.get("element_identifier"));return(["DatasetCollectionElement(",k,")"].join(""))}});var d=Backbone.Collection.extend(i.LoggableMixin).extend({model:j,initialize:function(l,k){k=k||{};this.info(this+".initialize:",l,k)},toString:function(){return(["DatasetCollectionElementCollection(",this.length,")"].join(""))}});var f=Backbone.Model.extend(i.LoggableMixin).extend({defaults:{collection_type:"list"},collectionClass:d,initialize:function(l,k){this.info("DatasetCollection.initialize:",l,k);this.elements=this._createElementsModel();this.on("change:elements",function(){this.log("change:elements");this.elements=this._createElementsModel()})},_createElementsModel:function(){this.log("_createElementsModel",this.get("elements"),this.elements);var k=this.get("elements")||[];this.info("elements:",k);this.unset("elements",{silent:true});this.elements=new this.collectionClass(k);return this.elements},hasDetails:function(){return this.elements.length!==0},toString:function(){var k=[this.get("id"),this.get("name")||this.get("element_identifier")];return"DatasetCollection("+(k.join(","))+")"}});var h=Backbone.Collection.extend(i.LoggableMixin).extend({model:f,initialize:function(l,k){k=k||{};this.info("DatasetCollectionCollection.initialize:",l,k)},toString:function(){return(["DatasetCollectionCollection(",this.get("name"),")"].join(""))}});var e=f.extend({toString:function(){return(["ListDatasetCollection(",this.get("name"),")"].join(""))}});var b=f.extend({toString:function(){return(["PairDatasetCollection(",this.get("name"),")"].join(""))}});var a=f.extend({toString:function(){return(["ListPairedDatasetCollection(",this.get("name"),")"].join(""))}});return{DatasetCollectionElement:j,DatasetCollectionElementCollection:d,DatasetCollection:f,DatasetCollectionCollection:h,ListDatasetCollection:e,PairDatasetCollection:b,ListPairedDatasetCollection:a}});
library-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines
1 define([],function(){var a=Backbone.Model.extend({urlRoot:Galaxy.root+"api/libraries/",isVisible:function(a){var b=!0;return!a&&this.get("deleted")&&(b=!1),b}}),b=Backbone.Collection.extend({url:Galaxy.root+"api/libraries",model:a,sort_key:"name",sort_order:null,initialize:function(a){a=a||{}},search:function(a){if(""==a)return this;var b=a.toLowerCase();return this.filter(function(a){return lowercase_name=a.get("name").toLowerCase(),-1!==lowercase_name.indexOf(b)})},getVisible:function(a,c){c=c||[];var d=new b(this.filter(function(b){return b.isVisible(a)}));return d},sortByNameAsc:function(){return this.comparator=function(a,b){return a.get("name").toLowerCase()>b.get("name").toLowerCase()?1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?-1:0},this.sort(),this},sortByNameDesc:function(){return this.comparator=function(a,b){return a.get("name").toLowerCase()>b.get("name").toLowerCase()?-1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?1:0},this.sort(),this}}),c=Backbone.Model.extend({}),d=c.extend({urlRoot:Galaxy.root+"api/libraries/datasets/"}),e=c.extend({urlRoot:Galaxy.root+"api/folders/"}),f=Backbone.Collection.extend({model:c,sortByNameAsc:function(){return this.comparator=function(a,b){return a.get("type")===b.get("type")?a.get("name").toLowerCase()>b.get("name").toLowerCase()?1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?-1:0:"folder"===a.get("type")?-1:1},this.sort(),this},sortByNameDesc:function(){return this.comparator=function(a,b){return a.get("type")===b.get("type")?a.get("name").toLowerCase()>b.get("name").toLowerCase()?-1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?1:0:"folder"===a.get("type")?-1:1},this.sort(),this}}),g=Backbone.Model.extend({defaults:{folder:new f,urlRoot:Galaxy.root+"api/folders/",id:"unknown"},parse:function(a){this.get("folder").reset();for(var b=0;b<a.folder_contents.length;b++)if("folder"===a.folder_contents[b].type){var c=new e(a.folder_contents[b]);this.get("folder").add(c)}else if("file"===a.folder_contents[b].type){var f=new d(a.folder_contents[b]);this.get("folder").add(f)}else console.error("Unknown folder item type encountered while parsing response.");return a}}),h=Backbone.Model.extend({urlRoot:Galaxy.root+"api/histories/"}),i=Backbone.Collection.extend({urlRoot:Galaxy.root+"api/histories/",initialize:function(a){this.id=a.id},url:function(){return this.urlRoot+this.id+"/contents"},model:h}),j=Backbone.Model.extend({urlRoot:Galaxy.root+"api/histories/"}),k=Backbone.Collection.extend({url:Galaxy.root+"api/histories",model:j}),l=Backbone.Model.extend({urlRoot:Galaxy.root+"api/remote_files"});return{Library:a,Libraries:b,Item:d,Ldda:d,FolderAsModel:e,Folder:f,FolderContainer:g,HistoryItem:h,HistoryContents:i,GalaxyHistory:j,GalaxyHistories:k,Jstree:l}});
2 //# sourceMappingURL=../../../maps/mvc/library/library-model.js.map
collections.js (https://bitbucket.org/sqr3/dabbawala.git) JavaScript · 100 lines
5 'use strict';
7 app.searchTiffinboxSupplier = Backbone.Collection.extend({
8 initialize: function(options) {
9 this.options = options;
18 app.GetMenuDate = Backbone.Collection.extend({
19 initialize: function(options) {
20 this.options = options;
26 });
27 /////////////////////////////////
28 app.ProcessOrder = Backbone.Collection.extend({
29 initialize: function(options) {
30 this.options = options;
ui-select-library.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines
1 define(["utils/utils","mvc/ui/ui-misc","mvc/ui/ui-table","mvc/ui/ui-list"],function(a,b,c,d){var e=Backbone.Collection.extend({url:Galaxy.root+"api/libraries?deleted=false"}),f=Backbone.Collection.extend({initialize:function(){var a=this;this.config=new Backbone.Model({library_id:null}),this.config.on("change",function(){a.fetch({reset:!0})})},url:function(){return Galaxy.root+"api/libraries/"+this.config.get("library_id")+"/contents"}}),g=Backbone.View.extend({initialize:function(a){var c=this;this.libraries=new e,this.datasets=new f,this.options=a,this.library_select=new b.Select.View({onchange:function(a){c.datasets.config.set("library_id",a)}}),this.dataset_list=new d.View({name:"dataset",optional:a.optional,multiple:a.multiple,onchange:function(){c.trigger("change")}}),this.libraries.on("reset",function(){var a=[];c.libraries.each(function(b){a.push({value:b.id,label:b.get("name")})}),c.library_select.update(a)}),this.datasets.on("reset",function(){var a=[],b=c.library_select.text();null!==b&&c.datasets.each(function(b){"file"===b.get("type")&&a.push({value:b.id,label:b.get("name")})}),c.dataset_list.update(a)}),this.on("change",function(){a.onchange&&a.onchange(c.value())}),this.setElement(this._template()),this.$(".library-select").append(this.library_select.$el),this.$el.append(this.dataset_list.$el),this.libraries.fetch({reset:!0,success:function(){c.library_select.trigger("change"),void 0!==c.options.value&&c.value(c.options.value)}})},value:function(a){return this.dataset_list.value(a)},_template:function(){return'<div class="ui-select-library"><div class="library ui-margin-bottom"><span class="library-title">Select Library</span><span class="library-select"/></div></div>'}});return{View:g}});
2 //# sourceMappingURL=../../../maps/mvc/ui/ui-select-library.js.map
ProjectModel.js (git://github.com/ging/horizon-js.git) JavaScript · 35 lines
users.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 45 lines
models.js (git://pkgs.fedoraproject.org/aeolus-conductor) JavaScript · 88 lines
16 });
18 Conductor.Models.Pools = Backbone.Collection.extend({
19 model: Backbone.Model.Pool,
20 queryParams: {},
33 });
35 Conductor.Models.Instances = Backbone.Collection.extend({
36 model: Backbone.Model.Instance,
37 queryParams: {},
70 });
72 Conductor.Models.Deployments = Backbone.Collection.extend({
73 model: Backbone.Model.Deployment,
74 queryParams: {},
rave_backbone.js (https://gitlab.com/kidaa/rave.git) JavaScript · 84 lines
job-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines
1 define(["mvc/history/history-contents","mvc/dataset/states","utils/ajax-queue","mvc/base-mvc","utils/localization"],function(a,b,c,d){var e="jobs",f=d.SearchableModelMixin,g=Backbone.Model.extend(d.LoggableMixin).extend(d.mixin(f,{_logNamespace:e,defaults:{model_class:"Job",tool_id:null,exit_code:null,inputs:{},outputs:{},params:{},create_time:null,update_time:null,state:b.NEW},parse:function(a){return a.params=this.parseParams(a.params),a},parseParams:function(a){var b={};return _.each(a,function(a,c){b[c]=JSON.parse(a)}),b},initialize:function(b,c){this.debug(this+"(Job).initialize",b,c),this.set("params",this.parseParams(this.get("params")),{silent:!0}),this.outputCollection=b.outputCollection||new a.HistoryContents([]),this._setUpListeners()},_setUpListeners:function(){this.on("change:state",function(a,b){this.log(this+" has changed state:",a,b),this.inReadyState()&&this.trigger("state:ready",a,b,this.previous("state"))})},inReadyState:function(){return _.contains(b.READY_STATES,this.get("state"))},hasDetails:function(){return!_.isEmpty(this.get("outputs"))},urlRoot:Galaxy.root+"api/jobs",toString:function(){return["Job(",this.get("id"),":",this.get("tool_id"),")"].join("")}})),h=Backbone.Collection.extend(d.LoggableMixin).extend({_logNamespace:e,model:g,urlRoot:Galaxy.root+"api/jobs",url:function(){return this.urlRoot},intialize:function(a,b){console.debug(a,b)},ids:function(){return this.map(function(a){return a.get("id")})},notReady:function(){return this.filter(function(a){return!a.inReadyState()})},haveDetails:function(){return this.all(function(a){return a.hasDetails()})},queueDetailFetching:function(){var a=this,b=new c.AjaxQueue(this.map(function(a){return function(){return a.fetch({silent:!0})}}));return b.done(function(){a.trigger("details-loaded")}),b},matches:function(a){return this.filter(function(b){return b.matches(a)})},toString:function(){return["JobCollection(",this.length,")"].join("")}},{fromHistory:function(a){console.debug(this);var b=this,c=new b([]);return c.fetch({data:{history_id:a}}).done(function(){window.queue=c.queueDetailFetching()}),c}});return{Job:g,JobCollection:h}});
2 //# sourceMappingURL=../../../maps/mvc/job/job-model.js.map
backbone-tests.ts (https://hg.codeplex.com/mypet) TypeScript · 113 lines
backbone.html (https://gitlab.com/hecto932/PonyExpress.git) HTML · 175 lines
cellCollection.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 57 lines
library-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 112 lines
26 // LIBRARIES
27 var Libraries = Backbone.Collection.extend({
28 url: '/api/libraries',
60 // FOLDER AS COLLECTION
61 var Folder = Backbone.Collection.extend({
62 model: Item
63 });
92 // HISTORIES
93 var GalaxyHistories = Backbone.Collection.extend({
94 url : '/api/histories',
95 model : GalaxyHistory
test_crap.py (https://bitbucket.org/bee_data_myanmar/odoo_source.git) Python · 75 lines
user-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 1 lines
1 define(["mvc/base-mvc","utils/localization"],function(a,b){var d=Backbone.Model.extend(a.LoggableMixin).extend({urlRoot:galaxy_config.root+"api/users",defaults:{id:null,username:"("+b("anonymous user")+")",email:"",total_disk_usage:0,nice_total_disk_usage:"",quota_percent:null,is_admin:false},initialize:function(e){this.log("User.initialize:",e);this.on("loaded",function(f,g){this.log(this+" has loaded:",f,g)});this.on("change",function(f,g){this.log(this+" has changed:",f,g.changes)})},isAnonymous:function(){return(!this.get("email"))},isAdmin:function(){return(this.get("is_admin"))},loadFromApi:function(h,f){h=h||d.CURRENT_ID_STR;f=f||{};var e=this,g=f.success;f.success=function(j,i){e.trigger("loaded",j,i);if(g){g(j,i)}};if(h===d.CURRENT_ID_STR){f.url=this.urlRoot+"/"+d.CURRENT_ID_STR}return Backbone.Model.prototype.fetch.call(this,f)},clearSessionStorage:function(){for(var e in sessionStorage){if(e.indexOf("history:")===0){sessionStorage.removeItem(e)}else{if(e==="history-panel"){sessionStorage.removeItem(e)}}}},toString:function(){var e=[this.get("username")];if(this.get("id")){e.unshift(this.get("id"));e.push(this.get("email"))}return"User("+e.join(":")+")"}});d.CURRENT_ID_STR="current";d.getCurrentUserFromApi=function(f){var e=new d();e.loadFromApi(d.CURRENT_ID_STR,f);return e};var c=Backbone.Collection.extend(a.LoggableMixin).extend({model:d,urlRoot:galaxy_config.root+"api/users"});return{User:d}});
main.js (https://bitbucket.org/KarlisLukstins/sticky-fork.git) JavaScript · 329 lines
138 });
140 var notesCollection = Backbone.Collection.extend({ model: noteModel });
141 var notes = new notesCollection();
142 var notesView = Backbone.View.extend({
154 var desktopModel = Backbone.Model.extend({ defaults:{ id: null, name: null, selected: null } });
155 var desktopsCollection = Backbone.Collection.extend({ model: desktopModel });
156 var desktops = new desktopsCollection();
157 var DesktopView = Backbone.View.extend({
library-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 1 lines
1 define([],function(){var e=Backbone.Model.extend({urlRoot:"/api/libraries/",isVisible:function(k){var j=true;if((!show_delete)&&(this.get("deleted"))){j=false}return j}});var a=Backbone.Model.extend({urlRoot:"/api/folders"});var h=Backbone.Collection.extend({url:"/api/libraries",model:e,sort_key:"name",sort_order:null,initialize:function(j){j=j||{}},getVisible:function(k,l){l=l||[];var j=new h(this.filter(function(m){return m.isVisible(k)}));return j}});var f=Backbone.Model.extend({urlRoot:"/api/libraries/datasets"});var c=Backbone.Collection.extend({model:f});var d=Backbone.Model.extend({defaults:{folder:new c(),full_path:"unknown",urlRoot:"/api/folders/",id:"unknown"},parse:function(j){this.full_path=j[0].full_path;this.get("folder").reset(j[1].folder_contents);return j}});var b=Backbone.Model.extend({urlRoot:"/api/histories/"});var g=Backbone.Model.extend({url:"/api/histories/"});var i=Backbone.Collection.extend({url:"/api/histories",model:g});return{Library:e,FolderAsModel:a,Libraries:h,Item:f,Folder:c,FolderContainer:d,HistoryItem:b,GalaxyHistory:g,GalaxyHistories:i}});
library-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 1 lines
1 define([],function(){var f=Backbone.Model.extend({urlRoot:"/api/libraries/",isVisible:function(l){var k=true;if((!l)&&(this.get("deleted"))){k=false}return k}});var i=Backbone.Collection.extend({url:"/api/libraries",model:f,sort_key:"name",sort_order:null,initialize:function(k){k=k||{}},getVisible:function(l,m){m=m||[];var k=new i(this.filter(function(n){return n.isVisible(l)}));return k},sortByNameAsc:function(){this.comparator=function(l,k){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return 1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return -1}return 0};this.sort();return this},sortByNameDesc:function(){this.comparator=function(l,k){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return -1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return 1}return 0};this.sort();return this}});var g=Backbone.Model.extend({urlRoot:"/api/libraries/datasets/"});var a=Backbone.Model.extend({urlRoot:"/api/folders"});var c=Backbone.Collection.extend({model:g,sortByNameAsc:function(){this.comparator=function(l,k){if(l.get("type")===k.get("type")){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return 1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return -1}return 0}else{if(l.get("type")==="folder"){return -1}else{return 1}}};this.sort();return this},sortByNameDesc:function(){this.comparator=function(l,k){if(l.get("type")===k.get("type")){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return -1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return 1}return 0}else{if(l.get("type")==="folder"){return -1}else{return 1}}};this.sort();return this}});var e=Backbone.Model.extend({defaults:{folder:new c(),urlRoot:"/api/folders/",id:"unknown"},parse:function(k){this.get("folder").reset(k.folder_contents);return k}});var b=Backbone.Model.extend({urlRoot:"/api/histories/"});var d=Backbone.Collection.extend({urlRoot:"/api/histories/",initialize:function(k){this.id=k.id},url:function(){return this.urlRoot+this.id+"/contents"},model:b});var h=Backbone.Model.extend({urlRoot:"/api/histories/"});var j=Backbone.Collection.extend({url:"/api/histories",model:h});return{Library:f,FolderAsModel:a,Libraries:i,Item:g,Folder:c,FolderContainer:e,HistoryItem:b,HistoryContents:d,GalaxyHistory:h,GalaxyHistories:j}});
backbone-paginated-collection-spec.js (https://github.com/dlikhten/paginated-collection.git) JavaScript · 374 lines
chatter.js (https://bitbucket.org/Jeffrey/gevent-socketio/) JavaScript · 88 lines
models.js (https://bitbucket.org/aktivecortex/aktivecortex.git) JavaScript · 196 lines
customize-models.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 281 lines
productList.js (https://git01.codeplex.com/mobileshop) JavaScript · 173 lines
butterbean.js (https://bitbucket.org/zshi0001/fit5120-kic.git) JavaScript · 875 lines
mailCollection.js (https://gitlab.com/zoharyah/mymail.git) JavaScript · 111 lines
collection.js (https://bitbucket.org/matthewselby/wpdev.git) JavaScript · 104 lines
searchList.js (https://git01.codeplex.com/mobileshop) JavaScript · 172 lines
payment.js (https://git01.codeplex.com/mobileshop) JavaScript · 63 lines
todos.js (git://github.com/pieter-vanderwerff/backbone-require-wire.git) JavaScript · 88 lines
job_graph.js (https://gitlab.com/jack/chronos.git) JavaScript · 321 lines
tags.js (https://bitbucket.org/chapmanb/galaxy-central/) JavaScript · 66 lines
hda-model.js (https://bitbucket.org/andreyto/mgtaxa-galaxy) JavaScript · 1 lines
1 var HistoryDatasetAssociation=BaseModel.extend(LoggableMixin).extend({defaults:{history_id:null,model_class:"HistoryDatasetAssociation",hid:0,id:null,name:"",state:"",data_type:null,file_size:0,meta_files:[],misc_blurb:"",misc_info:"",deleted:false,purged:false,visible:false,accessible:false},urlRoot:"api/histories/",url:function(){return"api/histories/"+this.get("history_id")+"/contents/"+this.get("id")},initialize:function(){this.log(this+".initialize",this.attributes);this.log("\tparent history_id: "+this.get("history_id"));if(!this.get("accessible")){this.set("state",HistoryDatasetAssociation.STATES.NOT_VIEWABLE)}this.on("change:state",function(b,a){this.log(this+" has changed state:",b,a);if(this.inReadyState()){this.trigger("state:ready",this.get("id"),a,this.previous("state"),b)}})},isDeletedOrPurged:function(){return(this.get("deleted")||this.get("purged"))},isVisible:function(b,c){var a=true;if((!b)&&(this.get("deleted")||this.get("purged"))){a=false}if((!c)&&(!this.get("visible"))){a=false}return a},inReadyState:function(){var a=this.get("state");return((a===HistoryDatasetAssociation.STATES.NEW)||(a===HistoryDatasetAssociation.STATES.OK)||(a===HistoryDatasetAssociation.STATES.EMPTY)||(a===HistoryDatasetAssociation.STATES.FAILED_METADATA)||(a===HistoryDatasetAssociation.STATES.NOT_VIEWABLE)||(a===HistoryDatasetAssociation.STATES.DISCARDED)||(a===HistoryDatasetAssociation.STATES.ERROR))},hasData:function(){return(this.get("file_size")>0)},toString:function(){var a=this.get("id")||"";if(this.get("name")){a+=':"'+this.get("name")+'"'}return"HistoryDatasetAssociation("+a+")"}});HistoryDatasetAssociation.STATES={UPLOAD:"upload",QUEUED:"queued",PAUSED:"paused",RUNNING:"running",SETTING_METADATA:"setting_metadata",NEW:"new",EMPTY:"empty",OK:"ok",FAILED_METADATA:"failed_metadata",NOT_VIEWABLE:"noPermission",DISCARDED:"discarded",ERROR:"error"};var HDACollection=Backbone.Collection.extend(LoggableMixin).extend({model:HistoryDatasetAssociation,initialize:function(){},ids:function(){return this.map(function(a){return a.id})},getVisible:function(a,b){return this.filter(function(c){return c.isVisible(a,b)})},getStateLists:function(){var a={};_.each(_.values(HistoryDatasetAssociation.STATES),function(b){a[b]=[]});this.each(function(b){a[b.get("state")].push(b.get("id"))});return a},running:function(){var a=[];this.each(function(b){if(!b.inReadyState()){a.push(b.get("id"))}});return a},update:function(a){this.log(this+"update:",a);if(!(a&&a.length)){return}var b=this;_.each(a,function(e,c){var d=b.get(e);d.fetch()})},toString:function(){return("HDACollection("+this.ids().join(",")+")")}});
collection.js (https://bitbucket.org/matthewselby/wpdev.git) JavaScript · 65 lines
author.js (https://bitbucket.org/digitalklones/wordpress.git) JavaScript · 175 lines
myFilter.js (https://git01.codeplex.com/mobileshop) JavaScript · 50 lines
tours.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines
1 define(["libs/bootstrap-tour"],function(){var a={storage:window.sessionStorage,onEnd:function(){sessionStorage.removeItem("activeGalaxyTour")},delay:150,orphan:!0},b=function(a){return _.each(a.steps,function(a){a.preclick&&(a.onShow=function(){_.each(a.preclick,function(a){$(a).click()})}),a.postclick&&(a.onHide=function(){_.each(a.postclick,function(a){$(a).click()})}),a.textinsert&&(a.onShown=function(){$(a.element).val(a.textinsert).trigger("change")})}),a};if("undefined"!=typeof Galaxy)var c=Galaxy.root;else var c="/";var d=Backbone.Model.extend({urlRoot:c+"api/tours"}),e=Backbone.Collection.extend({url:c+"api/tours",model:d}),f=function(d){var e=c+"api/tours/"+d;$.getJSON(e,function(c){tourdata=b(c),console.log(tourdata),sessionStorage.setItem("activeGalaxyTour",JSON.stringify(c));var d=new Tour(_.extend({steps:tourdata.steps},a));d.init(),d.goTo(0),d.restart()})},g=Backbone.View.extend({initialize:function(){var a=this;this.setElement("<div/>"),this.model=new e,this.model.fetch({success:function(){a.render()},error:function(){console.error("Failed to fetch tours.")}})},render:function(){var a=_.template(["<h2>Galaxy Tours</h2>","<p>This page presents a list of interactive tours available on this Galaxy server. ","Select any tour to get started (and remember, you can click 'End Tour' at any time).</p>","<ul>","<% _.each(tours, function(tour) { %>","<li>",'<a href="#" class="tourItem" data-tour.id=<%- tour.id %>>',"<%- tour.attributes.name || tour.id %>","</a>",' - <%- tour.attributes.description || "No description given." %>',"</li>","<% }); %>","</ul>"].join(""));this.$el.html(a({tours:this.model.models})).on("click",".tourItem",function(){f($(this).data("tour.id"))})}});return{ToursView:g,hooked_tour_from_data:b,tour_opts:a,giveTour:f}});
2 //# sourceMappingURL=../../maps/mvc/tours.js.map
column.js (https://bitbucket.org/AnuSekar/btree_pos.git) JavaScript · 229 lines
visualization-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines
1 var Visualization=Backbone.Model.extend({defaults:{config:{}},urlRoot:function(){var a="api/visualizations";return Galaxy.root+a},initialize:function(a){_.isObject(a.config)&&_.isObject(this.defaults.config)&&_.defaults(a.config,this.defaults.config),this._setUpListeners()},_setUpListeners:function(){},set:function(a,b){if("config"===a){var c=this.get("config");_.isObject(c)&&(b=_.extend(_.clone(c),b))}return Backbone.Model.prototype.set.call(this,a,b),this},toString:function(){var a=this.get("id")||"";return this.get("title")&&(a+=":"+this.get("title")),"Visualization("+a+")"}}),VisualizationCollection=Backbone.Collection.extend({model:Visualization,url:function(){return Galaxy.root+"api/visualizations"},initialize:function(a,b){b=b||{}},set:function(a,b){var c=this;a=_.map(a,function(a){var b=c.get(a.id);if(!b)return a;var d=b.toJSON();return _.extend(d,a),d}),Backbone.Collection.prototype.set.call(this,a,b)},toString:function(){return["VisualizationCollection(",[this.historyId,this.length].join(),")"].join("")}});
2 //# sourceMappingURL=../../../maps/mvc/visualization/visualization-model.js.map
widget-timetable.js (https://bitbucket.org/kahara/glissanmedical.git) JavaScript · 190 lines
my-project.js (https://bitbucket.org/digitalklones/wordpress.git) JavaScript · 523 lines
5 var $freelancer_current = $('.freelancer-current-project-tab');
6 Models.FreelancerCurrentProject = Backbone.Model.extend();
7 Collections.FreelancerCurrentProjects = Backbone.Collection.extend({
8 model: Models.FreelancerCurrentProject,
9 action: 'ae-fetch-bid',
95 var $freelancer_previous = $('.freelancer-previous-project-tab');
96 Models.FreelancerPreviousProject = Backbone.Model.extend();
97 Collections.FreelancerPreviousProjects = Backbone.Collection.extend({
98 model: Models.FreelancerPreviousProject,
99 action: 'ae-fetch-bid',
175 var $employer_current = $('.employer-current-project-tab');
176 Models.EmployerCurrentProject = Backbone.Model.extend();
177 Collections.EmployerCurrentProjects = Backbone.Collection.extend({
178 model: Models.EmployerCurrentProject,
179 action: 'ae-fetch-projects',