Skip to content

Commit

Permalink
Removed @SInCE and @author tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
DracoBlue committed Sep 19, 2010
1 parent 9764f1f commit 4e9aef3
Show file tree
Hide file tree
Showing 29 changed files with 2 additions and 86 deletions.
3 changes: 0 additions & 3 deletions core/BaseApplication.js
Expand Up @@ -11,9 +11,6 @@
*
* @extends Options
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
BaseApplication = function(options) {
this.setOptions(options);
Expand Down
3 changes: 0 additions & 3 deletions core/BootstrapManager.js
Expand Up @@ -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;
Expand Down
3 changes: 0 additions & 3 deletions core/Config.js
Expand Up @@ -8,9 +8,6 @@

/**
* @class The configuration.
*
* @since 0.1
* @author DracoBlue
*/
Config = function() {
this.values = {};
Expand Down
3 changes: 0 additions & 3 deletions core/Context.js
Expand Up @@ -43,9 +43,6 @@
* ContextToolkit.setCookie(context, "key", "value");
* // and so on ..
* </pre>
*
* @since 0.1
* @author DracoBlue
*/
Context = function() {
return {};
Expand Down
3 changes: 0 additions & 3 deletions core/ContextToolkit.js
Expand Up @@ -8,9 +8,6 @@

/**
* @class A toolkit for convenient functions to work on the context.
*
* @since 0.1
* @author DracoBlue
*/
ContextToolkit = {

Expand Down
3 changes: 0 additions & 3 deletions core/Controller.js
Expand Up @@ -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") {
Expand Down
3 changes: 0 additions & 3 deletions core/ControllerManager.js
Expand Up @@ -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 = {};
Expand Down
3 changes: 0 additions & 3 deletions core/DataMapper.js
Expand Up @@ -11,9 +11,6 @@
*
* @extends Options
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
DataMapper = function(name, options) {
this.setOptions(options);
Expand Down
3 changes: 0 additions & 3 deletions core/DataMapperManager.js
Expand Up @@ -10,9 +10,6 @@
* @class The manager for all registered data_mappers.
*
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
DataMapperManager = function() {
this.data_mappers = {};
Expand Down
2 changes: 0 additions & 2 deletions core/EjsView.js
Expand Up @@ -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";
Expand Down
3 changes: 0 additions & 3 deletions core/JsView.js
Expand Up @@ -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") {
Expand Down
3 changes: 0 additions & 3 deletions core/Logging.js
Expand Up @@ -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() {
};
Expand Down
3 changes: 0 additions & 3 deletions core/MemoryStorage.js
Expand Up @@ -8,9 +8,6 @@

/**
* @class The memory storage.
*
* @since 0.1
* @author DracoBlue
*/
MemoryStorage = function(name, options) {
this.values = {};
Expand Down
3 changes: 0 additions & 3 deletions core/ObjectToolkit.js
Expand Up @@ -8,9 +8,6 @@

/**
* @class A toolkit for convenient functions on javascript objects.
*
* @since 0.1
* @author DracoBlue
*/
ObjectToolkit = {
/**
Expand Down
3 changes: 0 additions & 3 deletions core/Options.js
Expand Up @@ -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() {
/**
Expand Down
3 changes: 0 additions & 3 deletions core/StorageManager.js
Expand Up @@ -10,9 +10,6 @@
* @class The manager for all registered storages.
*
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
StorageManager = function() {
this.storages = {};
Expand Down
3 changes: 0 additions & 3 deletions core/StringToolkit.js
Expand Up @@ -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 = {

Expand Down
3 changes: 0 additions & 3 deletions core/SyncController.js
Expand Up @@ -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 = [
Expand Down
6 changes: 2 additions & 4 deletions core/Validation.js
Expand Up @@ -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 = {};
Expand Down
3 changes: 0 additions & 3 deletions core/Validator.js
Expand Up @@ -8,9 +8,6 @@

/**
* @class The base for all validators.
*
* @since 0.1
* @author DracoBlue
*/
Validator = function(name, options) {
this.setOptions(options);
Expand Down
3 changes: 0 additions & 3 deletions core/ValidatorManager.js
Expand Up @@ -10,9 +10,6 @@
* @class The manager for all registered validators.
*
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
ValidatorManager = function() {
this.validators = {};
Expand Down
3 changes: 0 additions & 3 deletions core/ViewManager.js
Expand Up @@ -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 = {};
Expand Down
3 changes: 0 additions & 3 deletions core/console/ConsoleApplication.js
Expand Up @@ -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);
Expand Down
3 changes: 0 additions & 3 deletions core/server/CookieSessionManager.js
Expand Up @@ -10,9 +10,6 @@
* @class The manager for all registered sessions.
*
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
CookieSessionManager = function(options) {
options = options || {};
Expand Down
3 changes: 0 additions & 3 deletions core/server/ServerApplication.js
Expand Up @@ -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);
Expand Down
3 changes: 0 additions & 3 deletions core/server/StaticFilesManager.js
Expand Up @@ -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 = [];
Expand Down
3 changes: 0 additions & 3 deletions core/test/TestApplication.js
Expand Up @@ -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);
Expand Down
3 changes: 0 additions & 3 deletions core/test/TestSuite.js
Expand Up @@ -10,9 +10,6 @@
* @class A test suite.
*
* @extends Logging
*
* @since 0.1
* @author DracoBlue
*/
TestSuite = function(name, tests) {
this.name = name;
Expand Down
2 changes: 0 additions & 2 deletions core/test/TestSuiteManager.js
Expand Up @@ -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 = [];
Expand Down

0 comments on commit 4e9aef3

Please sign in to comment.