diff --git a/core-js/src/main/javascript/Utils.js b/core-js/src/main/javascript/Utils.js index 97e43e75..57e416f5 100644 --- a/core-js/src/main/javascript/Utils.js +++ b/core-js/src/main/javascript/Utils.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/core-js/src/main/javascript/header.js b/core-js/src/main/javascript/header.js index fdc85e2f..d3284d3a 100644 --- a/core-js/src/main/javascript/header.js +++ b/core-js/src/main/javascript/header.js @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ActionDispatcher.js b/mindplot/src/main/javascript/ActionDispatcher.js index e6aa51a3..33552e5f 100644 --- a/mindplot/src/main/javascript/ActionDispatcher.js +++ b/mindplot/src/main/javascript/ActionDispatcher.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ActionIcon.js b/mindplot/src/main/javascript/ActionIcon.js index 36c490d9..f22b1793 100644 --- a/mindplot/src/main/javascript/ActionIcon.js +++ b/mindplot/src/main/javascript/ActionIcon.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/CentralTopic.js b/mindplot/src/main/javascript/CentralTopic.js index cdcd995d..196a4029 100644 --- a/mindplot/src/main/javascript/CentralTopic.js +++ b/mindplot/src/main/javascript/CentralTopic.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Command.js b/mindplot/src/main/javascript/Command.js index 9d8a7129..9ea2cb8f 100644 --- a/mindplot/src/main/javascript/Command.js +++ b/mindplot/src/main/javascript/Command.js @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ConnectionLine.js b/mindplot/src/main/javascript/ConnectionLine.js index 92840c5f..751894b3 100644 --- a/mindplot/src/main/javascript/ConnectionLine.js +++ b/mindplot/src/main/javascript/ConnectionLine.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ControlPoint.js b/mindplot/src/main/javascript/ControlPoint.js index a01df87e..c7bcb3ca 100644 --- a/mindplot/src/main/javascript/ControlPoint.js +++ b/mindplot/src/main/javascript/ControlPoint.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the @@ -17,41 +17,53 @@ */ mindplot.ControlPoint = new Class({ - initialize:function() { - var control1 = new web2d.Elipse({width:6, height:6, stroke:'1 solid #6589de',fillColor:'gray', visibility:false}); + initialize: function () { + var control1 = new web2d.Elipse({ + width: 6, + height: 6, + stroke: '1 solid #6589de', + fillColor: 'gray', + visibility: false + }); control1.setCursor('pointer'); - var control2 = new web2d.Elipse({width:6, height:6, stroke:'1 solid #6589de',fillColor:'gray', visibility:false}); + var control2 = new web2d.Elipse({ + width: 6, + height: 6, + stroke: '1 solid #6589de', + fillColor: 'gray', + visibility: false + }); control2.setCursor('pointer'); - this._controlPointsController = [control1,control2]; - this._controlLines = [new web2d.Line({strokeColor:"#6589de", strokeWidth:1, opacity:0.3}), - new web2d.Line({strokeColor:"#6589de", strokeWidth:1, opacity:0.3})]; + this._controlPointsController = [control1, control2]; + this._controlLines = [new web2d.Line({strokeColor: "#6589de", strokeWidth: 1, opacity: 0.3}), + new web2d.Line({strokeColor: "#6589de", strokeWidth: 1, opacity: 0.3})]; this._isBinded = false; var me = this; - this._controlPointsController[0].addEvent('mousedown', function(event) { + this._controlPointsController[0].addEvent('mousedown', function (event) { (me._mouseDown)(event, mindplot.ControlPoint.FROM, me); }); - this._controlPointsController[0].addEvent('click', function(event) { + this._controlPointsController[0].addEvent('click', function (event) { (me._mouseClick)(event); }); - this._controlPointsController[0].addEvent('dblclick', function(event) { + this._controlPointsController[0].addEvent('dblclick', function (event) { (me._mouseClick)(event); }); - this._controlPointsController[1].addEvent('mousedown', function(event) { + this._controlPointsController[1].addEvent('mousedown', function (event) { (me._mouseDown)(event, mindplot.ControlPoint.TO, me); }); - this._controlPointsController[1].addEvent('click', function(event) { + this._controlPointsController[1].addEvent('click', function (event) { (me._mouseClick)(event); }); - this._controlPointsController[1].addEvent('dblclick', function(event) { + this._controlPointsController[1].addEvent('dblclick', function (event) { (me._mouseClick)(event); }); }, - setLine : function(line) { + setLine: function (line) { if ($defined(this._line)) { this._removeLine(); } @@ -65,12 +77,12 @@ mindplot.ControlPoint = new Class({ this._endPoint[1] = this._line.getLine().getTo().clone(); }, - redraw : function() { + redraw: function () { if ($defined(this._line)) this._createControlPoint(); }, - _createControlPoint : function() { + _createControlPoint: function () { this._controls = this._line.getLine().getControlPoints(); var pos = this._line.getLine().getFrom(); this._controlPointsController[0].setPosition(this._controls[mindplot.ControlPoint.FROM].x + pos.x, this._controls[mindplot.ControlPoint.FROM].y + pos.y - 3); @@ -83,19 +95,19 @@ mindplot.ControlPoint = new Class({ }, - _removeLine : function() { + _removeLine: function () { }, - _mouseDown : function(event, point, me) { + _mouseDown: function (event, point, me) { if (!this._isBinded) { this._isBinded = true; - this._mouseMoveFunction = function(event) { + this._mouseMoveFunction = function (event) { (me._mouseMoveEvent)(event, point, me); }; this._workspace.getScreenManager().addEvent('mousemove', this._mouseMoveFunction); - this._mouseUpFunction = function(event) { + this._mouseUpFunction = function (event) { (me._mouseUp)(event, point, me); }; this._workspace.getScreenManager().addEvent('mouseup', this._mouseUpFunction); @@ -105,19 +117,21 @@ mindplot.ControlPoint = new Class({ return false; }, - _mouseMoveEvent : function(event, point) { + _mouseMoveEvent: function (event, point) { var screen = this._workspace.getScreenManager(); var pos = screen.getWorkspaceMousePosition(event); - var topic = null; + + var cords; if (point == 0) { - var cords = mindplot.util.Shape.calculateRelationShipPointCoordinates(this._line.getSourceTopic(), pos); + cords = mindplot.util.Shape.calculateRelationShipPointCoordinates(this._line.getSourceTopic(), pos); this._line.setFrom(cords.x, cords.y); this._line.setSrcControlPoint(new core.Point(pos.x - cords.x, pos.y - cords.y)); } else { - var cords = mindplot.util.Shape.calculateRelationShipPointCoordinates(this._line.getTargetTopic(), pos); + cords = mindplot.util.Shape.calculateRelationShipPointCoordinates(this._line.getTargetTopic(), pos); this._line.setTo(cords.x, cords.y); this._line.setDestControlPoint(new core.Point(pos.x - cords.x, pos.y - cords.y)); } + this._controls[point].x = (pos.x - cords.x); this._controls[point].y = (pos.y - cords.y); this._controlPointsController[point].setPosition(pos.x - 5, pos.y - 3); @@ -127,7 +141,7 @@ mindplot.ControlPoint = new Class({ }, - _mouseUp : function(event, point) { + _mouseUp: function (event, point) { this._workspace.getScreenManager().removeEvent('mousemove', this._mouseMoveFunction); this._workspace.getScreenManager().removeEvent('mouseup', this._mouseUpFunction); @@ -136,13 +150,13 @@ mindplot.ControlPoint = new Class({ this._isBinded = false; }, - _mouseClick : function(event) { + _mouseClick: function (event) { event.preventDefault(); event.stopPropagation(); return false; }, - setVisibility : function(visible) { + setVisibility: function (visible) { if (visible) { this._controlLines[0].moveToFront(); this._controlLines[1].moveToFront(); @@ -155,7 +169,7 @@ mindplot.ControlPoint = new Class({ this._controlLines[1].setVisibility(visible); }, - addToWorkspace : function(workspace) { + addToWorkspace: function (workspace) { this._workspace = workspace; workspace.append(this._controlPointsController[0]); workspace.append(this._controlPointsController[1]); @@ -163,7 +177,7 @@ mindplot.ControlPoint = new Class({ workspace.append(this._controlLines[1]); }, - removeFromWorkspace : function(workspace) { + removeFromWorkspace: function (workspace) { this._workspace = null; workspace.removeChild(this._controlPointsController[0]); workspace.removeChild(this._controlPointsController[1]); @@ -171,15 +185,15 @@ mindplot.ControlPoint = new Class({ workspace.removeChild(this._controlLines[1]); }, - getControlPoint : function(index) { + getControlPoint: function (index) { return this._controls[index]; }, - getOriginalEndPoint : function(index) { + getOriginalEndPoint: function (index) { return this._endPoint[index]; }, - getOriginalCtrlPoint : function(index) { + getOriginalCtrlPoint: function (index) { return this._orignalCtrlPoint[index]; } }); diff --git a/mindplot/src/main/javascript/Designer.js b/mindplot/src/main/javascript/Designer.js index 4ecfb1f9..376dadde 100644 --- a/mindplot/src/main/javascript/Designer.js +++ b/mindplot/src/main/javascript/Designer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the @@ -212,7 +212,7 @@ mindplot.Designer = new Class(/** @lends Designer */{ }, /** - * @param {width:Number, height:Number} size + * @param {{width:Number, height:Number}} size * sets width and height of the workspace */ setViewPort: function (size) { @@ -647,9 +647,10 @@ mindplot.Designer = new Class(/** @lends Designer */{ this._relPivot.start(nodes[0], pos); }, - /** @return the zoom */ + /** @return {{zoom:Number}} the zoom */ getMindmapProperties: function () { - return {zoom: this.getModel().getZoom()}; + var model = this.getModel(); + return {zoom: model.getZoom()}; }, /** @@ -842,7 +843,7 @@ mindplot.Designer = new Class(/** @lends Designer */{ }, /** - * @param {mindplot.model.Topic} node the topic to remove + * @param {mindplot.Topic} node the topic to remove * removes the given topic and its children from Workspace, DesignerModel and NodeModel */ removeTopic: function (node) { diff --git a/mindplot/src/main/javascript/DesignerActionRunner.js b/mindplot/src/main/javascript/DesignerActionRunner.js index c372dac8..b7e7304d 100644 --- a/mindplot/src/main/javascript/DesignerActionRunner.js +++ b/mindplot/src/main/javascript/DesignerActionRunner.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the @@ -17,7 +17,7 @@ */ mindplot.DesignerActionRunner = new Class({ - initialize:function (commandContext, notifier) { + initialize: function (commandContext, notifier) { $assert(commandContext, "commandContext can not be null"); this._undoManager = new mindplot.DesignerUndoManager(); @@ -25,7 +25,7 @@ mindplot.DesignerActionRunner = new Class({ this._notifier = notifier; }, - execute:function (command) { + execute: function (command) { $assert(command, "command can not be null"); command.execute(this._context); this._undoManager.enqueue(command); @@ -34,20 +34,20 @@ mindplot.DesignerActionRunner = new Class({ }, - undo:function () { + undo: function () { this._undoManager.execUndo(this._context); this.fireChangeEvent(); mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.DoLayout); }, - redo:function () { + redo: function () { this._undoManager.execRedo(this._context); this.fireChangeEvent(); mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.DoLayout); }, - fireChangeEvent:function () { + fireChangeEvent: function () { var event = this._undoManager.buildEvent(); this._notifier.fireEvent("modelUpdate", event); } diff --git a/mindplot/src/main/javascript/DesignerKeyboard.js b/mindplot/src/main/javascript/DesignerKeyboard.js index e0b12a3f..8035bf2d 100644 --- a/mindplot/src/main/javascript/DesignerKeyboard.js +++ b/mindplot/src/main/javascript/DesignerKeyboard.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/DesignerModel.js b/mindplot/src/main/javascript/DesignerModel.js index 46219ef4..6fcd6762 100644 --- a/mindplot/src/main/javascript/DesignerModel.js +++ b/mindplot/src/main/javascript/DesignerModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/DesignerUndoManager.js b/mindplot/src/main/javascript/DesignerUndoManager.js index e6612a00..a982f067 100644 --- a/mindplot/src/main/javascript/DesignerUndoManager.js +++ b/mindplot/src/main/javascript/DesignerUndoManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/DragConnector.js b/mindplot/src/main/javascript/DragConnector.js index 5f36d744..2f2c9b1f 100644 --- a/mindplot/src/main/javascript/DragConnector.js +++ b/mindplot/src/main/javascript/DragConnector.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/DragManager.js b/mindplot/src/main/javascript/DragManager.js index 81ed4b07..dc51577e 100644 --- a/mindplot/src/main/javascript/DragManager.js +++ b/mindplot/src/main/javascript/DragManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/DragPivot.js b/mindplot/src/main/javascript/DragPivot.js index 5bcba816..2e6d918f 100644 --- a/mindplot/src/main/javascript/DragPivot.js +++ b/mindplot/src/main/javascript/DragPivot.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/DragTopic.js b/mindplot/src/main/javascript/DragTopic.js index d083aff7..9ef3bb21 100644 --- a/mindplot/src/main/javascript/DragTopic.js +++ b/mindplot/src/main/javascript/DragTopic.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/EditorOptions.js b/mindplot/src/main/javascript/EditorOptions.js index e9bd1d3e..d2d73742 100644 --- a/mindplot/src/main/javascript/EditorOptions.js +++ b/mindplot/src/main/javascript/EditorOptions.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/EditorProperties.js b/mindplot/src/main/javascript/EditorProperties.js index 1fa148d7..11715572 100644 --- a/mindplot/src/main/javascript/EditorProperties.js +++ b/mindplot/src/main/javascript/EditorProperties.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Icon.js b/mindplot/src/main/javascript/Icon.js index 5d448e77..daf7394a 100644 --- a/mindplot/src/main/javascript/Icon.js +++ b/mindplot/src/main/javascript/Icon.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/IconGroup.js b/mindplot/src/main/javascript/IconGroup.js index 537e2553..756c8466 100644 --- a/mindplot/src/main/javascript/IconGroup.js +++ b/mindplot/src/main/javascript/IconGroup.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ImageIcon.js b/mindplot/src/main/javascript/ImageIcon.js index a31accb9..c38ed7e1 100644 --- a/mindplot/src/main/javascript/ImageIcon.js +++ b/mindplot/src/main/javascript/ImageIcon.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Keyboard.js b/mindplot/src/main/javascript/Keyboard.js index fc74ceb6..aa5e1fc3 100644 --- a/mindplot/src/main/javascript/Keyboard.js +++ b/mindplot/src/main/javascript/Keyboard.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/LinkIcon.js b/mindplot/src/main/javascript/LinkIcon.js index 56f93c49..76569ac3 100644 --- a/mindplot/src/main/javascript/LinkIcon.js +++ b/mindplot/src/main/javascript/LinkIcon.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/LocalStorageManager.js b/mindplot/src/main/javascript/LocalStorageManager.js index 2f04f163..7eb9fd94 100644 --- a/mindplot/src/main/javascript/LocalStorageManager.js +++ b/mindplot/src/main/javascript/LocalStorageManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/MainTopic.js b/mindplot/src/main/javascript/MainTopic.js index a2a7fa63..ab153649 100644 --- a/mindplot/src/main/javascript/MainTopic.js +++ b/mindplot/src/main/javascript/MainTopic.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Messages.js b/mindplot/src/main/javascript/Messages.js index bfa36cb1..9c7ee3ea 100644 --- a/mindplot/src/main/javascript/Messages.js +++ b/mindplot/src/main/javascript/Messages.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/MultilineTextEditor.js b/mindplot/src/main/javascript/MultilineTextEditor.js index 8fe7900e..472e1b3a 100644 --- a/mindplot/src/main/javascript/MultilineTextEditor.js +++ b/mindplot/src/main/javascript/MultilineTextEditor.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/NodeGraph.js b/mindplot/src/main/javascript/NodeGraph.js index cb26f155..69dde537 100644 --- a/mindplot/src/main/javascript/NodeGraph.js +++ b/mindplot/src/main/javascript/NodeGraph.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/NoteIcon.js b/mindplot/src/main/javascript/NoteIcon.js index b6e32398..2eced126 100644 --- a/mindplot/src/main/javascript/NoteIcon.js +++ b/mindplot/src/main/javascript/NoteIcon.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/PersistenceManager.js b/mindplot/src/main/javascript/PersistenceManager.js index 1040fbe6..97c2ab06 100644 --- a/mindplot/src/main/javascript/PersistenceManager.js +++ b/mindplot/src/main/javascript/PersistenceManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Relationship.js b/mindplot/src/main/javascript/Relationship.js index 3b9dd065..8c1bd0d3 100644 --- a/mindplot/src/main/javascript/Relationship.js +++ b/mindplot/src/main/javascript/Relationship.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/RelationshipPivot.js b/mindplot/src/main/javascript/RelationshipPivot.js index 5c68f3e8..7d0f7bba 100644 --- a/mindplot/src/main/javascript/RelationshipPivot.js +++ b/mindplot/src/main/javascript/RelationshipPivot.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/RestPersistenceManager.js b/mindplot/src/main/javascript/RestPersistenceManager.js index 1e04d51c..593f4c4f 100644 --- a/mindplot/src/main/javascript/RestPersistenceManager.js +++ b/mindplot/src/main/javascript/RestPersistenceManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ScreenManager.js b/mindplot/src/main/javascript/ScreenManager.js index a468c318..20ad2b38 100644 --- a/mindplot/src/main/javascript/ScreenManager.js +++ b/mindplot/src/main/javascript/ScreenManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/ShrinkConnector.js b/mindplot/src/main/javascript/ShrinkConnector.js index 02727a42..8589127b 100644 --- a/mindplot/src/main/javascript/ShrinkConnector.js +++ b/mindplot/src/main/javascript/ShrinkConnector.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/StandaloneActionDispatcher.js b/mindplot/src/main/javascript/StandaloneActionDispatcher.js index ebd2d84d..1cc0b3e6 100644 --- a/mindplot/src/main/javascript/StandaloneActionDispatcher.js +++ b/mindplot/src/main/javascript/StandaloneActionDispatcher.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the @@ -17,49 +17,52 @@ */ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispatcher */{ - Extends:mindplot.ActionDispatcher, + Extends: mindplot.ActionDispatcher, /** * @extends mindplot.ActionDispatcher * @constructs * @param {mindplot.CommandContext} commandContext */ - initialize:function (commandContext) { + initialize: function (commandContext) { this.parent(commandContext); this._actionRunner = new mindplot.DesignerActionRunner(commandContext, this); }, /** */ - addTopics:function (models, parentTopicsId) { + addTopics: function (models, parentTopicsId) { var command = new mindplot.commands.AddTopicCommand(models, parentTopicsId); this.execute(command); }, /** */ - addRelationship:function (model) { + addRelationship: function (model) { var command = new mindplot.commands.AddRelationshipCommand(model); this.execute(command); }, /** */ - deleteEntities:function (topicsIds, relIds) { + deleteEntities: function (topicsIds, relIds) { var command = new mindplot.commands.DeleteCommand(topicsIds, relIds); this.execute(command); }, /** */ - dragTopic:function (topicId, position, order, parentTopic) { + dragTopic: function (topicId, position, order, parentTopic) { var command = new mindplot.commands.DragTopicCommand(topicId, position, order, parentTopic); this.execute(command); }, /** */ - moveTopic:function (topicId, position) { + moveTopic: function (topicId, position) { $assert($defined(topicId), "topicsId can not be null"); $assert($defined(position), "position can not be null"); var commandFunc = function (topic, value) { var result = topic.getPosition(); - mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, {node:topic.getModel(), position:value}); + mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, { + node: topic.getModel(), + position: value + }); return result; }; @@ -68,13 +71,13 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - moveControlPoint:function (ctrlPoint, point) { + moveControlPoint: function (ctrlPoint, point) { var command = new mindplot.commands.MoveControlPointCommand(ctrlPoint, point); this.execute(command); }, /** */ - changeFontStyleToTopic:function (topicsIds) { + changeFontStyleToTopic: function (topicsIds) { var commandFunc = function (topic) { var result = topic.getFontStyle(); @@ -88,7 +91,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeTextToTopic:function (topicsIds, text) { + changeTextToTopic: function (topicsIds, text) { $assert($defined(topicsIds), "topicsIds can not be null"); var commandFunc = function (topic, value) { @@ -96,14 +99,14 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa topic.setText(value); return result; }; - commandFunc.commandType = "changeTextToTopic"; + commandFunc.commandType = "changeTextToTopic"; var command = new mindplot.commands.GenericFunctionCommand(commandFunc, topicsIds, text); this.execute(command); }, /** */ - changeFontFamilyToTopic:function (topicIds, fontFamily) { + changeFontFamilyToTopic: function (topicIds, fontFamily) { $assert(topicIds, "topicIds can not be null"); $assert(fontFamily, "fontFamily can not be null"); @@ -121,7 +124,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeFontColorToTopic:function (topicsIds, color) { + changeFontColorToTopic: function (topicsIds, color) { $assert(topicsIds, "topicIds can not be null"); $assert(color, "color can not be null"); @@ -137,7 +140,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeBackgroundColorToTopic:function (topicsIds, color) { + changeBackgroundColorToTopic: function (topicsIds, color) { $assert(topicsIds, "topicIds can not be null"); $assert(color, "color can not be null"); @@ -153,7 +156,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeBorderColorToTopic:function (topicsIds, color) { + changeBorderColorToTopic: function (topicsIds, color) { $assert(topicsIds, "topicIds can not be null"); $assert(color, "topicIds can not be null"); @@ -169,7 +172,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeFontSizeToTopic:function (topicsIds, size) { + changeFontSizeToTopic: function (topicsIds, size) { $assert(topicsIds, "topicIds can not be null"); $assert(size, "size can not be null"); @@ -186,7 +189,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeShapeTypeToTopic:function (topicsIds, shapeType) { + changeShapeTypeToTopic: function (topicsIds, shapeType) { $assert(topicsIds, "topicsIds can not be null"); $assert(shapeType, "shapeType can not be null"); @@ -201,7 +204,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - changeFontWeightToTopic:function (topicsIds) { + changeFontWeightToTopic: function (topicsIds) { $assert(topicsIds, "topicsIds can not be null"); var commandFunc = function (topic) { @@ -218,7 +221,7 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - shrinkBranch:function (topicsIds, collapse) { + shrinkBranch: function (topicsIds, collapse) { $assert(topicsIds, "topicsIds can not be null"); var commandFunc = function (topic, isShrink) { @@ -231,25 +234,25 @@ mindplot.StandaloneActionDispatcher = new Class(/** @lends StandaloneActionDispa }, /** */ - addFeatureToTopic:function (topicId, featureType, attributes) { + addFeatureToTopic: function (topicId, featureType, attributes) { var command = new mindplot.commands.AddFeatureToTopicCommand(topicId, featureType, attributes); this.execute(command); }, /** */ - changeFeatureToTopic:function (topicId, featureId, attributes) { + changeFeatureToTopic: function (topicId, featureId, attributes) { var command = new mindplot.commands.ChangeFeatureToTopicCommand(topicId, featureId, attributes); this.execute(command); }, /** */ - removeFeatureFromTopic:function (topicId, featureId) { + removeFeatureFromTopic: function (topicId, featureId) { var command = new mindplot.commands.RemoveFeatureFromTopicCommand(topicId, featureId); this.execute(command); }, /** */ - execute:function (command) { + execute: function (command) { this._actionRunner.execute(command); } @@ -260,13 +263,13 @@ mindplot.CommandContext = new Class(/** @lends CommandContext */{ * @constructs * @param {mindplot.Designer} designer */ - initialize:function (designer) { + initialize: function (designer) { $assert(designer, "designer can not be null"); this._designer = designer; }, /** */ - findTopics:function (topicsIds) { + findTopics: function (topicsIds) { $assert($defined(topicsIds), "topicsIds can not be null"); if (!(topicsIds instanceof Array)) { topicsIds = [topicsIds]; @@ -287,67 +290,70 @@ mindplot.CommandContext = new Class(/** @lends CommandContext */{ }, /** */ - deleteTopic:function (topic) { + deleteTopic: function (topic) { this._designer.removeTopic(topic); }, /** */ - createTopic:function (model) { + createTopic: function (model) { $assert(model, "model can not be null"); - return this._designer.nodeModelToNodeGraph(model); + return this._designer.nodeModelToNodeGraph(model); }, /** */ - createModel:function () { + createModel: function () { var mindmap = this._designer.getMindmap(); return mindmap.createNode(mindplot.NodeModel.MAIN_TOPIC_TYPE); }, /** */ - addTopic:function (topic) { + addTopic: function (topic) { var mindmap = this._designer.getMindmap(); return mindmap.addBranch(topic.getModel()); }, /** */ - connect:function (childTopic, parentTopic) { + connect: function (childTopic, parentTopic) { childTopic.connectTo(parentTopic, this._designer._workspace); }, /** */ - disconnect:function (topic) { + disconnect: function (topic) { topic.disconnect(this._designer._workspace); }, /** */ - addRelationship:function (model) { + addRelationship: function (model) { $assert(model, "model cannot be null"); return this._designer.addRelationship(model); }, /** */ - deleteRelationship:function (relationship) { + deleteRelationship: function (relationship) { this._designer.deleteRelationship(relationship); }, /** */ - findRelationships:function (relIds) { + findRelationships: function (relIds) { $assert($defined(relIds), "relId can not be null"); if (!(relIds instanceof Array)) { relIds = [relIds]; } var designerRel = this._designer.getModel().getRelationships(); - return designerRel.filter(function (rel) { + return designerRel.filter(function (rel) { return relIds.contains(rel.getId()); }); }, /** */ - moveTopic:function (topic, position) { + moveTopic: function (topic, position) { $assert(topic, "topic cannot be null"); $assert(position, "position cannot be null"); - mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, {node:topic.getModel(), position:position}); + mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, { + node: topic.getModel(), + position: position + }); } }); diff --git a/mindplot/src/main/javascript/TextEditor.js b/mindplot/src/main/javascript/TextEditor.js index 911c6161..3893e3b2 100644 --- a/mindplot/src/main/javascript/TextEditor.js +++ b/mindplot/src/main/javascript/TextEditor.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/TextEditorFactory.js b/mindplot/src/main/javascript/TextEditorFactory.js index 18c66d35..4aa87f7f 100644 --- a/mindplot/src/main/javascript/TextEditorFactory.js +++ b/mindplot/src/main/javascript/TextEditorFactory.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Topic.js b/mindplot/src/main/javascript/Topic.js index 915c72a7..65db1002 100644 --- a/mindplot/src/main/javascript/Topic.js +++ b/mindplot/src/main/javascript/Topic.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the @@ -17,14 +17,14 @@ */ mindplot.Topic = new Class(/** @lends Topic */{ - Extends:mindplot.NodeGraph, + Extends: mindplot.NodeGraph, /** * @extends mindplot.NodeGraph * @constructs * @param model * @param options */ - initialize:function (model, options) { + initialize: function (model, options) { this.parent(model, options); this._children = []; this._parent = null; @@ -44,7 +44,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ } }, - _registerEvents:function () { + _registerEvents: function () { this.setMouseEventsEnabled(true); @@ -59,20 +59,20 @@ mindplot.Topic = new Class(/** @lends Topic */{ }); }, - /** + /** * @param {String} type the topic shape type * @see {@link mindplot.model.INodeModel} */ - setShapeType:function (type) { + setShapeType: function (type) { this._setShapeType(type, true); }, /** @return {mindplot.Topic} parent topic */ - getParent:function () { + getParent: function () { return this._parent; }, - _setShapeType:function (type, updateModel) { + _setShapeType: function (type, updateModel) { // Remove inner shape figure ... var model = this.getModel(); if ($defined(updateModel) && updateModel) { @@ -114,7 +114,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @return {String} topic shape type */ - getShapeType:function () { + getShapeType: function () { var model = this.getModel(); var result = model.getShapeType(); if (!$defined(result)) { @@ -123,7 +123,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - _removeInnerShape:function () { + _removeInnerShape: function () { var group = this.get2DElement(); var innerShape = this.getInnerShape(); group.removeChild(innerShape); @@ -132,7 +132,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @return {web2d.Line|web2d.Rect|web2d.Image} inner shape of the topic */ - getInnerShape:function () { + getInnerShape: function () { if (!$defined(this._innerShape)) { // Create inner box. this._innerShape = this._buildShape(mindplot.Topic.INNER_RECT_ATTRIBUTES, this.getShapeType()); @@ -156,7 +156,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ return this._innerShape; }, - _buildShape:function (attributes, shapeType) { + _buildShape: function (attributes, shapeType) { $assert(attributes, "attributes can not be null"); $assert(shapeType, "shapeType can not be null"); @@ -186,9 +186,9 @@ mindplot.Topic = new Class(/** @lends Topic */{ result = new web2d.Rect(0.3, attributes); } else if (shapeType == mindplot.model.TopicShape.LINE) { - result = new web2d.Line({strokeColor:"#495879", strokeWidth:1}); + result = new web2d.Line({strokeColor: "#495879", strokeWidth: 1}); result.setSize = function (width, height) { - this.size = {width:width, height:height}; + this.size = {width: width, height: height}; result.setFrom(0, height); result.setTo(width, height); @@ -220,7 +220,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @param {String} type the cursor type, either 'pointer', 'default' or 'move' */ - setCursor:function (type) { + setCursor: function (type) { var innerShape = this.getInnerShape(); innerShape.setCursor(type); @@ -232,7 +232,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @return outer shape */ - getOuterShape:function () { + getOuterShape: function () { if (!$defined(this._outerShape)) { var rect = this._buildShape(mindplot.Topic.OUTER_SHAPE_ATTRIBUTES, mindplot.model.TopicShape.ROUNDED_RECT); rect.setPosition(-2, -3); @@ -244,7 +244,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @return text shape */ - getTextShape:function () { + getTextShape: function () { if (!$defined(this._text)) { this._text = this._buildTextShape(false); @@ -257,7 +257,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @return icon group */ - getOrBuildIconGroup:function () { + getOrBuildIconGroup: function () { if (!$defined(this._iconsGroup)) { this._iconsGroup = this._buildIconGroup(); var group = this.get2DElement(); @@ -268,11 +268,11 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getIconGroup:function () { + getIconGroup: function () { return this._iconsGroup; }, - _buildIconGroup:function () { + _buildIconGroup: function () { var textHeight = this.getTextShape().getFontHeight(); var result = new mindplot.IconGroup(this.getId(), textHeight); var padding = mindplot.TopicStyle.getInnerPadding(this); @@ -290,12 +290,12 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - /** + /** * assigns the new feature model to the topic's node model and adds the respective icon * @param {mindplot.model.FeatureModel} featureModel * @return {mindplot.Icon} the icon corresponding to the feature model */ - addFeature:function (featureModel) { + addFeature: function (featureModel) { var iconGroup = this.getOrBuildIconGroup(); this.closeEditors(); @@ -311,13 +311,13 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - findFeatureById:function (id) { + findFeatureById: function (id) { var model = this.getModel(); return model.findFeatureById(id); }, /** */ - removeFeature:function (featureModel) { + removeFeature: function (featureModel) { $assert(featureModel, "featureModel could not be null"); //Removing the icon from MODEL @@ -333,21 +333,21 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - addRelationship:function (relationship) { + addRelationship: function (relationship) { this._relationships.push(relationship); }, /** */ - deleteRelationship:function (relationship) { + deleteRelationship: function (relationship) { this._relationships.erase(relationship); }, /** */ - getRelationships:function () { + getRelationships: function () { return this._relationships; }, - _buildTextShape:function (readOnly) { + _buildTextShape: function (readOnly) { var result = new web2d.Text(); var family = this.getFontFamily(); var size = this.getFontSize(); @@ -371,7 +371,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setFontFamily:function (value, updateModel) { + setFontFamily: function (value, updateModel) { var textShape = this.getTextShape(); textShape.setFontFamily(value); if ($defined(updateModel) && updateModel) { @@ -382,7 +382,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setFontSize:function (value, updateModel) { + setFontSize: function (value, updateModel) { var textShape = this.getTextShape(); textShape.setSize(value); @@ -396,7 +396,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setFontStyle:function (value, updateModel) { + setFontStyle: function (value, updateModel) { var textShape = this.getTextShape(); textShape.setStyle(value); if ($defined(updateModel) && updateModel) { @@ -407,7 +407,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setFontWeight:function (value, updateModel) { + setFontWeight: function (value, updateModel) { var textShape = this.getTextShape(); textShape.setWeight(value); if ($defined(updateModel) && updateModel) { @@ -418,7 +418,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getFontWeight:function () { + getFontWeight: function () { var model = this.getModel(); var result = model.getFontWeight(); if (!$defined(result)) { @@ -429,7 +429,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getFontFamily:function () { + getFontFamily: function () { var model = this.getModel(); var result = model.getFontFamily(); if (!$defined(result)) { @@ -440,7 +440,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getFontColor:function () { + getFontColor: function () { var model = this.getModel(); var result = model.getFontColor(); if (!$defined(result)) { @@ -451,7 +451,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getFontStyle:function () { + getFontStyle: function () { var model = this.getModel(); var result = model.getFontStyle(); if (!$defined(result)) { @@ -462,7 +462,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getFontSize:function () { + getFontSize: function () { var model = this.getModel(); var result = model.getFontSize(); if (!$defined(result)) { @@ -473,7 +473,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setFontColor:function (value, updateModel) { + setFontColor: function (value, updateModel) { var textShape = this.getTextShape(); textShape.setColor(value); if ($defined(updateModel) && updateModel) { @@ -482,7 +482,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ } }, - _setText:function (text, updateModel) { + _setText: function (text, updateModel) { var textShape = this.getTextShape(); textShape.setText(text == null ? mindplot.TopicStyle.defaultText(this) : text); @@ -493,7 +493,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setText:function (text) { + setText: function (text) { // Avoid empty nodes ... if (!text || $.trim(text).length == 0) { text = null; @@ -504,7 +504,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getText:function () { + getText: function () { var model = this.getModel(); var result = model.getText(); if (!$defined(result)) { @@ -514,11 +514,11 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setBackgroundColor:function (color) { + setBackgroundColor: function (color) { this._setBackgroundColor(color, true); }, - _setBackgroundColor:function (color, updateModel) { + _setBackgroundColor: function (color, updateModel) { var innerShape = this.getInnerShape(); innerShape.setFill(color); @@ -534,7 +534,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getBackgroundColor:function () { + getBackgroundColor: function () { var model = this.getModel(); var result = model.getBackgroundColor(); if (!$defined(result)) { @@ -544,11 +544,11 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setBorderColor:function (color) { + setBorderColor: function (color) { this._setBorderColor(color, true); }, - _setBorderColor:function (color, updateModel) { + _setBorderColor: function (color, updateModel) { var innerShape = this.getInnerShape(); innerShape.setAttribute('strokeColor', color); @@ -564,7 +564,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getBorderColor:function () { + getBorderColor: function () { var model = this.getModel(); var result = model.getBorderColor(); if (!$defined(result)) { @@ -573,8 +573,8 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - _buildTopicShape:function () { - var groupAttributes = {width:100, height:100, coordSizeWidth:100, coordSizeHeight:100}; + _buildTopicShape: function () { + var groupAttributes = {width: 100, height: 100, coordSizeWidth: 100, coordSizeHeight: 100}; var group = new web2d.Group(groupAttributes); this._set2DElement(group); @@ -603,7 +603,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ this._registerDefaultListenersToElement(group, this); }, - _registerDefaultListenersToElement:function (elem, topic) { + _registerDefaultListenersToElement: function (elem, topic) { var mouseOver = function (event) { if (topic.isMouseEventsEnabled()) { topic.handleMouseOver(event); @@ -640,13 +640,13 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - areChildrenShrunken:function () { + areChildrenShrunken: function () { var model = this.getModel(); return model.areChildrenShrunken() && !this.isCentralTopic(); }, /** */ - isCollapsed:function () { + isCollapsed: function () { var result = false; var current = this.getParent(); @@ -658,7 +658,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setChildrenShrunken:function (value) { + setChildrenShrunken: function (value) { // Update Model ... var model = this.getModel(); model.setChildrenShrunken(value); @@ -693,7 +693,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getShrinkConnector:function () { + getShrinkConnector: function () { var result = this._connector; if (this._connector == null) { this._connector = new mindplot.ShirinkConnector(this); @@ -705,13 +705,13 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - handleMouseOver:function () { + handleMouseOver: function () { var outerShape = this.getOuterShape(); outerShape.setOpacity(1); }, /** */ - handleMouseOut:function () { + handleMouseOut: function () { var outerShape = this.getOuterShape(); if (!this.isOnFocus()) { outerShape.setOpacity(0); @@ -719,17 +719,17 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - showTextEditor:function (text) { - this._getTopicEventDispatcher().show(this, {text:text}); + showTextEditor: function (text) { + this._getTopicEventDispatcher().show(this, {text: text}); }, /** */ - showNoteEditor:function () { + showNoteEditor: function () { var topicId = this.getId(); var model = this.getModel(); var editorModel = { - getValue:function () { + getValue: function () { var notes = model.findFeatureByType(mindplot.TopicFeature.Note.id); var result; if (notes.length > 0) @@ -738,7 +738,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - setValue:function (value) { + setValue: function (value) { var dispatcher = mindplot.ActionDispatcher.getInstance(); var notes = model.findFeatureByType(mindplot.TopicFeature.Note.id); if (!$defined(value)) { @@ -747,10 +747,10 @@ mindplot.Topic = new Class(/** @lends Topic */{ } else { if (notes.length > 0) { - dispatcher.changeFeatureToTopic(topicId, notes[0].getId(), {text:value}); + dispatcher.changeFeatureToTopic(topicId, notes[0].getId(), {text: value}); } else { - dispatcher.addFeatureToTopic(topicId, mindplot.TopicFeature.Note.id, {text:value}); + dispatcher.addFeatureToTopic(topicId, mindplot.TopicFeature.Note.id, {text: value}); } } } @@ -761,12 +761,12 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** opens a dialog where the user can enter or edit an existing link associated with this topic */ - showLinkEditor:function () { + showLinkEditor: function () { var topicId = this.getId(); var model = this.getModel(); var editorModel = { - getValue:function () { + getValue: function () { //@param {mindplot.model.LinkModel[]} links var links = model.findFeatureByType(mindplot.TopicFeature.Link.id); var result; @@ -776,7 +776,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - setValue:function (value) { + setValue: function (value) { var dispatcher = mindplot.ActionDispatcher.getInstance(); var links = model.findFeatureByType(mindplot.TopicFeature.Link.id); if (!$defined(value)) { @@ -785,10 +785,10 @@ mindplot.Topic = new Class(/** @lends Topic */{ } else { if (links.length > 0) { - dispatcher.changeFeatureToTopic(topicId, links[0].getId(), {url:value}); + dispatcher.changeFeatureToTopic(topicId, links[0].getId(), {url: value}); } else { - dispatcher.addFeatureToTopic(topicId, mindplot.TopicFeature.Link.id, {url:value}); + dispatcher.addFeatureToTopic(topicId, mindplot.TopicFeature.Link.id, {url: value}); } } } @@ -800,18 +800,18 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - closeEditors:function () { + closeEditors: function () { this._getTopicEventDispatcher().close(true); }, - _getTopicEventDispatcher:function () { + _getTopicEventDispatcher: function () { return mindplot.TopicEventDispatcher.getInstance(); }, /** * Point: references the center of the rect shape.!!! */ - setPosition:function (point) { + setPosition: function (point) { $assert(point, "position can not be null"); point.x = Math.ceil(point.x); point.y = Math.ceil(point.y); @@ -838,12 +838,12 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getOutgoingLine:function () { + getOutgoingLine: function () { return this._outgoingLine; }, /** */ - getIncomingLines:function () { + getIncomingLines: function () { var result = []; var children = this.getChildren(); for (var i = 0; i < children.length; i++) { @@ -857,7 +857,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getOutgoingConnectedTopic:function () { + getOutgoingConnectedTopic: function () { var result = null; var line = this.getOutgoingLine(); if ($defined(line)) { @@ -866,7 +866,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - _updateConnectionLines:function () { + _updateConnectionLines: function () { // Update this to parent line ... var outgoingLine = this.getOutgoingLine(); if ($defined(outgoingLine)) { @@ -886,7 +886,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setBranchVisibility:function (value) { + setBranchVisibility: function (value) { var current = this; var parent = this; while (parent != null && !parent.isCentralTopic()) { @@ -897,7 +897,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setVisibility:function (value) { + setVisibility: function (value) { this._setTopicVisibility(value); // Hide all children... @@ -914,7 +914,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - moveToBack:function () { + moveToBack: function () { // Update relationship lines for (var j = 0; j < this._relationships.length; j++) { @@ -929,7 +929,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - moveToFront:function () { + moveToFront: function () { this.get2DElement().moveToFront(); var connector = this.getShrinkConnector(); @@ -943,12 +943,12 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - isVisible:function () { + isVisible: function () { var elem = this.get2DElement(); return elem.isVisible(); }, - _setRelationshipLinesVisibility:function (value) { + _setRelationshipLinesVisibility: function (value) { _.each(this._relationships, function (relationship) { var sourceTopic = relationship.getSourceTopic(); var targetTopic = relationship.getTargetTopic(); @@ -959,7 +959,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }); }, - _setTopicVisibility:function (value) { + _setTopicVisibility: function (value) { var elem = this.get2DElement(); elem.setVisibility(value); @@ -975,7 +975,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setOpacity:function (opacity) { + setOpacity: function (opacity) { var elem = this.get2DElement(); elem.setOpacity(opacity); @@ -987,7 +987,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ textShape.setOpacity(opacity); }, - _setChildrenVisibility:function (isVisible) { + _setChildrenVisibility: function (isVisible) { // Hide all children. var children = this.getChildren(); @@ -1005,7 +1005,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - invariant:function () { + invariant: function () { var line = this._outgoingLine; var model = this.getModel(); var isConnected = model.isConnected(); @@ -1017,10 +1017,10 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - setSize:function (size, force) { + setSize: function (size, force) { $assert(size, "size can not be null"); $assert($defined(size.width), "size seem not to be a valid element"); - size = {width:Math.ceil(size.width), height:Math.ceil(size.height)}; + size = {width: Math.ceil(size.width), height: Math.ceil(size.height)}; var oldSize = this.getSize(); var hasSizeChanged = oldSize.width != size.width || oldSize.height != size.height; @@ -1037,17 +1037,20 @@ mindplot.Topic = new Class(/** @lends Topic */{ this._updatePositionOnChangeSize(oldSize, size); if (hasSizeChanged) { - mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeResizeEvent, {node:this.getModel(), size:size}); + mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeResizeEvent, { + node: this.getModel(), + size: size + }); } } }, - _updatePositionOnChangeSize:function () { + _updatePositionOnChangeSize: function () { $assert(false, "this method must be overwrited."); }, /** */ - disconnect:function (workspace) { + disconnect: function (workspace) { var outgoingLine = this.getOutgoingLine(); if ($defined(outgoingLine)) { $assert(workspace, 'workspace can not be null'); @@ -1092,19 +1095,19 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - getOrder:function () { + getOrder: function () { var model = this.getModel(); return model.getOrder(); }, /** */ - setOrder:function (value) { + setOrder: function (value) { var model = this.getModel(); model.setOrder(value); }, /** */ - connectTo:function (targetTopic, workspace) { + connectTo: function (targetTopic, workspace) { $assert(!this._outgoingLine, 'Could not connect an already connected node'); $assert(targetTopic != this, 'Circular connection are not allowed'); $assert(targetTopic, 'Parent Graph can not be null'); @@ -1152,24 +1155,27 @@ mindplot.Topic = new Class(/** @lends Topic */{ // Fire connection event ... if (this.isInWorkspace()) { - mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeConnectEvent, {parentNode:targetTopic.getModel(), childNode:this.getModel()}); + mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeConnectEvent, { + parentNode: targetTopic.getModel(), + childNode: this.getModel() + }); } }, /** */ - append:function (child) { + append: function (child) { var children = this.getChildren(); children.push(child); }, /** */ - removeChild:function (child) { + removeChild: function (child) { var children = this.getChildren(); children.erase(child); }, /** */ - getChildren:function () { + getChildren: function () { var result = this._children; if (!$defined(result)) { this._children = []; @@ -1179,7 +1185,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - removeFromWorkspace:function (workspace) { + removeFromWorkspace: function (workspace) { var elem2d = this.get2DElement(); workspace.removeChild(elem2d); var line = this.getOutgoingLine(); @@ -1191,7 +1197,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - addToWorkspace:function (workspace) { + addToWorkspace: function (workspace) { var elem = this.get2DElement(); workspace.append(elem); if (!this.isInWorkspace()) { @@ -1200,7 +1206,10 @@ mindplot.Topic = new Class(/** @lends Topic */{ } if (this.getModel().isConnected()) - mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeConnectEvent, {parentNode:this.getOutgoingConnectedTopic().getModel(), childNode:this.getModel()}); + mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeConnectEvent, { + parentNode: this.getOutgoingConnectedTopic().getModel(), + childNode: this.getModel() + }); } this._isInWorkspace = true; @@ -1208,12 +1217,12 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** */ - isInWorkspace:function () { + isInWorkspace: function () { return this._isInWorkspace; }, /** */ - createDragNode:function (layoutManager) { + createDragNode: function (layoutManager) { var result = this.parent(layoutManager); // Is the node already connected ? @@ -1229,7 +1238,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ return result; }, - _adjustShapes:function () { + _adjustShapes: function () { if (this._isInWorkspace) { var textShape = this.getTextShape(); @@ -1258,7 +1267,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ var height = textHeight + (topicPadding * 2); var width = textWidth + iconsWidth + (topicPadding * 2); - this.setSize({width:width, height:height}); + this.setSize({width: width, height: height}); // Position node ... textShape.setPosition(topicPadding + iconsWidth, topicPadding); @@ -1270,7 +1279,7 @@ mindplot.Topic = new Class(/** @lends Topic */{ } }, - _flatten2DElements:function (topic) { + _flatten2DElements: function (topic) { var result = []; var children = topic.getChildren(); @@ -1292,10 +1301,10 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** - * @param childTopic + * @param childTopic * @return {Boolean} true if childtopic is a child topic of this topic or the topic itself */ - isChildTopic:function (childTopic) { + isChildTopic: function (childTopic) { var result = (this.getId() == childTopic.getId()); if (!result) { var children = this.getChildren(); @@ -1311,14 +1320,14 @@ mindplot.Topic = new Class(/** @lends Topic */{ }, /** @return {Boolean} true if the topic is the central topic of the map */ - isCentralTopic:function () { + isCentralTopic: function () { return this.getModel().getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE; } }); -/** +/** * @constant * @type {Number} * @default @@ -1327,21 +1336,21 @@ mindplot.Topic.CONNECTOR_WIDTH = 6; /** * @constant * @type {Object} - * @default + * @default */ -mindplot.Topic.OUTER_SHAPE_ATTRIBUTES = {fillColor:'rgb(252,235,192)', stroke:'1 dot rgb(241,163,39)', x:0, y:0}; +mindplot.Topic.OUTER_SHAPE_ATTRIBUTES = {fillColor: 'rgb(252,235,192)', stroke: '1 dot rgb(241,163,39)', x: 0, y: 0}; /** * @constant * @type {Object} - * @default + * @default */ -mindplot.Topic.OUTER_SHAPE_ATTRIBUTES_FOCUS = {fillColor:'rgb(244,184,45)', x:0, y:0}; -/** +mindplot.Topic.OUTER_SHAPE_ATTRIBUTES_FOCUS = {fillColor: 'rgb(244,184,45)', x: 0, y: 0}; +/** * @constant * @type {Object} * @default * */ -mindplot.Topic.INNER_RECT_ATTRIBUTES = {stroke:'2 solid'}; +mindplot.Topic.INNER_RECT_ATTRIBUTES = {stroke: '2 solid'}; diff --git a/mindplot/src/main/javascript/TopicEventDispatcher.js b/mindplot/src/main/javascript/TopicEventDispatcher.js index 71b4f033..b614a356 100644 --- a/mindplot/src/main/javascript/TopicEventDispatcher.js +++ b/mindplot/src/main/javascript/TopicEventDispatcher.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/TopicFeature.js b/mindplot/src/main/javascript/TopicFeature.js index c248348d..42225e06 100644 --- a/mindplot/src/main/javascript/TopicFeature.js +++ b/mindplot/src/main/javascript/TopicFeature.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/Workspace.js b/mindplot/src/main/javascript/Workspace.js index 81894848..d96ffe55 100644 --- a/mindplot/src/main/javascript/Workspace.js +++ b/mindplot/src/main/javascript/Workspace.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/AddFeatureToTopicCommand.js b/mindplot/src/main/javascript/commands/AddFeatureToTopicCommand.js index da967523..81e3dde6 100644 --- a/mindplot/src/main/javascript/commands/AddFeatureToTopicCommand.js +++ b/mindplot/src/main/javascript/commands/AddFeatureToTopicCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/AddRelationshipCommand.js b/mindplot/src/main/javascript/commands/AddRelationshipCommand.js index 4a251c45..2e9da1ab 100644 --- a/mindplot/src/main/javascript/commands/AddRelationshipCommand.js +++ b/mindplot/src/main/javascript/commands/AddRelationshipCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/AddTopicCommand.js b/mindplot/src/main/javascript/commands/AddTopicCommand.js index 13900878..73459d99 100644 --- a/mindplot/src/main/javascript/commands/AddTopicCommand.js +++ b/mindplot/src/main/javascript/commands/AddTopicCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/ChangeFeatureToTopicCommand.js b/mindplot/src/main/javascript/commands/ChangeFeatureToTopicCommand.js index cf3725db..2110c90f 100644 --- a/mindplot/src/main/javascript/commands/ChangeFeatureToTopicCommand.js +++ b/mindplot/src/main/javascript/commands/ChangeFeatureToTopicCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/DeleteCommand.js b/mindplot/src/main/javascript/commands/DeleteCommand.js index ed01b373..4046f309 100644 --- a/mindplot/src/main/javascript/commands/DeleteCommand.js +++ b/mindplot/src/main/javascript/commands/DeleteCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/DragTopicCommand.js b/mindplot/src/main/javascript/commands/DragTopicCommand.js index 9a85710e..478aa6e6 100644 --- a/mindplot/src/main/javascript/commands/DragTopicCommand.js +++ b/mindplot/src/main/javascript/commands/DragTopicCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/GenericFunctionCommand.js b/mindplot/src/main/javascript/commands/GenericFunctionCommand.js index f9c33704..8cf4eb0b 100644 --- a/mindplot/src/main/javascript/commands/GenericFunctionCommand.js +++ b/mindplot/src/main/javascript/commands/GenericFunctionCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the @@ -25,7 +25,7 @@ mindplot.commands.GenericFunctionCommand = new Class(/** @lends GenericFunctionC * @constructs * @param {Function} commandFunc the function the command shall execute * @param {String|Array} topicsIds the ids of the topics affected - * @param {Object} value arbitrary value necessary for the execution of the function, + * @param {Object} [value] value arbitrary value necessary for the execution of the function, * e.g. color, font family or text * @extends mindplot.Command */ diff --git a/mindplot/src/main/javascript/commands/MoveControlPointCommand.js b/mindplot/src/main/javascript/commands/MoveControlPointCommand.js index 7e43c7d3..9d94e6d3 100644 --- a/mindplot/src/main/javascript/commands/MoveControlPointCommand.js +++ b/mindplot/src/main/javascript/commands/MoveControlPointCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/commands/RemoveFeatureFromTopicCommand.js b/mindplot/src/main/javascript/commands/RemoveFeatureFromTopicCommand.js index 28410580..e7dda1c7 100644 --- a/mindplot/src/main/javascript/commands/RemoveFeatureFromTopicCommand.js +++ b/mindplot/src/main/javascript/commands/RemoveFeatureFromTopicCommand.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/header.js b/mindplot/src/main/javascript/header.js index b5c0b76f..f5a0b466 100644 --- a/mindplot/src/main/javascript/header.js +++ b/mindplot/src/main/javascript/header.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/AbstractBasicSorter.js b/mindplot/src/main/javascript/layout/AbstractBasicSorter.js index d382ae43..c0df23c9 100644 --- a/mindplot/src/main/javascript/layout/AbstractBasicSorter.js +++ b/mindplot/src/main/javascript/layout/AbstractBasicSorter.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/BalancedSorter.js b/mindplot/src/main/javascript/layout/BalancedSorter.js index bce54e87..f9d881f0 100644 --- a/mindplot/src/main/javascript/layout/BalancedSorter.js +++ b/mindplot/src/main/javascript/layout/BalancedSorter.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/ChangeEvent.js b/mindplot/src/main/javascript/layout/ChangeEvent.js index dbdab8be..fb03e07c 100644 --- a/mindplot/src/main/javascript/layout/ChangeEvent.js +++ b/mindplot/src/main/javascript/layout/ChangeEvent.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/ChildrenSorterStrategy.js b/mindplot/src/main/javascript/layout/ChildrenSorterStrategy.js index 30b83df0..d60edb12 100644 --- a/mindplot/src/main/javascript/layout/ChildrenSorterStrategy.js +++ b/mindplot/src/main/javascript/layout/ChildrenSorterStrategy.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/EventBus.js b/mindplot/src/main/javascript/layout/EventBus.js index aeb84141..73ac7ee1 100644 --- a/mindplot/src/main/javascript/layout/EventBus.js +++ b/mindplot/src/main/javascript/layout/EventBus.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/EventBusDispatcher.js b/mindplot/src/main/javascript/layout/EventBusDispatcher.js index 91cd1606..bb1dd6ed 100644 --- a/mindplot/src/main/javascript/layout/EventBusDispatcher.js +++ b/mindplot/src/main/javascript/layout/EventBusDispatcher.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/GridSorter.js b/mindplot/src/main/javascript/layout/GridSorter.js index 79e6c0c6..8ccfba94 100644 --- a/mindplot/src/main/javascript/layout/GridSorter.js +++ b/mindplot/src/main/javascript/layout/GridSorter.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/LayoutManager.js b/mindplot/src/main/javascript/layout/LayoutManager.js index 471e864a..dabeb4b4 100644 --- a/mindplot/src/main/javascript/layout/LayoutManager.js +++ b/mindplot/src/main/javascript/layout/LayoutManager.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/Node.js b/mindplot/src/main/javascript/layout/Node.js index 3cd453ca..fece5e04 100644 --- a/mindplot/src/main/javascript/layout/Node.js +++ b/mindplot/src/main/javascript/layout/Node.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/OriginalLayout.js b/mindplot/src/main/javascript/layout/OriginalLayout.js index 88fbb010..aadae2a7 100644 --- a/mindplot/src/main/javascript/layout/OriginalLayout.js +++ b/mindplot/src/main/javascript/layout/OriginalLayout.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/RootedTreeSet.js b/mindplot/src/main/javascript/layout/RootedTreeSet.js index 92affad7..9ff1e546 100644 --- a/mindplot/src/main/javascript/layout/RootedTreeSet.js +++ b/mindplot/src/main/javascript/layout/RootedTreeSet.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/layout/SymmetricSorter.js b/mindplot/src/main/javascript/layout/SymmetricSorter.js index 73330286..fefd778e 100644 --- a/mindplot/src/main/javascript/layout/SymmetricSorter.js +++ b/mindplot/src/main/javascript/layout/SymmetricSorter.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/FeatureModel.js b/mindplot/src/main/javascript/model/FeatureModel.js index 650a2724..ecda0219 100644 --- a/mindplot/src/main/javascript/model/FeatureModel.js +++ b/mindplot/src/main/javascript/model/FeatureModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/IMindmap.js b/mindplot/src/main/javascript/model/IMindmap.js index 9762aef7..4d8ffc5d 100644 --- a/mindplot/src/main/javascript/model/IMindmap.js +++ b/mindplot/src/main/javascript/model/IMindmap.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/INodeModel.js b/mindplot/src/main/javascript/model/INodeModel.js index 41972a7a..f0d1b401 100644 --- a/mindplot/src/main/javascript/model/INodeModel.js +++ b/mindplot/src/main/javascript/model/INodeModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/IconModel.js b/mindplot/src/main/javascript/model/IconModel.js index ca121782..933bf8f3 100644 --- a/mindplot/src/main/javascript/model/IconModel.js +++ b/mindplot/src/main/javascript/model/IconModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/LinkModel.js b/mindplot/src/main/javascript/model/LinkModel.js index b3194853..e21dd52e 100644 --- a/mindplot/src/main/javascript/model/LinkModel.js +++ b/mindplot/src/main/javascript/model/LinkModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/Mindmap.js b/mindplot/src/main/javascript/model/Mindmap.js index c896fbfc..ca2ff858 100644 --- a/mindplot/src/main/javascript/model/Mindmap.js +++ b/mindplot/src/main/javascript/model/Mindmap.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/NodeModel.js b/mindplot/src/main/javascript/model/NodeModel.js index ddb9db4e..4c085370 100644 --- a/mindplot/src/main/javascript/model/NodeModel.js +++ b/mindplot/src/main/javascript/model/NodeModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/NoteModel.js b/mindplot/src/main/javascript/model/NoteModel.js index 89d499fd..6c484683 100644 --- a/mindplot/src/main/javascript/model/NoteModel.js +++ b/mindplot/src/main/javascript/model/NoteModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/model/RelationshipModel.js b/mindplot/src/main/javascript/model/RelationshipModel.js index a491af82..182d986d 100644 --- a/mindplot/src/main/javascript/model/RelationshipModel.js +++ b/mindplot/src/main/javascript/model/RelationshipModel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/Beta2PelaMigrator.js b/mindplot/src/main/javascript/persistence/Beta2PelaMigrator.js index 09948318..20af6bbc 100644 --- a/mindplot/src/main/javascript/persistence/Beta2PelaMigrator.js +++ b/mindplot/src/main/javascript/persistence/Beta2PelaMigrator.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/ModelCodeName.js b/mindplot/src/main/javascript/persistence/ModelCodeName.js index 061984ba..ed180cab 100644 --- a/mindplot/src/main/javascript/persistence/ModelCodeName.js +++ b/mindplot/src/main/javascript/persistence/ModelCodeName.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/Pela2TangoMigrator.js b/mindplot/src/main/javascript/persistence/Pela2TangoMigrator.js index 0b65ae32..e2fbf845 100644 --- a/mindplot/src/main/javascript/persistence/Pela2TangoMigrator.js +++ b/mindplot/src/main/javascript/persistence/Pela2TangoMigrator.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/XMLSerializerFactory.js b/mindplot/src/main/javascript/persistence/XMLSerializerFactory.js index 68ab7029..f7371cef 100644 --- a/mindplot/src/main/javascript/persistence/XMLSerializerFactory.js +++ b/mindplot/src/main/javascript/persistence/XMLSerializerFactory.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/XMLSerializer_Beta.js b/mindplot/src/main/javascript/persistence/XMLSerializer_Beta.js index c5999ce8..70bdfd12 100644 --- a/mindplot/src/main/javascript/persistence/XMLSerializer_Beta.js +++ b/mindplot/src/main/javascript/persistence/XMLSerializer_Beta.js @@ -1,4 +1,4 @@ -/* Copyright [2012] [wisemapping] +/* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/XMLSerializer_Pela.js b/mindplot/src/main/javascript/persistence/XMLSerializer_Pela.js index 56a783f9..d82cba02 100644 --- a/mindplot/src/main/javascript/persistence/XMLSerializer_Pela.js +++ b/mindplot/src/main/javascript/persistence/XMLSerializer_Pela.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/persistence/XMLSerializer_Tango.js b/mindplot/src/main/javascript/persistence/XMLSerializer_Tango.js index 28c58a73..c1483aac 100644 --- a/mindplot/src/main/javascript/persistence/XMLSerializer_Tango.js +++ b/mindplot/src/main/javascript/persistence/XMLSerializer_Tango.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/util/FadeEffect.js b/mindplot/src/main/javascript/util/FadeEffect.js index 544bba7a..e4105555 100644 --- a/mindplot/src/main/javascript/util/FadeEffect.js +++ b/mindplot/src/main/javascript/util/FadeEffect.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/util/Shape.js b/mindplot/src/main/javascript/util/Shape.js index 04d42e8e..f6fcbdb0 100644 --- a/mindplot/src/main/javascript/util/Shape.js +++ b/mindplot/src/main/javascript/util/Shape.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/ColorPalettePanel.js b/mindplot/src/main/javascript/widget/ColorPalettePanel.js index 7c0f1ffa..f3058a61 100644 --- a/mindplot/src/main/javascript/widget/ColorPalettePanel.js +++ b/mindplot/src/main/javascript/widget/ColorPalettePanel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/FloatingTip.js b/mindplot/src/main/javascript/widget/FloatingTip.js index ce9bb585..23cdacc1 100644 --- a/mindplot/src/main/javascript/widget/FloatingTip.js +++ b/mindplot/src/main/javascript/widget/FloatingTip.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/FontFamilyPanel.js b/mindplot/src/main/javascript/widget/FontFamilyPanel.js index d536a8a0..2f8adf61 100644 --- a/mindplot/src/main/javascript/widget/FontFamilyPanel.js +++ b/mindplot/src/main/javascript/widget/FontFamilyPanel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/FontSizePanel.js b/mindplot/src/main/javascript/widget/FontSizePanel.js index 1ff26b8e..fdadb110 100644 --- a/mindplot/src/main/javascript/widget/FontSizePanel.js +++ b/mindplot/src/main/javascript/widget/FontSizePanel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/IMenu.js b/mindplot/src/main/javascript/widget/IMenu.js index d0e542d5..3788eaac 100644 --- a/mindplot/src/main/javascript/widget/IMenu.js +++ b/mindplot/src/main/javascript/widget/IMenu.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/IconPanel.js b/mindplot/src/main/javascript/widget/IconPanel.js index 1561eac3..df7996f8 100644 --- a/mindplot/src/main/javascript/widget/IconPanel.js +++ b/mindplot/src/main/javascript/widget/IconPanel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/KeyboardShortcutTooltip.js b/mindplot/src/main/javascript/widget/KeyboardShortcutTooltip.js index 375c87d5..743f5179 100644 --- a/mindplot/src/main/javascript/widget/KeyboardShortcutTooltip.js +++ b/mindplot/src/main/javascript/widget/KeyboardShortcutTooltip.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/LinkEditor.js b/mindplot/src/main/javascript/widget/LinkEditor.js index 0edeb7cc..f1568929 100644 --- a/mindplot/src/main/javascript/widget/LinkEditor.js +++ b/mindplot/src/main/javascript/widget/LinkEditor.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/LinkIconTooltip.js b/mindplot/src/main/javascript/widget/LinkIconTooltip.js index eb9ade81..08f82c48 100644 --- a/mindplot/src/main/javascript/widget/LinkIconTooltip.js +++ b/mindplot/src/main/javascript/widget/LinkIconTooltip.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/ListToolbarPanel.js b/mindplot/src/main/javascript/widget/ListToolbarPanel.js index aa21ce17..2e987f7e 100644 --- a/mindplot/src/main/javascript/widget/ListToolbarPanel.js +++ b/mindplot/src/main/javascript/widget/ListToolbarPanel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/Menu.js b/mindplot/src/main/javascript/widget/Menu.js index 313c14a8..74d39d20 100644 --- a/mindplot/src/main/javascript/widget/Menu.js +++ b/mindplot/src/main/javascript/widget/Menu.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/ModalDialogNotifier.js b/mindplot/src/main/javascript/widget/ModalDialogNotifier.js index 1d43d3ef..d6e69be7 100644 --- a/mindplot/src/main/javascript/widget/ModalDialogNotifier.js +++ b/mindplot/src/main/javascript/widget/ModalDialogNotifier.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/NoteEditor.js b/mindplot/src/main/javascript/widget/NoteEditor.js index 3f453c49..aec565b7 100644 --- a/mindplot/src/main/javascript/widget/NoteEditor.js +++ b/mindplot/src/main/javascript/widget/NoteEditor.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/ToolbarItem.js b/mindplot/src/main/javascript/widget/ToolbarItem.js index b1f9f8a9..9ce512a9 100644 --- a/mindplot/src/main/javascript/widget/ToolbarItem.js +++ b/mindplot/src/main/javascript/widget/ToolbarItem.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/ToolbarNotifier.js b/mindplot/src/main/javascript/widget/ToolbarNotifier.js index 266cb530..ce734e31 100644 --- a/mindplot/src/main/javascript/widget/ToolbarNotifier.js +++ b/mindplot/src/main/javascript/widget/ToolbarNotifier.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/ToolbarPaneItem.js b/mindplot/src/main/javascript/widget/ToolbarPaneItem.js index 673d810b..8685d6d5 100644 --- a/mindplot/src/main/javascript/widget/ToolbarPaneItem.js +++ b/mindplot/src/main/javascript/widget/ToolbarPaneItem.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/main/javascript/widget/TopicShapePanel.js b/mindplot/src/main/javascript/widget/TopicShapePanel.js index cd10336a..9105a711 100644 --- a/mindplot/src/main/javascript/widget/TopicShapePanel.js +++ b/mindplot/src/main/javascript/widget/TopicShapePanel.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/test/javascript/static/test/BalancedTestSuite.js b/mindplot/src/test/javascript/static/test/BalancedTestSuite.js index 470b7bc5..edd77bed 100644 --- a/mindplot/src/test/javascript/static/test/BalancedTestSuite.js +++ b/mindplot/src/test/javascript/static/test/BalancedTestSuite.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/test/javascript/static/test/FreeTestSuite.js b/mindplot/src/test/javascript/static/test/FreeTestSuite.js index 0f123b86..05361e17 100644 --- a/mindplot/src/test/javascript/static/test/FreeTestSuite.js +++ b/mindplot/src/test/javascript/static/test/FreeTestSuite.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/test/javascript/static/test/SymmetricTestSuite.js b/mindplot/src/test/javascript/static/test/SymmetricTestSuite.js index 15578d24..4620a0af 100644 --- a/mindplot/src/test/javascript/static/test/SymmetricTestSuite.js +++ b/mindplot/src/test/javascript/static/test/SymmetricTestSuite.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/mindplot/src/test/javascript/static/test/TestSuite.js b/mindplot/src/test/javascript/static/test/TestSuite.js index 7fc53d40..092f59c1 100644 --- a/mindplot/src/test/javascript/static/test/TestSuite.js +++ b/mindplot/src/test/javascript/static/test/TestSuite.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Arrow.js b/web2d/src/main/javascript/Arrow.js index 33fabdb5..54f544c4 100644 --- a/web2d/src/main/javascript/Arrow.js +++ b/web2d/src/main/javascript/Arrow.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/CurvedLine.js b/web2d/src/main/javascript/CurvedLine.js index 0ddf05ea..63a707ea 100644 --- a/web2d/src/main/javascript/CurvedLine.js +++ b/web2d/src/main/javascript/CurvedLine.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Element.js b/web2d/src/main/javascript/Element.js index 27d24348..715c448e 100644 --- a/web2d/src/main/javascript/Element.js +++ b/web2d/src/main/javascript/Element.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Elipse.js b/web2d/src/main/javascript/Elipse.js index ba26514f..d18ee37a 100644 --- a/web2d/src/main/javascript/Elipse.js +++ b/web2d/src/main/javascript/Elipse.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Font.js b/web2d/src/main/javascript/Font.js index 1be13fb3..cdff6b46 100644 --- a/web2d/src/main/javascript/Font.js +++ b/web2d/src/main/javascript/Font.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Group.js b/web2d/src/main/javascript/Group.js index 532c712a..3a0da94b 100644 --- a/web2d/src/main/javascript/Group.js +++ b/web2d/src/main/javascript/Group.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Image.js b/web2d/src/main/javascript/Image.js index b9af98f5..de76a632 100644 --- a/web2d/src/main/javascript/Image.js +++ b/web2d/src/main/javascript/Image.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Line.js b/web2d/src/main/javascript/Line.js index f8251b74..86879c0d 100644 --- a/web2d/src/main/javascript/Line.js +++ b/web2d/src/main/javascript/Line.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Point.js b/web2d/src/main/javascript/Point.js index ffc1254a..b036b29a 100644 --- a/web2d/src/main/javascript/Point.js +++ b/web2d/src/main/javascript/Point.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/PolyLine.js b/web2d/src/main/javascript/PolyLine.js index ec485443..ece5da2f 100644 --- a/web2d/src/main/javascript/PolyLine.js +++ b/web2d/src/main/javascript/PolyLine.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Rect.js b/web2d/src/main/javascript/Rect.js index d3b667ec..070458a6 100644 --- a/web2d/src/main/javascript/Rect.js +++ b/web2d/src/main/javascript/Rect.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Text.js b/web2d/src/main/javascript/Text.js index 440f45e9..a6dcb206 100644 --- a/web2d/src/main/javascript/Text.js +++ b/web2d/src/main/javascript/Text.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Toolkit.js b/web2d/src/main/javascript/Toolkit.js index 294127d7..9c8080e4 100644 --- a/web2d/src/main/javascript/Toolkit.js +++ b/web2d/src/main/javascript/Toolkit.js @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/Workspace.js b/web2d/src/main/javascript/Workspace.js index 82f73901..66523870 100644 --- a/web2d/src/main/javascript/Workspace.js +++ b/web2d/src/main/javascript/Workspace.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/header.js b/web2d/src/main/javascript/header.js index 44c495e6..5c258da2 100644 --- a/web2d/src/main/javascript/header.js +++ b/web2d/src/main/javascript/header.js @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/ArialFont.js b/web2d/src/main/javascript/peer/svg/ArialFont.js index f3ebbf2f..dccf80dc 100644 --- a/web2d/src/main/javascript/peer/svg/ArialFont.js +++ b/web2d/src/main/javascript/peer/svg/ArialFont.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/ArrowPeer.js b/web2d/src/main/javascript/peer/svg/ArrowPeer.js index ba96bd60..f079a71b 100644 --- a/web2d/src/main/javascript/peer/svg/ArrowPeer.js +++ b/web2d/src/main/javascript/peer/svg/ArrowPeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/CurvedLinePeer.js b/web2d/src/main/javascript/peer/svg/CurvedLinePeer.js index 20b6b4af..50b300a6 100644 --- a/web2d/src/main/javascript/peer/svg/CurvedLinePeer.js +++ b/web2d/src/main/javascript/peer/svg/CurvedLinePeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/ElementPeer.js b/web2d/src/main/javascript/peer/svg/ElementPeer.js index b97bc9bb..c661cc62 100644 --- a/web2d/src/main/javascript/peer/svg/ElementPeer.js +++ b/web2d/src/main/javascript/peer/svg/ElementPeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/ElipsePeer.js b/web2d/src/main/javascript/peer/svg/ElipsePeer.js index 84bf52bc..4b65b232 100644 --- a/web2d/src/main/javascript/peer/svg/ElipsePeer.js +++ b/web2d/src/main/javascript/peer/svg/ElipsePeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/Font.js b/web2d/src/main/javascript/peer/svg/Font.js index 014334ea..b5b5c939 100644 --- a/web2d/src/main/javascript/peer/svg/Font.js +++ b/web2d/src/main/javascript/peer/svg/Font.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/GroupPeer.js b/web2d/src/main/javascript/peer/svg/GroupPeer.js index 2968de65..0ae4a6e4 100644 --- a/web2d/src/main/javascript/peer/svg/GroupPeer.js +++ b/web2d/src/main/javascript/peer/svg/GroupPeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/ImagePeer.js b/web2d/src/main/javascript/peer/svg/ImagePeer.js index 1a8e2582..9827b11c 100644 --- a/web2d/src/main/javascript/peer/svg/ImagePeer.js +++ b/web2d/src/main/javascript/peer/svg/ImagePeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/LinePeer.js b/web2d/src/main/javascript/peer/svg/LinePeer.js index eb5c1e74..31e4b4d3 100644 --- a/web2d/src/main/javascript/peer/svg/LinePeer.js +++ b/web2d/src/main/javascript/peer/svg/LinePeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/PolyLinePeer.js b/web2d/src/main/javascript/peer/svg/PolyLinePeer.js index d67bb92b..5bc1a422 100644 --- a/web2d/src/main/javascript/peer/svg/PolyLinePeer.js +++ b/web2d/src/main/javascript/peer/svg/PolyLinePeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/RectPeer.js b/web2d/src/main/javascript/peer/svg/RectPeer.js index 226d0387..6ab69d12 100644 --- a/web2d/src/main/javascript/peer/svg/RectPeer.js +++ b/web2d/src/main/javascript/peer/svg/RectPeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/TahomaFont.js b/web2d/src/main/javascript/peer/svg/TahomaFont.js index aefd38e6..ccfc55a1 100644 --- a/web2d/src/main/javascript/peer/svg/TahomaFont.js +++ b/web2d/src/main/javascript/peer/svg/TahomaFont.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/TextPeer.js b/web2d/src/main/javascript/peer/svg/TextPeer.js index 42e17bcd..b7a57d9f 100644 --- a/web2d/src/main/javascript/peer/svg/TextPeer.js +++ b/web2d/src/main/javascript/peer/svg/TextPeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/TimesFont.js b/web2d/src/main/javascript/peer/svg/TimesFont.js index b35d5093..bf2082cb 100644 --- a/web2d/src/main/javascript/peer/svg/TimesFont.js +++ b/web2d/src/main/javascript/peer/svg/TimesFont.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/VerdanaFont.js b/web2d/src/main/javascript/peer/svg/VerdanaFont.js index 7166d2e3..9a814654 100644 --- a/web2d/src/main/javascript/peer/svg/VerdanaFont.js +++ b/web2d/src/main/javascript/peer/svg/VerdanaFont.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/svg/WorkspacePeer.js b/web2d/src/main/javascript/peer/svg/WorkspacePeer.js index c6eb792a..a4dbe361 100644 --- a/web2d/src/main/javascript/peer/svg/WorkspacePeer.js +++ b/web2d/src/main/javascript/peer/svg/WorkspacePeer.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/utils/EventUtils.js b/web2d/src/main/javascript/peer/utils/EventUtils.js index 2df86fef..c5fd5b70 100644 --- a/web2d/src/main/javascript/peer/utils/EventUtils.js +++ b/web2d/src/main/javascript/peer/utils/EventUtils.js @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/main/javascript/peer/utils/TransformUtils.js b/web2d/src/main/javascript/peer/utils/TransformUtils.js index 5e0603a4..493b600b 100644 --- a/web2d/src/main/javascript/peer/utils/TransformUtils.js +++ b/web2d/src/main/javascript/peer/utils/TransformUtils.js @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/web2d/src/test/javascript/render/utils.js b/web2d/src/test/javascript/render/utils.js index 03e92fb0..84490470 100755 --- a/web2d/src/test/javascript/render/utils.js +++ b/web2d/src/test/javascript/render/utils.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-editor/src/main/webapp/js/editor.js b/wise-editor/src/main/webapp/js/editor.js index 96bad655..886770e6 100644 --- a/wise-editor/src/main/webapp/js/editor.js +++ b/wise-editor/src/main/webapp/js/editor.js @@ -1,5 +1,5 @@ /* - * Copyright [2012] [wisemapping] + * Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManager.java b/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManager.java index b1c2c7bc..1d9072f2 100644 --- a/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManager.java +++ b/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManager.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManagerImpl.java b/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManagerImpl.java index eb72993c..a55f5ca0 100644 --- a/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManagerImpl.java +++ b/wise-webapp/src/main/java/com/wisemapping/dao/MindmapManagerImpl.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/dao/UserManager.java b/wise-webapp/src/main/java/com/wisemapping/dao/UserManager.java index 5efdbc51..0aaa6899 100644 --- a/wise-webapp/src/main/java/com/wisemapping/dao/UserManager.java +++ b/wise-webapp/src/main/java/com/wisemapping/dao/UserManager.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/dao/UserManagerImpl.java b/wise-webapp/src/main/java/com/wisemapping/dao/UserManagerImpl.java index f093cc45..3e153e54 100644 --- a/wise-webapp/src/main/java/com/wisemapping/dao/UserManagerImpl.java +++ b/wise-webapp/src/main/java/com/wisemapping/dao/UserManagerImpl.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/AccessDeniedSecurityException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/AccessDeniedSecurityException.java index adeddcba..33e02186 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/AccessDeniedSecurityException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/AccessDeniedSecurityException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/EditionSessionExpiredException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/EditionSessionExpiredException.java index a5c6658e..e22ed8dc 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/EditionSessionExpiredException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/EditionSessionExpiredException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/EmailNotExistsException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/EmailNotExistsException.java index 43c31aa2..2203e7a4 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/EmailNotExistsException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/EmailNotExistsException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/GoogleChromeFrameRequiredException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/GoogleChromeFrameRequiredException.java index 06b1750e..1f5c997e 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/GoogleChromeFrameRequiredException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/GoogleChromeFrameRequiredException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/ImportUnexpectedException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/ImportUnexpectedException.java index ce2830bb..b5e70d29 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/ImportUnexpectedException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/ImportUnexpectedException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/LockException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/LockException.java index cf6d18cf..f95d93dc 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/LockException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/LockException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/MapCouldNotFoundException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/MapCouldNotFoundException.java index 5b828768..c353ba01 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/MapCouldNotFoundException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/MapCouldNotFoundException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/MultipleSessionsOpenException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/MultipleSessionsOpenException.java index e88a6b94..58d7fe6d 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/MultipleSessionsOpenException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/MultipleSessionsOpenException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/SessionExpiredException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/SessionExpiredException.java index c400916c..de7426df 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/SessionExpiredException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/SessionExpiredException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/Severity.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/Severity.java index 1d02774c..4ddd6276 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/Severity.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/Severity.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/UnsupportedBrowserException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/UnsupportedBrowserException.java index 198e6fbf..68649ab2 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/UnsupportedBrowserException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/UnsupportedBrowserException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exceptions/WiseMappingException.java b/wise-webapp/src/main/java/com/wisemapping/exceptions/WiseMappingException.java index 8bc9581e..ac36df50 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exceptions/WiseMappingException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exceptions/WiseMappingException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportException.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportException.java index 920824a3..9ae466da 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportException.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java index 89d63571..3a3ed1b8 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java index ce95b955..64f7ef35 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/Exporter.java b/wise-webapp/src/main/java/com/wisemapping/exporter/Exporter.java index 7516a5fc..957ceee3 100755 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/Exporter.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/Exporter.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java index 3f6921f2..461c2cf2 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/filter/BrowserSupportInterceptor.java b/wise-webapp/src/main/java/com/wisemapping/filter/BrowserSupportInterceptor.java index eb1fda67..e0c3e0da 100644 --- a/wise-webapp/src/main/java/com/wisemapping/filter/BrowserSupportInterceptor.java +++ b/wise-webapp/src/main/java/com/wisemapping/filter/BrowserSupportInterceptor.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/filter/RequestPropertiesInterceptor.java b/wise-webapp/src/main/java/com/wisemapping/filter/RequestPropertiesInterceptor.java index 09eeeec3..819c2dfe 100644 --- a/wise-webapp/src/main/java/com/wisemapping/filter/RequestPropertiesInterceptor.java +++ b/wise-webapp/src/main/java/com/wisemapping/filter/RequestPropertiesInterceptor.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/filter/SupportedUserAgent.java b/wise-webapp/src/main/java/com/wisemapping/filter/SupportedUserAgent.java index 2e40ea1b..9b1d64bd 100644 --- a/wise-webapp/src/main/java/com/wisemapping/filter/SupportedUserAgent.java +++ b/wise-webapp/src/main/java/com/wisemapping/filter/SupportedUserAgent.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/filter/UserLocaleInterceptor.java b/wise-webapp/src/main/java/com/wisemapping/filter/UserLocaleInterceptor.java index 3db64877..ec861ed3 100644 --- a/wise-webapp/src/main/java/com/wisemapping/filter/UserLocaleInterceptor.java +++ b/wise-webapp/src/main/java/com/wisemapping/filter/UserLocaleInterceptor.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/ImportFormat.java b/wise-webapp/src/main/java/com/wisemapping/importer/ImportFormat.java index 24cd182e..2602c6da 100755 --- a/wise-webapp/src/main/java/com/wisemapping/importer/ImportFormat.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/ImportFormat.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/Importer.java b/wise-webapp/src/main/java/com/wisemapping/importer/Importer.java index fbae23e5..d7f73384 100755 --- a/wise-webapp/src/main/java/com/wisemapping/importer/Importer.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/Importer.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/ImporterException.java b/wise-webapp/src/main/java/com/wisemapping/importer/ImporterException.java index 6000ea75..d352ae92 100755 --- a/wise-webapp/src/main/java/com/wisemapping/importer/ImporterException.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/ImporterException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/ImporterFactory.java b/wise-webapp/src/main/java/com/wisemapping/importer/ImporterFactory.java index 7542edf1..a6e92469 100755 --- a/wise-webapp/src/main/java/com/wisemapping/importer/ImporterFactory.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/ImporterFactory.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/JaxbCDATAMarshaller.java b/wise-webapp/src/main/java/com/wisemapping/importer/JaxbCDATAMarshaller.java index f207a27c..4af30de6 100644 --- a/wise-webapp/src/main/java/com/wisemapping/importer/JaxbCDATAMarshaller.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/JaxbCDATAMarshaller.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/VersionNumber.java b/wise-webapp/src/main/java/com/wisemapping/importer/VersionNumber.java index f1f51a2e..ec94af46 100644 --- a/wise-webapp/src/main/java/com/wisemapping/importer/VersionNumber.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/VersionNumber.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindIconConverter.java b/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindIconConverter.java index 1d6ccef0..7df4975f 100755 --- a/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindIconConverter.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindIconConverter.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindImporter.java b/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindImporter.java index 93a318e3..db922c33 100755 --- a/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindImporter.java +++ b/wise-webapp/src/main/java/com/wisemapping/importer/freemind/FreemindImporter.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/mail/Mailer.java b/wise-webapp/src/main/java/com/wisemapping/mail/Mailer.java index c82ffa81..e935b577 100644 --- a/wise-webapp/src/main/java/com/wisemapping/mail/Mailer.java +++ b/wise-webapp/src/main/java/com/wisemapping/mail/Mailer.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/mail/NotificationService.java b/wise-webapp/src/main/java/com/wisemapping/mail/NotificationService.java index 5b75bbf9..617bf98a 100644 --- a/wise-webapp/src/main/java/com/wisemapping/mail/NotificationService.java +++ b/wise-webapp/src/main/java/com/wisemapping/mail/NotificationService.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/AccessAuditory.java b/wise-webapp/src/main/java/com/wisemapping/model/AccessAuditory.java index f72dd7fc..40073401 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/AccessAuditory.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/AccessAuditory.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/Collaboration.java b/wise-webapp/src/main/java/com/wisemapping/model/Collaboration.java index 6180248f..f12307fa 100644 --- a/wise-webapp/src/main/java/com/wisemapping/model/Collaboration.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/Collaboration.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/CollaborationEmail.java b/wise-webapp/src/main/java/com/wisemapping/model/CollaborationEmail.java index 50b1547d..7d84009e 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/CollaborationEmail.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/CollaborationEmail.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/CollaborationProperties.java b/wise-webapp/src/main/java/com/wisemapping/model/CollaborationProperties.java index bde2f1b2..94c2da8b 100644 --- a/wise-webapp/src/main/java/com/wisemapping/model/CollaborationProperties.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/CollaborationProperties.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/CollaborationRole.java b/wise-webapp/src/main/java/com/wisemapping/model/CollaborationRole.java index f9c64398..8b2c35e3 100644 --- a/wise-webapp/src/main/java/com/wisemapping/model/CollaborationRole.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/CollaborationRole.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/Collaborator.java b/wise-webapp/src/main/java/com/wisemapping/model/Collaborator.java index 383127f7..68a58d3d 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/Collaborator.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/Collaborator.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/Constants.java b/wise-webapp/src/main/java/com/wisemapping/model/Constants.java index 60723ac0..ec2b3321 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/Constants.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/Constants.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/Font.java b/wise-webapp/src/main/java/com/wisemapping/model/Font.java index 42ff8adf..e7747f83 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/Font.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/Font.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/IconFamily.java b/wise-webapp/src/main/java/com/wisemapping/model/IconFamily.java index 12234a97..dba4ab8a 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/IconFamily.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/IconFamily.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/MindMapCriteria.java b/wise-webapp/src/main/java/com/wisemapping/model/MindMapCriteria.java index 173260c3..5cd95de8 100644 --- a/wise-webapp/src/main/java/com/wisemapping/model/MindMapCriteria.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/MindMapCriteria.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/MindMapHistory.java b/wise-webapp/src/main/java/com/wisemapping/model/MindMapHistory.java index 2acfb829..fca391ba 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/MindMapHistory.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/MindMapHistory.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/Mindmap.java b/wise-webapp/src/main/java/com/wisemapping/model/Mindmap.java index 08ce57fe..7523bada 100644 --- a/wise-webapp/src/main/java/com/wisemapping/model/Mindmap.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/Mindmap.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcon.java b/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcon.java index baea7a6e..db269377 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcon.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcon.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcons.java b/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcons.java index 732bdcca..6284c7b2 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcons.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/MindmapIcons.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/ShapeStyle.java b/wise-webapp/src/main/java/com/wisemapping/model/ShapeStyle.java index 21afdaf2..afdb0a59 100755 --- a/wise-webapp/src/main/java/com/wisemapping/model/ShapeStyle.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/ShapeStyle.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/model/User.java b/wise-webapp/src/main/java/com/wisemapping/model/User.java index 81f54cf1..b3ef8aa3 100644 --- a/wise-webapp/src/main/java/com/wisemapping/model/User.java +++ b/wise-webapp/src/main/java/com/wisemapping/model/User.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/AccountController.java b/wise-webapp/src/main/java/com/wisemapping/rest/AccountController.java index 847819c6..dfc0871c 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/AccountController.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/AccountController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/AdminController.java b/wise-webapp/src/main/java/com/wisemapping/rest/AdminController.java index 212d5a00..6290026d 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/AdminController.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/AdminController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/DebugMappingJacksonHttpMessageConverter.java b/wise-webapp/src/main/java/com/wisemapping/rest/DebugMappingJacksonHttpMessageConverter.java index 13d90cbf..a4480be5 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/DebugMappingJacksonHttpMessageConverter.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/DebugMappingJacksonHttpMessageConverter.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/JsonHttpMessageNotReadableException.java b/wise-webapp/src/main/java/com/wisemapping/rest/JsonHttpMessageNotReadableException.java index c58ba70c..a8042111 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/JsonHttpMessageNotReadableException.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/JsonHttpMessageNotReadableException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/MindmapController.java b/wise-webapp/src/main/java/com/wisemapping/rest/MindmapController.java index 4c9bbeed..2c5c837f 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/MindmapController.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/MindmapController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/MindmapFilter.java b/wise-webapp/src/main/java/com/wisemapping/rest/MindmapFilter.java index 12ea81d8..3be72bca 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/MindmapFilter.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/MindmapFilter.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java b/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java index e868781b..28d3f867 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/ValidationException.java b/wise-webapp/src/main/java/com/wisemapping/rest/ValidationException.java index 469b6585..bcaea1d1 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/ValidationException.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/ValidationException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaboration.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaboration.java index 47c4724f..0db7bda2 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaboration.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaboration.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborationList.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborationList.java index 8f5f4cab..55bf3315 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborationList.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborationList.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborator.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborator.java index 910fc873..725fd926 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborator.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestCollaborator.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestErrors.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestErrors.java index 792bb23f..004d9baf 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestErrors.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestErrors.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLockInfo.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLockInfo.java index ccb88f9f..fb856aaf 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLockInfo.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLockInfo.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLogItem.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLogItem.java index 16340061..8a63dc12 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLogItem.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestLogItem.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmap.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmap.java index f90506c2..34797bbe 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmap.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmap.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistory.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistory.java index 64afc8e3..6f9515c0 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistory.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistory.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistoryList.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistoryList.java index 0f8078b4..4036eefb 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistoryList.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapHistoryList.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapInfo.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapInfo.java index 1ccdc20a..171f15ea 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapInfo.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapInfo.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapList.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapList.java index e45f9ecf..c426d082 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapList.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestMindmapList.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestUser.java b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestUser.java index a74f8972..2e86f3f4 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/model/RestUser.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/model/RestUser.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/view/ImportTransformationView.java b/wise-webapp/src/main/java/com/wisemapping/rest/view/ImportTransformationView.java index e5ff71e2..ef4d8574 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/view/ImportTransformationView.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/view/ImportTransformationView.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java b/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java index 3b2766bc..69ff3b3f 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/AuthenticationProvider.java b/wise-webapp/src/main/java/com/wisemapping/security/AuthenticationProvider.java index 364a789f..b4626b3f 100644 --- a/wise-webapp/src/main/java/com/wisemapping/security/AuthenticationProvider.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/AuthenticationProvider.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/CustomPasswordEncoder.java b/wise-webapp/src/main/java/com/wisemapping/security/CustomPasswordEncoder.java index 3e3751ae..e5582b27 100755 --- a/wise-webapp/src/main/java/com/wisemapping/security/CustomPasswordEncoder.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/CustomPasswordEncoder.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/UserDetails.java b/wise-webapp/src/main/java/com/wisemapping/security/UserDetails.java index 2a7c5d15..5abef974 100644 --- a/wise-webapp/src/main/java/com/wisemapping/security/UserDetails.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/UserDetails.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/UserDetailsService.java b/wise-webapp/src/main/java/com/wisemapping/security/UserDetailsService.java index 6af697b9..403e093f 100644 --- a/wise-webapp/src/main/java/com/wisemapping/security/UserDetailsService.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/UserDetailsService.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/Utils.java b/wise-webapp/src/main/java/com/wisemapping/security/Utils.java index 1c7f1225..e2c208d8 100644 --- a/wise-webapp/src/main/java/com/wisemapping/security/Utils.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/Utils.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/aop/BaseSecurityAdvice.java b/wise-webapp/src/main/java/com/wisemapping/security/aop/BaseSecurityAdvice.java index edb8e5a4..4a089628 100755 --- a/wise-webapp/src/main/java/com/wisemapping/security/aop/BaseSecurityAdvice.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/aop/BaseSecurityAdvice.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/aop/UpdateSecurityAdvise.java b/wise-webapp/src/main/java/com/wisemapping/security/aop/UpdateSecurityAdvise.java index 4e562788..aa1626e4 100755 --- a/wise-webapp/src/main/java/com/wisemapping/security/aop/UpdateSecurityAdvise.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/aop/UpdateSecurityAdvise.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/security/aop/ViewBaseSecurityAdvise.java b/wise-webapp/src/main/java/com/wisemapping/security/aop/ViewBaseSecurityAdvise.java index 7504d812..df1bb75b 100755 --- a/wise-webapp/src/main/java/com/wisemapping/security/aop/ViewBaseSecurityAdvise.java +++ b/wise-webapp/src/main/java/com/wisemapping/security/aop/ViewBaseSecurityAdvise.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/CollaborationException.java b/wise-webapp/src/main/java/com/wisemapping/service/CollaborationException.java index 0e459a7d..56b29327 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/CollaborationException.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/CollaborationException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/HibernateAppListener.java b/wise-webapp/src/main/java/com/wisemapping/service/HibernateAppListener.java index 3f25e2cb..8b323c1e 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/HibernateAppListener.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/HibernateAppListener.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/HibernateUtil.java b/wise-webapp/src/main/java/com/wisemapping/service/HibernateUtil.java index c76a5075..fb7e395e 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/HibernateUtil.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/HibernateUtil.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/InvalidActivationCodeException.java b/wise-webapp/src/main/java/com/wisemapping/service/InvalidActivationCodeException.java index 9a7f48d9..723aef92 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/InvalidActivationCodeException.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/InvalidActivationCodeException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/InvalidAuthSchemaException.java b/wise-webapp/src/main/java/com/wisemapping/service/InvalidAuthSchemaException.java index d812c146..5acd30a7 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/InvalidAuthSchemaException.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/InvalidAuthSchemaException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/InvalidUserEmailException.java b/wise-webapp/src/main/java/com/wisemapping/service/InvalidUserEmailException.java index 013691dd..539d8cf1 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/InvalidUserEmailException.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/InvalidUserEmailException.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/LockInfo.java b/wise-webapp/src/main/java/com/wisemapping/service/LockInfo.java index 5a998b8a..497e0a14 100644 --- a/wise-webapp/src/main/java/com/wisemapping/service/LockInfo.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/LockInfo.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/LockManager.java b/wise-webapp/src/main/java/com/wisemapping/service/LockManager.java index 9a5be030..33ae24b1 100644 --- a/wise-webapp/src/main/java/com/wisemapping/service/LockManager.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/LockManager.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/LockManagerImpl.java b/wise-webapp/src/main/java/com/wisemapping/service/LockManagerImpl.java index 3d1d3fca..84a2badf 100644 --- a/wise-webapp/src/main/java/com/wisemapping/service/LockManagerImpl.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/LockManagerImpl.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/MindmapService.java b/wise-webapp/src/main/java/com/wisemapping/service/MindmapService.java index 94dca87c..c88bcb47 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/MindmapService.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/MindmapService.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/MindmapServiceImpl.java b/wise-webapp/src/main/java/com/wisemapping/service/MindmapServiceImpl.java index aa858163..bc99fcd9 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/MindmapServiceImpl.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/MindmapServiceImpl.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/UserService.java b/wise-webapp/src/main/java/com/wisemapping/service/UserService.java index 95451445..5424ecdd 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/UserService.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/UserService.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/service/UserServiceImpl.java b/wise-webapp/src/main/java/com/wisemapping/service/UserServiceImpl.java index f9a314cb..5b99e987 100755 --- a/wise-webapp/src/main/java/com/wisemapping/service/UserServiceImpl.java +++ b/wise-webapp/src/main/java/com/wisemapping/service/UserServiceImpl.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/util/JAXBUtils.java b/wise-webapp/src/main/java/com/wisemapping/util/JAXBUtils.java index 65b04c61..84a94028 100755 --- a/wise-webapp/src/main/java/com/wisemapping/util/JAXBUtils.java +++ b/wise-webapp/src/main/java/com/wisemapping/util/JAXBUtils.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/util/ZipUtils.java b/wise-webapp/src/main/java/com/wisemapping/util/ZipUtils.java index c2707515..4fab1a60 100755 --- a/wise-webapp/src/main/java/com/wisemapping/util/ZipUtils.java +++ b/wise-webapp/src/main/java/com/wisemapping/util/ZipUtils.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/validator/MapInfoValidator.java b/wise-webapp/src/main/java/com/wisemapping/validator/MapInfoValidator.java index e571df2e..263f6225 100755 --- a/wise-webapp/src/main/java/com/wisemapping/validator/MapInfoValidator.java +++ b/wise-webapp/src/main/java/com/wisemapping/validator/MapInfoValidator.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/validator/Messages.java b/wise-webapp/src/main/java/com/wisemapping/validator/Messages.java index 4dd0cba0..da2a8c9d 100644 --- a/wise-webapp/src/main/java/com/wisemapping/validator/Messages.java +++ b/wise-webapp/src/main/java/com/wisemapping/validator/Messages.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/validator/UserValidator.java b/wise-webapp/src/main/java/com/wisemapping/validator/UserValidator.java index 0e58eff3..6914b83f 100644 --- a/wise-webapp/src/main/java/com/wisemapping/validator/UserValidator.java +++ b/wise-webapp/src/main/java/com/wisemapping/validator/UserValidator.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/validator/Utils.java b/wise-webapp/src/main/java/com/wisemapping/validator/Utils.java index 3c4fbe29..fd329dfa 100644 --- a/wise-webapp/src/main/java/com/wisemapping/validator/Utils.java +++ b/wise-webapp/src/main/java/com/wisemapping/validator/Utils.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/validator/ValidatorUtils.java b/wise-webapp/src/main/java/com/wisemapping/validator/ValidatorUtils.java index 597c3e70..076db874 100755 --- a/wise-webapp/src/main/java/com/wisemapping/validator/ValidatorUtils.java +++ b/wise-webapp/src/main/java/com/wisemapping/validator/ValidatorUtils.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/view/ChangePasswordBean.java b/wise-webapp/src/main/java/com/wisemapping/view/ChangePasswordBean.java index 4a0bdaaa..d5df6b53 100644 --- a/wise-webapp/src/main/java/com/wisemapping/view/ChangePasswordBean.java +++ b/wise-webapp/src/main/java/com/wisemapping/view/ChangePasswordBean.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/view/CollaboratorBean.java b/wise-webapp/src/main/java/com/wisemapping/view/CollaboratorBean.java index f667617b..f75ddb06 100755 --- a/wise-webapp/src/main/java/com/wisemapping/view/CollaboratorBean.java +++ b/wise-webapp/src/main/java/com/wisemapping/view/CollaboratorBean.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/view/MindMapBean.java b/wise-webapp/src/main/java/com/wisemapping/view/MindMapBean.java index d568a657..70a17740 100644 --- a/wise-webapp/src/main/java/com/wisemapping/view/MindMapBean.java +++ b/wise-webapp/src/main/java/com/wisemapping/view/MindMapBean.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/view/MindMapInfoBean.java b/wise-webapp/src/main/java/com/wisemapping/view/MindMapInfoBean.java index 48d6f448..dcb348bf 100644 --- a/wise-webapp/src/main/java/com/wisemapping/view/MindMapInfoBean.java +++ b/wise-webapp/src/main/java/com/wisemapping/view/MindMapInfoBean.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/view/UserBean.java b/wise-webapp/src/main/java/com/wisemapping/view/UserBean.java index 10d46cff..125f323e 100644 --- a/wise-webapp/src/main/java/com/wisemapping/view/UserBean.java +++ b/wise-webapp/src/main/java/com/wisemapping/view/UserBean.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/webmvc/ApplicationContextInitializer.java b/wise-webapp/src/main/java/com/wisemapping/webmvc/ApplicationContextInitializer.java index 91d2cfef..d65e3549 100644 --- a/wise-webapp/src/main/java/com/wisemapping/webmvc/ApplicationContextInitializer.java +++ b/wise-webapp/src/main/java/com/wisemapping/webmvc/ApplicationContextInitializer.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/webmvc/ExtensionsController.java b/wise-webapp/src/main/java/com/wisemapping/webmvc/ExtensionsController.java index 17299f6e..3426c9af 100644 --- a/wise-webapp/src/main/java/com/wisemapping/webmvc/ExtensionsController.java +++ b/wise-webapp/src/main/java/com/wisemapping/webmvc/ExtensionsController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/webmvc/LoginController.java b/wise-webapp/src/main/java/com/wisemapping/webmvc/LoginController.java index 81ef2f9b..0795a8e1 100644 --- a/wise-webapp/src/main/java/com/wisemapping/webmvc/LoginController.java +++ b/wise-webapp/src/main/java/com/wisemapping/webmvc/LoginController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/webmvc/MindmapController.java b/wise-webapp/src/main/java/com/wisemapping/webmvc/MindmapController.java index 76118ae9..59260753 100644 --- a/wise-webapp/src/main/java/com/wisemapping/webmvc/MindmapController.java +++ b/wise-webapp/src/main/java/com/wisemapping/webmvc/MindmapController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/webmvc/PublicPagesController.java b/wise-webapp/src/main/java/com/wisemapping/webmvc/PublicPagesController.java index 80bb3b2c..e2fce9bd 100644 --- a/wise-webapp/src/main/java/com/wisemapping/webmvc/PublicPagesController.java +++ b/wise-webapp/src/main/java/com/wisemapping/webmvc/PublicPagesController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/main/java/com/wisemapping/webmvc/UsersController.java b/wise-webapp/src/main/java/com/wisemapping/webmvc/UsersController.java index 20104c2f..91903854 100644 --- a/wise-webapp/src/main/java/com/wisemapping/webmvc/UsersController.java +++ b/wise-webapp/src/main/java/com/wisemapping/webmvc/UsersController.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAccountITCase.java b/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAccountITCase.java index 114dea9c..c6ea9057 100644 --- a/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAccountITCase.java +++ b/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAccountITCase.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the diff --git a/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAdminITCase.java b/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAdminITCase.java index 7204d500..28877be4 100644 --- a/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAdminITCase.java +++ b/wise-webapp/src/test/java/com/wisemapping/test/rest/RestAdminITCase.java @@ -1,5 +1,5 @@ /* -* Copyright [2012] [wisemapping] +* Copyright [2015] [wisemapping] * * Licensed under WiseMapping Public License, Version 1.0 (the "License"). * It is basically the Apache License, Version 2.0 (the "License") plus the