build/joosy.js in joosy-1.2.0.alpha.73 vs build/joosy.js in joosy-1.2.0.beta.1

- old
+ new

@@ -1,2774 +1,2 @@ -(function() { - this.Joosy = { - Modules: {}, - Resources: {}, - Templaters: {}, - Helpers: {}, - Events: {}, - /* Global settings*/ - - debug: function(value) { - if (value != null) { - return this.__debug = value; - } else { - return !!this.__debug; - } - }, - templater: function(value) { - if (value != null) { - return this.__templater = value; - } else { - if (!this.__templater) { - throw new Error("No templater registered"); - } - return this.__templater; - } - }, - /* Global helpers*/ - - namespace: function(name, generator) { - var key, klass, part, space, _i, _len, _results; - if (generator == null) { - generator = false; - } - name = name.split('.'); - space = window; - for (_i = 0, _len = name.length; _i < _len; _i++) { - part = name[_i]; - if (part.length > 0) { - space = space[part] != null ? space[part] : space[part] = {}; - } - } - if (generator) { - generator = generator.apply(space); - } - _results = []; - for (key in space) { - klass = space[key]; - if (space.hasOwnProperty(key) && Joosy.Module.hasAncestor(klass, Joosy.Module)) { - _results.push(klass.__namespace__ = name); - } else { - _results.push(void 0); - } - } - return _results; - }, - helpers: function(name, generator) { - var _base; - (_base = Joosy.Helpers)[name] || (_base[name] = {}); - return generator.apply(Joosy.Helpers[name]); - }, - uid: function() { - this.__uid || (this.__uid = 0); - return "__joosy" + (this.__uid++); - }, - uuid: function() { - return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { - var r, v; - r = Math.random() * 16 | 0; - v = c === 'x' ? r : r & 3 | 8; - return v.toString(16); - }).toUpperCase(); - }, - /* Shortcuts*/ - - synchronize: function() { - var _ref; - if (!Joosy.Modules.Events) { - return console.error("Events module is required to use `Joosy.synchronize'!"); - } else { - return (_ref = Joosy.Modules.Events).synchronize.apply(_ref, arguments); - } - }, - buildUrl: function(url, params) { - var hash, paramsString; - paramsString = []; - Object.each(params, function(key, value) { - return paramsString.push("" + key + "=" + value); - }); - hash = url.match(/(\#.*)?$/)[0]; - url = url.replace(/\#.*$/, ''); - if (!paramsString.isEmpty() && !url.has(/\?/)) { - url = url + "?"; - } - paramsString = paramsString.join('&'); - if (!paramsString.isBlank() && url.last() !== '?') { - paramsString = '&' + paramsString; - } - return url + paramsString + hash; - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy', function() { - return Joosy; - }); - } - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Module = (function() { - function Module() {} - - Module.__namespace__ = []; - - Module.__className = function(klass) { - if (!Object.isFunction(klass)) { - klass = klass.constructor; - } - if (klass.name != null) { - return klass.name; - } else { - return klass.toString().replace(/^function ([a-zA-Z]+)\([\s\S]+/, '$1'); - } - }; - - Module.hasAncestor = function(what, klass) { - var _ref; - if (!((what != null) && (klass != null))) { - return false; - } - what = what.prototype; - klass = klass.prototype; - while (what) { - if (what === klass) { - return true; - } - what = (_ref = what.constructor) != null ? _ref.__super__ : void 0; - } - return false; - }; - - Module.aliasMethodChain = function(method, feature, action) { - var camelized, chained; - camelized = feature.charAt(0).toUpperCase() + feature.slice(1); - chained = "" + method + "Without" + camelized; - if (!Object.isFunction(action)) { - action = this.prototype[action]; - } - this.prototype[chained] = this.prototype[method]; - return this.prototype[method] = action; - }; - - Module.aliasStaticMethodChain = function(method, feature, action) { - var camelized, chained; - camelized = feature.charAt(0).toUpperCase() + feature.slice(1); - chained = "" + method + "Without" + camelized; - this[chained] = this[method]; - return this[method] = action; - }; - - Module.merge = function(destination, source, unsafe) { - var key, value; - if (unsafe == null) { - unsafe = true; - } - for (key in source) { - value = source[key]; - if (source.hasOwnProperty(key)) { - if (unsafe || !destination.hasOwnProperty(key)) { - destination[key] = value; - } - } - } - return destination; - }; - - Module.include = function(object) { - var key, value, _ref; - if (!object) { - throw new Error('include(object) requires obj'); - } - for (key in object) { - value = object[key]; - if (key !== 'included' && key !== 'extended') { - this.prototype[key] = value; - } - } - if ((_ref = object.included) != null) { - _ref.apply(this); - } - return null; - }; - - Module.extend = function(object) { - var _ref; - if (!object) { - throw new Error('extend(object) requires object'); - } - this.merge(this, object); - if ((_ref = object.extended) != null) { - _ref.apply(this); - } - return null; - }; - - return Module; - - })(); - - Joosy.Function = (function(_super) { - __extends(Function, _super); - - function Function(setup) { - var key, shim, value; - shim = function() { - return shim.__call.apply(shim, arguments); - }; - if (shim.__proto__) { - shim.__proto__ = this; - } else { - for (key in this) { - value = this[key]; - shim[key] = value; - } - } - shim.constructor = this.constructor; - if (setup != null) { - setup.call(shim); - } - return shim; - } - - return Function; - - })(Joosy.Module); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/module', function() { - return Joosy.Module; - }); - } - -}).call(this); -(function() { - var Namespace, SynchronizationContext, - __slice = [].slice; - - SynchronizationContext = (function() { - function SynchronizationContext() { - this.actions = []; - } - - SynchronizationContext.prototype["do"] = function(action) { - return this.actions.push(action); - }; - - SynchronizationContext.prototype.after = function(after) { - this.after = after; - }; - - return SynchronizationContext; - - })(); - - Namespace = (function() { - function Namespace(parent) { - this.parent = parent; - this.bindings = []; - } - - Namespace.prototype.bind = function() { - var args, _ref; - args = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - return this.bindings.push((_ref = this.parent).bind.apply(_ref, args)); - }; - - Namespace.prototype.unbind = function() { - var b, _i, _len, _ref; - _ref = this.bindings; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - b = _ref[_i]; - this.parent.unbind(b); - } - return this.bindings = []; - }; - - return Namespace; - - })(); - - Joosy.Modules.Events = { - eventsNamespace: function(actions) { - var namespace; - namespace = new Namespace(this); - if (actions != null) { - if (typeof actions.call === "function") { - actions.call(namespace); - } - } - return namespace; - }, - wait: function(name, events, callback) { - if (!this.hasOwnProperty('__oneShotEvents')) { - this.__oneShotEvents = {}; - } - if (Object.isFunction(events)) { - callback = events; - events = name; - name = Object.keys(this.__oneShotEvents).length.toString(); - } - events = this.__splitEvents(events); - if (events.length > 0) { - this.__oneShotEvents[name] = [events, callback]; - } else { - callback(); - } - return name; - }, - unwait: function(target) { - if (this.hasOwnProperty('__oneShotEvents')) { - return delete this.__oneShotEvents[target]; - } - }, - bind: function(name, events, callback) { - if (!this.hasOwnProperty('__boundEvents')) { - this.__boundEvents = {}; - } - if (Object.isFunction(events)) { - callback = events; - events = name; - name = Object.keys(this.__boundEvents).length.toString(); - } - events = this.__splitEvents(events); - if (events.length > 0) { - this.__boundEvents[name] = [events, callback]; - } else { - callback(); - } - return name; - }, - unbind: function(target) { - if (this.hasOwnProperty('__boundEvents')) { - return delete this.__boundEvents[target]; - } - }, - trigger: function() { - var callback, data, event, events, fire, name, remember, _ref, _ref1, _ref2, _ref3, - _this = this; - event = arguments[0], data = 2 <= arguments.length ? __slice.call(arguments, 1) : []; - Joosy.Modules.Log.debugAs(this, "Event " + event + " triggered"); - if (Object.isObject(event)) { - remember = event.remember; - event = event.name; - } else { - remember = false; - } - if (this.hasOwnProperty('__oneShotEvents')) { - fire = []; - _ref = this.__oneShotEvents; - for (name in _ref) { - _ref1 = _ref[name], events = _ref1[0], callback = _ref1[1]; - events.remove(event); - if (events.length === 0) { - fire.push(name); - } - } - fire.each(function(name) { - callback = _this.__oneShotEvents[name][1]; - delete _this.__oneShotEvents[name]; - return callback.apply(null, data); - }); - } - if (this.hasOwnProperty('__boundEvents')) { - _ref2 = this.__boundEvents; - for (name in _ref2) { - _ref3 = _ref2[name], events = _ref3[0], callback = _ref3[1]; - if (events.any(event)) { - callback.apply(null, data); - } - } - } - if (remember) { - if (!this.hasOwnProperty('__triggeredEvents')) { - this.__triggeredEvents = {}; - } - return this.__triggeredEvents[event] = true; - } - }, - synchronize: function(block) { - var context, counter, - _this = this; - context = new SynchronizationContext; - counter = 0; - block(context); - if (context.actions.length === 0) { - return context.after.call(this); - } else { - return context.actions.each(function(action) { - return action.call(_this, function() { - if (++counter >= context.actions.length) { - return context.after.call(this); - } - }); - }); - } - }, - __splitEvents: function(events) { - var _this = this; - if (Object.isString(events)) { - if (events.isBlank()) { - events = []; - } else { - events = events.trim().split(/\s+/); - } - } - if (this.hasOwnProperty('__triggeredEvents')) { - events = events.findAll(function(e) { - return !_this.__triggeredEvents[e]; - }); - } - return events; - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/events', function() { - return Joosy.Modules.Events; - }); - } - -}).call(this); -(function() { - var __slice = [].slice; - - Joosy.Modules.Log = { - log: function() { - var args; - args = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - if (typeof console === "undefined" || console === null) { - return; - } - if (console.log.apply != null) { - args.unshift("Joosy>"); - return console.log.apply(console, args); - } else { - return console.log(args.first()); - } - }, - debug: function() { - var args; - args = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - if (!Joosy.debug()) { - return; - } - return this.log.apply(this, args); - }, - debugAs: function() { - var args, context, string; - context = arguments[0], string = arguments[1], args = 3 <= arguments.length ? __slice.call(arguments, 2) : []; - if (!Joosy.debug()) { - return; - } - context = Joosy.Module.__className(context) || 'unknown context'; - return this.debug.apply(this, ["" + context + "> " + string].concat(__slice.call(args))); - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/log', function() { - return Joosy.Modules.Log; - }); - } - -}).call(this); -(function() { - Joosy.Modules.DOM = { - eventSplitter: /^(\S+)\s*(.*)$/, - included: function() { - this.mapElements = function(map) { - if (!this.prototype.hasOwnProperty("__elements")) { - this.prototype.__elements = Object.clone(this.__super__.__elements) || {}; - } - return Object.merge(this.prototype.__elements, map); - }; - return this.mapEvents = function(map) { - if (!this.prototype.hasOwnProperty("__events")) { - this.prototype.__events = Object.clone(this.__super__.__events) || {}; - } - return Object.merge(this.prototype.__events, map); - }; - }, - $: function(selector, context) { - return $(selector, context || this.$container); - }, - __extractSelector: function(selector) { - var _this = this; - selector = selector.replace(/(\$[A-z0-9\.\$]+)/g, function(path) { - var keyword, part, target, _i, _len, _ref; - path = path.split('.'); - keyword = path.pop(); - target = _this; - for (_i = 0, _len = path.length; _i < _len; _i++) { - part = path[_i]; - target = target != null ? target[part] : void 0; - } - return target != null ? (_ref = target[keyword]) != null ? _ref.selector : void 0 : void 0; - }); - return selector.trim(); - }, - __assignElements: function(root, entries) { - var key, value, _results; - root || (root = this); - entries || (entries = this.__elements); - if (!entries) { - return; - } - _results = []; - for (key in entries) { - value = entries[key]; - if (Object.isObject(value)) { - _results.push(this.__assignElements(root['$' + key] = {}, value)); - } else { - value = this.__extractSelector(value); - root['$' + key] = this.__wrapElement(value); - _results.push(root['$' + key].selector = value); - } - } - return _results; - }, - __wrapElement: function(value) { - var _this = this; - return function(context) { - if (!context) { - return _this.$(value); - } - return _this.$(value, context); - }; - }, - __delegateEvents: function() { - var events, module, - _this = this; - module = this; - events = this.__events; - if (!events) { - return; - } - return Object.each(events, function(keys, method) { - var callback, eventName, key, match, selector, _i, _len, _ref, _results; - _ref = keys.split(','); - _results = []; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - key = _ref[_i]; - key = key.replace(/^\s+/, ''); - if (!Object.isFunction(method)) { - method = _this[method]; - } - callback = function(event) { - return method.call(module, $(this), event); - }; - match = key.match(_this.eventSplitter); - eventName = match[1]; - selector = _this.__extractSelector(match[2]); - if (selector === "") { - _this.$container.bind(eventName, callback); - _results.push(Joosy.Modules.Log.debugAs(_this, "" + eventName + " binded on container")); - } else if (selector === void 0) { - throw new Error("Unknown element " + match[2] + " in " + (Joosy.Module.__className(_this.constructor)) + " (maybe typo?)"); - } else { - _this.$container.on(eventName, selector, callback); - _results.push(Joosy.Modules.Log.debugAs(_this, "" + eventName + " binded on " + selector)); - } - } - return _results; - }); - }, - __clearContainer: function() { - this.$container.unbind().off(); - return this.$container = $(); - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/dom', function() { - return Joosy.Modules.DOM; - }); - } - -}).call(this); -(function() { - (function(window) { - var K, Metamorph, afterFunc, appendToFunc, document, endTagFunc, findChildById, firstNodeFor, fixParentage, guid, htmlFunc, movesWhitespace, needsShy, outerHTMLFunc, prependFunc, rangeFor, realNode, removeFunc, setInnerHTML, startTagFunc, supportsRange, wrapMap; - K = function() {}; - guid = 0; - document = window.document; - supportsRange = document && ("createRange" in document) && (typeof Range !== "undefined") && Range.prototype.createContextualFragment; - needsShy = document && (function() { - var testEl; - testEl = document.createElement("div"); - testEl.innerHTML = "<div></div>"; - testEl.firstChild.innerHTML = "<script></script>"; - return testEl.firstChild.innerHTML === ""; - })(); - movesWhitespace = document && (function() { - var testEl; - testEl = document.createElement("div"); - testEl.innerHTML = "Test: <script type='text/x-placeholder'></script>Value"; - return testEl.childNodes[0].nodeValue === "Test:" && testEl.childNodes[2].nodeValue === " Value"; - })(); - Metamorph = function(html) { - var myGuid, self; - self = void 0; - if (this instanceof Metamorph) { - self = this; - } else { - self = new K(); - } - self.innerHTML = html; - myGuid = "metamorph-" + (guid++); - self.start = myGuid + "-start"; - self.end = myGuid + "-end"; - return self; - }; - K.prototype = Metamorph.prototype; - rangeFor = void 0; - htmlFunc = void 0; - removeFunc = void 0; - outerHTMLFunc = void 0; - appendToFunc = void 0; - afterFunc = void 0; - prependFunc = void 0; - startTagFunc = void 0; - endTagFunc = void 0; - outerHTMLFunc = function() { - return this.startTag() + this.innerHTML + this.endTag(); - }; - startTagFunc = function() { - return "<script id='" + this.start + "' type='text/x-placeholder'></script>"; - }; - endTagFunc = function() { - return "<script id='" + this.end + "' type='text/x-placeholder'></script>"; - }; - if (supportsRange) { - rangeFor = function(morph, outerToo) { - var after, before, range; - range = document.createRange(); - before = document.getElementById(morph.start); - after = document.getElementById(morph.end); - if (outerToo) { - range.setStartBefore(before); - range.setEndAfter(after); - } else { - range.setStartAfter(before); - range.setEndBefore(after); - } - return range; - }; - htmlFunc = function(html, outerToo) { - var fragment, range; - range = rangeFor(this, outerToo); - range.deleteContents(); - fragment = range.createContextualFragment(html); - return range.insertNode(fragment); - }; - removeFunc = function() { - var range; - range = rangeFor(this, true); - return range.deleteContents(); - }; - appendToFunc = function(node) { - var frag, range; - range = document.createRange(); - range.setStart(node); - range.collapse(false); - frag = range.createContextualFragment(this.outerHTML()); - return node.appendChild(frag); - }; - afterFunc = function(html) { - var after, fragment, range; - range = document.createRange(); - after = document.getElementById(this.end); - range.setStartAfter(after); - range.setEndAfter(after); - fragment = range.createContextualFragment(html); - return range.insertNode(fragment); - }; - prependFunc = function(html) { - var fragment, range, start; - range = document.createRange(); - start = document.getElementById(this.start); - range.setStartAfter(start); - range.setEndAfter(start); - fragment = range.createContextualFragment(html); - return range.insertNode(fragment); - }; - } else { - /* - This code is mostly taken from jQuery, with one exception. In jQuery's case, we - have some HTML and we need to figure out how to convert it into some nodes. - - In this case, jQuery needs to scan the HTML looking for an opening tag and use - that as the key for the wrap map. In our case, we know the parent node, and - can use its type as the key for the wrap map. - */ - - wrapMap = { - select: [1, "<select multiple='multiple'>", "</select>"], - fieldset: [1, "<fieldset>", "</fieldset>"], - table: [1, "<table>", "</table>"], - tbody: [2, "<table><tbody>", "</tbody></table>"], - tr: [3, "<table><tbody><tr>", "</tr></tbody></table>"], - colgroup: [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"], - map: [1, "<map>", "</map>"], - _default: [0, "", ""] - }; - findChildById = function(element, id) { - var found, idx, len, node; - if (element.getAttribute("id") === id) { - return element; - } - len = element.childNodes.length; - idx = void 0; - node = void 0; - found = void 0; - idx = 0; - while (idx < len) { - node = element.childNodes[idx]; - found = node.nodeType === 1 && findChildById(node, id); - if (found) { - return found; - } - idx++; - } - }; - setInnerHTML = function(element, html) { - var idx, len, matches, node, script, _results; - matches = []; - if (movesWhitespace) { - html = html.replace(/(\s+)(<script id='([^']+)')/g, function(match, spaces, tag, id) { - matches.push([id, spaces]); - return tag; - }); - } - element.innerHTML = html; - if (matches.length > 0) { - len = matches.length; - idx = void 0; - idx = 0; - _results = []; - while (idx < len) { - script = findChildById(element, matches[idx][0]); - node = document.createTextNode(matches[idx][1]); - script.parentNode.insertBefore(node, script); - _results.push(idx++); - } - return _results; - } - }; - /* - Given a parent node and some HTML, generate a set of nodes. Return the first - node, which will allow us to traverse the rest using nextSibling. - - We need to do this because innerHTML in IE does not really parse the nodes. - */ - - firstNodeFor = function(parentNode, html) { - var arr, depth, element, end, i, shyElement, start; - arr = wrapMap[parentNode.tagName.toLowerCase()] || wrapMap._default; - depth = arr[0]; - start = arr[1]; - end = arr[2]; - if (needsShy) { - html = "&shy;" + html; - } - element = document.createElement("div"); - setInnerHTML(element, start + html + end); - i = 0; - while (i <= depth) { - element = element.firstChild; - i++; - } - if (needsShy) { - shyElement = element; - while (shyElement.nodeType === 1 && !shyElement.nodeName) { - shyElement = shyElement.firstChild; - } - if (shyElement.nodeType === 3 && shyElement.nodeValue.charAt(0) === "­") { - shyElement.nodeValue = shyElement.nodeValue.slice(1); - } - } - return element; - }; - /* - In some cases, Internet Explorer can create an anonymous node in - the hierarchy with no tagName. You can create this scenario via: - - div = document.createElement("div"); - div.innerHTML = "<table>&shy<script></script><tr><td>hi</td></tr></table>"; - div.firstChild.firstChild.tagName //=> "" - - If our script markers are inside such a node, we need to find that - node and use *it* as the marker. - */ - - realNode = function(start) { - while (start.parentNode.tagName === "") { - start = start.parentNode; - } - return start; - }; - /* - When automatically adding a tbody, Internet Explorer inserts the - tbody immediately before the first <tr>. Other browsers create it - before the first node, no matter what. - - This means the the following code: - - div = document.createElement("div"); - div.innerHTML = "<table><script id='first'></script><tr><td>hi</td></tr><script id='last'></script></table> - - Generates the following DOM in IE: - - + div - + table - - script id='first' - + tbody - + tr - + td - - "hi" - - script id='last' - - Which means that the two script tags, even though they were - inserted at the same point in the hierarchy in the original - HTML, now have different parents. - - This code reparents the first script tag by making it the tbody's - first child. - */ - - fixParentage = function(start, end) { - if (start.parentNode !== end.parentNode) { - return end.parentNode.insertBefore(start, end.parentNode.firstChild); - } - }; - htmlFunc = function(html, outerToo) { - var end, last, nextSibling, node, parentNode, start, _results; - start = realNode(document.getElementById(this.start)); - end = document.getElementById(this.end); - parentNode = end.parentNode; - node = void 0; - nextSibling = void 0; - last = void 0; - fixParentage(start, end); - node = start.nextSibling; - while (node) { - nextSibling = node.nextSibling; - last = node === end; - if (last) { - if (outerToo) { - end = node.nextSibling; - } else { - break; - } - } - node.parentNode.removeChild(node); - if (last) { - break; - } - node = nextSibling; - } - node = firstNodeFor(start.parentNode, html); - _results = []; - while (node) { - nextSibling = node.nextSibling; - parentNode.insertBefore(node, end); - _results.push(node = nextSibling); - } - return _results; - }; - removeFunc = function() { - var end, start; - start = realNode(document.getElementById(this.start)); - end = document.getElementById(this.end); - this.html(""); - start.parentNode.removeChild(start); - return end.parentNode.removeChild(end); - }; - appendToFunc = function(parentNode) { - var nextSibling, node, _results; - node = firstNodeFor(parentNode, this.outerHTML()); - nextSibling = void 0; - _results = []; - while (node) { - nextSibling = node.nextSibling; - parentNode.appendChild(node); - _results.push(node = nextSibling); - } - return _results; - }; - afterFunc = function(html) { - var end, insertBefore, nextSibling, node, parentNode, _results; - end = document.getElementById(this.end); - insertBefore = end.nextSibling; - parentNode = end.parentNode; - nextSibling = void 0; - node = void 0; - node = firstNodeFor(parentNode, html); - _results = []; - while (node) { - nextSibling = node.nextSibling; - parentNode.insertBefore(node, insertBefore); - _results.push(node = nextSibling); - } - return _results; - }; - prependFunc = function(html) { - var insertBefore, nextSibling, node, parentNode, start, _results; - start = document.getElementById(this.start); - parentNode = start.parentNode; - nextSibling = void 0; - node = void 0; - node = firstNodeFor(parentNode, html); - insertBefore = start.nextSibling; - _results = []; - while (node) { - nextSibling = node.nextSibling; - parentNode.insertBefore(node, insertBefore); - _results.push(node = nextSibling); - } - return _results; - }; - } - Metamorph.prototype.html = function(html) { - this.checkRemoved(); - if (html === undefined) { - return this.innerHTML; - } - htmlFunc.call(this, html); - return this.innerHTML = html; - }; - Metamorph.prototype.replaceWith = function(html) { - this.checkRemoved(); - return htmlFunc.call(this, html, true); - }; - Metamorph.prototype.remove = removeFunc; - Metamorph.prototype.outerHTML = outerHTMLFunc; - Metamorph.prototype.appendTo = appendToFunc; - Metamorph.prototype.after = afterFunc; - Metamorph.prototype.prepend = prependFunc; - Metamorph.prototype.startTag = startTagFunc; - Metamorph.prototype.endTag = endTagFunc; - Metamorph.prototype.isRemoved = function() { - var after, before; - before = document.getElementById(this.start); - after = document.getElementById(this.end); - return !before || !after; - }; - Metamorph.prototype.checkRemoved = function() { - if (this.isRemoved()) { - throw new Error("Cannot perform operations on a Metamorph that is not in the DOM."); - } - }; - return window.Metamorph = Metamorph; - })(this); - -}).call(this); -(function() { - var __slice = [].slice; - - Joosy.Modules.Renderer = { - included: function() { - this.view = function(template, options) { - if (options == null) { - options = {}; - } - this.prototype.__view = template; - return this.prototype.__renderDefault = function(locals) { - if (locals == null) { - locals = {}; - } - if (options.dynamic) { - return this.renderDynamic(template, locals); - } else { - return this.render(template, locals); - } - }; - }; - return this.helper = function() { - var helpers, _ref; - helpers = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - if (!this.prototype.hasOwnProperty("__helpers")) { - this.prototype.__helpers = ((_ref = this.__super__.__helpers) != null ? _ref.clone() : void 0) || []; - } - this.prototype.__helpers = this.prototype.__helpers.add(helpers).unique(); - return this.prototype.__helpers = this.prototype.__helpers.unique(); - }; - }, - render: function(template, locals, parentStackPointer) { - if (locals == null) { - locals = {}; - } - if (parentStackPointer == null) { - parentStackPointer = false; - } - return this.__render(false, template, locals, parentStackPointer); - }, - renderDynamic: function(template, locals, parentStackPointer) { - if (locals == null) { - locals = {}; - } - if (parentStackPointer == null) { - parentStackPointer = false; - } - return this.__render(true, template, locals, parentStackPointer); - }, - __assignHelpers: function() { - var _this = this; - if (this.__helpers == null) { - return; - } - if (!this.hasOwnProperty("__helpers")) { - this.__helpers = this.__helpers.clone(); - } - return this.__helpers.each(function(helper, i) { - if (!Object.isObject(helper)) { - if (_this[helper] == null) { - throw new Error("Cannot find method '" + helper + "' to use as helper"); - } - _this.__helpers[i] = {}; - return _this.__helpers[i][helper] = function() { - return _this[helper].apply(_this, arguments); - }; - } - }); - }, - __instantiateHelpers: function() { - var helper, _i, _len, _ref; - if (!this.__helpersInstance) { - this.__assignHelpers(); - this.__helpersInstance = {}; - this.__helpersInstance.__renderer = this; - Joosy.Module.merge(this.__helpersInstance, Joosy.Helpers.Application); - if (Joosy.Helpers.Routes != null) { - Joosy.Module.merge(this.__helpersInstance, Joosy.Helpers.Routes); - } - if (this.__helpers) { - _ref = this.__helpers; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - helper = _ref[_i]; - Joosy.Module.merge(this.__helpersInstance, helper); - } - } - } - return this.__helpersInstance; - }, - __instantiateRenderers: function(parentStackPointer) { - var _this = this; - return { - render: function(template, locals) { - if (locals == null) { - locals = {}; - } - return _this.render(template, locals, parentStackPointer); - }, - renderDynamic: function(template, locals) { - if (locals == null) { - locals = {}; - } - return _this.renderDynamic(template, locals, parentStackPointer); - }, - renderInline: function(locals, partial) { - var template; - if (locals == null) { - locals = {}; - } - template = function(params) { - return partial.apply(params); - }; - return _this.renderDynamic(template, locals, parentStackPointer); - } - }; - }, - __render: function(dynamic, template, locals, parentStackPointer) { - var binding, context, key, morph, object, result, stack, update, - _this = this; - if (locals == null) { - locals = {}; - } - if (parentStackPointer == null) { - parentStackPointer = false; - } - stack = this.__renderingStackChildFor(parentStackPointer); - stack.template = template; - stack.locals = locals; - if (Object.isString(template)) { - if (this.__renderSection != null) { - template = Joosy.templater().resolveTemplate(this.__renderSection(), template, this); - } - template = Joosy.templater().buildView(template); - } else if (!Object.isFunction(template)) { - throw new Error("" + (Joosy.Module.__className(this)) + "> template (maybe @view) does not look like a string or lambda"); - } - if (!Object.isObject(locals) && Object.extended().constructor !== locals.constructor) { - throw new Error("" + (Joosy.Module.__className(this)) + "> locals (maybe @data?) is not a hash"); - } - context = function() { - var data; - data = {}; - Joosy.Module.merge(data, stack.locals); - Joosy.Module.merge(data, _this.__instantiateHelpers(), false); - Joosy.Module.merge(data, _this.__instantiateRenderers(stack)); - return data; - }; - result = function() { - return template(context()); - }; - if (dynamic) { - morph = Metamorph(result()); - update = function() { - var binding, child, object, _i, _j, _len, _len1, _ref, _ref1, _ref2, _results; - if (morph.isRemoved()) { - _ref = morph.__bindings; - _results = []; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - _ref1 = _ref[_i], object = _ref1[0], binding = _ref1[1]; - _results.push(object.unbind(binding)); - } - return _results; - } else { - _ref2 = stack.children; - for (_j = 0, _len1 = _ref2.length; _j < _len1; _j++) { - child = _ref2[_j]; - _this.__removeMetamorphs(child); - } - stack.children = []; - return morph.html(result()); - } - }; - update = update.debounce(0); - for (key in locals) { - object = locals[key]; - if (locals.hasOwnProperty(key)) { - if (((object != null ? object.bind : void 0) != null) && ((object != null ? object.unbind : void 0) != null)) { - binding = [object, object.bind('changed', update)]; - stack.metamorphBindings.push(binding); - } - } - } - morph.__bindings = stack.metamorphBindings; - return morph.outerHTML(); - } else { - return result(); - } - }, - __renderingStackElement: function(parent) { - if (parent == null) { - parent = null; - } - return { - metamorphBindings: [], - locals: null, - template: null, - children: [], - parent: parent - }; - }, - __renderingStackChildFor: function(parentPointer) { - var element; - if (!this.__renderingStack) { - this.__renderingStack = []; - } - if (!parentPointer) { - element = this.__renderingStackElement(); - this.__renderingStack.push(element); - return element; - } else { - element = this.__renderingStackElement(parentPointer); - parentPointer.children.push(element); - return element; - } - }, - __removeMetamorphs: function(stackPointer) { - var remove, _ref, - _this = this; - if (stackPointer == null) { - stackPointer = false; - } - remove = function(stackPointer) { - var callback, child, object, _i, _j, _len, _len1, _ref, _ref1, _ref2; - if (stackPointer != null ? stackPointer.children : void 0) { - _ref = stackPointer.children; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - child = _ref[_i]; - _this.__removeMetamorphs(child); - } - } - if (stackPointer != null ? stackPointer.metamorphBindings : void 0) { - _ref1 = stackPointer.metamorphBindings; - for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) { - _ref2 = _ref1[_j], object = _ref2[0], callback = _ref2[1]; - object.unbind(callback); - } - return stackPointer.metamorphBindings = []; - } - }; - if (!stackPointer) { - return (_ref = this.__renderingStack) != null ? _ref.each(function(stackPointer) { - return remove(stackPointer); - }) : void 0; - } else { - return remove(stackPointer); - } - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/renderer', function() { - return Joosy.Modules.Renderer; - }); - } - -}).call(this); -(function() { - Joosy.Modules.TimeManager = { - setTimeout: function(timeout, action) { - var timer, - _this = this; - this.__timeouts || (this.__timeouts = []); - timer = window.setTimeout((function() { - return action(); - }), timeout); - this.__timeouts.push(timer); - return timer; - }, - setInterval: function(delay, action) { - var timer, - _this = this; - this.__intervals || (this.__intervals = []); - timer = window.setInterval((function() { - return action(); - }), delay); - this.__intervals.push(timer); - return timer; - }, - clearTimeout: function(timer) { - return window.clearTimeout(timer); - }, - clearInterval: function(timer) { - return window.clearInterval(timer); - }, - __clearTime: function() { - var entry, _i, _j, _len, _len1, _ref, _ref1, _results; - if (this.__intervals) { - _ref = this.__intervals; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - entry = _ref[_i]; - window.clearInterval(entry); - } - } - if (this.__timeouts) { - _ref1 = this.__timeouts; - _results = []; - for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) { - entry = _ref1[_j]; - _results.push(window.clearTimeout(entry)); - } - return _results; - } - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/time_manager', function() { - return Joosy.Modules.TimeManager; - }); - } - -}).call(this); -(function() { - var __slice = [].slice; - - Joosy.Modules.Filters = { - included: function() { - var _this = this; - this.__registerFilterCollector = function(filter) { - _this[filter] = function(callback) { - if (!this.prototype.hasOwnProperty("__" + filter + "s")) { - this.prototype["__" + filter + "s"] = [].concat(this.__super__["__" + filter + "s"] || []); - } - return this.prototype["__" + filter + "s"].push(callback); - }; - return filter.charAt(0).toUpperCase() + filter.slice(1); - }; - this.registerPlainFilters = function() { - var filters; - filters = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - return filters.each(function(filter) { - var camelized; - camelized = _this.__registerFilterCollector(filter); - _this.prototype["__run" + camelized + "s"] = function() { - var callback, params, _i, _len, _ref, _results; - params = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - if (!this["__" + filter + "s"]) { - return; - } - _ref = this["__" + filter + "s"]; - _results = []; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - callback = _ref[_i]; - if (typeof callback !== 'function') { - callback = this[callback]; - } - _results.push(callback.apply(this, params)); - } - return _results; - }; - _this.prototype["__confirm" + camelized + "s"] = function() { - var params, - _this = this; - params = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - if (!this["__" + filter + "s"]) { - return true; - } - return this["__" + filter + "s"].reduce(function(flag, callback) { - if (typeof callback !== 'function') { - callback = _this[callback]; - } - return flag && callback.apply(_this, params) !== false; - }, true); - }; - return _this.prototype["__apply" + camelized + "s"] = function() { - var callback, data, params, _i, _len, _ref; - data = arguments[0], params = 2 <= arguments.length ? __slice.call(arguments, 1) : []; - if (!this["__" + filter + "s"]) { - return data; - } - _ref = this["__" + filter + "s"]; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - callback = _ref[_i]; - if (typeof callback !== 'function') { - callback = this[callback]; - } - data = callback.apply(this, [data].concat(params)); - } - return data; - }; - }); - }; - return this.registerSequencedFilters = function() { - var filters; - filters = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - return filters.each(function(filter) { - var camelized; - camelized = _this.__registerFilterCollector(filter); - return _this.prototype["__run" + camelized + "s"] = function(params, callback) { - var filterer, runners; - if (!this["__" + filter + "s"]) { - return callback(); - } - runners = this["__" + filter + "s"]; - filterer = this; - if (runners.length === 1) { - return runners[0].apply(this, params.include(callback)); - } - return Joosy.synchronize(function(context) { - runners.each(function(runner) { - return context["do"](function(done) { - return runner.apply(filterer, params.include(done)); - }); - }); - return context.after(callback); - }); - }; - }); - }; - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/filters', function() { - return Joosy.Modules.Filters; - }); - } - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Widget = (function(_super) { - __extends(Widget, _super); - - Widget.include(Joosy.Modules.Log); - - Widget.include(Joosy.Modules.Events); - - Widget.include(Joosy.Modules.DOM); - - Widget.include(Joosy.Modules.Renderer); - - Widget.include(Joosy.Modules.TimeManager); - - Widget.include(Joosy.Modules.Filters); - - Widget.mapWidgets = function(map) { - if (!this.prototype.hasOwnProperty("__widgets")) { - this.prototype.__widgets = Object.clone(this.__super__.__widgets) || {}; - } - return Object.merge(this.prototype.__widgets, map); - }; - - Widget.independent = function() { - return this.prototype.__independent = true; - }; - - Widget.registerPlainFilters('beforeLoad', 'afterLoad', 'afterUnload'); - - Widget.registerSequencedFilters('beforePaint', 'paint', 'erase', 'fetch'); - - function Widget(params, previous) { - this.params = params; - this.previous = previous; - } - - Widget.prototype.registerWidget = function($container, widget) { - if (Object.isString($container)) { - $container = this.__normalizeSelector($container); - } - widget = this.__normalizeWidget(widget); - widget.__bootstrapDefault(this, $container); - return widget; - }; - - Widget.prototype.unregisterWidget = function(widget) { - return widget.__unload(); - }; - - Widget.prototype.replaceWidget = function(widget, replacement) { - replacement = this.__normalizeWidget(replacement); - replacement.previous = widget; - replacement.__bootstrapDefault(this, widget.$container); - return replacement; - }; - - Widget.prototype.navigate = function() { - var _ref; - return (_ref = Joosy.Router) != null ? _ref.navigate.apply(_ref, arguments) : void 0; - }; - - Widget.prototype.__renderSection = function() { - return 'widgets'; - }; - - Widget.prototype.__nestingMap = function() { - var map, selector, widget, _ref; - map = {}; - _ref = this.__widgets; - for (selector in _ref) { - widget = _ref[selector]; - widget = this.__normalizeWidget(widget); - map[selector] = { - instance: widget, - nested: widget.__nestingMap() - }; - } - return map; - }; - - Widget.prototype.__bootstrapDefault = function(parent, $container) { - return this.__bootstrap(parent, this.__nestingMap(), $container); - }; - - Widget.prototype.__bootstrap = function(parent, nestingMap, $container, fetch) { - var _this = this; - this.$container = $container; - if (fetch == null) { - fetch = true; - } - this.wait('section:fetched section:erased', function() { - return _this.__runPaints([], function() { - return _this.__paint(parent, nestingMap, _this.$container); - }); - }); - this.__erase(); - if (fetch) { - return this.__fetch(nestingMap); - } - }; - - Widget.prototype.__fetch = function(nestingMap) { - var _this = this; - this.data = {}; - return this.synchronize(function(context) { - Object.each(nestingMap, function(selector, section) { - section.instance.__fetch(section.nested); - if (!section.instance.__independent) { - return context["do"](function(done) { - return section.instance.wait('section:fetched', done); - }); - } - }); - context["do"](function(done) { - return _this.__runFetchs([], done); - }); - return context.after(function() { - return _this.trigger({ - name: 'section:fetched', - remember: true - }); - }); - }); - }; - - Widget.prototype.__erase = function(parent) { - var _this = this; - if (this.previous != null) { - return this.previous.__runErases([], function() { - _this.previous.__unload(); - return _this.__runBeforePaints([], function() { - return _this.trigger({ - name: 'section:erased', - remember: true - }); - }); - }); - } else { - return this.__runBeforePaints([], function() { - return _this.trigger({ - name: 'section:erased', - remember: true - }); - }); - } - }; - - Widget.prototype.__paint = function(parent, nestingMap, $container) { - var _this = this; - this.parent = parent; - this.$container = $container; - this.__nestedSections = []; - this.$container.html(typeof this.__renderDefault === "function" ? this.__renderDefault(this.data || {}) : void 0); - this.__load(); - return Object.each(nestingMap, function(selector, section) { - var _ref; - $container = _this.__normalizeSelector(selector); - if (!section.instance.__independent || ((_ref = section.instance.__triggeredEvents) != null ? _ref['section:fetched'] : void 0)) { - return section.instance.__paint(_this, section.nested, $container); - } else { - return section.instance.__bootstrap(_this, section.nested, $container, false); - } - }); - }; - - Widget.prototype.__load = function() { - var _base; - if (this.parent) { - (_base = this.parent).__nestedSections || (_base.__nestedSections = []); - this.parent.__nestedSections.push(this); - } - this.__assignElements(); - this.__delegateEvents(); - return this.__runAfterLoads(); - }; - - Widget.prototype.__unload = function(modifyParent) { - var section, _i, _len, _ref; - if (modifyParent == null) { - modifyParent = true; - } - if (this.__nestedSections) { - _ref = this.__nestedSections; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - section = _ref[_i]; - section.__unload(false); - } - delete this.__nestedSections; - } - this.__clearContainer(); - this.__clearTime(); - this.__removeMetamorphs(); - this.__runAfterUnloads(); - if (this.parent && modifyParent) { - this.parent.__nestedSections.splice(this.parent.__nestedSections.indexOf(this), 1); - } - delete this.previous; - return delete this.parent; - }; - - Widget.prototype.__normalizeSelector = function(selector) { - if (selector === '$container') { - return this.$container; - } else { - return $(this.__extractSelector(selector), this.$container); - } - }; - - Widget.prototype.__normalizeWidget = function(widget) { - if (Object.isFunction(widget) && !Joosy.Module.hasAncestor(widget, Joosy.Widget)) { - widget = widget.call(this); - } - if (Joosy.Module.hasAncestor(widget, Joosy.Widget)) { - widget = new widget; - } - return widget; - }; - - return Widget; - - })(Joosy.Module); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/widget', function() { - return Joosy.Widget; - }); - } - -}).call(this); -(function() { - Joosy.helpers('Application', function() { - var DOMnative, DOMtext; - DOMtext = document.createTextNode("test"); - DOMnative = document.createElement("span"); - DOMnative.appendChild(DOMtext); - this.escapeOnce = function(html) { - DOMtext.nodeValue = html; - return DOMnative.innerHTML; - }; - this.tag = function(name, options, open, escape) { - var element, tag, temp, value; - if (options == null) { - options = {}; - } - if (open == null) { - open = false; - } - if (escape == null) { - escape = true; - } - element = document.createElement(name); - temp = document.createElement('div'); - for (name in options) { - value = options[name]; - if (escape) { - value = this.escapeOnce(value); - } - element.setAttribute(name, value); - } - temp.appendChild(element); - tag = temp.innerHTML; - if (open) { - tag = tag.replace('/>', '>'); - } - return tag; - }; - this.contentTag = function(name, contentOrOptions, options, escape) { - var content, e, element, temp, value; - if (contentOrOptions == null) { - contentOrOptions = null; - } - if (options == null) { - options = null; - } - if (escape == null) { - escape = true; - } - if (Object.isString(contentOrOptions)) { - options || (options = {}); - content = contentOrOptions; - } else if (Object.isObject(contentOrOptions)) { - if (Object.isFunction(options)) { - escape = true; - content = options(); - } else { - escape = options; - content = escape(); - } - options = contentOrOptions; - } else { - options = {}; - content = contentOrOptions(); - } - element = document.createElement(name); - temp = document.createElement('div'); - for (name in options) { - value = options[name]; - if (escape) { - value = this.escapeOnce(value); - } - element.setAttribute(name, value); - } - try { - element.innerHTML = content; - } catch (_error) { - e = _error; - if (content) { - throw e; - } - } - temp.appendChild(element); - return temp.innerHTML; - }; - return this.renderWrapped = function(template, lambda) { - return this.render(template, Joosy.Module.merge(this, { - "yield": lambda() - })); - }; - }); - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Layout = (function(_super) { - __extends(Layout, _super); - - Layout.helper('page'); - - function Layout(params, previous) { - this.params = params; - this.previous = previous; - this.uid = Joosy.uid(); - } - - Layout.prototype.page = function(tag, options) { - if (options == null) { - options = {}; - } - options.id = this.uid; - return Joosy.Helpers.Application.tag(tag, options); - }; - - Layout.prototype.content = function() { - return $("#" + this.uid); - }; - - Layout.prototype.__renderSection = function() { - return 'layouts'; - }; - - Layout.prototype.__nestingMap = function(page) { - var map; - map = Layout.__super__.__nestingMap.call(this); - map["#" + this.uid] = { - instance: page, - nested: page.__nestingMap() - }; - return map; - }; - - Layout.prototype.__bootstrapDefault = function(page, applicationContainer) { - return this.__bootstrap(null, this.__nestingMap(page), applicationContainer); - }; - - return Layout; - - })(Joosy.Widget); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/layout', function() { - return Joosy.Layout; - }); - } - -}).call(this); -(function() { - Joosy.Modules.Page = {}; - -}).call(this); -(function() { - Joosy.Modules.Page.Scrolling = { - included: function() { - this.scroll = function(element, options) { - if (options == null) { - options = {}; - } - this.prototype.__scrollElement = element; - this.prototype.__scrollSpeed = options.speed || 500; - return this.prototype.__scrollMargin = options.margin || 0; - }; - this.paint(function(complete) { - if (this.__scrollElement && this.__scrollSpeed !== 0) { - this.__fixHeight(); - } - return complete(); - }); - return this.afterLoad(function() { - if (this.__scrollElement) { - return this.__performScrolling(); - } - }); - }, - __performScrolling: function() { - var scroll, _ref, - _this = this; - scroll = ((_ref = $(this.__extractSelector(this.__scrollElement)).offset()) != null ? _ref.top : void 0) + this.__scrollMargin; - Joosy.Modules.Log.debugAs(this, "Scrolling to " + (this.__extractSelector(this.__scrollElement))); - return $('html, body').animate({ - scrollTop: scroll - }, this.__scrollSpeed, function() { - if (_this.__scrollSpeed !== 0) { - return _this.__releaseHeight(); - } - }); - }, - __fixHeight: function() { - return $('html').css('min-height', $(document).height()); - }, - __releaseHeight: function() { - return $('html').css('min-height', ''); - } - }; - -}).call(this); -(function() { - Joosy.Modules.Page.Title = { - title: function(title, separator) { - if (separator == null) { - separator = ' / '; - } - this.afterLoad(function() { - var titleStr; - titleStr = Object.isFunction(title) ? title.apply(this) : title; - if (Object.isArray(titleStr)) { - titleStr = titleStr.join(separator); - } - this.__previousTitle = document.title; - return document.title = titleStr; - }); - return this.afterUnload(function() { - return document.title = this.__previousTitle; - }); - } - }; - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Page = (function(_super) { - __extends(Page, _super); - - Page.layout = function(layoutClass) { - return this.prototype.__layoutClass = layoutClass; - }; - - Page.include(Joosy.Modules.Page.Scrolling); - - Page.extend(Joosy.Modules.Page.Title); - - function Page(params, previous) { - var _ref; - this.params = params; - this.previous = previous; - this.layoutShouldChange = ((_ref = this.previous) != null ? _ref.__layoutClass : void 0) !== this.__layoutClass; - this.halted = !this.__confirmBeforeLoads(); - this.layout = (function() { - var _ref1, _ref2; - switch (false) { - case !(this.layoutShouldChange && this.__layoutClass): - return new this.__layoutClass(params, (_ref1 = this.previous) != null ? _ref1.layout : void 0); - case !!this.layoutShouldChange: - return (_ref2 = this.previous) != null ? _ref2.layout : void 0; - } - }).call(this); - if (this.layoutShouldChange && !this.layout) { - this.previous = this.previous.layout; - } - } - - Page.prototype.__renderSection = function() { - return 'pages'; - }; - - Page.prototype.__bootstrapDefault = function(applicationContainer) { - var _ref; - return this.__bootstrap(this.layout, this.__nestingMap(), ((_ref = this.layout) != null ? _ref.content() : void 0) || applicationContainer); - }; - - return Page; - - })(Joosy.Widget); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/page', function() { - return Joosy.Page; - }); - } - -}).call(this); -(function() { - Joosy.helpers('Routes', function() { - return this.linkTo = function(name, url, tagOptions) { - var block, _ref; - if (name == null) { - name = ''; - } - if (url == null) { - url = ''; - } - if (tagOptions == null) { - tagOptions = {}; - } - if (Object.isFunction(tagOptions)) { - block = tagOptions; - _ref = [name, url], url = _ref[0], tagOptions = _ref[1]; - name = block(); - } - return Joosy.Helpers.Application.contentTag('a', name, Joosy.Module.merge(tagOptions, { - 'data-joosy': true, - href: url - })); - }; - }); - -}).call(this); -(function() { - var _ref, - __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Router = (function(_super) { - var Drawer, - _this = this; - - __extends(Router, _super); - - function Router() { - _ref = Router.__super__.constructor.apply(this, arguments); - return _ref; - } - - Router.extend(Joosy.Modules.Events); - - $(window).bind('popstate', function(event) { - if (window.history.loaded != null) { - return Router.trigger('popstate', event); - } else { - return window.history.loaded = true; - } - }); - - $(document).on('click', 'a[data-joosy]', function(event) { - event.preventDefault(); - return Joosy.Router.navigate(this.getAttribute('href')); - }); - - Drawer = (function() { - Drawer.run = function(block, namespace, alias) { - var context; - if (namespace == null) { - namespace = ''; - } - if (alias == null) { - alias = ''; - } - context = new Drawer(namespace, alias); - return block.call(context); - }; - - function Drawer(__namespace, __alias) { - this.__namespace = __namespace; - this.__alias = __alias; - } - - Drawer.prototype.match = function(route, options) { - var as; - if (options == null) { - options = {}; - } - if (options.as != null) { - if (this.__alias) { - as = this.__alias + options.as.charAt(0).toUpperCase() + options.as.slice(1); - } else { - as = options.as; - } - } - route = this.__namespace + route; - return Joosy.Router.compileRoute(route, options.to, as); - }; - - Drawer.prototype.root = function(options) { - if (options == null) { - options = {}; - } - return this.match("/", { - to: options.to, - as: options.as || 'root' - }); - }; - - Drawer.prototype.notFound = function(options) { - if (options == null) { - options = {}; - } - return this.match(404, { - to: options.to - }); - }; - - Drawer.prototype.namespace = function(name, options, block) { - var _ref1; - if (options == null) { - options = {}; - } - if (Object.isFunction(options)) { - block = options; - options = {}; - } - return Drawer.run(block, this.__namespace + name, (_ref1 = options.as) != null ? _ref1.toString() : void 0); - }; - - return Drawer; - - })(); - - Router.map = function(routes, namespace) { - var _this = this; - return Object.each(routes, function(path, to) { - if (namespace != null) { - path = namespace + '/' + path; - } - if (Object.isFunction(to) || to.prototype) { - return _this.compileRoute(path, to); - } else { - return _this.map(to, path); - } - }); - }; - - Router.draw = function(block) { - return Drawer.run(block); - }; - - Router.setup = function(config, responder, respond) { - var _base, - _this = this; - this.config = config; - this.responder = responder; - if (respond == null) { - respond = true; - } - if (!history.pushState) { - this.config.prefix = this.config.hashSuffix; - this.config.html5 = false; - } - if (!this.config.html5) { - this.config.prefix = this.config.hashSuffix; - } - (_base = this.config).prefix || (_base.prefix = ''); - if (this.config.html5) { - this.config.prefix = ('/' + this.config.prefix + '/').replace(/\/{2,}/g, '/'); - this.listener = this.bind('popstate pushstate', function() { - return _this.respond(_this.canonizeLocation()); - }); - } else { - this.config.prefix = this.config.prefix.replace(/^\#?\/?/, '').replace(/\/?$/, ''); - $(window).bind('hashchange.JoosyRouter', function() { - return _this.respond(_this.canonizeLocation()); - }); - } - if (respond) { - return this.respond(this.canonizeLocation()); - } - }; - - Router.reset = function() { - this.unbind(this.listener); - $(window).unbind('.JoosyRouter'); - this.restriction = false; - return this.routes = {}; - }; - - Router.restrict = function(restriction) { - this.restriction = restriction; - }; - - Router.navigate = function(to, options) { - var path; - if (options == null) { - options = {}; - } - path = to; - if (this.config.html5) { - if (this.config.prefix && path[0] === '/' && !path.match(RegExp("^" + (this.config.prefix.replace(/\/$/, '')) + "(/|$)"))) { - path = path.replace(/^\//, this.config.prefix); - } - history.pushState({}, '', path); - this.trigger('pushstate'); - } else { - if (this.config.prefix && !path.match(RegExp("^#?/?" + this.config.prefix + "(/|$)"))) { - path = path.replace(/^\#?\/?/, "" + this.config.prefix + "/"); - } - location.hash = path; - } - }; - - Router.canonizeLocation = function() { - if (this.config.html5) { - return location.pathname.replace(RegExp("^(" + this.config.prefix + "?)?/?"), '/') + location.search; - } else { - return location.hash.replace(RegExp("^#?/?(" + this.config.prefix + "(/|$))?"), '/'); - } - }; - - Router.compileRoute = function(path, to, as) { - var matcher, params, result; - if (path.toString() === '404') { - this.wildcardAction = to; - return; - } - if (path[0] === '/') { - path = path.substr(1); - } - matcher = path.replace(/\/{2,}/g, '/'); - result = {}; - matcher = matcher.replace(/\/:([^\/]+)/g, '/([^/]+)'); - matcher = matcher.replace(/^\/?/, '^/?'); - matcher = matcher.replace(/\/?$/, '/?$'); - params = (path.match(/\/:[^\/]+/g) || []).map(function(str) { - return str.substr(2); - }); - this.routes || (this.routes = {}); - this.routes[matcher] = { - to: to, - capture: params, - as: as - }; - if (as != null) { - return this.defineHelpers(path, as); - } - }; - - Router.respond = function(path) { - var match, query, regex, route, _ref1, _ref2; - Joosy.Modules.Log.debug("Router> Answering '" + path + "'"); - if (this.restriction && path.match(this.restriction) === null) { - this.trigger('restricted', path); - return; - } - _ref1 = path.split('?'), path = _ref1[0], query = _ref1[1]; - query = (query != null ? typeof query.split === "function" ? query.split('&') : void 0 : void 0) || []; - _ref2 = this.routes; - for (regex in _ref2) { - route = _ref2[regex]; - if (this.routes.hasOwnProperty(regex)) { - if (match = path.match(new RegExp(regex))) { - this.responder(route.to, this.__grabParams(query, route, match)); - this.trigger('responded', path); - return; - } - } - } - if (this.wildcardAction != null) { - this.responder(this.wildcardAction, path); - return this.trigger('responded'); - } else { - return this.trigger('missed'); - } - }; - - Router.defineHelpers = function(path, as) { - var helper; - helper = function(options) { - var result, _ref1; - result = path; - if ((_ref1 = path.match(/\/:[^\/]+/g)) != null) { - if (typeof _ref1.each === "function") { - _ref1.each(function(param) { - return result = result.replace(param.substr(1), options[param.substr(2)]); - }); - } - } - if (Joosy.Router.config.html5) { - return "" + Joosy.Router.config.prefix + result; - } else { - return "#" + Joosy.Router.config.prefix + result; - } - }; - return Joosy.helpers('Routes', function() { - this["" + as + "Path"] = helper; - return this["" + as + "Url"] = function(options) { - if (Joosy.Router.config.html5) { - return "" + location.origin + (helper(options)); - } else { - return "" + location.origin + location.pathname + (helper(options)); - } - }; - }); - }; - - Router.__grabParams = function(query, route, match) { - var params, _ref1; - if (route == null) { - route = null; - } - if (match == null) { - match = []; - } - params = {}; - match.shift(); - if (route != null) { - if ((_ref1 = route.capture) != null) { - _ref1.each(function(key) { - return params[key] = decodeURIComponent(match.shift()); - }); - } - } - query.each(function(entry) { - var key, value, _ref2; - if (!entry.isBlank()) { - _ref2 = entry.split('='), key = _ref2[0], value = _ref2[1]; - return params[key] = value; - } - }); - return params; - }; - - return Router; - - }).call(this, Joosy.Module); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/router', function() { - return Joosy.Router; - }); - } - -}).call(this); -(function() { - Joosy.Templaters.JST = (function() { - function JST(config) { - this.config = config != null ? config : {}; - if ((this.config.prefix != null) && this.config.prefix.length > 0) { - this.prefix = this.config.prefix; - } - } - - JST.prototype.buildView = function(name) { - var haystack, path, template, _i, _len; - template = false; - if (this.prefix) { - haystack = ["" + this.prefix + "/templates/" + name + "-" + (typeof I18n !== "undefined" && I18n !== null ? I18n.locale : void 0), "" + this.prefix + "/templates/" + name]; - } else { - haystack = ["templates/" + name + "-" + (typeof I18n !== "undefined" && I18n !== null ? I18n.locale : void 0), "templates/" + name]; - } - for (_i = 0, _len = haystack.length; _i < _len; _i++) { - path = haystack[_i]; - if (window.JST[path]) { - return window.JST[path]; - } - } - throw new Error("Template '" + name + "' not found. Checked at: '" + (haystack.join(', ')) + "'"); - }; - - JST.prototype.resolveTemplate = function(section, template, entity) { - var path, _ref, _ref1; - if (template.startsWith('/')) { - return template.substr(1); - } - path = ((_ref = entity.constructor) != null ? (_ref1 = _ref.__namespace__) != null ? _ref1.map('underscore') : void 0 : void 0) || []; - path.unshift(section); - return "" + (path.join('/')) + "/" + template; - }; - - return JST; - - })(); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/templaters/jst', function() { - return Joosy.Templaters.JST; - }); - } - -}).call(this); -(function() { - Joosy.Modules.Resources = {}; - -}).call(this); -(function() { - var __slice = [].slice; - - Joosy.Modules.Resources.Cacher = { - included: function() { - this.cache = function(cacheKey) { - return this.prototype.__cacheKey = cacheKey; - }; - this.fetcher = function(fetcher) { - return this.prototype.__fetcher = fetcher; - }; - this.cached = function(callback, cacheKey, fetcher) { - var instance, - _this = this; - if (cacheKey == null) { - cacheKey = false; - } - if (fetcher == null) { - fetcher = false; - } - if (typeof cacheKey === 'function') { - fetcher = cacheKey; - cacheKey = void 0; - } - cacheKey || (cacheKey = this.prototype.__cacheKey); - fetcher || (fetcher = this.prototype.__fetcher); - if (cacheKey && localStorage && localStorage[cacheKey]) { - instance = (function(func, args, ctor) { - ctor.prototype = func.prototype; - var child = new ctor, result = func.apply(child, args); - return Object(result) === result ? result : child; - })(this, JSON.parse(localStorage[cacheKey]), function(){}); - if (typeof callback === "function") { - callback(instance); - } - return instance.refresh(); - } else { - return this.fetch(function(results) { - instance = (function(func, args, ctor) { - ctor.prototype = func.prototype; - var child = new ctor, result = func.apply(child, args); - return Object(result) === result ? result : child; - })(_this, results, function(){}); - return typeof callback === "function" ? callback(instance) : void 0; - }); - } - }; - return this.fetch = function(callback) { - var _this = this; - return this.prototype.__fetcher(function() { - var results; - results = 1 <= arguments.length ? __slice.call(arguments, 0) : []; - if (_this.prototype.__cacheKey && localStorage) { - localStorage[_this.prototype.__cacheKey] = JSON.stringify(results); - } - return callback(results); - }); - }; - }, - refresh: function(callback) { - var _this = this; - return this.constructor.fetch(function(results) { - _this.load.apply(_this, results); - return typeof callback === "function" ? callback(_this) : void 0; - }); - } - }; - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/modules/resources/cacher', function() { - return Joosy.Modules.Resources.Cacher; - }); - } - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Resources.Array = (function(_super) { - __extends(Array, _super); - - Joosy.Module.merge(Array, Joosy.Module); - - Array.include(Joosy.Modules.Events); - - Array.include(Joosy.Modules.Filters); - - Array.registerPlainFilters('beforeLoad'); - - function Array() { - this.__fillData(arguments, false); - } - - Array.prototype.get = function(index) { - return this[index]; - }; - - Array.prototype.set = function(index, value) { - this[index] = value; - this.trigger('changed'); - return value; - }; - - Array.prototype.load = function() { - return this.__fillData(arguments); - }; - - Array.prototype.clone = function(callback) { - var clone; - clone = new this.constructor; - clone.data = this.slice(0); - return clone; - }; - - Array.prototype.push = function() { - var result; - result = Array.__super__.push.apply(this, arguments); - this.trigger('changed'); - return result; - }; - - Array.prototype.pop = function() { - var result; - result = Array.__super__.pop.apply(this, arguments); - this.trigger('changed'); - return result; - }; - - Array.prototype.shift = function() { - var result; - result = Array.__super__.shift.apply(this, arguments); - this.trigger('changed'); - return result; - }; - - Array.prototype.unshift = function() { - var result; - result = Array.__super__.unshift.apply(this, arguments); - this.trigger('changed'); - return result; - }; - - Array.prototype.splice = function() { - var result; - result = Array.__super__.splice.apply(this, arguments); - this.trigger('changed'); - return result; - }; - - Array.prototype.__fillData = function(data, notify) { - var entry, _i, _len, _ref; - if (notify == null) { - notify = true; - } - data = this.slice.call(data, 0); - if (this.length > 0) { - this.splice(0, this.length); - } - _ref = this.__applyBeforeLoads(data); - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - entry = _ref[_i]; - this.push(entry); - } - if (notify) { - this.trigger('changed'); - } - return null; - }; - - return Array; - - })(Array); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/resources/array', function() { - return Joosy.Resources.Array; - }); - } - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Resources.Hash = (function(_super) { - __extends(Hash, _super); - - Hash.include(Joosy.Modules.Events); - - Hash.include(Joosy.Modules.Filters); - - Hash.registerPlainFilters('beforeLoad'); - - function Hash(data) { - if (data == null) { - data = {}; - } - return Hash.__super__.constructor.call(this, function() { - return this.__fillData(data, false); - }); - } - - Hash.prototype.get = function(path) { - var instance, property, _ref; - _ref = this.__callTarget(path, true), instance = _ref[0], property = _ref[1]; - if (!instance) { - return void 0; - } - if (instance instanceof Joosy.Resources.Hash) { - return instance(property); - } else { - return instance[property]; - } - }; - - Hash.prototype.set = function(path, value) { - var instance, property, _ref; - _ref = this.__callTarget(path), instance = _ref[0], property = _ref[1]; - if (instance instanceof Joosy.Resources.Hash) { - instance(property, value); - } else { - instance[property] = value; - } - this.trigger('changed'); - return value; - }; - - Hash.prototype.load = function(data) { - this.__fillData(data); - return this; - }; - - Hash.prototype.clone = function(callback) { - return new this.constructor(Object.clone(this.data, true)); - }; - - Hash.prototype.__call = function(path, value) { - if (arguments.length > 1) { - return this.set(path, value); - } else { - return this.get(path); - } - }; - - Hash.prototype.__callTarget = function(path, safe) { - var keyword, part, target, _i, _len; - if (safe == null) { - safe = false; - } - if (path.indexOf('.') !== -1 && (this.data[path] == null)) { - path = path.split('.'); - keyword = path.pop(); - target = this.data; - for (_i = 0, _len = path.length; _i < _len; _i++) { - part = path[_i]; - if (safe && (target[part] == null)) { - return false; - } - if (target[part] == null) { - target[part] = {}; - } - target = target instanceof Joosy.Resources.Hash ? target(part) : target[part]; - } - return [target, keyword]; - } else { - return [this.data, path]; - } - }; - - Hash.prototype.__fillData = function(data, notify) { - if (notify == null) { - notify = true; - } - this.data = this.__applyBeforeLoads(data); - if (notify) { - this.trigger('changed'); - } - return null; - }; - - Hash.prototype.toString = function() { - return JSON.stringify(this.data); - }; - - return Hash; - - })(Joosy.Function); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/resources/hash', function() { - return Joosy.Resources.Hash; - }); - } - -}).call(this); -(function() { - var __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - Joosy.Resources.Scalar = (function(_super) { - __extends(Scalar, _super); - - Scalar.include(Joosy.Modules.Events); - - Scalar.include(Joosy.Modules.Filters); - - Scalar.registerPlainFilters('beforeLoad'); - - function Scalar(value) { - return Scalar.__super__.constructor.call(this, function() { - return this.load(value); - }); - } - - Scalar.prototype.get = function() { - return this.value; - }; - - Scalar.prototype.set = function(value) { - this.value = value; - return this.trigger('changed'); - }; - - Scalar.prototype.load = function(value) { - this.value = this.__applyBeforeLoads(value); - this.trigger('changed'); - return this.value; - }; - - Scalar.prototype.clone = function(callback) { - return new this.constructor(this.value); - }; - - Scalar.prototype.__call = function() { - if (arguments.length > 0) { - return this.set(arguments[0]); - } else { - return this.get(); - } - }; - - Scalar.prototype.valueOf = function() { - return this.value.valueOf(); - }; - - Scalar.prototype.toString = function() { - return this.value.toString(); - }; - - return Scalar; - - })(Joosy.Function); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/resources/scalar', function() { - return Joosy.Resources.Scalar; - }); - } - -}).call(this); -(function() { - Joosy.helpers('Application', function() { - return this.widget = function(tag, options, widget) { - var _this = this; - if (widget == null) { - widget = options; - options = {}; - } - options.id = Joosy.uid(); - this.__renderer.setTimeout(0, function() { - return _this.__renderer.registerWidget($('#' + options.id), widget); - }); - return this.tag(tag, options); - }; - }); - -}).call(this); -(function() { - Joosy.Application = (function() { - function Application() {} - - Application.Pages = {}; - - Application.Layouts = {}; - - Application.Controls = {}; - - Application.initialized = false; - - Application.loading = true; - - Application.config = { - test: false, - debug: false, - templater: { - prefix: '' - }, - router: { - html5: false, - base: '', - prefix: '' - } - }; - - Application.initialize = function(selector, options) { - var _this = this; - this.selector = selector; - if (options == null) { - options = {}; - } - if (this.initialized) { - throw new Error('Attempted to initialize Application twice'); - } - if (window.JoosyEnvironment != null) { - Object.merge(this.config, window.JoosyEnvironment, true); - } - Object.merge(this.config, options, true); - if (this.config.test) { - this.forceSandbox(); - } - Joosy.templater(new Joosy.Templaters.JST(this.config.templater)); - Joosy.debug(this.config.debug); - Joosy.Router.setup(this.config.router, function(action, params) { - if (Joosy.Module.hasAncestor(action, Joosy.Page)) { - return _this.changePage(action, params); - } else if (Object.isFunction(action)) { - return action(params); - } else { - throw new Error("Unknown kind of route action: " + action); - } - }); - return this.initialized = true; - }; - - Application.reset = function() { - var _ref; - Joosy.Router.reset(); - Joosy.templater(false); - Joosy.debug(false); - if ((_ref = this.page) != null) { - _ref.__unload(); - } - delete this.page; - this.loading = true; - return this.initialized = false; - }; - - Application.content = function() { - return $(this.selector); - }; - - Application.changePage = function(page, params) { - var attempt; - attempt = new page(params, this.page); - if (!attempt.halted) { - if (attempt.layoutShouldChange && attempt.layout) { - attempt.layout.__bootstrapDefault(attempt, this.content()); - } else { - attempt.__bootstrapDefault(this.content()); - } - return this.page = attempt; - } - }; - - Application.forceSandbox = function() { - var sandbox; - sandbox = Joosy.uid(); - this.selector = "#" + sandbox; - return $('body').append($('<div/>').attr('id', sandbox).css({ - height: '0px', - width: '0px', - overflow: 'hidden' - })); - }; - - return Application; - - })(); - - if ((typeof define !== "undefined" && define !== null ? define.amd : void 0) != null) { - define('joosy/application', function() { - return Joosy.Application; - }); - } - -}).call(this); -(function() { - - -}).call(this); +!function(a){"function"==typeof YUI?YUI.add("es5",a):a()}(function(){function a(){}function b(a){return a=+a,a!==a?a=0:0!==a&&a!==1/0&&a!==-(1/0)&&(a=(a>0||-1)*Math.floor(Math.abs(a))),a}function c(a){var b=typeof a;return null===a||"undefined"===b||"boolean"===b||"number"===b||"string"===b}function d(a){var b,d,e;if(c(a))return a;if(d=a.valueOf,"function"==typeof d&&(b=d.call(a),c(b)))return b;if(e=a.toString,"function"==typeof e&&(b=e.call(a),c(b)))return b;throw new TypeError}Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if("function"!=typeof c)throw new TypeError("Function.prototype.bind called on incompatible "+c);var d=m.call(arguments,1),e=function(){if(this instanceof e){var a=c.apply(this,d.concat(m.call(arguments)));return Object(a)===a?a:this}return c.apply(b,d.concat(m.call(arguments)))};return c.prototype&&(a.prototype=c.prototype,e.prototype=new a,a.prototype=null),e});var e,f,g,h,i,j=Function.prototype.call,k=Array.prototype,l=Object.prototype,m=k.slice,n=j.bind(l.toString),o=j.bind(l.hasOwnProperty);if((i=o(l,"__defineGetter__"))&&(e=j.bind(l.__defineGetter__),f=j.bind(l.__defineSetter__),g=j.bind(l.__lookupGetter__),h=j.bind(l.__lookupSetter__)),2!=[1,2].splice(0).length){var p=Array.prototype.splice;Array.prototype.splice=function(){function a(a){for(var b=[];a--;)b.unshift(a);return b}var b,c=[];return c.splice.bind(c,0,0).apply(null,a(20)),c.splice.bind(c,0,0).apply(null,a(26)),b=c.length,c.splice(5,0,"XXX"),b+1==c.length?!0:void 0}()?function(a,b){return arguments.length?p.apply(this,[void 0===a?0:a,void 0===b?this.length-a:b].concat(m.call(arguments,2))):[]}:function(a,b){var c,d=m.call(arguments,2),e=d.length;if(!arguments.length)return[];if(void 0===a&&(a=0),void 0===b&&(b=this.length-a),e>0){if(0>=b){if(a==this.length)return this.push.apply(this,d),[];if(0==a)return this.unshift.apply(this,d),[]}return c=m.call(this,a,a+b),d.push.apply(d,m.call(this,a+b,this.length)),d.unshift.apply(d,m.call(this,0,a)),d.unshift(0,this.length),p.apply(this,d),c}return p.call(this,a,b)}}if(1!=[].unshift(0)){var q=Array.prototype.unshift;Array.prototype.unshift=function(){return q.apply(this,arguments),this.length}}Array.isArray||(Array.isArray=function(a){return"[object Array]"==n(a)});var r=Object("a"),s="a"!=r[0]||!(0 in r);if(Array.prototype.forEach||(Array.prototype.forEach=function(a){var b=G(this),c=s&&"[object String]"==n(this)?this.split(""):b,d=arguments[1],e=-1,f=c.length>>>0;if("[object Function]"!=n(a))throw new TypeError;for(;++e<f;)e in c&&a.call(d,c[e],e,b)}),Array.prototype.map||(Array.prototype.map=function(a){var b=G(this),c=s&&"[object String]"==n(this)?this.split(""):b,d=c.length>>>0,e=Array(d),f=arguments[1];if("[object Function]"!=n(a))throw new TypeError(a+" is not a function");for(var g=0;d>g;g++)g in c&&(e[g]=a.call(f,c[g],g,b));return e}),Array.prototype.filter||(Array.prototype.filter=function(a){var b,c=G(this),d=s&&"[object String]"==n(this)?this.split(""):c,e=d.length>>>0,f=[],g=arguments[1];if("[object Function]"!=n(a))throw new TypeError(a+" is not a function");for(var h=0;e>h;h++)h in d&&(b=d[h],a.call(g,b,h,c)&&f.push(b));return f}),Array.prototype.every||(Array.prototype.every=function(a){var b=G(this),c=s&&"[object String]"==n(this)?this.split(""):b,d=c.length>>>0,e=arguments[1];if("[object Function]"!=n(a))throw new TypeError(a+" is not a function");for(var f=0;d>f;f++)if(f in c&&!a.call(e,c[f],f,b))return!1;return!0}),Array.prototype.some||(Array.prototype.some=function(a){var b=G(this),c=s&&"[object String]"==n(this)?this.split(""):b,d=c.length>>>0,e=arguments[1];if("[object Function]"!=n(a))throw new TypeError(a+" is not a function");for(var f=0;d>f;f++)if(f in c&&a.call(e,c[f],f,b))return!0;return!1}),Array.prototype.reduce||(Array.prototype.reduce=function(a){var b=G(this),c=s&&"[object String]"==n(this)?this.split(""):b,d=c.length>>>0;if("[object Function]"!=n(a))throw new TypeError(a+" is not a function");if(!d&&1==arguments.length)throw new TypeError("reduce of empty array with no initial value");var e,f=0;if(arguments.length>=2)e=arguments[1];else for(;;){if(f in c){e=c[f++];break}if(++f>=d)throw new TypeError("reduce of empty array with no initial value")}for(;d>f;f++)f in c&&(e=a.call(void 0,e,c[f],f,b));return e}),Array.prototype.reduceRight||(Array.prototype.reduceRight=function(a){var b=G(this),c=s&&"[object String]"==n(this)?this.split(""):b,d=c.length>>>0;if("[object Function]"!=n(a))throw new TypeError(a+" is not a function");if(!d&&1==arguments.length)throw new TypeError("reduceRight of empty array with no initial value");var e,f=d-1;if(arguments.length>=2)e=arguments[1];else for(;;){if(f in c){e=c[f--];break}if(--f<0)throw new TypeError("reduceRight of empty array with no initial value")}if(0>f)return e;do f in this&&(e=a.call(void 0,e,c[f],f,b));while(f--);return e}),Array.prototype.indexOf&&-1==[0,1].indexOf(1,2)||(Array.prototype.indexOf=function(a){var c=s&&"[object String]"==n(this)?this.split(""):G(this),d=c.length>>>0;if(!d)return-1;var e=0;for(arguments.length>1&&(e=b(arguments[1])),e=e>=0?e:Math.max(0,d+e);d>e;e++)if(e in c&&c[e]===a)return e;return-1}),Array.prototype.lastIndexOf&&-1==[0,1].lastIndexOf(0,-3)||(Array.prototype.lastIndexOf=function(a){var c=s&&"[object String]"==n(this)?this.split(""):G(this),d=c.length>>>0;if(!d)return-1;var e=d-1;for(arguments.length>1&&(e=Math.min(e,b(arguments[1]))),e=e>=0?e:d-Math.abs(e);e>=0;e--)if(e in c&&a===c[e])return e;return-1}),!Object.keys){var t=!0,u=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],v=u.length;for(var w in{toString:null})t=!1;Object.keys=function H(a){if("object"!=typeof a&&"function"!=typeof a||null===a)throw new TypeError("Object.keys called on a non-object");var H=[];for(var b in a)o(a,b)&&H.push(b);if(t)for(var c=0,d=v;d>c;c++){var e=u[c];o(a,e)&&H.push(e)}return H}}var x=-621987552e5,y="-000001";Date.prototype.toISOString&&-1!==new Date(x).toISOString().indexOf(y)||(Date.prototype.toISOString=function(){var a,b,c,d,e;if(!isFinite(this))throw new RangeError("Date.prototype.toISOString called on non-finite value.");for(d=this.getUTCFullYear(),e=this.getUTCMonth(),d+=Math.floor(e/12),e=(e%12+12)%12,a=[e+1,this.getUTCDate(),this.getUTCHours(),this.getUTCMinutes(),this.getUTCSeconds()],d=(0>d?"-":d>9999?"+":"")+("00000"+Math.abs(d)).slice(d>=0&&9999>=d?-4:-6),b=a.length;b--;)c=a[b],10>c&&(a[b]="0"+c);return d+"-"+a.slice(0,2).join("-")+"T"+a.slice(2).join(":")+"."+("000"+this.getUTCMilliseconds()).slice(-3)+"Z"});var z=!1;try{z=Date.prototype.toJSON&&null===new Date(0/0).toJSON()&&-1!==new Date(x).toJSON().indexOf(y)&&Date.prototype.toJSON.call({toISOString:function(){return!0}})}catch(A){}z||(Date.prototype.toJSON=function(){var a,b=Object(this),c=d(b);if("number"==typeof c&&!isFinite(c))return null;if(a=b.toISOString,"function"!=typeof a)throw new TypeError("toISOString property is not callable");return a.call(b)}),Date=function(a){function b(c,d,e,f,g,h,i){var j=arguments.length;if(this instanceof a){var k=1==j&&String(c)===c?new a(b.parse(c)):j>=7?new a(c,d,e,f,g,h,i):j>=6?new a(c,d,e,f,g,h):j>=5?new a(c,d,e,f,g):j>=4?new a(c,d,e,f):j>=3?new a(c,d,e):j>=2?new a(c,d):j>=1?new a(c):new a;return k.constructor=b,k}return a.apply(this,arguments)}function c(a,b){var c=b>1?1:0;return f[b]+Math.floor((a-1969+c)/4)-Math.floor((a-1901+c)/100)+Math.floor((a-1601+c)/400)+365*(a-1970)}function d(b){return Number(new a(1970,0,1,0,0,0,b))}var e=new RegExp("^(\\d{4}|[+-]\\d{6})(?:-(\\d{2})(?:-(\\d{2})(?:T(\\d{2}):(\\d{2})(?::(\\d{2})(?:(\\.\\d{1,}))?)?(Z|(?:([-+])(\\d{2}):(\\d{2})))?)?)?)?$"),f=[0,31,59,90,120,151,181,212,243,273,304,334,365];for(var g in a)b[g]=a[g];return b.now=a.now,b.UTC=a.UTC,b.prototype=a.prototype,b.prototype.constructor=b,b.parse=function(b){var f=e.exec(b);if(f){var g,h=Number(f[1]),i=Number(f[2]||1)-1,j=Number(f[3]||1)-1,k=Number(f[4]||0),l=Number(f[5]||0),m=Number(f[6]||0),n=Math.floor(1e3*Number(f[7]||0)),o=Boolean(f[4]&&!f[8]),p="-"===f[9]?1:-1,q=Number(f[10]||0),r=Number(f[11]||0);return(l>0||m>0||n>0?24:25)>k&&60>l&&60>m&&1e3>n&&i>-1&&12>i&&24>q&&60>r&&j>-1&&j<c(h,i+1)-c(h,i)&&(g=60*(24*(c(h,i)+j)+k+q*p),g=1e3*(60*(g+l+r*p)+m)+n,o&&(g=d(g)),g>=-864e13&&864e13>=g)?g:0/0}return a.parse.apply(this,arguments)},b}(Date),Date.now||(Date.now=function(){return(new Date).getTime()}),Number.prototype.toFixed&&"0.000"===8e-5.toFixed(3)&&"0"!==.9.toFixed(0)&&"1.25"===1.255.toFixed(2)&&"1000000000000000128"===0xde0b6b3a7640080.toFixed(0)||!function(){function a(a,b){for(var c=-1;++c<g;)b+=a*h[c],h[c]=b%f,b=Math.floor(b/f)}function b(a){for(var b=g,c=0;--b>=0;)c+=h[b],h[b]=Math.floor(c/a),c=c%a*f}function c(){for(var a=g,b="";--a>=0;)if(""!==b||0===a||0!==h[a]){var c=String(h[a]);""===b?b=c:b+="0000000".slice(0,7-c.length)+c}return b}function d(a,b,c){return 0===b?c:1===b%2?d(a,b-1,c*a):d(a*a,b/2,c)}function e(a){for(var b=0;a>=4096;)b+=12,a/=4096;for(;a>=2;)b+=1,a/=2;return b}var f,g,h;f=1e7,g=6,h=[0,0,0,0,0,0],Number.prototype.toFixed=function(f){var g,h,i,j,k,l,m,n;if(g=Number(f),g=g!==g?0:Math.floor(g),0>g||g>20)throw new RangeError("Number.toFixed called with invalid number of decimals");if(h=Number(this),h!==h)return"NaN";if(-1e21>=h||h>=1e21)return String(h);if(i="",0>h&&(i="-",h=-h),j="0",h>1e-21)if(k=e(h*d(2,69,1))-69,l=0>k?h*d(2,-k,1):h/d(2,k,1),l*=4503599627370496,k=52-k,k>0){for(a(0,l),m=g;m>=7;)a(1e7,0),m-=7;for(a(d(10,m,1),0),m=k-1;m>=23;)b(1<<23),m-=23;b(1<<m),a(1,1),b(2),j=c()}else a(0,l),a(1<<-k,0),j=c()+"0.00000000000000000000".slice(2,2+g);return g>0?(n=j.length,j=g>=n?i+"0.0000000000000000000".slice(0,g-n+2)+j:i+j.slice(0,n-g)+"."+j.slice(n-g)):j=i+j,j}}();var B=String.prototype.split;if(2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||"t"==="tesst".split(/(s)*/)[1]||0==="".split(/.?/).length||".".split(/()()/).length>1?!function(){var a=void 0===/()??/.exec("")[1];String.prototype.split=function(b,c){var d=this;if(void 0===b&&0===c)return[];if("[object RegExp]"!==Object.prototype.toString.call(b))return B.apply(this,arguments);var e,f,g,h,i=[],j=(b.ignoreCase?"i":"")+(b.multiline?"m":"")+(b.extended?"x":"")+(b.sticky?"y":""),k=0,b=new RegExp(b.source,j+"g");for(d+="",a||(e=new RegExp("^"+b.source+"$(?!\\s)",j)),c=void 0===c?-1>>>0:c>>>0;(f=b.exec(d))&&(g=f.index+f[0].length,!(g>k&&(i.push(d.slice(k,f.index)),!a&&f.length>1&&f[0].replace(e,function(){for(var a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(f[a]=void 0)}),f.length>1&&f.index<d.length&&Array.prototype.push.apply(i,f.slice(1)),h=f[0].length,k=g,i.length>=c)));)b.lastIndex===f.index&&b.lastIndex++;return k===d.length?(h||!b.test(""))&&i.push(""):i.push(d.slice(k)),i.length>c?i.slice(0,c):i}}():"0".split(void 0,0).length&&(String.prototype.split=function(a,b){return void 0===a&&0===b?[]:B.apply(this,arguments)}),"".substr&&"b"!=="0b".substr(-1)){var C=String.prototype.substr;String.prototype.substr=function(a,b){return C.call(this,0>a?(a=this.length+a)<0?0:a:a,b)}}var D=" \n \f\r   ᠎              \u2028\u2029";if(!String.prototype.trim||D.trim()){D="["+D+"]";var E=new RegExp("^"+D+D+"*"),F=new RegExp(D+D+"*$");String.prototype.trim=function(){if(void 0===this||null===this)throw new TypeError("can't convert "+this+" to object");return String(this).replace(E,"").replace(F,"")}}var G=function(a){if(null==a)throw new TypeError("can't convert "+a+" to object");return Object(a)}}),function(a){var b=["equipment","information","rice","money","species","series","fish","sheep","moose","deer","news"],c=[[new RegExp("(m)en$","gi")],[new RegExp("(pe)ople$","gi")],[new RegExp("(child)ren$","gi")],[new RegExp("([ti])a$","gi")],[new RegExp("((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$","gi")],[new RegExp("(hive)s$","gi")],[new RegExp("(tive)s$","gi")],[new RegExp("(curve)s$","gi")],[new RegExp("([lr])ves$","gi")],[new RegExp("([^fo])ves$","gi")],[new RegExp("([^aeiouy]|qu)ies$","gi")],[new RegExp("(s)eries$","gi")],[new RegExp("(m)ovies$","gi")],[new RegExp("(x|ch|ss|sh)es$","gi")],[new RegExp("([m|l])ice$","gi")],[new RegExp("(bus)es$","gi")],[new RegExp("(o)es$","gi")],[new RegExp("(shoe)s$","gi")],[new RegExp("(cris|ax|test)es$","gi")],[new RegExp("(octop|vir)i$","gi")],[new RegExp("(alias|status)es$","gi")],[new RegExp("^(ox)en","gi")],[new RegExp("(vert|ind)ices$","gi")],[new RegExp("(matr)ices$","gi")],[new RegExp("(quiz)zes$","gi")],[new RegExp("(m)an$","gi"),"$1en"],[new RegExp("(pe)rson$","gi"),"$1ople"],[new RegExp("(child)$","gi"),"$1ren"],[new RegExp("^(ox)$","gi"),"$1en"],[new RegExp("(ax|test)is$","gi"),"$1es"],[new RegExp("(octop|vir)us$","gi"),"$1i"],[new RegExp("(alias|status)$","gi"),"$1es"],[new RegExp("(bu)s$","gi"),"$1ses"],[new RegExp("(buffal|tomat|potat)o$","gi"),"$1oes"],[new RegExp("([ti])um$","gi"),"$1a"],[new RegExp("sis$","gi"),"ses"],[new RegExp("(?:([^f])fe|([lr])f)$","gi"),"$1$2ves"],[new RegExp("(hive)$","gi"),"$1s"],[new RegExp("([^aeiouy]|qu)y$","gi"),"$1ies"],[new RegExp("(x|ch|ss|sh)$","gi"),"$1es"],[new RegExp("(matr|vert|ind)ix|ex$","gi"),"$1ices"],[new RegExp("([m|l])ouse$","gi"),"$1ice"],[new RegExp("(quiz)$","gi"),"$1zes"],[new RegExp("s$","gi"),"s"],[new RegExp("$","gi"),"s"]],d=[[new RegExp("(m)an$","gi")],[new RegExp("(pe)rson$","gi")],[new RegExp("(child)$","gi")],[new RegExp("^(ox)$","gi")],[new RegExp("(ax|test)is$","gi")],[new RegExp("(octop|vir)us$","gi")],[new RegExp("(alias|status)$","gi")],[new RegExp("(bu)s$","gi")],[new RegExp("(buffal|tomat|potat)o$","gi")],[new RegExp("([ti])um$","gi")],[new RegExp("sis$","gi")],[new RegExp("(?:([^f])fe|([lr])f)$","gi")],[new RegExp("(hive)$","gi")],[new RegExp("([^aeiouy]|qu)y$","gi")],[new RegExp("(x|ch|ss|sh)$","gi")],[new RegExp("(matr|vert|ind)ix|ex$","gi")],[new RegExp("([m|l])ouse$","gi")],[new RegExp("(quiz)$","gi")],[new RegExp("(m)en$","gi"),"$1an"],[new RegExp("(pe)ople$","gi"),"$1rson"],[new RegExp("(child)ren$","gi"),"$1"],[new RegExp("([ti])a$","gi"),"$1um"],[new RegExp("((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$","gi"),"$1$2sis"],[new RegExp("(hive)s$","gi"),"$1"],[new RegExp("(tive)s$","gi"),"$1"],[new RegExp("(curve)s$","gi"),"$1"],[new RegExp("([lr])ves$","gi"),"$1f"],[new RegExp("([^fo])ves$","gi"),"$1fe"],[new RegExp("([^aeiouy]|qu)ies$","gi"),"$1y"],[new RegExp("(s)eries$","gi"),"$1eries"],[new RegExp("(m)ovies$","gi"),"$1ovie"],[new RegExp("(x|ch|ss|sh)es$","gi"),"$1"],[new RegExp("([m|l])ice$","gi"),"$1ouse"],[new RegExp("(bus)es$","gi"),"$1"],[new RegExp("(o)es$","gi"),"$1"],[new RegExp("(shoe)s$","gi"),"$1"],[new RegExp("(cris|ax|test)es$","gi"),"$1is"],[new RegExp("(octop|vir)i$","gi"),"$1us"],[new RegExp("(alias|status)es$","gi"),"$1"],[new RegExp("^(ox)en","gi"),"$1"],[new RegExp("(vert|ind)ices$","gi"),"$1ex"],[new RegExp("(matr)ices$","gi"),"$1ix"],[new RegExp("(quiz)zes$","gi"),"$1"],[new RegExp("ss$","gi"),"ss"],[new RegExp("s$","gi"),""]],e=["and","or","nor","a","an","the","so","but","to","of","at","by","from","into","on","onto","off","out","in","over","with","for"],f=new RegExp("(_ids|_id)$","g"),g=new RegExp("_","g"),h=new RegExp("[ _]","g"),i=new RegExp("([A-Z])","g"),j=new RegExp("^_"),k={_apply_rules:function(a,b,c,d){if(d)a=d;else{var e=k.indexOf(c,a.toLowerCase())>-1;if(!e)for(var f=0,g=b.length;g>f;f++)if(a.match(b[f][0])){void 0!==b[f][1]&&(a=a.replace(b[f][0],b[f][1]));break}}return a},indexOf:function(a,b,c,d){c||(c=-1);for(var e=-1,f=c,g=a.length;g>f;f++)if(a[f]===b||d&&d(a[f],b)){e=f;break}return e},pluralize:function(a,d){return k._apply_rules(a,c,b,d)},singularize:function(a,c){return k._apply_rules(a,d,b,c)},camelize:function(a,b){for(var c=a.toLowerCase().split("/"),d=0,e=c.length;e>d;d++){for(var f=c[d].split("_"),g=b&&d+1===e?1:0,h=g,i=f.length;i>h;h++)f[h]=f[h].charAt(0).toUpperCase()+f[h].substring(1);c[d]=f.join("")}return c.join("::")},underscore:function(a,b){if(b&&a===a.toUpperCase())return a;for(var c=a.split("::"),d=0,e=c.length;e>d;d++)c[d]=c[d].replace(i,"_$1"),c[d]=c[d].replace(j,"");return c.join("/").toLowerCase()},humanize:function(a,b){return a=a.toLowerCase(),a=a.replace(f,""),a=a.replace(g," "),b||(a=k.capitalize(a)),a},capitalize:function(a){return a=a.toLowerCase(),a.substring(0,1).toUpperCase()+a.substring(1)},dasherize:function(a){return a.replace(h,"-")},titleize:function(a){a=a.toLowerCase().replace(g," ");for(var b=a.split(" "),c=0,d=b.length;d>c;c++){for(var f=b[c].split("-"),h=0,i=f.length;i>h;h++)k.indexOf(e,f[h].toLowerCase())<0&&(f[h]=k.capitalize(f[h]));b[c]=f.join("-")}return a=b.join(" "),a=a.substring(0,1).toUpperCase()+a.substring(1)},demodulize:function(a){var b=a.split("::");return b[b.length-1]},tableize:function(a){return a=k.underscore(a),a=k.pluralize(a)},classify:function(a){return a=k.camelize(a),a=k.singularize(a)},foreign_key:function(a,b){return a=k.demodulize(a),a=k.underscore(a)+(b?"":"_")+"id"},ordinalize:function(a){for(var b=a.split(" "),c=0,d=b.length;d>c;c++){var e=parseInt(b[c],10);if(!isNaN(e)){var f=b[c].substring(b[c].length-2),g=b[c].substring(b[c].length-1),h="th";"11"!=f&&"12"!=f&&"13"!=f&&("1"===g?h="st":"2"===g?h="nd":"3"===g&&(h="rd")),b[c]+=h}}return b.join(" ")}};return"undefined"==typeof exports?a.inflection=k:(k.version="1.2.5",module.exports=k,void 0)}(this),function(){this.Joosy={Modules:{},Resources:{},Templaters:{},Helpers:{},Events:{},debug:function(a){return null!=a?this.__debug=a:!!this.__debug},templater:function(a){if(null!=a)return this.__templater=a;if(!this.__templater)throw new Error("No templater registered");return this.__templater},namespace:function(a,b){var c,d,e,f,g,h,i;for(null==b&&(b=!1),a=a.split("."),f=window,g=0,h=a.length;h>g;g++)e=a[g],e.length>0&&(f=null!=f[e]?f[e]:f[e]={});b&&(b=b.apply(f)),i=[];for(c in f)d=f[c],f.hasOwnProperty(c)&&Joosy.Module.hasAncestor(d,Joosy.Module)?i.push(d.__namespace__=a):i.push(void 0);return i},helpers:function(a,b){var c;return(c=Joosy.Helpers)[a]||(c[a]={}),b.apply(Joosy.Helpers[a])},uid:function(){return this.__uid||(this.__uid=0),"__joosy"+this.__uid++},uuid:function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(a){var b,c;return b=0|16*Math.random(),c="x"===a?b:8|3&b,c.toString(16)}).toUpperCase()},synchronize:function(){var a;return Joosy.Modules.Events?(a=Joosy.Modules.Events).synchronize.apply(a,arguments):console.error("Events module is required to use `Joosy.synchronize'!")},buildUrl:function(a,b){var c,d,e,f;e=[];for(d in b)f=b[d],e.push(""+d+"="+f);return c=a.match(/(\#.*)?$/)[0],a=a.replace(/\#.*$/,""),0!==e.length&&-1===a.indexOf("?")&&(a+="?"),e=e.join("&"),e.length>0&&"?"!==a[a.length-1]&&(e="&"+e),a+e+c}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy",function(){return Joosy})}.call(this),function(){var a={}.hasOwnProperty,b=function(b,c){function d(){this.constructor=b}for(var e in c)a.call(c,e)&&(b[e]=c[e]);return d.prototype=c.prototype,b.prototype=new d,b.__super__=c.prototype,b};Joosy.Module=function(){function a(){}return a.__namespace__=[],a.__className=function(a){return"function"!=typeof a&&(a=a.constructor),null!=a.name?a.name:a.toString().replace(/^function ([a-zA-Z]+)\([\s\S]+/,"$1")},a.hasAncestor=function(a,b){var c;if(null==a||null==b)return!1;for(a=a.prototype,b=b.prototype;a;){if(a===b)return!0;a=null!=(c=a.constructor)?c.__super__:void 0}return!1},a.aliasMethodChain=function(a,b,c){var d,e;return d=b.charAt(0).toUpperCase()+b.slice(1),e=""+a+"Without"+d,"function"!=typeof c&&(c=this.prototype[c]),this.prototype[e]=this.prototype[a],this.prototype[a]=c},a.aliasStaticMethodChain=function(a,b,c){var d,e;return d=b.charAt(0).toUpperCase()+b.slice(1),e=""+a+"Without"+d,this[e]=this[a],this[a]=c},a.merge=function(a,b,c,d){var e,f,g;null==c&&(c=!0),null==d&&(d=!1);for(e in b)f=b[e],b.hasOwnProperty(e)&&(c||!a.hasOwnProperty(e))&&(d&&f.constructor===Object?((null!=(g=a[e])?g.constructor:void 0)!==Object&&(a[e]={}),Joosy.Module.merge(a[e],f)):a[e]=f);return a},a.include=function(a){var b,c,d;if(!a)throw new Error("include(object) requires obj");for(b in a)c=a[b],"included"!==b&&"extended"!==b&&(this.prototype[b]=c);return null!=(d=a.included)&&d.apply(this),null},a.extend=function(a){var b;if(!a)throw new Error("extend(object) requires object");return this.merge(this,a),null!=(b=a.extended)&&b.apply(this),null},a}(),Joosy.Function=function(a){function c(a){var b,c,d;if(c=function(){return c.__call.apply(c,arguments)},c.__proto__)c.__proto__=this;else for(b in this)d=this[b],c[b]=d;return c.constructor=this.constructor,null!=a&&a.call(c),c}return b(c,a),c}(Joosy.Module),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/module",function(){return Joosy.Module})}.call(this),function(){var a,b,c=[].slice;b=function(){function a(){this.actions=[]}return a.prototype["do"]=function(a){return this.actions.push(a)},a.prototype.after=function(a){this.after=a},a}(),a=function(){function a(a){this.parent=a,this.bindings=[]}return a.prototype.bind=function(){var a,b;return a=1<=arguments.length?c.call(arguments,0):[],this.bindings.push((b=this.parent).bind.apply(b,a))},a.prototype.unbind=function(){var a,b,c,d;for(d=this.bindings,b=0,c=d.length;c>b;b++)a=d[b],this.parent.unbind(a);return this.bindings=[]},a}(),Joosy.Modules.Events={eventsNamespace:function(b){var c;return c=new a(this),null!=b&&"function"==typeof b.call&&b.call(c),c},wait:function(a,b,c){return this.hasOwnProperty("__oneShotEvents")||(this.__oneShotEvents={}),2===arguments.length&&(c=b,b=a,a=Object.keys(this.__oneShotEvents).length.toString()),b=this.__splitEvents(b),b.length>0?this.__oneShotEvents[a]=[b,c]:c(),a},unwait:function(a){return this.hasOwnProperty("__oneShotEvents")?delete this.__oneShotEvents[a]:void 0},bind:function(a,b,c){return this.hasOwnProperty("__boundEvents")||(this.__boundEvents={}),2===arguments.length&&(c=b,b=a,a=Object.keys(this.__boundEvents).length.toString()),b=this.__splitEvents(b),b.length>0?this.__boundEvents[a]=[b,c]:c(),a},unbind:function(a){return this.hasOwnProperty("__boundEvents")?delete this.__boundEvents[a]:void 0},trigger:function(){var a,b,d,e,f,g,h,i,j,k,l,m,n,o,p,q=this;if(d=arguments[0],b=2<=arguments.length?c.call(arguments,1):[],Joosy.Modules.Log.debugAs(this,"Event "+d+" triggered"),"string"==typeof d?i=!1:(i=d.remember,d=d.name),this.hasOwnProperty("__oneShotEvents")){f=[],m=this.__oneShotEvents;for(g in m){for(n=m[g],e=n[0],a=n[1];-1!==(h=e.indexOf(d));)e.splice(h,1);0===e.length&&f.push(g)}for(j=function(c){return a=q.__oneShotEvents[c][1],delete q.__oneShotEvents[c],a.apply(null,b)},k=0,l=f.length;l>k;k++)g=f[k],j(g)}if(this.hasOwnProperty("__boundEvents")){o=this.__boundEvents;for(g in o)p=o[g],e=p[0],a=p[1],-1!==e.indexOf(d)&&a.apply(null,b)}return i?(this.hasOwnProperty("__triggeredEvents")||(this.__triggeredEvents={}),this.__triggeredEvents[d]=!0):void 0},synchronize:function(a){var c,d,e,f,g,h,i,j=this;if(d=new b,e=0,a(d),0===d.actions.length)return d.after.call(this);for(h=d.actions,i=[],f=0,g=h.length;g>f;f++)c=h[f],i.push(function(a){return a.call(j,function(){return++e>=d.actions.length?d.after.call(this):void 0})}(c));return i},__splitEvents:function(a){var b=this;return"string"==typeof a&&(a=0===a.length?[]:a.trim().split(/\s+/)),this.hasOwnProperty("__triggeredEvents")&&(a=a.filter(function(a){return!b.__triggeredEvents[a]})),a}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/modules/events",function(){return Joosy.Modules.Events})}.call(this),function(){var a=[].slice;Joosy.Modules.Log={log:function(){var b;return b=1<=arguments.length?a.call(arguments,0):[],"undefined"!=typeof console&&null!==console?null!=console.log.apply?(b.unshift("Joosy>"),console.log.apply(console,b)):console.log(b.first()):void 0},debug:function(){var b;return b=1<=arguments.length?a.call(arguments,0):[],Joosy.debug()?this.log.apply(this,b):void 0},debugAs:function(){var b,c,d;return c=arguments[0],d=arguments[1],b=3<=arguments.length?a.call(arguments,2):[],Joosy.debug()?(c=Joosy.Module.__className(c)||"unknown context",this.debug.apply(this,[""+c+"> "+d].concat(a.call(b)))):void 0}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/modules/log",function(){return Joosy.Modules.Log})}.call(this),function(){Joosy.Modules.DOM={eventSplitter:/^(\S+)\s*(.*)$/,included:function(){return this.mapElements=function(a){return this.prototype.hasOwnProperty("__elements")||(this.prototype.__elements=Joosy.Module.merge({},this.__super__.__elements)),Joosy.Module.merge(this.prototype.__elements,a)},this.mapEvents=function(a){return this.prototype.hasOwnProperty("__events")||(this.prototype.__events=Joosy.Module.merge({},this.__super__.__events)),Joosy.Module.merge(this.prototype.__events,a)}},$:function(a,b){return $(a,b||this.$container)},__extractSelector:function(a){var b=this;return a=a.replace(/(\$[A-z0-9\.\$]+)/g,function(a){var c,d,e,f,g,h;for(a=a.split("."),c=a.pop(),e=b,f=0,g=a.length;g>f;f++)d=a[f],e=null!=e?e[d]:void 0;return null!=e?null!=(h=e[c])?h.selector:void 0:void 0}),a.trim()},__assignElements:function(a,b){var c,d,e,f=this;if(a||(a=this),b||(b=this.__elements),b){e=[];for(c in b)d=b[c],e.push(function(b,c){return"string"!=typeof c?f.__assignElements(a["$"+b]={},c):(c=f.__extractSelector(c),a["$"+b]=f.__wrapElement(c),a["$"+b].selector=c)}(c,d));return e}},__wrapElement:function(a){var b=this;return function(c){return c?b.$(a,c):b.$(a)}},__delegateEvents:function(){var a,b,c,d,e,f=this;if(d=this,a=this.__events){e=[];for(b in a)c=a[b],e.push(function(a,b){var c,e,g,h,i,j,k,l,m;for(l=a.split(","),m=[],j=0,k=l.length;k>j;j++)if(g=l[j],g=g.replace(/^\s+/,""),"function"!=typeof b&&(b=f[b]),c=function(a){return b.call(d,$(this),a)},h=g.match(f.eventSplitter),e=h[1],i=f.__extractSelector(h[2]),""===i)f.$container.bind(e,c),m.push(Joosy.Modules.Log.debugAs(f,""+e+" binded on container"));else{if(void 0===i)throw new Error("Unknown element "+h[2]+" in "+Joosy.Module.__className(f.constructor)+" (maybe typo?)");f.$container.on(e,i,c),m.push(Joosy.Modules.Log.debugAs(f,""+e+" binded on "+i))}return m}(b,c));return e}},__clearContainer:function(){return this.$container.unbind().off(),this.$container=$()}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/modules/dom",function(){return Joosy.Modules.DOM})}.call(this),function(a){var b=function(){},c=0,d=a.document,e=("undefined"==typeof ENV?{}:ENV).DISABLE_RANGE_API,f=!e&&d&&"createRange"in d&&"undefined"!=typeof Range&&Range.prototype.createContextualFragment,g=d&&function(){var a=d.createElement("div");return a.innerHTML="<div></div>",a.firstChild.innerHTML="<script></script>",""===a.firstChild.innerHTML}(),h=d&&function(){var a=d.createElement("div");return a.innerHTML="Test: <script type='text/x-placeholder'></script>Value","Test:"===a.childNodes[0].nodeValue&&" Value"===a.childNodes[2].nodeValue}(),i=function(a){var d;d=this instanceof i?this:new b,d.innerHTML=a;var e="metamorph-"+c++;return d.start=e+"-start",d.end=e+"-end",d};b.prototype=i.prototype;var j,k,l,m,n,o,p,q,r;if(m=function(){return this.startTag()+this.innerHTML+this.endTag()},q=function(){return"<script id='"+this.start+"' type='text/x-placeholder'></script>"},r=function(){return"<script id='"+this.end+"' type='text/x-placeholder'></script>"},f)j=function(a,b){var c=d.createRange(),e=d.getElementById(a.start),f=d.getElementById(a.end);return b?(c.setStartBefore(e),c.setEndAfter(f)):(c.setStartAfter(e),c.setEndBefore(f)),c},k=function(a,b){var c=j(this,b);c.deleteContents();var d=c.createContextualFragment(a);c.insertNode(d)},l=function(){var a=j(this,!0);a.deleteContents()},n=function(a){var b=d.createRange();b.setStart(a),b.collapse(!1);var c=b.createContextualFragment(this.outerHTML());a.appendChild(c)},o=function(a){var b=d.createRange(),c=d.getElementById(this.end);b.setStartAfter(c),b.setEndAfter(c);var e=b.createContextualFragment(a);b.insertNode(e)},p=function(a){var b=d.createRange(),c=d.getElementById(this.start);b.setStartAfter(c),b.setEndAfter(c);var e=b.createContextualFragment(a);b.insertNode(e)};else{var s={select:[1,"<select multiple='multiple'>","</select>"],fieldset:[1,"<fieldset>","</fieldset>"],table:[1,"<table>","</table>"],tbody:[2,"<table><tbody>","</tbody></table>"],tr:[3,"<table><tbody><tr>","</tr></tbody></table>"],colgroup:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],map:[1,"<map>","</map>"],_default:[0,"",""]},t=function(a,b){if(a.getAttribute("id")===b)return a;var c,d,e,f=a.childNodes.length;for(c=0;f>c;c++)if(d=a.childNodes[c],e=1===d.nodeType&&t(d,b))return e},u=function(a,b){var c=[];if(h&&(b=b.replace(/(\s+)(<script id='([^']+)')/g,function(a,b,d,e){return c.push([e,b]),d})),a.innerHTML=b,c.length>0){var e,f=c.length;for(e=0;f>e;e++){var g=t(a,c[e][0]),i=d.createTextNode(c[e][1]);g.parentNode.insertBefore(i,g)}}},v=function(a,b){var c=s[a.tagName.toLowerCase()]||s._default,e=c[0],f=c[1],h=c[2];g&&(b="&shy;"+b);var i=d.createElement("div");u(i,f+b+h);for(var j=0;e>=j;j++)i=i.firstChild;if(g){for(var k=i;1===k.nodeType&&!k.nodeName;)k=k.firstChild;3===k.nodeType&&"­"===k.nodeValue.charAt(0)&&(k.nodeValue=k.nodeValue.slice(1))}return i},w=function(a){for(;""===a.parentNode.tagName;)a=a.parentNode;return a},x=function(a,b){a.parentNode!==b.parentNode&&b.parentNode.insertBefore(a,b.parentNode.firstChild)};k=function(a,b){var c,e,f,g=w(d.getElementById(this.start)),h=d.getElementById(this.end),i=h.parentNode;for(x(g,h),c=g.nextSibling;c;){if(e=c.nextSibling,f=c===h){if(!b)break;h=c.nextSibling}if(c.parentNode.removeChild(c),f)break;c=e}for(c=v(g.parentNode,a);c;)e=c.nextSibling,i.insertBefore(c,h),c=e},l=function(){var a=w(d.getElementById(this.start)),b=d.getElementById(this.end);this.html(""),a.parentNode.removeChild(a),b.parentNode.removeChild(b)},n=function(a){for(var b,c=v(a,this.outerHTML());c;)b=c.nextSibling,a.appendChild(c),c=b},o=function(a){var b,c,e=d.getElementById(this.end),f=e.nextSibling,g=e.parentNode;for(c=v(g,a);c;)b=c.nextSibling,g.insertBefore(c,f),c=b},p=function(a){var b,c,e=d.getElementById(this.start),f=e.parentNode;c=v(f,a);for(var g=e.nextSibling;c;)b=c.nextSibling,f.insertBefore(c,g),c=b}}i.prototype.html=function(a){return this.checkRemoved(),void 0===a?this.innerHTML:(k.call(this,a),this.innerHTML=a,void 0)},i.prototype.replaceWith=function(a){this.checkRemoved(),k.call(this,a,!0)},i.prototype.remove=l,i.prototype.outerHTML=m,i.prototype.appendTo=n,i.prototype.after=o,i.prototype.prepend=p,i.prototype.startTag=q,i.prototype.endTag=r,i.prototype.isRemoved=function(){var a=d.getElementById(this.start),b=d.getElementById(this.end);return!a||!b},i.prototype.checkRemoved=function(){if(this.isRemoved())throw new Error("Cannot perform operations on a Metamorph that is not in the DOM.")},a.Metamorph=i}(this),function(){var a=[].slice;Joosy.Modules.Renderer={included:function(){return this.view=function(a,b){return null==b&&(b={}),this.prototype.__view=a,this.prototype.__renderDefault=function(c){return null==c&&(c={}),b.dynamic?this.renderDynamic(a,c):this.render(a,c)}},this.helper=function(){var b,c;return b=1<=arguments.length?a.call(arguments,0):[],this.prototype.hasOwnProperty("__helpers")||(this.prototype.__helpers=(null!=(c=this.__super__.__helpers)?c.slice():void 0)||[]),this.prototype.__helpers=this.prototype.__helpers.concat(b).filter(function(a,b,c){return c.indexOf(a)===b})}},render:function(a,b,c){return null==b&&(b={}),null==c&&(c=!1),this.__render(!1,a,b,c)},renderDynamic:function(a,b,c){return null==b&&(b={}),null==c&&(c=!1),this.__render(!0,a,b,c)},__assignHelpers:function(){var a,b,c,d,e,f,g=this;if(null!=this.__helpers){for(this.hasOwnProperty("__helpers")||(this.__helpers=this.__helpers.slice()),e=this.__helpers,f=[],b=c=0,d=e.length;d>c;b=++c)a=e[b],f.push(function(a,b){if(a.constructor!==Object){if(null==g[a])throw new Error("Cannot find method '"+a+"' to use as helper");return g.__helpers[b]={},g.__helpers[b][a]=function(){return g[a].apply(g,arguments)}}}(a,b)); +return f}},__instantiateHelpers:function(){var a,b,c,d;if(!this.__helpersInstance&&(this.__assignHelpers(),this.__helpersInstance={},this.__helpersInstance.__renderer=this,Joosy.Module.merge(this.__helpersInstance,Joosy.Helpers.Application),null!=Joosy.Helpers.Routes&&Joosy.Module.merge(this.__helpersInstance,Joosy.Helpers.Routes),this.__helpers))for(d=this.__helpers,b=0,c=d.length;c>b;b++)a=d[b],Joosy.Module.merge(this.__helpersInstance,a);return this.__helpersInstance},__instantiateRenderers:function(a){var b=this;return{render:function(c,d){return null==d&&(d={}),b.render(c,d,a)},renderDynamic:function(c,d){return null==d&&(d={}),b.renderDynamic(c,d,a)},renderInline:function(c,d){var e;return null==c&&(c={}),e=function(a){return d.apply(a)},b.renderDynamic(e,c,a)}}},__render:function(a,b,c,d){var e,f,g,h,i,j,k,l,m,n,o=this;if(null==c&&(c={}),null==d&&(d=!1),l=this.__renderingStackChildFor(d),l.template=b,l.locals=c,"string"==typeof b)null!=this.__renderSection&&(b=Joosy.templater().resolveTemplate(this.__renderSection(),b,this)),b=Joosy.templater().buildView(b);else if("function"!=typeof b)throw new Error(""+Joosy.Module.__className(this)+"> template (maybe @view) does not look like a string or lambda");if(c.constructor!==Object)throw new Error(""+Joosy.Module.__className(this)+"> locals (maybe @data?) is not a hash");if(f=function(){var a;return a={},Joosy.Module.merge(a,l.locals),Joosy.Module.merge(a,o.__instantiateHelpers(),!1),Joosy.Module.merge(a,o.__instantiateRenderers(l)),a},k=function(){return b(f())},a){i=Metamorph(k()),n=function(){var a,b,c,d,e,f,g,h,j,m,n;if(i.isRemoved()){for(h=i.__bindings,n=[],d=0,f=h.length;f>d;d++)j=h[d],c=j[0],a=j[1],n.push(c.unbind(a));return n}for(m=l.children,e=0,g=m.length;g>e;e++)b=m[e],o.__removeMetamorphs(b);return l.children=[],i.html(k())},m=null,g=function(){return clearTimeout(m),m=setTimeout(n,0)};for(h in c)j=c[h],c.hasOwnProperty(h)&&null!=(null!=j?j.bind:void 0)&&null!=(null!=j?j.unbind:void 0)&&(e=[j,j.bind("changed",g)],l.metamorphBindings.push(e));return i.__bindings=l.metamorphBindings,i.outerHTML()}return k()},__renderingStackElement:function(a){return null==a&&(a=null),{metamorphBindings:[],locals:null,template:null,children:[],parent:a}},__renderingStackChildFor:function(a){var b;return this.__renderingStack||(this.__renderingStack=[]),a?(b=this.__renderingStackElement(a),a.children.push(b),b):(b=this.__renderingStackElement(),this.__renderingStack.push(b),b)},__removeMetamorphs:function(a){var b,c,d,e,f,g=this;if(null==a&&(a=!1),b=function(a){var b,c,d,e,f,h,i,j,k,l;if(null!=a?a.children:void 0)for(j=a.children,e=0,h=j.length;h>e;e++)c=j[e],g.__removeMetamorphs(c);if(null!=a?a.metamorphBindings:void 0){for(k=a.metamorphBindings,f=0,i=k.length;i>f;f++)l=k[f],d=l[0],b=l[1],d.unbind(b);return a.metamorphBindings=[]}},a)return b(a);if(null!=this.__renderingStack){for(e=this.__renderingStack,f=[],c=0,d=e.length;d>c;c++)a=e[c],f.push(b(a));return f}}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/modules/renderer",function(){return Joosy.Modules.Renderer})}.call(this),function(){Joosy.Modules.TimeManager={setTimeout:function(a,b){var c;return this.__timeouts||(this.__timeouts=[]),c=window.setTimeout(function(){return b()},a),this.__timeouts.push(c),c},setInterval:function(a,b){var c;return this.__intervals||(this.__intervals=[]),c=window.setInterval(function(){return b()},a),this.__intervals.push(c),c},clearTimeout:function(a){return window.clearTimeout(a)},clearInterval:function(a){return window.clearInterval(a)},__clearTime:function(){var a,b,c,d,e,f,g,h;if(this.__intervals)for(f=this.__intervals,b=0,d=f.length;d>b;b++)a=f[b],window.clearInterval(a);if(this.__timeouts){for(g=this.__timeouts,h=[],c=0,e=g.length;e>c;c++)a=g[c],h.push(window.clearTimeout(a));return h}}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/modules/time_manager",function(){return Joosy.Modules.TimeManager})}.call(this),function(){var a=[].slice;Joosy.Modules.Filters={included:function(){return this.__registerFilterCollector=function(a){return this[a]=function(b){return this.prototype.hasOwnProperty("__"+a+"s")||(this.prototype["__"+a+"s"]=[].concat(this.__super__["__"+a+"s"]||[])),this.prototype["__"+a+"s"].push(b)},a.charAt(0).toUpperCase()+a.slice(1)},this.registerPlainFilters=function(){var b,c,d,e,f,g=this;for(c=1<=arguments.length?a.call(arguments,0):[],f=[],d=0,e=c.length;e>d;d++)b=c[d],f.push(function(b){var c;return c=g.__registerFilterCollector(b),g.prototype["__run"+c+"s"]=function(){var c,d,e,f,g,h;if(d=1<=arguments.length?a.call(arguments,0):[],this["__"+b+"s"]){for(g=this["__"+b+"s"],h=[],e=0,f=g.length;f>e;e++)c=g[e],"function"!=typeof c&&(c=this[c]),h.push(c.apply(this,d));return h}},g.prototype["__confirm"+c+"s"]=function(){var c,d=this;return c=1<=arguments.length?a.call(arguments,0):[],this["__"+b+"s"]?this["__"+b+"s"].reduce(function(a,b){return"function"!=typeof b&&(b=d[b]),a&&b.apply(d,c)!==!1},!0):!0},g.prototype["__apply"+c+"s"]=function(){var c,d,e,f,g,h;if(d=arguments[0],e=2<=arguments.length?a.call(arguments,1):[],!this["__"+b+"s"])return d;for(h=this["__"+b+"s"],f=0,g=h.length;g>f;f++)c=h[f],"function"!=typeof c&&(c=this[c]),d=c.apply(this,[d].concat(e));return d}}(b));return f},this.registerSequencedFilters=function(){var b,c,d,e,f,g=this;for(c=1<=arguments.length?a.call(arguments,0):[],f=[],d=0,e=c.length;e>d;d++)b=c[d],f.push(function(a){var b;return b=g.__registerFilterCollector(a),g.prototype["__run"+b+"s"]=function(b,c){var d,e;return this["__"+a+"s"]?(e=this["__"+a+"s"],d=this,1===e.length?e[0].apply(this,b.concat(c)):Joosy.synchronize(function(a){var f,g,h,i;for(g=function(c){return a["do"](function(a){return c.apply(d,b.concat(a))})},h=0,i=e.length;i>h;h++)f=e[h],g(f);return a.after(c)})):c()}}(b));return f}}},null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/modules/filters",function(){return Joosy.Modules.Filters})}.call(this),function(){var a={}.hasOwnProperty,b=function(b,c){function d(){this.constructor=b}for(var e in c)a.call(c,e)&&(b[e]=c[e]);return d.prototype=c.prototype,b.prototype=new d,b.__super__=c.prototype,b};Joosy.Widget=function(a){function c(a,b){this.params=a,this.previous=b}return b(c,a),c.include(Joosy.Modules.Log),c.include(Joosy.Modules.Events),c.include(Joosy.Modules.DOM),c.include(Joosy.Modules.Renderer),c.include(Joosy.Modules.TimeManager),c.include(Joosy.Modules.Filters),c.mapWidgets=function(a){return this.prototype.hasOwnProperty("__widgets")||(this.prototype.__widgets=Joosy.Module.merge({},this.__super__.__widgets)),Joosy.Module.merge(this.prototype.__widgets,a)},c.independent=function(){return this.prototype.__independent=!0},c.registerPlainFilters("beforeLoad","afterLoad","afterUnload"),c.registerSequencedFilters("beforePaint","paint","erase","fetch"),c.prototype.registerWidget=function(a,b){return"string"==typeof a&&(a=this.__normalizeSelector(a)),b=this.__normalizeWidget(b),b.__bootstrapDefault(this,a),b},c.prototype.unregisterWidget=function(a){return a.__unload()},c.prototype.replaceWidget=function(a,b){return b=this.__normalizeWidget(b),b.previous=a,b.__bootstrapDefault(this,a.$container),b},c.prototype.navigate=function(){var a;return null!=(a=Joosy.Router)?a.navigate.apply(a,arguments):void 0},c.prototype.__renderSection=function(){return"widgets"},c.prototype.__nestingMap=function(){var a,b,c,d;a={},d=this.__widgets;for(b in d)c=d[b],c=this.__normalizeWidget(c),a[b]={instance:c,nested:c.__nestingMap()};return a},c.prototype.__bootstrapDefault=function(a,b){return this.__bootstrap(a,this.__nestingMap(),b)},c.prototype.__bootstrap=function(a,b,c,d){var e=this;return this.$container=c,null==d&&(d=!0),this.wait("section:fetched section:erased",function(){return e.__runPaints([],function(){return e.__paint(a,b,e.$container)})}),this.__erase(),d?this.__fetch(b):void 0},c.prototype.__fetch=function(a){var b=this;return this.data={},this.synchronize(function(c){var d,e,f;f=function(a,b){return b.instance.__fetch(b.nested),b.instance.__independent?void 0:c["do"](function(a){return b.instance.wait("section:fetched",a)})};for(e in a)d=a[e],f(e,d);return c["do"](function(a){return b.__runFetchs([],a)}),c.after(function(){return b.trigger({name:"section:fetched",remember:!0})})})},c.prototype.__erase=function(){var a=this;return null!=this.previous?this.previous.__runErases([],function(){return a.previous.__unload(),a.__runBeforePaints([],function(){return a.trigger({name:"section:erased",remember:!0})})}):this.__runBeforePaints([],function(){return a.trigger({name:"section:erased",remember:!0})})},c.prototype.__paint=function(a,b,c){var d,e,f,g=this;this.parent=a,this.$container=c,this.__nestedSections=[],this.$container.html("function"==typeof this.__renderDefault?this.__renderDefault(this.data||{}):void 0),this.__load(),f=[];for(e in b)d=b[e],f.push(function(a,b){var d;return c=g.__normalizeSelector(a),!b.instance.__independent||(null!=(d=b.instance.__triggeredEvents)?d["section:fetched"]:void 0)?b.instance.__paint(g,b.nested,c):b.instance.__bootstrap(g,b.nested,c,!1)}(e,d));return f},c.prototype.__load=function(){var a;return this.parent&&((a=this.parent).__nestedSections||(a.__nestedSections=[]),this.parent.__nestedSections.push(this)),this.__assignElements(),this.__delegateEvents(),this.__runAfterLoads()},c.prototype.__unload=function(a){var b,c,d,e;if(null==a&&(a=!0),this.__nestedSections){for(e=this.__nestedSections,c=0,d=e.length;d>c;c++)b=e[c],b.__unload(!1);delete this.__nestedSections}return this.__clearContainer(),this.__clearTime(),this.__removeMetamorphs(),this.__runAfterUnloads(),this.parent&&a&&this.parent.__nestedSections.splice(this.parent.__nestedSections.indexOf(this),1),delete this.previous,delete this.parent},c.prototype.__normalizeSelector=function(a){return"$container"===a?this.$container:$(this.__extractSelector(a),this.$container)},c.prototype.__normalizeWidget=function(a){return"function"!=typeof a||Joosy.Module.hasAncestor(a,Joosy.Widget)||(a=a.call(this)),Joosy.Module.hasAncestor(a,Joosy.Widget)&&(a=new a),a},c}(Joosy.Module),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/widget",function(){return Joosy.Widget})}.call(this),function(){Joosy.helpers("Application",function(){var a,b;return b=document.createTextNode("test"),a=document.createElement("span"),a.appendChild(b),this.escapeOnce=function(c){return b.nodeValue=c,a.innerHTML},this.tag=function(a,b,c,d){var e,f,g,h;null==b&&(b={}),null==c&&(c=!1),null==d&&(d=!0),e=document.createElement(a),g=document.createElement("div");for(a in b)h=b[a],d&&(h=this.escapeOnce(h)),e.setAttribute(a,h);return g.appendChild(e),f=g.innerHTML,c&&(f=f.replace("/>",">")),f},this.contentTag=function(a,b,c,d){var e,f,g,h,i;null==b&&(b=null),null==c&&(c=null),null==d&&(d=!0),"string"==typeof b?(c||(c={}),e=b):"function"==typeof b?(c={},e=b()):("function"==typeof c?(d=!0,e=c()):(d=c,e=d()),c=b),g=document.createElement(a),h=document.createElement("div");for(a in c)i=c[a],d&&(i=this.escapeOnce(i)),g.setAttribute(a,i);try{g.innerHTML=e}catch(j){if(f=j,e)throw f}return h.appendChild(g),h.innerHTML},this.renderWrapped=function(a,b){return this.render(a,Joosy.Module.merge(this,{yield:b()}))}})}.call(this),function(){var a={}.hasOwnProperty,b=function(b,c){function d(){this.constructor=b}for(var e in c)a.call(c,e)&&(b[e]=c[e]);return d.prototype=c.prototype,b.prototype=new d,b.__super__=c.prototype,b};Joosy.Layout=function(a){function c(a,b){this.params=a,this.previous=b,this.uid=Joosy.uid()}return b(c,a),c.helper("page"),c.prototype.page=function(a,b){return null==b&&(b={}),b.id=this.uid,Joosy.Helpers.Application.tag(a,b)},c.prototype.content=function(){return $("#"+this.uid)},c.prototype.__renderSection=function(){return"layouts"},c.prototype.__nestingMap=function(a){var b;return b=c.__super__.__nestingMap.call(this),b["#"+this.uid]={instance:a,nested:a.__nestingMap()},b},c.prototype.__bootstrapDefault=function(a,b){return this.__bootstrap(null,this.__nestingMap(a),b)},c}(Joosy.Widget),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/layout",function(){return Joosy.Layout})}.call(this),function(){Joosy.Modules.Page={}}.call(this),function(){Joosy.Modules.Page.Scrolling={included:function(){return this.scroll=function(a,b){return null==b&&(b={}),this.prototype.__scrollElement=a,this.prototype.__scrollSpeed=b.speed||500,this.prototype.__scrollMargin=b.margin||0},this.paint(function(a){return this.__scrollElement&&0!==this.__scrollSpeed&&this.__fixHeight(),a()}),this.afterLoad(function(){return this.__scrollElement?this.__performScrolling():void 0})},__performScrolling:function(){var a,b,c=this;return a=(null!=(b=$(this.__extractSelector(this.__scrollElement)).offset())?b.top:void 0)+this.__scrollMargin,Joosy.Modules.Log.debugAs(this,"Scrolling to "+this.__extractSelector(this.__scrollElement)),$("html, body").animate({scrollTop:a},this.__scrollSpeed,function(){return 0!==c.__scrollSpeed?c.__releaseHeight():void 0})},__fixHeight:function(){return $("html").css("min-height",$(document).height())},__releaseHeight:function(){return $("html").css("min-height","")}}}.call(this),function(){Joosy.Modules.Page.Title={title:function(a,b){return null==b&&(b=" / "),this.afterLoad(function(){return"function"==typeof a&&(a=a.apply(this)),a instanceof Array&&(a=a.join(b)),this.__previousTitle=document.title,document.title=a}),this.afterUnload(function(){return document.title=this.__previousTitle})}}}.call(this),function(){var a={}.hasOwnProperty,b=function(b,c){function d(){this.constructor=b}for(var e in c)a.call(c,e)&&(b[e]=c[e]);return d.prototype=c.prototype,b.prototype=new d,b.__super__=c.prototype,b};Joosy.Page=function(a){function c(a,b){var c;this.params=a,this.previous=b,this.layoutShouldChange=(null!=(c=this.previous)?c.__layoutClass:void 0)!==this.__layoutClass,this.halted=!this.__confirmBeforeLoads(),this.layout=function(){var b,c;switch(!1){case!(this.layoutShouldChange&&this.__layoutClass):return new this.__layoutClass(a,null!=(b=this.previous)?b.layout:void 0);case!!this.layoutShouldChange:return null!=(c=this.previous)?c.layout:void 0}}.call(this),this.layoutShouldChange&&!this.layout&&(this.previous=this.previous.layout)}return b(c,a),c.layout=function(a){return this.prototype.__layoutClass=a},c.include(Joosy.Modules.Page.Scrolling),c.extend(Joosy.Modules.Page.Title),c.prototype.__renderSection=function(){return"pages"},c.prototype.__bootstrapDefault=function(a){var b;return this.__bootstrap(this.layout,this.__nestingMap(),(null!=(b=this.layout)?b.content():void 0)||a)},c}(Joosy.Widget),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/page",function(){return Joosy.Page})}.call(this),function(){Joosy.helpers("Routes",function(){return this.linkTo=function(a,b,c){var d,e;return null==a&&(a=""),null==b&&(b=""),null==c&&(c={}),"function"==typeof c&&(d=c,e=[a,b],b=e[0],c=e[1],a=d()),Joosy.Helpers.Application.contentTag("a",a,Joosy.Module.merge(c,{"data-joosy":!0,href:b}))}})}.call(this),function(){var a,b={}.hasOwnProperty,c=function(a,c){function d(){this.constructor=a}for(var e in c)b.call(c,e)&&(a[e]=c[e]);return d.prototype=c.prototype,a.prototype=new d,a.__super__=c.prototype,a};Joosy.Router=function(b){function d(){return a=d.__super__.constructor.apply(this,arguments)}var e;return c(d,b),d.extend(Joosy.Modules.Events),$(window).bind("popstate",function(a){return null!=window.history.loaded?d.trigger("popstate",a):window.history.loaded=!0}),$(document).on("click","a[data-joosy]",function(a){return a.preventDefault(),Joosy.Router.navigate(this.getAttribute("href"))}),e=function(){function a(a,b){this.__namespace=a,this.__alias=b}return a.run=function(b,c,d){var e;return null==c&&(c=""),null==d&&(d=""),e=new a(c,d),b.call(e)},a.prototype.match=function(a,b){var c;return null==b&&(b={}),null!=b.as&&(c=this.__alias?this.__alias+b.as.charAt(0).toUpperCase()+b.as.slice(1):b.as),a=this.__namespace+a,Joosy.Router.compileRoute(a,b.to,c)},a.prototype.root=function(a){return null==a&&(a={}),this.match("/",{to:a.to,as:a.as||"root"})},a.prototype.notFound=function(a){return null==a&&(a={}),this.match(404,{to:a.to})},a.prototype.namespace=function(b,c,d){var e;return null==c&&(c={}),2===arguments.length&&(d=c,c={}),a.run(d,this.__namespace+b,null!=(e=c.as)?e.toString():void 0)},a}(),d.map=function(a,b){var c,d,e;e=[];for(c in a)d=a[c],null!=b&&(c=b+"/"+c),"function"==typeof d||d.prototype?e.push(this.compileRoute(c,d)):e.push(this.map(d,c));return e},d.draw=function(a){return e.run(a)},d.setup=function(a,b,c){var d,e=this;return this.config=a,this.responder=b,null==c&&(c=!0),history.pushState||(this.config.prefix=this.config.hashSuffix,this.config.html5=!1),this.config.html5||(this.config.prefix=this.config.hashSuffix),(d=this.config).prefix||(d.prefix=""),this.config.html5?(this.config.prefix=("/"+this.config.prefix+"/").replace(/\/{2,}/g,"/"),this.listener=this.bind("popstate pushstate",function(){return e.respond(e.canonizeLocation())})):(this.config.prefix=this.config.prefix.replace(/^\#?\/?/,"").replace(/\/?$/,""),$(window).bind("hashchange.JoosyRouter",function(){return e.respond(e.canonizeLocation())})),c?this.respond(this.canonizeLocation()):void 0},d.reset=function(){return this.unbind(this.listener),$(window).unbind(".JoosyRouter"),this.restriction=!1,this.routes={}},d.restrict=function(a){this.restriction=a},d.navigate=function(a,b){var c;null==b&&(b={}),c=a,this.config.html5?(this.config.prefix&&"/"===c[0]&&!c.match(RegExp("^"+this.config.prefix.replace(/\/$/,"")+"(/|$)"))&&(c=c.replace(/^\//,this.config.prefix)),history.pushState({},"",c),this.trigger("pushstate")):(this.config.prefix&&!c.match(RegExp("^#?/?"+this.config.prefix+"(/|$)"))&&(c=c.replace(/^\#?\/?/,""+this.config.prefix+"/")),location.hash=c)},d.canonizeLocation=function(){return this.config.html5?location.pathname.replace(RegExp("^("+this.config.prefix+"?)?/?"),"/")+location.search:location.hash.replace(RegExp("^#?/?("+this.config.prefix+"(/|$))?"),"/")},d.compileRoute=function(a,b,c){var d,e,f;return"404"===a.toString()?(this.wildcardAction=b,void 0):("/"===a[0]&&(a=a.substr(1)),d=a.replace(/\/{2,}/g,"/"),f={},d=d.replace(/\/:([^\/]+)/g,"/([^/]+)"),d=d.replace(/^\/?/,"^/?"),d=d.replace(/\/?$/,"/?$"),e=(a.match(/\/:[^\/]+/g)||[]).map(function(a){return a.substr(2)}),this.routes||(this.routes={}),this.routes[d]={to:b,capture:e,as:c},null!=c?this.defineHelpers(a,c):void 0)},d.respond=function(a){var b,c,d,e,f,g;if(Joosy.Modules.Log.debug("Router> Answering '"+a+"'"),this.restriction&&null===a.match(this.restriction))return this.trigger("restricted",a),void 0;f=a.split("?"),a=f[0],c=f[1],c=(null!=c?"function"==typeof c.split?c.split("&"):void 0:void 0)||[],g=this.routes;for(d in g)if(e=g[d],this.routes.hasOwnProperty(d)&&(b=a.match(new RegExp(d))))return this.responder(e.to,this.__grabParams(c,e,b)),this.trigger("responded",a),void 0;return null!=this.wildcardAction?(this.responder(this.wildcardAction,a),this.trigger("responded")):this.trigger("missed")},d.defineHelpers=function(a,b){var c;return c=function(b){var c,d,e,f,g;if(e=a,c=a.match(/\/:[^\/]+/g))for(f=0,g=c.length;g>f;f++)d=c[f],e=e.replace(d.substr(1),b[d.substr(2)]);return Joosy.Router.config.html5?""+Joosy.Router.config.prefix+e:"#"+Joosy.Router.config.prefix+e},Joosy.helpers("Routes",function(){return this[""+b+"Path"]=c,this[""+b+"Url"]=function(a){return Joosy.Router.config.html5?""+location.origin+c(a):""+location.origin+location.pathname+c(a)}})},d.__grabParams=function(a,b,c){var d,e,f,g,h,i,j,k,l,m;if(null==b&&(b=null),null==c&&(c=[]),g={},c.shift(),d=null!=b?b.capture:void 0)for(i=0,k=d.length;k>i;i++)f=d[i],g[f]=decodeURIComponent(c.shift());for(j=0,l=a.length;l>j;j++)e=a[j],e.length>0&&(m=e.split("="),f=m[0],h=m[1],g[f]=h);return g},d}.call(this,Joosy.Module),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/router",function(){return Joosy.Router})}.call(this),function(){Joosy.Templaters.JST=function(){function a(a){this.config=null!=a?a:{},null!=this.config.prefix&&this.config.prefix.length>0&&(this.prefix=this.config.prefix)}return a.prototype.buildView=function(a){var b,c,d,e,f;for(d=!1,b=this.prefix?[""+this.prefix+"/templates/"+a+"-"+("undefined"!=typeof I18n&&null!==I18n?I18n.locale:void 0),""+this.prefix+"/templates/"+a]:["templates/"+a+"-"+("undefined"!=typeof I18n&&null!==I18n?I18n.locale:void 0),"templates/"+a],e=0,f=b.length;f>e;e++)if(c=b[e],window.JST[c])return window.JST[c];throw new Error("Template '"+a+"' not found. Checked at: '"+b.join(", ")+"'")},a.prototype.resolveTemplate=function(a,b,c){var d,e,f;return"/"===b[0]?b.substr(1):(d=null!=(e=c.constructor)?null!=(f=e.__namespace__)?f.map(function(a){return inflection.underscore(a)}):void 0:void 0,d||(d=[]),d.unshift(a),""+d.join("/")+"/"+b)},a}(),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/templaters/jst",function(){return Joosy.Templaters.JST})}.call(this),function(){Joosy.helpers("Application",function(){return this.widget=function(a,b,c){var d=this;return null==c&&(c=b,b={}),b.id=Joosy.uid(),this.__renderer.setTimeout(0,function(){return d.__renderer.registerWidget($("#"+b.id),c)}),this.tag(a,b)}})}.call(this),function(){}.call(this),function(){Joosy.Application=function(){function a(){}return a.Pages={},a.Layouts={},a.Controls={},a.initialized=!1,a.loading=!0,a.defaultConfig={test:!1,debug:!1,templater:{prefix:""},router:{html5:!1,base:"",prefix:""}},a.initialize=function(a,b){var c=this;if(this.selector=a,null==b&&(b={}),this.initialized)throw new Error("Attempted to initialize Application twice");return this.config={},Joosy.Module.merge(this.config,this.defaultConfig,!0,!0),null!=window.JoosyEnvironment&&Joosy.Module.merge(this.config,window.JoosyEnvironment,!0,!0),Joosy.Module.merge(this.config,b,!0,!0),this.config.test&&this.forceSandbox(),Joosy.templater(new Joosy.Templaters.JST(this.config.templater)),Joosy.debug(this.config.debug),Joosy.Router.setup(this.config.router,function(a,b){if(Joosy.Module.hasAncestor(a,Joosy.Page))return c.changePage(a,b);if("function"==typeof a)return a(b);throw new Error("Unknown kind of route action: "+a)}),this.initialized=!0},a.reset=function(){var a;return Joosy.Router.reset(),Joosy.templater(!1),Joosy.debug(!1),null!=(a=this.page)&&a.__unload(),delete this.page,this.loading=!0,this.initialized=!1},a.content=function(){return $(this.selector)},a.changePage=function(a,b){var c;return c=new a(b,this.page),c.halted?void 0:(c.layoutShouldChange&&c.layout?c.layout.__bootstrapDefault(c,this.content()):c.__bootstrapDefault(this.content()),this.page=c)},a.forceSandbox=function(){var a;return a=Joosy.uid(),this.selector="#"+a,$("body").append($("<div/>").attr("id",a).css({height:"0px",width:"0px",overflow:"hidden"}))},a}(),null!=("undefined"!=typeof define&&null!==define?define.amd:void 0)&&define("joosy/application",function(){return Joosy.Application})}.call(this),function(){}.call(this); \ No newline at end of file