summaryrefslogtreecommitdiff
path: root/src/client/view
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/view')
-rw-r--r--src/client/view/activity.js18
-rw-r--r--src/client/view/bubble.js18
-rw-r--r--src/client/view/cmd_bar.js18
-rw-r--r--src/client/view/completer.js18
-rw-r--r--src/client/view/filter_menu.js18
-rw-r--r--src/client/view/graph_view.js18
-rw-r--r--src/client/view/item_info.js18
-rw-r--r--src/client/view/layouts.js18
-rw-r--r--src/client/view/search.js18
-rw-r--r--src/client/view/selection.js18
-rw-r--r--src/client/view/svg_input.js18
-rw-r--r--src/client/view/textanalyser_input.js18
-rw-r--r--src/client/view/timeline.js18
-rw-r--r--src/client/view/toolbar__status.js18
14 files changed, 252 insertions, 0 deletions
diff --git a/src/client/view/activity.js b/src/client/view/activity.js
index be1ce7b0..93b106f1 100644
--- a/src/client/view/activity.js
+++ b/src/client/view/activity.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['jquery', 'underscore', 'Bacon', 'view/selection'],
function($, _, Bacon, selection) {
diff --git a/src/client/view/bubble.js b/src/client/view/bubble.js
index c9f45701..fa8811c9 100644
--- a/src/client/view/bubble.js
+++ b/src/client/view/bubble.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(["jquery", "Bacon"],
function ($, Bacon)
{
diff --git a/src/client/view/cmd_bar.js b/src/client/view/cmd_bar.js
index 31690850..d4214856 100644
--- a/src/client/view/cmd_bar.js
+++ b/src/client/view/cmd_bar.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
"use strict"
define(['jquery'],
diff --git a/src/client/view/completer.js b/src/client/view/completer.js
index 368690c3..4dc3bfc4 100644
--- a/src/client/view/completer.js
+++ b/src/client/view/completer.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(
['jquery', 'Bacon', 'util', 'consts'],
function($, Bacon, util, consts) {
diff --git a/src/client/view/filter_menu.js b/src/client/view/filter_menu.js
index d7e95a98..0c07a5a5 100644
--- a/src/client/view/filter_menu.js
+++ b/src/client/view/filter_menu.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['jquery'],
function($) {
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js
index 4d736f78..721e71ed 100644
--- a/src/client/view/graph_view.js
+++ b/src/client/view/graph_view.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
/* view of a single graph in a graph tree.
*
* Usage is of a two graph system:
diff --git a/src/client/view/item_info.js b/src/client/view/item_info.js
index 6f2466c9..c0631553 100644
--- a/src/client/view/item_info.js
+++ b/src/client/view/item_info.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['jquery', 'util', 'consts', 'model/diff', 'model/types', 'model/graph', 'messages'],
function($, util, consts, model_diff, model_types, graph, messages) {
diff --git a/src/client/view/layouts.js b/src/client/view/layouts.js
index a384ee4c..26e9ead4 100644
--- a/src/client/view/layouts.js
+++ b/src/client/view/layouts.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['consts', 'jquery', 'd3', 'underscore'],
function(consts, $, d3, _) {
diff --git a/src/client/view/search.js b/src/client/view/search.js
index c68f5098..41075c28 100644
--- a/src/client/view/search.js
+++ b/src/client/view/search.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['consts', 'view/completer', 'textanalysis', 'rz_core', 'view/selection'],
function(consts, completer, textanalysis, rz_core, selection)
{
diff --git a/src/client/view/selection.js b/src/client/view/selection.js
index ae3be8b2..ae4d3d45 100644
--- a/src/client/view/selection.js
+++ b/src/client/view/selection.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['Bacon', 'jquery', 'underscore', 'messages', 'util'],
function(Bacon, $, _, messages, util) {
diff --git a/src/client/view/svg_input.js b/src/client/view/svg_input.js
index 0e466c64..bb80aa65 100644
--- a/src/client/view/svg_input.js
+++ b/src/client/view/svg_input.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['jquery', 'Bacon', 'consts', 'model/diff', 'rz_bus', 'consts'],
function($, Bacon, consts, model_diff, rz_bus, consts)
{
diff --git a/src/client/view/textanalyser_input.js b/src/client/view/textanalyser_input.js
index 89602008..a8769d07 100644
--- a/src/client/view/textanalyser_input.js
+++ b/src/client/view/textanalyser_input.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
define(['jquery', 'Bacon', 'underscore', 'util', 'view/completer', 'rz_bus', 'textanalysis', 'consts'],
function($, Bacon, _, util, completer, rz_bus, textanalysis, consts)
{
diff --git a/src/client/view/timeline.js b/src/client/view/timeline.js
index 0a26c0a7..aac9de3c 100644
--- a/src/client/view/timeline.js
+++ b/src/client/view/timeline.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
"use strict"
define(['jquery', 'rz_core'],
diff --git a/src/client/view/toolbar__status.js b/src/client/view/toolbar__status.js
index b58aedab..400530a0 100644
--- a/src/client/view/toolbar__status.js
+++ b/src/client/view/toolbar__status.js
@@ -1,3 +1,21 @@
+/*
+ This file is part of rhizi, a collaborative knowledge graph editor.
+ Copyright (C) 2014-2015 Rhizi
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
"use strict"
/**