From d6034ce0c59c77adef8b64dfcc751bff6d1372d7 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 20 Jul 2017 18:16:26 +0200 Subject: [PATCH] Remove @author docblock --- 3D/Loader/ObjLoader.js | 1 - Account/AccountManager.js | 5 ----- Account/AccountType.enum.js | 1 - Animation/Animation.js | 2 -- Animation/Canvas/Particle.js | 8 -------- Animation/Canvas/ParticleAnimation.js | 6 ------ Asset/AssetManager.js | 6 ------ Auth/Auth.js | 7 ------- Autoloader.js | 5 ----- Config/Options.js | 5 ----- DataStorage/CookieJar.js | 4 ---- DataStorage/LocalStorage.js | 3 --- Event/EventManager.js | 9 --------- Log/LogLevel.enum.js | 1 - Log/Logger.js | 16 --------------- Math/Stochastic/Average.js | 1 - Math/Stochastic/Forecast/LinearRegression.js | 1 - .../Browser/BrowserNotification.js | 1 - Message/Request/BrowserType.enum.js | 1 - Message/Request/OSType.enum.js | 1 - Message/Request/Request.js | 20 ------------------- Message/Request/RequestData.enum.js | 1 - Message/Request/RequestMethod.enum.js | 1 - Message/Request/RequestType.enum.js | 1 - Message/Response/Response.js | 1 - Message/Response/ResponseManager.js | 4 ---- Message/Response/ResponseResultType.enum.js | 1 - Message/Response/ResponseType.enum.js | 1 - Module/ModuleFactory.js | 3 --- Module/ModuleManager.js | 3 --- Spreadsheet/Cell.js | 1 - Spreadsheet/Spreadsheet.js | 1 - UI/ActionManager.js | 6 ------ UI/Component/Autocomplete.js | 1 - UI/Component/Form.js | 11 ---------- UI/Component/Input.js | 5 ----- UI/Component/Tab.js | 4 ---- UI/Component/Table.js | 4 ---- UI/Component/TagInput.js | 1 - UI/Component/TagList.js | 1 - UI/DragNDrop.js | 5 ----- UI/GeneralUI.js | 4 ---- UI/Input/InputManager.js | 4 ---- UI/Input/Keyboard/KeyboardManager.js | 5 ----- UI/Input/Mouse/ClickType.enum.js | 1 - UI/Input/Mouse/EventType.enum.js | 1 - UI/Input/Mouse/MouseManager.js | 5 ----- UI/Input/Touch/TouchManager.js | 4 ---- UI/UIManager.js | 10 ---------- UnhandledException.js | 1 - Uri/Http.js | 6 ------ Uri/UriFactory.js | 8 -------- Utils/oLib.js | 17 ---------------- Views/FormView.js | 19 ------------------ 54 files changed, 245 deletions(-) diff --git a/3D/Loader/ObjLoader.js b/3D/Loader/ObjLoader.js index 89250ee..6c991be 100644 --- a/3D/Loader/ObjLoader.js +++ b/3D/Loader/ObjLoader.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Account/AccountManager.js b/Account/AccountManager.js index 2f0002e..233bf4f 100644 --- a/Account/AccountManager.js +++ b/Account/AccountManager.js @@ -2,7 +2,6 @@ * Account Manager. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Account.AccountManager = function () { @@ -33,7 +31,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Account.AccountManager.prototype.add = function (account) { @@ -48,7 +45,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Account.AccountManager.prototype.remove = function (id) { @@ -71,7 +67,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Account.AccountManager.prototype.get = function (id) { diff --git a/Account/AccountType.enum.js b/Account/AccountType.enum.js index 26a8a88..a444e62 100644 --- a/Account/AccountType.enum.js +++ b/Account/AccountType.enum.js @@ -2,7 +2,6 @@ * Account type. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Animation/Animation.js b/Animation/Animation.js index e5fabe4..7ba68ed 100644 --- a/Animation/Animation.js +++ b/Animation/Animation.js @@ -2,7 +2,6 @@ * Particle class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Animation.requestAnimationFrame = (function () { diff --git a/Animation/Canvas/Particle.js b/Animation/Canvas/Particle.js index 64f59e5..fb5e9d7 100644 --- a/Animation/Canvas/Particle.js +++ b/Animation/Canvas/Particle.js @@ -2,7 +2,6 @@ * Particle class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle = function (posX, posY, velX, velY, radius) { @@ -41,7 +39,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle.prototype.getRadius = function () { @@ -59,7 +56,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle.prototype.setPosition = function (posX, posY) { @@ -75,7 +71,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle.prototype.getPosition = function () { @@ -93,7 +88,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle.prototype.setVelocity = function (velX, velY) { @@ -109,7 +103,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle.prototype.getVelocity = function () { @@ -126,7 +119,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.Particle.prototype.draw = function (ctx) { diff --git a/Animation/Canvas/ParticleAnimation.js b/Animation/Canvas/ParticleAnimation.js index 9526c82..ca65e59 100644 --- a/Animation/Canvas/ParticleAnimation.js +++ b/Animation/Canvas/ParticleAnimation.js @@ -2,7 +2,6 @@ * Particle animation class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.ParticleAnimation = function (canvas) { @@ -59,7 +57,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.ParticleAnimation.prototype.draw = function (self) { @@ -87,7 +84,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.ParticleAnimation.prototype.invalidate = function () { @@ -102,7 +98,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.ParticleAnimation.prototype.updateParticles = function () { @@ -155,7 +150,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Animation.Canvas.ParticleAnimation.prototype.updateDistance = function (p1, p2) { diff --git a/Asset/AssetManager.js b/Asset/AssetManager.js index cb75d4d..c234c37 100644 --- a/Asset/AssetManager.js +++ b/Asset/AssetManager.js @@ -2,7 +2,6 @@ * Asset manager. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Asset.AssetManager = function () { @@ -34,7 +32,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Asset.AssetManager.prototype.registerLoadedAssets = function () { @@ -58,7 +55,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Asset.AssetManager.prototype.load = function (path, filetype, callback) { @@ -132,7 +128,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Asset.AssetManager.prototype.get = function (id) { @@ -153,7 +148,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Asset.AssetManager.prototype.remove = function (key) { diff --git a/Auth/Auth.js b/Auth/Auth.js index 536db01..0e65200 100644 --- a/Auth/Auth.js +++ b/Auth/Auth.js @@ -2,7 +2,6 @@ * Auth class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Auth.Auth = function (uri) { @@ -34,7 +32,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Auth.Auth.prototype.setAccount = function (account) { @@ -49,7 +46,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Auth.Auth.prototype.getAccount = function () { @@ -62,7 +58,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Auth.Auth.prototype.login = function () { @@ -85,7 +80,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Auth.Auth.prototype.logout = function () { @@ -98,7 +92,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Auth.Auth.prototype.loginResult = function (xhr) { diff --git a/Autoloader.js b/Autoloader.js index 36f4c54..17f4b1d 100644 --- a/Autoloader.js +++ b/Autoloader.js @@ -2,7 +2,6 @@ * Autoloader. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ * @param {string} namespace Namespace * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Autoloader.defineNamespace = function (namespace) { @@ -50,7 +48,6 @@ * Collect all loaded javascript files * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Autoloader.initPreloaded = function () { @@ -74,7 +71,6 @@ * @param {string} file Script URI * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Autoloader.addPreloaded = function (file) { @@ -90,7 +86,6 @@ * @param {function} callback Callback after script loading * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Autoloader.include = function (file, callback) { diff --git a/Config/Options.js b/Config/Options.js index efc6346..ed919c8 100644 --- a/Config/Options.js +++ b/Config/Options.js @@ -2,7 +2,6 @@ * Options class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Config.Options = function () { @@ -38,7 +36,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Config.Options.prototype.set = function (key, value, overwrite) { @@ -63,7 +60,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Config.Options.prototype.get = function (key) { @@ -84,7 +80,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Config.Options.prototype.remove = function (key) { diff --git a/DataStorage/CookieJar.js b/DataStorage/CookieJar.js index c523cbc..4b7ebe4 100644 --- a/DataStorage/CookieJar.js +++ b/DataStorage/CookieJar.js @@ -2,7 +2,6 @@ * CookieJar class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.DataStorage.CookieJar = function () { @@ -38,7 +36,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.DataStorage.CookieJar.prototype.setCookie = function (cName, value, exdays, domain, path) { @@ -58,7 +55,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.DataStorage.CookieJar.prototype.getCookie = function (cName) { diff --git a/DataStorage/LocalStorage.js b/DataStorage/LocalStorage.js index 6c70db6..06fcc99 100644 --- a/DataStorage/LocalStorage.js +++ b/DataStorage/LocalStorage.js @@ -2,7 +2,6 @@ * LocalStorage class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.DataStorage.LocalStorage = function () { @@ -32,7 +30,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.DataStorage.LocalStorage.prototype.available = function () { diff --git a/Event/EventManager.js b/Event/EventManager.js index 8f8497e..3c099b7 100644 --- a/Event/EventManager.js +++ b/Event/EventManager.js @@ -4,7 +4,6 @@ * Used for pooling requests. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -20,7 +19,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager = function () { @@ -40,7 +38,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.addGroup = function (group, id) { @@ -61,7 +58,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.reset = function (group) { @@ -82,7 +78,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.hasOutstanding = function (group) { @@ -112,7 +107,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.trigger = function (group, id, data) { @@ -149,7 +143,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.detach = function (group) { @@ -170,7 +163,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.attach = function (group, callback, remove, reset) { @@ -194,7 +186,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Event.EventManager.prototype.count = function () { diff --git a/Log/LogLevel.enum.js b/Log/LogLevel.enum.js index d7f7de9..8541f4c 100644 --- a/Log/LogLevel.enum.js +++ b/Log/LogLevel.enum.js @@ -2,7 +2,6 @@ * Log Level enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Log/Logger.js b/Log/Logger.js index 230b21f..624b21b 100644 --- a/Log/Logger.js +++ b/Log/Logger.js @@ -2,7 +2,6 @@ * Logger class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -22,7 +21,6 @@ * @param {boolean} remote Remote logging * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger = function (verbose, ui, remote) { @@ -45,7 +43,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.getInstance = function(verbose, ui, remote) { @@ -70,7 +67,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.interpolate = function (message, context, level) { @@ -97,7 +93,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.createContext = function (message, context, level) { @@ -124,7 +119,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.write = function (message, context, level) { @@ -185,7 +179,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.emergency = function (message, context) { @@ -205,7 +198,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.alert = function (message, context) { @@ -225,7 +217,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.critical = function (message, context) { @@ -245,7 +236,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.error = function (message, context) { @@ -265,7 +255,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.warning = function (message, context) { @@ -285,7 +274,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.notice = function (message, context) { @@ -305,7 +293,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.info = function (message, context) { @@ -325,7 +312,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.debug = function (message, context) { @@ -346,7 +332,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.log = function (level, message, context) { @@ -366,7 +351,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Log.Logger.prototype.console = function (level, message, context) { diff --git a/Math/Stochastic/Average.js b/Math/Stochastic/Average.js index 4bced2d..14ea851 100644 --- a/Math/Stochastic/Average.js +++ b/Math/Stochastic/Average.js @@ -2,7 +2,6 @@ * Average class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Math/Stochastic/Forecast/LinearRegression.js b/Math/Stochastic/Forecast/LinearRegression.js index 24f8860..b6eadf3 100644 --- a/Math/Stochastic/Forecast/LinearRegression.js +++ b/Math/Stochastic/Forecast/LinearRegression.js @@ -2,7 +2,6 @@ * Linear regression class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Notification/Browser/BrowserNotification.js b/Message/Notification/Browser/BrowserNotification.js index 1c8a412..ed7da16 100644 --- a/Message/Notification/Browser/BrowserNotification.js +++ b/Message/Notification/Browser/BrowserNotification.js @@ -2,7 +2,6 @@ * Browser notification. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Request/BrowserType.enum.js b/Message/Request/BrowserType.enum.js index 5e0f981..9698873 100644 --- a/Message/Request/BrowserType.enum.js +++ b/Message/Request/BrowserType.enum.js @@ -2,7 +2,6 @@ * Request data enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Request/OSType.enum.js b/Message/Request/OSType.enum.js index de6317e..56607aa 100644 --- a/Message/Request/OSType.enum.js +++ b/Message/Request/OSType.enum.js @@ -2,7 +2,6 @@ * Request data enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Request/Request.js b/Message/Request/Request.js index 659090a..71746c2 100644 --- a/Message/Request/Request.js +++ b/Message/Request/Request.js @@ -2,7 +2,6 @@ * Request class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request = function (uri, method, type) { @@ -48,7 +46,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.getBrowser = function () { @@ -77,7 +74,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.getOS = function () { @@ -100,7 +96,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setMethod = function (method) { @@ -117,7 +112,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.getMethod = function () { @@ -134,7 +128,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setResponseType = function (type) { @@ -151,7 +144,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.getResponseType = function () { @@ -167,7 +159,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setRequestHeader = function (type, header) { @@ -182,7 +173,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.getRequestHeader = function () { @@ -197,7 +187,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setUri = function (uri) { @@ -212,7 +201,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.getUri = function () { @@ -228,7 +216,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setSuccess = function (callback) { @@ -244,7 +231,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setResultCallback = function (status, callback) { @@ -259,7 +245,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setData = function (data) { @@ -274,7 +259,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.getData = function () { @@ -291,7 +275,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.setType = function (type) { @@ -308,7 +291,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.getType = function () { @@ -323,7 +305,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.queryfy = function (obj) { @@ -345,7 +326,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Request.Request.prototype.send = function () { diff --git a/Message/Request/RequestData.enum.js b/Message/Request/RequestData.enum.js index 8ba236a..c1ffdd9 100644 --- a/Message/Request/RequestData.enum.js +++ b/Message/Request/RequestData.enum.js @@ -2,7 +2,6 @@ * Request data enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Request/RequestMethod.enum.js b/Message/Request/RequestMethod.enum.js index 95aaaed..ffdb07d 100644 --- a/Message/Request/RequestMethod.enum.js +++ b/Message/Request/RequestMethod.enum.js @@ -2,7 +2,6 @@ * Http request method. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Request/RequestType.enum.js b/Message/Request/RequestType.enum.js index 16bfc15..8fc5899 100644 --- a/Message/Request/RequestType.enum.js +++ b/Message/Request/RequestType.enum.js @@ -2,7 +2,6 @@ * Request type enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Response/Response.js b/Message/Response/Response.js index 67dfbdb..8b473eb 100644 --- a/Message/Response/Response.js +++ b/Message/Response/Response.js @@ -4,7 +4,6 @@ * Used for auto handling different responses. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Response/ResponseManager.js b/Message/Response/ResponseManager.js index 27f6527..2bd68a7 100644 --- a/Message/Response/ResponseManager.js +++ b/Message/Response/ResponseManager.js @@ -4,7 +4,6 @@ * Used for auto handling different responses. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Response.ResponseManager = function () { @@ -40,7 +38,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Response.ResponseManager.prototype.add = function (key, message, request) { @@ -64,7 +61,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Message.Response.ResponseManager.prototype.run = function (key, data, request) { diff --git a/Message/Response/ResponseResultType.enum.js b/Message/Response/ResponseResultType.enum.js index 4c75821..ed89900 100644 --- a/Message/Response/ResponseResultType.enum.js +++ b/Message/Response/ResponseResultType.enum.js @@ -2,7 +2,6 @@ * Response result type enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Message/Response/ResponseType.enum.js b/Message/Response/ResponseType.enum.js index a4fd7af..88714b5 100644 --- a/Message/Response/ResponseType.enum.js +++ b/Message/Response/ResponseType.enum.js @@ -2,7 +2,6 @@ * Response type enum. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Module/ModuleFactory.js b/Module/ModuleFactory.js index 28593a9..c3b52e2 100644 --- a/Module/ModuleFactory.js +++ b/Module/ModuleFactory.js @@ -2,7 +2,6 @@ * Module factory. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Module.ModuleFactory = function () { @@ -35,7 +33,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Module.ModuleFactory.getInstance = function (module, app) { diff --git a/Module/ModuleManager.js b/Module/ModuleManager.js index aca8234..4914fdd 100644 --- a/Module/ModuleManager.js +++ b/Module/ModuleManager.js @@ -2,7 +2,6 @@ * Module factory. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Module.ModuleManager = function (app) { @@ -37,7 +35,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Module.ModuleManager.prototype.get = function (module) { diff --git a/Spreadsheet/Cell.js b/Spreadsheet/Cell.js index 79042d0..4b3d4da 100644 --- a/Spreadsheet/Cell.js +++ b/Spreadsheet/Cell.js @@ -2,7 +2,6 @@ * Cell. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Spreadsheet/Spreadsheet.js b/Spreadsheet/Spreadsheet.js index fb8c119..9f25f19 100644 --- a/Spreadsheet/Spreadsheet.js +++ b/Spreadsheet/Spreadsheet.js @@ -2,7 +2,6 @@ * Spreadsheet view. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/UI/ActionManager.js b/UI/ActionManager.js index 26f4108..b139b71 100644 --- a/UI/ActionManager.js +++ b/UI/ActionManager.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -23,7 +22,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.ActionManager = function (app) { @@ -39,7 +37,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.ActionManager.prototype.bind = function (id) { @@ -61,7 +58,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.ActionManager.prototype.bindElement = function (e) { @@ -129,7 +125,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.ActionManager.prototype.runAction = function (e, action, data) { @@ -159,7 +154,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.ActionManager.prototype.add = function (name, callback) { diff --git a/UI/Component/Autocomplete.js b/UI/Component/Autocomplete.js index 2e0a50b..525c3a7 100644 --- a/UI/Component/Autocomplete.js +++ b/UI/Component/Autocomplete.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/UI/Component/Form.js b/UI/Component/Form.js index 62d4d42..70cb610 100644 --- a/UI/Component/Form.js +++ b/UI/Component/Form.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form = function (app) { @@ -34,7 +32,6 @@ * @param {string} id Form Id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.get = function (id) { @@ -47,7 +44,6 @@ * @param {string} id Form Id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.isIgnored = function (id) { @@ -60,7 +56,6 @@ * @param {string} id Form Id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.unbind = function (id) { @@ -73,7 +68,6 @@ * @param {string} id Form Id (optional) * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.bind = function (id) { @@ -97,7 +91,6 @@ * @param {string} id Form Id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.bindForm = function (id) { @@ -129,7 +122,6 @@ * @param {string} id Form Id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.unbindForm = function (id) { @@ -154,7 +146,6 @@ * @param {Object} form Form object * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.submit = function (form) { @@ -194,7 +185,6 @@ * @param {Object} form Form object * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.submitForm = function (form) { @@ -251,7 +241,6 @@ * @return {number} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Form.prototype.count = function () { diff --git a/UI/Component/Input.js b/UI/Component/Input.js index f12eae1..a07d8f1 100644 --- a/UI/Component/Input.js +++ b/UI/Component/Input.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ * @param {Object} input Input element * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.unbind = function (input) { @@ -35,7 +33,6 @@ * @param {Object} input Input elment * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.bindElement = function (input) { @@ -99,7 +96,6 @@ * @param {Object} datalist Datalist elment * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.addRemoteDatalistOptions = function (input, datalist) { @@ -151,7 +147,6 @@ * @param {Object} datalist Datalist elment * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.clearDatalistOptions = function (datalist) { diff --git a/UI/Component/Tab.js b/UI/Component/Tab.js index 64117f1..367dccb 100644 --- a/UI/Component/Tab.js +++ b/UI/Component/Tab.js @@ -2,7 +2,6 @@ * Tab manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Tab = function (responseManager) { @@ -33,7 +31,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Tab.prototype.bind = function (id) { @@ -61,7 +58,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Tab.prototype.bindElement = function (e) { diff --git a/UI/Component/Table.js b/UI/Component/Table.js index 8a4a91c..351871d 100644 --- a/UI/Component/Table.js +++ b/UI/Component/Table.js @@ -2,7 +2,6 @@ * Table manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -18,7 +17,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Table = function (responseManager) { @@ -33,7 +31,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Table.prototype.bind = function (id) { @@ -61,7 +58,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Component.Table.prototype.bindElement = function (e) { diff --git a/UI/Component/TagInput.js b/UI/Component/TagInput.js index 2e0a50b..525c3a7 100644 --- a/UI/Component/TagInput.js +++ b/UI/Component/TagInput.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/UI/Component/TagList.js b/UI/Component/TagList.js index 2e0a50b..525c3a7 100644 --- a/UI/Component/TagList.js +++ b/UI/Component/TagList.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/UI/DragNDrop.js b/UI/DragNDrop.js index 6bc50ac..cb82618 100644 --- a/UI/DragNDrop.js +++ b/UI/DragNDrop.js @@ -2,7 +2,6 @@ * Drag and drop class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.DragNDrop = function (app) { @@ -34,7 +32,6 @@ * @param {Object} element DOM element * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.DragNDrop.prototype.unbind = function (element) { @@ -46,7 +43,6 @@ * @param {Object} id DOM element * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.DragNDrop.prototype.bind = function (id) { @@ -70,7 +66,6 @@ * @param {Object} id DOM elment * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.DragNDrop.prototype.bindElement = function (id) { diff --git a/UI/GeneralUI.js b/UI/GeneralUI.js index e29c56e..213e10b 100644 --- a/UI/GeneralUI.js +++ b/UI/GeneralUI.js @@ -2,7 +2,6 @@ * UI manager for handling basic ui elements. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.GeneralUI = function () { @@ -33,7 +31,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.GeneralUI.prototype.bind = function (id) { @@ -53,7 +50,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.GeneralUI.prototype.bindHref = function (e) { diff --git a/UI/Input/InputManager.js b/UI/Input/InputManager.js index a9cb290..98880d6 100644 --- a/UI/Input/InputManager.js +++ b/UI/Input/InputManager.js @@ -2,7 +2,6 @@ * UI manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.InputManager = function () { @@ -33,7 +31,6 @@ * @return {Object} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.InputManager.prototype.getKeyboardManager = function () { @@ -46,7 +43,6 @@ * @return {Object} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.InputManager.prototype.getMouseManager = function () { diff --git a/UI/Input/Keyboard/KeyboardManager.js b/UI/Input/Keyboard/KeyboardManager.js index e463bb1..5719c0e 100644 --- a/UI/Input/Keyboard/KeyboardManager.js +++ b/UI/Input/Keyboard/KeyboardManager.js @@ -2,7 +2,6 @@ * Keyboard manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Keyboard.KeyboardManager = function () { @@ -35,7 +33,6 @@ * @param {callback} callback Callback * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Keyboard.KeyboardManager.prototype.add = function (element, keys, callback) { @@ -54,7 +51,6 @@ * @param {string} element Container id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Keyboard.KeyboardManager.prototype.bind = function (element) { @@ -82,7 +78,6 @@ * @param {Object} event Key event * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Keyboard.KeyboardManager.prototype.run = function (element, event) { diff --git a/UI/Input/Mouse/ClickType.enum.js b/UI/Input/Mouse/ClickType.enum.js index b8d07f3..e2bd60e 100644 --- a/UI/Input/Mouse/ClickType.enum.js +++ b/UI/Input/Mouse/ClickType.enum.js @@ -2,7 +2,6 @@ * Click type. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/UI/Input/Mouse/EventType.enum.js b/UI/Input/Mouse/EventType.enum.js index b67b3e6..c65e73c 100644 --- a/UI/Input/Mouse/EventType.enum.js +++ b/UI/Input/Mouse/EventType.enum.js @@ -2,7 +2,6 @@ * Event type. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/UI/Input/Mouse/MouseManager.js b/UI/Input/Mouse/MouseManager.js index 0104a9c..9b26aed 100644 --- a/UI/Input/Mouse/MouseManager.js +++ b/UI/Input/Mouse/MouseManager.js @@ -2,7 +2,6 @@ * Mouse manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Mouse.MouseManager = function () { @@ -37,7 +35,6 @@ * @param {bool} exact ??? todo: can't remember why this was important oO!!! * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Mouse.MouseManager.prototype.add = function (element, type, button, callback, exact) { @@ -56,7 +53,6 @@ * @param {int} type Action type * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Mouse.MouseManager.prototype.bind = function (element, type) { @@ -103,7 +99,6 @@ * @param {Object} event Click event * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Mouse.MouseManager.prototype.run = function (element, event) { diff --git a/UI/Input/Touch/TouchManager.js b/UI/Input/Touch/TouchManager.js index 2d3a77a..2b3b874 100644 --- a/UI/Input/Touch/TouchManager.js +++ b/UI/Input/Touch/TouchManager.js @@ -2,7 +2,6 @@ * Touch manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ * @param {Object} app Application * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Touch.TouchManager = function (app) { @@ -36,7 +34,6 @@ * This is called in between swipes in order to reset previous swipe data. * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Touch.TouchManager.prototype.resetSwipe = function () { @@ -49,7 +46,6 @@ * Forwarding swipe to arrow keyes. * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.Input.Touch.TouchManager.prototype.add = function (surface) { diff --git a/UI/UIManager.js b/UI/UIManager.js index cec09dc..f773299 100644 --- a/UI/UIManager.js +++ b/UI/UIManager.js @@ -2,7 +2,6 @@ * UI manager for handling basic ui elements. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -21,7 +20,6 @@ * @param {Object} app Application object * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager = function (app) { @@ -51,7 +49,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.bind = function (id) { @@ -91,7 +88,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getFormManager = function () { @@ -106,7 +102,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getActionManager = function () { @@ -121,7 +116,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getDragNDrop = function () { @@ -136,7 +130,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getTabManager = function () { @@ -151,7 +144,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getTableManager = function () { @@ -166,7 +158,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getDOMObserver = function () { @@ -181,7 +172,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.UI.UIManager.prototype.getGeneralUI = function () { diff --git a/UnhandledException.js b/UnhandledException.js index ae81ce3..f2ef9e8 100644 --- a/UnhandledException.js +++ b/UnhandledException.js @@ -2,7 +2,6 @@ * Form manager class. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Uri/Http.js b/Uri/Http.js index 367c8ca..764f894 100644 --- a/Uri/Http.js +++ b/Uri/Http.js @@ -2,7 +2,6 @@ * Uri factory. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -19,7 +18,6 @@ * @constructor * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.Http = function (uri) { @@ -51,7 +49,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.Http.parseUrl = function (str, mode) { @@ -96,7 +93,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.Http.getUriQueryParameter = function (query, name) { @@ -118,7 +114,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.Http.getAllUriQueryParameters = function (query) { @@ -157,7 +152,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.Http.prototype.set = function (uri) { diff --git a/Uri/UriFactory.js b/Uri/UriFactory.js index 73a2cba..6ada891 100644 --- a/Uri/UriFactory.js +++ b/Uri/UriFactory.js @@ -2,7 +2,6 @@ * Uri factory. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -35,7 +34,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.setQuery = function (key, value, overwrite) { @@ -58,7 +56,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.clearAll = function() { @@ -77,7 +74,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.clear = function(key) { @@ -100,7 +96,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.clearLike = function(pattern) { @@ -129,7 +124,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.unique = function (url) { @@ -177,7 +171,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.build = function (uri, toMatch) { @@ -227,7 +220,6 @@ * @method * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Uri.UriFactory.setupUriBuilder = function (uri) { diff --git a/Utils/oLib.js b/Utils/oLib.js index f30c3f7..57d93a8 100644 --- a/Utils/oLib.js +++ b/Utils/oLib.js @@ -20,7 +20,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.trim = function(str, char) { @@ -38,7 +37,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.rtrim = function(str, char) { @@ -56,7 +54,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.ltrim = function(str, char) { @@ -74,7 +71,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.substr_count = function(str, substr) { str += ''; @@ -115,7 +111,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.hasClass = function (ele, cls) { @@ -133,7 +128,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.addClass = function (ele, cls) { @@ -153,7 +147,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.removeClass = function (ele, cls) { @@ -171,7 +164,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.watcher = function () { @@ -193,7 +185,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.preventAll = function (event) { @@ -216,7 +207,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.ready = function (func) { @@ -241,7 +231,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.empty = function (ele) { @@ -260,7 +249,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.hash = function (str) { @@ -286,7 +274,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.isNode = function (ele) { @@ -309,7 +296,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.isElement = function (o) { @@ -332,7 +318,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.getByClass = function (ele, cls) { @@ -357,7 +342,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.addEventListenerToAll = function (e, event, callback) { @@ -379,7 +363,6 @@ * @function * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.merge = function (target, source) { diff --git a/Views/FormView.js b/Views/FormView.js index ad345cc..9653150 100644 --- a/Views/FormView.js +++ b/Views/FormView.js @@ -2,7 +2,6 @@ * Form view. * * @author OMS Development Team - * @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 @@ -20,7 +19,6 @@ * @param {string} id Form id * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView = function (id) { @@ -37,7 +35,6 @@ * Pulled out since this is used in a cleanup process * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.initializeMembers = function () { @@ -52,7 +49,6 @@ * @return {string} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getMethod = function () { @@ -65,7 +61,6 @@ * @return {string} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getAction = function () { @@ -78,7 +73,6 @@ * @return {Object} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getSubmit = function () { @@ -97,7 +91,6 @@ * @return {callback} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getSuccess = function () { @@ -110,7 +103,6 @@ * @param {callback} callback Callback * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.setSuccess = function (callback) { @@ -123,7 +115,6 @@ * @param {callback} callback Callback * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.injectSubmit = function (callback) { @@ -136,7 +127,6 @@ * @return {Array} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getFormElements = function () { @@ -160,7 +150,6 @@ * @return {Object} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getData = function () { @@ -189,7 +178,6 @@ * @return {string} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getId = function () { @@ -202,7 +190,6 @@ * @return {boolean} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.isValid = function () { @@ -228,7 +215,6 @@ * @return {Object} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getElement = function () { @@ -241,7 +227,6 @@ * @return {string} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.getElementId = function (e) { @@ -268,7 +253,6 @@ * @return {Object} * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.getSubmitInjects = function () { @@ -279,7 +263,6 @@ * Bind form * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.bind = function () { @@ -319,7 +302,6 @@ * Unbind form * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.unbind = function () { @@ -348,7 +330,6 @@ * Clean form * * @since 1.0.0 - * @author Dennis Eichhorn */ jsOMS.Views.FormView.prototype.clean = function () {