diff options
| author | 2013-06-08 17:37:43 +0200 | |
|---|---|---|
| committer | 2013-06-08 17:37:44 +0200 | |
| commit | 2cf160d497e501bf254bd8be054c0f5880ab90ca (patch) | |
| tree | 03a720b6142cc03fe7ef258fa8d17da92b30a462 /module/web/static/js/libs/backbone.wreqr-0.1.0.js | |
| parent | Merge pull request #151 from vuolter/invertedconf (diff) | |
| download | pyload-2cf160d497e501bf254bd8be054c0f5880ab90ca.tar.xz | |
restructured webui to single-page-app, removed jinja
Diffstat (limited to 'module/web/static/js/libs/backbone.wreqr-0.1.0.js')
| -rw-r--r-- | module/web/static/js/libs/backbone.wreqr-0.1.0.js | 150 | 
1 files changed, 0 insertions, 150 deletions
diff --git a/module/web/static/js/libs/backbone.wreqr-0.1.0.js b/module/web/static/js/libs/backbone.wreqr-0.1.0.js deleted file mode 100644 index d1526c76b..000000000 --- a/module/web/static/js/libs/backbone.wreqr-0.1.0.js +++ /dev/null @@ -1,150 +0,0 @@ -// Backbone.Wreqr, v0.1.0 -// Copyright (c)2012 Derick Bailey, Muted Solutions, LLC. -// Distributed under MIT license -// http://github.com/marionettejs/backbone.wreqr -(function (root, factory) { -  if (typeof exports === 'object') { - -    var underscore = require('underscore'); -    var backbone = require('backbone'); - -    module.exports = factory(underscore, backbone); - -  } else if (typeof define === 'function' && define.amd) { - -    define(['underscore', 'backbone'], factory); - -  }  -}(this, function (_, Backbone) { -  "option strict"; - -  Backbone.Wreqr = (function(Backbone, Marionette, _){ -    "option strict"; -    var Wreqr = {}; -   -    // Handlers -    // -------- -    // A registry of functions to call, given a name -     -    Wreqr.Handlers = (function(Backbone, _){ -      "option strict"; -       -      // Constructor -      // ----------- -     -      var Handlers = function(){ -        "use strict"; -        this._handlers = {}; -      }; -     -      Handlers.extend = Backbone.Model.extend; -     -      // Instance Members -      // ---------------- -     -      _.extend(Handlers.prototype, { -     -        // Add a handler for the given name, with an -        // optional context to run the handler within -        addHandler: function(name, handler, context){ -          var config = { -            callback: handler, -            context: context -          }; -     -          this._handlers[name] = config; -        }, -     -        // Get the currently registered handler for -        // the specified name. Throws an exception if -        // no handler is found. -        getHandler: function(name){ -          var config = this._handlers[name]; -     -          if (!config){ -            throw new Error("Handler not found for '" + name + "'"); -          } -     -          return function(){ -            var args = Array.prototype.slice.apply(arguments); -            return config.callback.apply(config.context, args); -          }; -        }, -     -        // Remove a handler for the specified name -        removeHandler: function(name){ -          delete this._handlers[name]; -        }, -     -        // Remove all handlers from this registry -        removeAllHandlers: function(){ -          this._handlers = {}; -        } -      }); -     -      return Handlers; -    })(Backbone, _); -     -    // Wreqr.Commands -    // -------------- -    // -    // A simple command pattern implementation. Register a command -    // handler and execute it. -    Wreqr.Commands = (function(Wreqr){ -      "option strict"; -     -      return Wreqr.Handlers.extend({ -        execute: function(){ -          var name = arguments[0]; -          var args = Array.prototype.slice.call(arguments, 1); -     -          this.getHandler(name).apply(this, args); -        } -      }); -     -    })(Wreqr); -     -    // Wreqr.RequestResponse -    // --------------------- -    // -    // A simple request/response implementation. Register a -    // request handler, and return a response from it -    Wreqr.RequestResponse = (function(Wreqr){ -      "option strict"; -     -      return Wreqr.Handlers.extend({ -        request: function(){ -          var name = arguments[0]; -          var args = Array.prototype.slice.call(arguments, 1); -     -          return this.getHandler(name).apply(this, args); -        } -      }); -     -    })(Wreqr); -     -    // Event Aggregator -    // ---------------- -    // A pub-sub object that can be used to decouple various parts -    // of an application through event-driven architecture. -     -    Wreqr.EventAggregator = (function(Backbone, _){ -      "option strict"; -      var EA = function(){}; -     -      // Copy the `extend` function used by Backbone's classes -      EA.extend = Backbone.Model.extend; -     -      // Copy the basic Backbone.Events on to the event aggregator -      _.extend(EA.prototype, Backbone.Events); -     -      return EA; -    })(Backbone, _); -     -   -    return Wreqr; -  })(Backbone, Backbone.Marionette, _); -   -  return Backbone.Wreqr;  - -}));  | 
