This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository mum. See http://git.chorem.org/mum.git commit 24dba1103a87c0b2809e8f93cd4f6e652b8b4468 Author: Alexis Guilbaud <guilbaud@codelutin.com> Date: Tue Jul 7 11:39:32 2015 +0200 added AGPL header on javascript files --- static/js/controllers/dashboardCtrl.js | 18 ++++++++++++++++++ static/js/controllers/headCtrl.js | 18 ++++++++++++++++++ static/js/controllers/hostPageCtrl.js | 18 ++++++++++++++++++ static/js/controllers/notificationsCtrl.js | 18 ++++++++++++++++++ static/js/controllers/scanCtrl.js | 18 ++++++++++++++++++ static/js/controllers/settingsCtrl.js | 18 ++++++++++++++++++ static/js/controllers/statsCtrl.js | 18 ++++++++++++++++++ static/js/controllers/usersCtrl.js | 18 ++++++++++++++++++ static/js/mumApp.js | 18 ++++++++++++++++++ 9 files changed, 162 insertions(+) diff --git a/static/js/controllers/dashboardCtrl.js b/static/js/controllers/dashboardCtrl.js index 41c7e68..0916bab 100644 --- a/static/js/controllers/dashboardCtrl.js +++ b/static/js/controllers/dashboardCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('dashboardCtrl', function ($scope, $routeParams, $location, $rootScope, $modal, $timeout, DataHosts) { /* Host view functions */ diff --git a/static/js/controllers/headCtrl.js b/static/js/controllers/headCtrl.js index 2bb9a71..7a0fffe 100644 --- a/static/js/controllers/headCtrl.js +++ b/static/js/controllers/headCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('headCtrl', function ($scope, $rootScope, toastr, $interval, $routeParams, $location, $modal, DataHosts) { // init diff --git a/static/js/controllers/hostPageCtrl.js b/static/js/controllers/hostPageCtrl.js index 5ace7f3..295dfb9 100644 --- a/static/js/controllers/hostPageCtrl.js +++ b/static/js/controllers/hostPageCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('hostPageCtrl', function ($scope, $rootScope, $route, $routeParams, $location, $modal, $timeout) { $scope.loaded = false; // indicates if this is the first loading of the page diff --git a/static/js/controllers/notificationsCtrl.js b/static/js/controllers/notificationsCtrl.js index bcf5ccc..e77572c 100644 --- a/static/js/controllers/notificationsCtrl.js +++ b/static/js/controllers/notificationsCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('notificationsCtrl', function ($scope, $rootScope, $modal, $route, $timeout, DataHosts) { $scope.hosts = DataHosts.Items; /* [ { diff --git a/static/js/controllers/scanCtrl.js b/static/js/controllers/scanCtrl.js index 09830bd..489e831 100644 --- a/static/js/controllers/scanCtrl.js +++ b/static/js/controllers/scanCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('scanCtrl', function ($scope, $rootScope, $routeParams, $timeout) { // Concerning the scan form diff --git a/static/js/controllers/settingsCtrl.js b/static/js/controllers/settingsCtrl.js index 3489193..110c063 100644 --- a/static/js/controllers/settingsCtrl.js +++ b/static/js/controllers/settingsCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('settingsCtrl', function ($scope, $rootScope, $modal, $timeout) { $scope.settings = {}; // { mod_name: {'check_frequency': 60, 'minor_limit': True, 'activated': False, 'major_limit': False, 'block': 'software', 'unit': 'bool'}} diff --git a/static/js/controllers/statsCtrl.js b/static/js/controllers/statsCtrl.js index 14d1661..31aa46b 100644 --- a/static/js/controllers/statsCtrl.js +++ b/static/js/controllers/statsCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('statsCtrl', function ($scope, $rootScope, $timeout, DataHosts) { $scope.host_list = []; for (var i = 0; i < DataHosts.Items.length; i++) { diff --git a/static/js/controllers/usersCtrl.js b/static/js/controllers/usersCtrl.js index 42bb483..58481f2 100644 --- a/static/js/controllers/usersCtrl.js +++ b/static/js/controllers/usersCtrl.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + mumApp.controller('usersCtrl', function ($scope, $rootScope, $route, $timeout) { $scope.users = {}; diff --git a/static/js/mumApp.js b/static/js/mumApp.js index 69f0db7..7e180a5 100644 --- a/static/js/mumApp.js +++ b/static/js/mumApp.js @@ -1,3 +1,21 @@ + +/* +Copyright (C) 2015 Code Lutin + + 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/>. +*/ + var mumApp = angular.module('mumApp', ['angularFileUpload', 'angularCharts', 'ngRoute', 'ui.bootstrap', 'toastr', 'ui.select', 'ngSanitize']); mumApp.factory('DataHosts', function () { -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.