From f3fd704b91dd83e8812907150788559a9bf54f2a Mon Sep 17 00:00:00 2001 From: Markus Grigull Date: Wed, 20 Jul 2016 12:25:51 +0200 Subject: [PATCH] Add comment header to files --- app/adapters/application.js | 9 +++++++++ app/app.js | 9 +++++++++ app/authenticators/custom.js | 9 +++++++++ app/authorizers/custom.js | 9 +++++++++ app/components/draggable-dropzone.js | 9 +++++++++ app/components/draggable-item.js | 9 +++++++++ app/components/plot-abstract.js | 9 +++++++++ app/components/plot-chart.js | 9 +++++++++ app/components/plot-container.js | 9 +++++++++ app/components/plot-table.js | 9 +++++++++ app/components/plot-value.js | 9 +++++++++ app/controllers/application.js | 9 +++++++++ app/controllers/login.js | 9 +++++++++ app/controllers/me.js | 9 +++++++++ app/controllers/project/delete.js | 9 +++++++++ app/controllers/project/edit.js | 9 +++++++++ app/controllers/project/index.js | 9 +++++++++ app/controllers/project/new.js | 9 +++++++++ app/controllers/user/delete.js | 9 +++++++++ app/controllers/user/edit.js | 9 +++++++++ app/controllers/user/index.js | 9 +++++++++ app/controllers/user/new.js | 9 +++++++++ app/controllers/visualization/delete.js | 9 +++++++++ app/controllers/visualization/edit.js | 9 +++++++++ app/controllers/visualization/index.js | 9 +++++++++ app/mixins/draggable.js | 9 +++++++++ app/mixins/droppable.js | 9 +++++++++ app/mixins/resizable.js | 9 +++++++++ app/mixins/sortable.js | 9 +++++++++ app/models/plot.js | 9 +++++++++ app/models/project.js | 9 +++++++++ app/models/user.js | 9 +++++++++ app/models/visualization.js | 9 +++++++++ app/resolver.js | 9 +++++++++ app/router.js | 9 +++++++++ app/routes/404.js | 9 +++++++++ app/routes/application.js | 9 +++++++++ app/routes/index.js | 9 +++++++++ app/routes/login.js | 9 +++++++++ app/routes/logout.js | 9 +++++++++ app/routes/me.js | 9 +++++++++ app/routes/project/delete.js | 9 +++++++++ app/routes/project/edit.js | 9 +++++++++ app/routes/project/index.js | 9 +++++++++ app/routes/project/new.js | 9 +++++++++ app/routes/projects.js | 9 +++++++++ app/routes/user/delete.js | 9 +++++++++ app/routes/user/edit.js | 9 +++++++++ app/routes/user/index.js | 9 +++++++++ app/routes/user/new.js | 9 +++++++++ app/routes/visualization/delete.js | 9 +++++++++ app/routes/visualization/edit.js | 9 +++++++++ app/routes/visualization/index.js | 9 +++++++++ app/routes/visualization/new.js | 9 +++++++++ app/serializers/application.js | 9 +++++++++ app/serializers/project.js | 9 +++++++++ app/serializers/user.js | 9 +++++++++ app/serializers/visualization.js | 9 +++++++++ app/services/session-user.js | 9 +++++++++ app/styles/app.css | 9 +++++++++ app/styles/plots.css | 9 +++++++++ 61 files changed, 549 insertions(+) diff --git a/app/adapters/application.js b/app/adapters/application.js index 67eee3f..961ded9 100644 --- a/app/adapters/application.js +++ b/app/adapters/application.js @@ -1,3 +1,12 @@ +/** + * File: application.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import RESTAdapter from 'ember-data/adapters/rest'; import DataAdapterMixin from 'ember-simple-auth/mixins/data-adapter-mixin'; import ENV from '../config/environment'; diff --git a/app/app.js b/app/app.js index 7266b19..01d4b13 100644 --- a/app/app.js +++ b/app/app.js @@ -1,3 +1,12 @@ +/** + * File: app.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import Resolver from './resolver'; import loadInitializers from 'ember-load-initializers'; diff --git a/app/authenticators/custom.js b/app/authenticators/custom.js index e05c9d1..017b976 100644 --- a/app/authenticators/custom.js +++ b/app/authenticators/custom.js @@ -1,3 +1,12 @@ +/** + * File: custom.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import Base from 'ember-simple-auth/authenticators/base'; import ENV from '../config/environment'; diff --git a/app/authorizers/custom.js b/app/authorizers/custom.js index e443104..2711f0d 100644 --- a/app/authorizers/custom.js +++ b/app/authorizers/custom.js @@ -1,3 +1,12 @@ +/** + * File: custom.js + * Author: Markus Grigull + * Date: 04.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import Base from 'ember-simple-auth/authorizers/base'; diff --git a/app/components/draggable-dropzone.js b/app/components/draggable-dropzone.js index 635485e..d0497dc 100644 --- a/app/components/draggable-dropzone.js +++ b/app/components/draggable-dropzone.js @@ -1,3 +1,12 @@ +/** + * File: draggable-dropzone.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; var { set } = Ember; diff --git a/app/components/draggable-item.js b/app/components/draggable-item.js index 841bd98..087c843 100644 --- a/app/components/draggable-item.js +++ b/app/components/draggable-item.js @@ -1,3 +1,12 @@ +/** + * File: draggable-item.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; var { get } = Ember; diff --git a/app/components/plot-abstract.js b/app/components/plot-abstract.js index 933d85f..47f1dd7 100644 --- a/app/components/plot-abstract.js +++ b/app/components/plot-abstract.js @@ -1,3 +1,12 @@ +/** + * File: plot-abstract.js + * Author: Markus Grigull + * Date: 15.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import Resizable from '../mixins/resizable'; import Draggable from '../mixins/draggable'; diff --git a/app/components/plot-chart.js b/app/components/plot-chart.js index 926b613..354418b 100644 --- a/app/components/plot-chart.js +++ b/app/components/plot-chart.js @@ -1,3 +1,12 @@ +/** + * File: plot-chart.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Component.extend({ diff --git a/app/components/plot-container.js b/app/components/plot-container.js index 3dfba34..de61a77 100644 --- a/app/components/plot-container.js +++ b/app/components/plot-container.js @@ -1,3 +1,12 @@ +/** + * File: plot-container.js + * Author: Markus Grigull + * Date: 05.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Component.extend({ diff --git a/app/components/plot-table.js b/app/components/plot-table.js index be84e2e..07758c4 100644 --- a/app/components/plot-table.js +++ b/app/components/plot-table.js @@ -1,3 +1,12 @@ +/** + * File: plot-table.js + * Author: Markus Grigull + * Date: 05.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import PlotAbstract from './plot-abstract'; export default PlotAbstract.extend({ diff --git a/app/components/plot-value.js b/app/components/plot-value.js index e36977c..2c91b59 100644 --- a/app/components/plot-value.js +++ b/app/components/plot-value.js @@ -1,3 +1,12 @@ +/** + * File: plot-value.js + * Author: Markus Grigull + * Date: 04.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import PlotAbstract from './plot-abstract'; export default PlotAbstract.extend({ diff --git a/app/controllers/application.js b/app/controllers/application.js index 932ac68..37164b4 100644 --- a/app/controllers/application.js +++ b/app/controllers/application.js @@ -1,3 +1,12 @@ +/** + * File: application.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/login.js b/app/controllers/login.js index c7758d6..699eaa1 100644 --- a/app/controllers/login.js +++ b/app/controllers/login.js @@ -1,3 +1,12 @@ +/** + * File: login.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/me.js b/app/controllers/me.js index eac3232..0374c40 100644 --- a/app/controllers/me.js +++ b/app/controllers/me.js @@ -1,3 +1,12 @@ +/** + * File: me.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/project/delete.js b/app/controllers/project/delete.js index 212648b..b9b6c96 100644 --- a/app/controllers/project/delete.js +++ b/app/controllers/project/delete.js @@ -1,3 +1,12 @@ +/** + * File: delete.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/project/edit.js b/app/controllers/project/edit.js index dc98e3f..574a5ff 100644 --- a/app/controllers/project/edit.js +++ b/app/controllers/project/edit.js @@ -1,3 +1,12 @@ +/** + * File: edit.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/project/index.js b/app/controllers/project/index.js index e949d77..1437734 100644 --- a/app/controllers/project/index.js +++ b/app/controllers/project/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/project/new.js b/app/controllers/project/new.js index c786f7e..500e75e 100644 --- a/app/controllers/project/new.js +++ b/app/controllers/project/new.js @@ -1,3 +1,12 @@ +/** + * File: new.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/user/delete.js b/app/controllers/user/delete.js index ef1e8a0..19046dc 100644 --- a/app/controllers/user/delete.js +++ b/app/controllers/user/delete.js @@ -1,3 +1,12 @@ +/** + * File: delete.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/user/edit.js b/app/controllers/user/edit.js index e47d437..b44440a 100644 --- a/app/controllers/user/edit.js +++ b/app/controllers/user/edit.js @@ -1,3 +1,12 @@ +/** + * File: edit.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/user/index.js b/app/controllers/user/index.js index 0b0c945..6a44737 100644 --- a/app/controllers/user/index.js +++ b/app/controllers/user/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/user/new.js b/app/controllers/user/new.js index 3da5896..249f448 100644 --- a/app/controllers/user/new.js +++ b/app/controllers/user/new.js @@ -1,3 +1,12 @@ +/** + * File: new.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/visualization/delete.js b/app/controllers/visualization/delete.js index 14db97b..99bb874 100644 --- a/app/controllers/visualization/delete.js +++ b/app/controllers/visualization/delete.js @@ -1,3 +1,12 @@ +/** + * File: delete.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/visualization/edit.js b/app/controllers/visualization/edit.js index c1926eb..063bd58 100644 --- a/app/controllers/visualization/edit.js +++ b/app/controllers/visualization/edit.js @@ -1,3 +1,12 @@ +/** + * File: edit.js + * Author: Markus Grigull + * Date: 05.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/controllers/visualization/index.js b/app/controllers/visualization/index.js index 55ff9aa..bfe1beb 100644 --- a/app/controllers/visualization/index.js +++ b/app/controllers/visualization/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Controller.extend({ diff --git a/app/mixins/draggable.js b/app/mixins/draggable.js index 1e89d90..811b31e 100644 --- a/app/mixins/draggable.js +++ b/app/mixins/draggable.js @@ -1,3 +1,12 @@ +/** + * File: draggable.js + * Author: Markus Grigull + * Date: 15.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Mixin.create({ diff --git a/app/mixins/droppable.js b/app/mixins/droppable.js index eb1c57a..7e557e8 100644 --- a/app/mixins/droppable.js +++ b/app/mixins/droppable.js @@ -1,3 +1,12 @@ +/** + * File: droppable.js + * Author: Markus Grigull + * Date: 15.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Mixin.create({ diff --git a/app/mixins/resizable.js b/app/mixins/resizable.js index 7a102d1..2c67704 100644 --- a/app/mixins/resizable.js +++ b/app/mixins/resizable.js @@ -1,3 +1,12 @@ +/** + * File: resizable.js + * Author: Markus Grigull + * Date: 12.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Mixin.create({ diff --git a/app/mixins/sortable.js b/app/mixins/sortable.js index 603dfde..f7633a1 100644 --- a/app/mixins/sortable.js +++ b/app/mixins/sortable.js @@ -1,3 +1,12 @@ +/** + * File: sortable.js + * Author: Markus Grigull + * Date: 15.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Mixin.create({ diff --git a/app/models/plot.js b/app/models/plot.js index ae6c0f3..e7dd0ba 100644 --- a/app/models/plot.js +++ b/app/models/plot.js @@ -1,3 +1,12 @@ +/** + * File: plot.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Model from 'ember-data/model'; import attr from 'ember-data/attr'; import { belongsTo } from 'ember-data/relationships'; diff --git a/app/models/project.js b/app/models/project.js index 2ff9490..9c16f6d 100644 --- a/app/models/project.js +++ b/app/models/project.js @@ -1,3 +1,12 @@ +/** + * File: project.js + * Author: Markus Grigull + * Date: 04.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Model from 'ember-data/model'; import attr from 'ember-data/attr'; import { hasMany, belongsTo } from 'ember-data/relationships'; diff --git a/app/models/user.js b/app/models/user.js index bc61b02..2015875 100644 --- a/app/models/user.js +++ b/app/models/user.js @@ -1,3 +1,12 @@ +/** + * File: user.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Model from 'ember-data/model'; import attr from 'ember-data/attr'; import { hasMany } from 'ember-data/relationships'; diff --git a/app/models/visualization.js b/app/models/visualization.js index 016fb6e..659ecb0 100644 --- a/app/models/visualization.js +++ b/app/models/visualization.js @@ -1,3 +1,12 @@ +/** + * File: visualization.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Model from 'ember-data/model'; import attr from 'ember-data/attr'; import { belongsTo, hasMany } from 'ember-data/relationships'; diff --git a/app/resolver.js b/app/resolver.js index 2fb563d..50a19ab 100644 --- a/app/resolver.js +++ b/app/resolver.js @@ -1,3 +1,12 @@ +/** + * File: resolver.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Resolver from 'ember-resolver'; export default Resolver; diff --git a/app/router.js b/app/router.js index 03ad117..a2e4e7a 100644 --- a/app/router.js +++ b/app/router.js @@ -1,3 +1,12 @@ +/** + * File: router.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import config from './config/environment'; diff --git a/app/routes/404.js b/app/routes/404.js index 26d9f31..b93ac29 100644 --- a/app/routes/404.js +++ b/app/routes/404.js @@ -1,3 +1,12 @@ +/** + * File: 404.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; export default Ember.Route.extend({ diff --git a/app/routes/application.js b/app/routes/application.js index 0596a73..e68dd55 100644 --- a/app/routes/application.js +++ b/app/routes/application.js @@ -1,3 +1,12 @@ +/** + * File: application.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import ApplicationRouteMixin from 'ember-simple-auth/mixins/application-route-mixin'; diff --git a/app/routes/index.js b/app/routes/index.js index 30e4e30..e4d4e02 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/login.js b/app/routes/login.js index 29e193c..21647e9 100644 --- a/app/routes/login.js +++ b/app/routes/login.js @@ -1,3 +1,12 @@ +/** + * File: login.js + * Author: Markus Grigull + * Date: 25.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import UnauthenticatedRouteMixin from 'ember-simple-auth/mixins/unauthenticated-route-mixin'; diff --git a/app/routes/logout.js b/app/routes/logout.js index 52daa5f..2f18620 100644 --- a/app/routes/logout.js +++ b/app/routes/logout.js @@ -1,3 +1,12 @@ +/** + * File: logout.js + * Author: Markus Grigull + * Date: 05.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/me.js b/app/routes/me.js index b8e23aa..d9e456c 100644 --- a/app/routes/me.js +++ b/app/routes/me.js @@ -1,3 +1,12 @@ +/** + * File: me.js + * Author: Markus Grigull + * Date: 27.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/project/delete.js b/app/routes/project/delete.js index b603665..ec3a964 100644 --- a/app/routes/project/delete.js +++ b/app/routes/project/delete.js @@ -1,3 +1,12 @@ +/** + * File: delete.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/project/edit.js b/app/routes/project/edit.js index b603665..6e52fe9 100644 --- a/app/routes/project/edit.js +++ b/app/routes/project/edit.js @@ -1,3 +1,12 @@ +/** + * File: edit.js + * Author: Markus Grigull + * Date: 05.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/project/index.js b/app/routes/project/index.js index b603665..10bd7ed 100644 --- a/app/routes/project/index.js +++ b/app/routes/project/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/project/new.js b/app/routes/project/new.js index 30e4e30..38e760a 100644 --- a/app/routes/project/new.js +++ b/app/routes/project/new.js @@ -1,3 +1,12 @@ +/** + * File: new.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/projects.js b/app/routes/projects.js index c992c7d..2908aa4 100644 --- a/app/routes/projects.js +++ b/app/routes/projects.js @@ -1,3 +1,12 @@ +/** + * File: project.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/user/delete.js b/app/routes/user/delete.js index 7fa7c6a..8ac9611 100644 --- a/app/routes/user/delete.js +++ b/app/routes/user/delete.js @@ -1,3 +1,12 @@ +/** + * File: delete.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/user/edit.js b/app/routes/user/edit.js index 7fa7c6a..3918d6d 100644 --- a/app/routes/user/edit.js +++ b/app/routes/user/edit.js @@ -1,3 +1,12 @@ +/** + * File: edit.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/user/index.js b/app/routes/user/index.js index f4885a9..7d89a0c 100644 --- a/app/routes/user/index.js +++ b/app/routes/user/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/user/new.js b/app/routes/user/new.js index 30e4e30..38c73e5 100644 --- a/app/routes/user/new.js +++ b/app/routes/user/new.js @@ -1,3 +1,12 @@ +/** + * File: new.js + * Author: Markus Grigull + * Date: 11.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/visualization/delete.js b/app/routes/visualization/delete.js index 398a1e3..a6f5f3e 100644 --- a/app/routes/visualization/delete.js +++ b/app/routes/visualization/delete.js @@ -1,3 +1,12 @@ +/** + * File: delete.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/visualization/edit.js b/app/routes/visualization/edit.js index 398a1e3..e665763 100644 --- a/app/routes/visualization/edit.js +++ b/app/routes/visualization/edit.js @@ -1,3 +1,12 @@ +/** + * File: edit.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/visualization/index.js b/app/routes/visualization/index.js index 398a1e3..35a7beb 100644 --- a/app/routes/visualization/index.js +++ b/app/routes/visualization/index.js @@ -1,3 +1,12 @@ +/** + * File: index.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/routes/visualization/new.js b/app/routes/visualization/new.js index 30e4e30..12d85c7 100644 --- a/app/routes/visualization/new.js +++ b/app/routes/visualization/new.js @@ -1,3 +1,12 @@ +/** + * File: new.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin'; diff --git a/app/serializers/application.js b/app/serializers/application.js index 74ca08f..913c92f 100644 --- a/app/serializers/application.js +++ b/app/serializers/application.js @@ -1,3 +1,12 @@ +/** + * File: application.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import RESTSerializer from 'ember-data/serializers/rest'; import DS from 'ember-data'; diff --git a/app/serializers/project.js b/app/serializers/project.js index afe8e13..f0bd705 100644 --- a/app/serializers/project.js +++ b/app/serializers/project.js @@ -1,3 +1,12 @@ +/** + * File: project.js + * Author: Markus Grigull + * Date: 04.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import ApplicationSerializer from './application'; export default ApplicationSerializer.extend({ diff --git a/app/serializers/user.js b/app/serializers/user.js index 9bdf029..677cee0 100644 --- a/app/serializers/user.js +++ b/app/serializers/user.js @@ -1,3 +1,12 @@ +/** + * File: user.js + * Author: Markus Grigull + * Date: 27.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import ApplicationSerializer from './application'; export default ApplicationSerializer.extend({ diff --git a/app/serializers/visualization.js b/app/serializers/visualization.js index eade34d..d5e10b5 100644 --- a/app/serializers/visualization.js +++ b/app/serializers/visualization.js @@ -1,3 +1,12 @@ +/** + * File: visualization.js + * Author: Markus Grigull + * Date: 28.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import ApplicationSerializer from './application'; export default ApplicationSerializer.extend({ diff --git a/app/services/session-user.js b/app/services/session-user.js index 5f18491..ed736ac 100644 --- a/app/services/session-user.js +++ b/app/services/session-user.js @@ -1,3 +1,12 @@ +/** + * File: session-user.js + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + import Ember from 'ember'; const { diff --git a/app/styles/app.css b/app/styles/app.css index b2ae1e3..b07b286 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -1,3 +1,12 @@ +/** + * File: app.css + * Author: Markus Grigull + * Date: 26.06.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + @import 'plots.css'; * { diff --git a/app/styles/plots.css b/app/styles/plots.css index 061ed34..34ee417 100644 --- a/app/styles/plots.css +++ b/app/styles/plots.css @@ -1,3 +1,12 @@ +/** + * File: plots.css + * Author: Markus Grigull + * Date: 19.07.2016 + * Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC + * This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential. + * Unauthorized copying of this file, via any medium is strictly prohibited. + **********************************************************************************/ + /** * Component: plot-container */