diff --git a/core/BaseApplication.js b/core/BaseApplication.js index 7607d70..3f172d4 100644 --- a/core/BaseApplication.js +++ b/core/BaseApplication.js @@ -11,9 +11,6 @@ * * @extends Options * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ BaseApplication = function(options) { this.setOptions(options); diff --git a/core/BootstrapManager.js b/core/BootstrapManager.js index f67bad7..f6f0759 100644 --- a/core/BootstrapManager.js +++ b/core/BootstrapManager.js @@ -12,9 +12,6 @@ var events = require("events"); * @class The bootstrap manager. Register to it's end-event, before starting any action on the application! * * @extends Logging - * - * @since 0.1 - * @author dracoblue */ BootstrapManager = function() { var self = this; diff --git a/core/Config.js b/core/Config.js index f5ca6a8..5d3d1c2 100644 --- a/core/Config.js +++ b/core/Config.js @@ -8,9 +8,6 @@ /** * @class The configuration. - * - * @since 0.1 - * @author DracoBlue */ Config = function() { this.values = {}; diff --git a/core/Context.js b/core/Context.js index c6927e9..a0cd154 100644 --- a/core/Context.js +++ b/core/Context.js @@ -43,9 +43,6 @@ * ContextToolkit.setCookie(context, "key", "value"); * // and so on .. * - * - * @since 0.1 - * @author DracoBlue */ Context = function() { return {}; diff --git a/core/ContextToolkit.js b/core/ContextToolkit.js index f576f69..0930121 100644 --- a/core/ContextToolkit.js +++ b/core/ContextToolkit.js @@ -8,9 +8,6 @@ /** * @class A toolkit for convenient functions to work on the context. - * - * @since 0.1 - * @author DracoBlue */ ContextToolkit = { diff --git a/core/Controller.js b/core/Controller.js index b83aef9..b3b0c0e 100644 --- a/core/Controller.js +++ b/core/Controller.js @@ -8,9 +8,6 @@ /** * @class A simple controller with either String or RegExp-Path - * - * @since 0.1 - * @author DracoBlue */ Controller = function(path, options) { if (typeof options.execute === "function") { diff --git a/core/ControllerManager.js b/core/ControllerManager.js index 516ecb5..572d3ac 100644 --- a/core/ControllerManager.js +++ b/core/ControllerManager.js @@ -12,9 +12,6 @@ var child_process = require("child_process"); * @class The manager for all registered controllers. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ ControllerManager = function() { this.controllers_string = {}; diff --git a/core/DataMapper.js b/core/DataMapper.js index 6a036bf..53445dd 100644 --- a/core/DataMapper.js +++ b/core/DataMapper.js @@ -11,9 +11,6 @@ * * @extends Options * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ DataMapper = function(name, options) { this.setOptions(options); diff --git a/core/DataMapperManager.js b/core/DataMapperManager.js index 18dcb9c..ea3f98e 100644 --- a/core/DataMapperManager.js +++ b/core/DataMapperManager.js @@ -10,9 +10,6 @@ * @class The manager for all registered data_mappers. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ DataMapperManager = function() { this.data_mappers = {}; diff --git a/core/EjsView.js b/core/EjsView.js index 8d4dfc4..4efeac3 100644 --- a/core/EjsView.js +++ b/core/EjsView.js @@ -17,8 +17,6 @@ var next_ejs_slot_view_id = 1; * @param {String} name * @param {String} content_file * @param {String} [encoding="utf8"] - * @since 0.1 - * @author DracoBlue */ EjsView = function(name, content_file, encoding) { encoding = encoding || "utf8"; diff --git a/core/JsView.js b/core/JsView.js index f64df25..ebbc95d 100644 --- a/core/JsView.js +++ b/core/JsView.js @@ -9,9 +9,6 @@ /** * @class A simple JavascriptView, which needs a render function as parameter * for the real business logic. - * - * @since 0.1 - * @author DracoBlue */ JsView = function(name, render_function) { if (typeof render_function === "function") { diff --git a/core/Logging.js b/core/Logging.js index 2d1303a..9f9246c 100644 --- a/core/Logging.js +++ b/core/Logging.js @@ -14,9 +14,6 @@ var sys = require('sys'); * powerful if you extend an other class with it. * * @class Offers logging facility. - * - * @since 0.1 - * @author DracoBlue */ Logging = function() { }; diff --git a/core/MemoryStorage.js b/core/MemoryStorage.js index 2e4ad67..0985d74 100644 --- a/core/MemoryStorage.js +++ b/core/MemoryStorage.js @@ -8,9 +8,6 @@ /** * @class The memory storage. - * - * @since 0.1 - * @author DracoBlue */ MemoryStorage = function(name, options) { this.values = {}; diff --git a/core/ObjectToolkit.js b/core/ObjectToolkit.js index f7ae6fe..4d68513 100644 --- a/core/ObjectToolkit.js +++ b/core/ObjectToolkit.js @@ -8,9 +8,6 @@ /** * @class A toolkit for convenient functions on javascript objects. - * - * @since 0.1 - * @author DracoBlue */ ObjectToolkit = { /** diff --git a/core/Options.js b/core/Options.js index d52e03b..b71bf18 100644 --- a/core/Options.js +++ b/core/Options.js @@ -13,9 +13,6 @@ * * @class Offers a options-property and a setOptions method for convenient * definition and retrieval of options. - * - * @since 0.1 - * @author DracoBlue */ Options = function() { /** diff --git a/core/StorageManager.js b/core/StorageManager.js index 9e75137..4e2e866 100644 --- a/core/StorageManager.js +++ b/core/StorageManager.js @@ -10,9 +10,6 @@ * @class The manager for all registered storages. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ StorageManager = function() { this.storages = {}; diff --git a/core/StringToolkit.js b/core/StringToolkit.js index 5bfad14..a7d311c 100644 --- a/core/StringToolkit.js +++ b/core/StringToolkit.js @@ -28,9 +28,6 @@ var escaped_one_to_xml_special_map = { /** * @class A toolkit for convenient functions to de-/encode uri, html and so on. - * - * @since 0.1 - * @author DracoBlue */ StringToolkit = { diff --git a/core/SyncController.js b/core/SyncController.js index acaba90..742876d 100644 --- a/core/SyncController.js +++ b/core/SyncController.js @@ -10,9 +10,6 @@ * @class A sync controller with either String or RegExp-Path * * @extends Controller - * - * @since 0.1 - * @author DracoBlue */ SyncController = function(path, sync_function) { var options = [ diff --git a/core/Validation.js b/core/Validation.js index 0f18f4e..525afcc 100644 --- a/core/Validation.js +++ b/core/Validation.js @@ -7,10 +7,8 @@ */ /** - * @class The base for all validators. - * - * @since 0.1 - * @author DracoBlue + * @class The validation, which can be filled with multiple validators and + * finally validate the input. */ Validation = function() { this.validators = {}; diff --git a/core/Validator.js b/core/Validator.js index da8c4a0..81f9689 100644 --- a/core/Validator.js +++ b/core/Validator.js @@ -8,9 +8,6 @@ /** * @class The base for all validators. - * - * @since 0.1 - * @author DracoBlue */ Validator = function(name, options) { this.setOptions(options); diff --git a/core/ValidatorManager.js b/core/ValidatorManager.js index 52a5585..71edafb 100644 --- a/core/ValidatorManager.js +++ b/core/ValidatorManager.js @@ -10,9 +10,6 @@ * @class The manager for all registered validators. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ ValidatorManager = function() { this.validators = {}; diff --git a/core/ViewManager.js b/core/ViewManager.js index e70fe1d..ca35c4b 100644 --- a/core/ViewManager.js +++ b/core/ViewManager.js @@ -12,9 +12,6 @@ var child_process = require('child_process'); * @class The manager for all registered views. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ ViewManager = function() { this.views = {}; diff --git a/core/console/ConsoleApplication.js b/core/console/ConsoleApplication.js index 9ed22b3..1e02e01 100644 --- a/core/console/ConsoleApplication.js +++ b/core/console/ConsoleApplication.js @@ -13,9 +13,6 @@ * * @param {Object} options Options to specify the behaviour * @param {String} options.path The initial path to launch (when {@link ConsoleApplication#run} gets called) - * - * @since 0.1 - * @author DracoBlue */ ConsoleApplication = function(options) { this.setOptions(options); diff --git a/core/server/CookieSessionManager.js b/core/server/CookieSessionManager.js index 453d7a8..6dd5aef 100644 --- a/core/server/CookieSessionManager.js +++ b/core/server/CookieSessionManager.js @@ -10,9 +10,6 @@ * @class The manager for all registered sessions. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ CookieSessionManager = function(options) { options = options || {}; diff --git a/core/server/ServerApplication.js b/core/server/ServerApplication.js index 3cd31fe..ad61f3d 100644 --- a/core/server/ServerApplication.js +++ b/core/server/ServerApplication.js @@ -16,9 +16,6 @@ * @param {Number} * options.port The port, which should be used when launching the * application server. - * - * @since 0.1 - * @author DracoBlue */ ServerApplication = function(options) { this.setOptions(options); diff --git a/core/server/StaticFilesManager.js b/core/server/StaticFilesManager.js index ac5d924..9c42726 100644 --- a/core/server/StaticFilesManager.js +++ b/core/server/StaticFilesManager.js @@ -11,9 +11,6 @@ var Buffer = require('buffer').Buffer; /** * @class A manager for static files. It will automatically dispatch the static * files (from the core/plugins' static folders). - * - * @since 0.1 - * @author DracoBlue */ StaticFilesManager = function() { this.folders = []; diff --git a/core/test/TestApplication.js b/core/test/TestApplication.js index b4888b9..29f8653 100644 --- a/core/test/TestApplication.js +++ b/core/test/TestApplication.js @@ -13,9 +13,6 @@ * * @param {Object} options Options to specify the behaviour * @param {String} [options.format=console] The format of the output (can be console or xml). - * - * @since 0.1 - * @author DracoBlue */ TestApplication = function(options) { this.setOptions(options); diff --git a/core/test/TestSuite.js b/core/test/TestSuite.js index 35d6211..7b87b09 100644 --- a/core/test/TestSuite.js +++ b/core/test/TestSuite.js @@ -10,9 +10,6 @@ * @class A test suite. * * @extends Logging - * - * @since 0.1 - * @author DracoBlue */ TestSuite = function(name, tests) { this.name = name; diff --git a/core/test/TestSuiteManager.js b/core/test/TestSuiteManager.js index 4ed2948..8b587e6 100644 --- a/core/test/TestSuiteManager.js +++ b/core/test/TestSuiteManager.js @@ -12,8 +12,6 @@ var child_process = require("child_process"); * @class The TestSuite Manager. * * @extends Logging - * @since 0.1 - * @author DracoBlue */ TestSuiteManager = function() { this.suites = [];