From 6c59d2cf40b894ad1d463afb021ca436cf2158ae Mon Sep 17 00:00:00 2001 From: Marius Hein Date: Mon, 2 Sep 2013 10:57:40 +0200 Subject: [PATCH] Fix icinga js license header refs #4622 --- doc/LICENSEHEAD | 6 ++--- public/js/icinga/componentLoader.js | 26 ++++++++++++++++++++-- public/js/icinga/componentRegistry.js | 26 ++++++++++++++++++++-- public/js/icinga/components/datetime.js | 26 ++++++++++++++++++++++ public/js/icinga/components/form.js | 29 +++++++++++++++++++++---- public/js/icinga/icinga.js | 27 +++++++++++++++++++++++ public/js/icinga/util/async.js | 27 +++++++++++++++++++++++ public/js/icinga/util/logging.js | 26 ++++++++++++++++++++++ 8 files changed, 182 insertions(+), 11 deletions(-) diff --git a/doc/LICENSEHEAD b/doc/LICENSEHEAD index df903f2c4..e3d65429e 100644 --- a/doc/LICENSEHEAD +++ b/doc/LICENSEHEAD @@ -17,6 +17,6 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -@copyright %(YEAR)s Icinga Development Team -@license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 -@author Icinga Development Team \ No newline at end of file +@copyright %(YEAR)s Icinga Development Team +@license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 +@author Icinga Development Team \ No newline at end of file diff --git a/public/js/icinga/componentLoader.js b/public/js/icinga/componentLoader.js index 866826be1..ae985f57d 100644 --- a/public/js/icinga/componentLoader.js +++ b/public/js/icinga/componentLoader.js @@ -1,7 +1,29 @@ +// {{{ICINGA_LICENSE_HEADER}}} /** - * {{LICENSE_HEADER}} - * {{LICENSE_HEADER}} + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team */ +// {{{ICINGA_LICENSE_HEADER}}} /** * A module to load and manage frontend components diff --git a/public/js/icinga/componentRegistry.js b/public/js/icinga/componentRegistry.js index c76ea7ac6..197b6b0f4 100644 --- a/public/js/icinga/componentRegistry.js +++ b/public/js/icinga/componentRegistry.js @@ -1,7 +1,29 @@ +// {{{ICINGA_LICENSE_HEADER}}} /** - * {{LICENSE_HEADER}} - * {{LICENSE_HEADER}} + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team */ +// {{{ICINGA_LICENSE_HEADER}}} /** * A component registry that maps components to unique IDs and keeps track diff --git a/public/js/icinga/components/datetime.js b/public/js/icinga/components/datetime.js index aa137c9b2..571821557 100644 --- a/public/js/icinga/components/datetime.js +++ b/public/js/icinga/components/datetime.js @@ -1,3 +1,29 @@ +// {{{ICINGA_LICENSE_HEADER}}} +/** + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team + */ +// {{{ICINGA_LICENSE_HEADER}}} /*global Icinga:false, document: false, define:false require:false base_url:false console:false */ /** diff --git a/public/js/icinga/components/form.js b/public/js/icinga/components/form.js index 1ca43eeca..9b57715fe 100644 --- a/public/js/icinga/components/form.js +++ b/public/js/icinga/components/form.js @@ -1,9 +1,30 @@ -/*global Icinga:false define:false require:false base_url:false console:false */ +// {{{ICINGA_LICENSE_HEADER}}} /** - * {{LICENSE_HEADER}} - * {{LICENSE_HEADER}} + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team */ - +// {{{ICINGA_LICENSE_HEADER}}} +/*global Icinga:false define:false require:false base_url:false console:false */ /** * Icinga app/form component. diff --git a/public/js/icinga/icinga.js b/public/js/icinga/icinga.js index 7822fc5e4..e538a7e93 100755 --- a/public/js/icinga/icinga.js +++ b/public/js/icinga/icinga.js @@ -1,4 +1,31 @@ +// {{{ICINGA_LICENSE_HEADER}}} +/** + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team + */ +// {{{ICINGA_LICENSE_HEADER}}} /*global Icinga:false, document: false, define:false require:false base_url:false console:false */ + define([ 'jquery', 'logging', diff --git a/public/js/icinga/util/async.js b/public/js/icinga/util/async.js index 3363fef05..de2a46ef5 100644 --- a/public/js/icinga/util/async.js +++ b/public/js/icinga/util/async.js @@ -1,4 +1,31 @@ +// {{{ICINGA_LICENSE_HEADER}}} +/** + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team + */ +// {{{ICINGA_LICENSE_HEADER}}} /*global Icinga:false define:false require:false base_url:false console:false */ + (function() { "use strict"; var asyncMgrInstance = null; diff --git a/public/js/icinga/util/logging.js b/public/js/icinga/util/logging.js index 1c523f2ff..714977523 100755 --- a/public/js/icinga/util/logging.js +++ b/public/js/icinga/util/logging.js @@ -1,3 +1,29 @@ +// {{{ICINGA_LICENSE_HEADER}}} +/** + * This file is part of Icinga 2 Web. + * + * Icinga 2 Web - Head for multiple monitoring backends. + * Copyright (C) 2013 Icinga Development Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * @copyright 2013 Icinga Development Team + * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 + * @author Icinga Development Team + */ +// {{{ICINGA_LICENSE_HEADER}}} /*global Icinga:false, document: false, define:false require:false base_url:false console:false, window:false */ define(function() {