From 6be510b05efbf223e660292930a40cec39c24b3a Mon Sep 17 00:00:00 2001 From: Marius Hein Date: Fri, 28 Jun 2013 16:47:30 +0200 Subject: [PATCH] License writer Update license headers refs #4262 --- .../controllers/AuthenticationController.php | 21 +++++++++++++++++++ .../controllers/ConfigurationController.php | 21 +++++++++++++++++++ application/controllers/ErrorController.php | 21 +++++++++++++++++++ application/controllers/IndexController.php | 21 +++++++++++++++++++ application/controllers/ModulesController.php | 21 +++++++++++++++++++ application/controllers/StaticController.php | 21 +++++++++++++++++++ .../forms/authentication/LoginForm.php | 21 +++++++++++++++++++ .../forms/authentication/SettingsForm.php | 21 +++++++++++++++++++ application/views/helpers/Auth.php | 21 +++++++++++++++++++ library/Icinga/Application/Logger.php | 21 +++++++++++++++++++ library/Icinga/Application/Web.php | 21 +++++++++++++++++++ .../Backend/LdapUserBackend.php | 21 +++++++++++++++++++ library/Icinga/Authentication/Credentials.php | 21 +++++++++++++++++++ library/Icinga/Authentication/Manager.php | 21 +++++++++++++++++++ library/Icinga/Authentication/PhpSession.php | 21 +++++++++++++++++++ library/Icinga/Authentication/Session.php | 21 +++++++++++++++++++ library/Icinga/Authentication/User.php | 21 +++++++++++++++++++ library/Icinga/Authentication/UserBackend.php | 21 +++++++++++++++++++ library/Icinga/Backend/AbstractBackend.php | 21 +++++++++++++++++++ library/Icinga/Backend/Criteria/Order.php | 21 +++++++++++++++++++ .../DataView/AbstractAccessorStrategy.php | 21 +++++++++++++++++++ .../Backend/DataView/ObjectRemappingView.php | 21 +++++++++++++++++++ library/Icinga/Backend/Query.php | 21 +++++++++++++++++++ library/Icinga/Backend/Statusdat.php | 21 +++++++++++++++++++ .../Statusdat/DataView/StatusdatHostView.php | 21 +++++++++++++++++++ .../DataView/StatusdatServiceView.php | 21 +++++++++++++++++++ .../Backend/Statusdat/GroupsummaryQuery.php | 21 +++++++++++++++++++ .../Statusdat/HostgroupsummaryQuery.php | 21 +++++++++++++++++++ .../Backend/Statusdat/HostlistQuery.php | 21 +++++++++++++++++++ library/Icinga/Backend/Statusdat/Query.php | 21 +++++++++++++++++++ .../Statusdat/ServicegroupsummaryQuery.php | 21 +++++++++++++++++++ .../Backend/Statusdat/ServicelistQuery.php | 21 +++++++++++++++++++ .../Icinga/Exception/ConfigurationError.php | 21 +++++++++++++++++++ .../Exception/MissingParameterException.php | 21 +++++++++++++++++++ .../Icinga/Exception/NotImplementedError.php | 21 +++++++++++++++++++ library/Icinga/Exception/ProgrammingError.php | 21 +++++++++++++++++++ .../Exception/SystemPermissionException.php | 21 +++++++++++++++++++ library/Icinga/Form/Builder.php | 21 +++++++++++++++++++ library/Icinga/Protocol/AbstractQuery.php | 21 +++++++++++++++++++ .../Protocol/Commandpipe/Acknowledgement.php | 21 +++++++++++++++++++ .../Protocol/Commandpipe/CommandPipe.php | 21 +++++++++++++++++++ .../Icinga/Protocol/Commandpipe/Comment.php | 21 +++++++++++++++++++ .../Icinga/Protocol/Commandpipe/Downtime.php | 21 +++++++++++++++++++ .../Exception/InvalidCommandException.php | 21 +++++++++++++++++++ .../Icinga/Protocol/Commandpipe/IComment.php | 21 +++++++++++++++++++ .../Protocol/Commandpipe/PropertyModifier.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Ldap/Connection.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Ldap/Exception.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Ldap/LdapUtils.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Ldap/Node.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Ldap/Query.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Ldap/Root.php | 21 +++++++++++++++++++ .../Statusdat/Exception/ParsingException.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Statusdat/IReader.php | 21 +++++++++++++++++++ .../Protocol/Statusdat/ObjectContainer.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Statusdat/Parser.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Statusdat/Query.php | 21 +++++++++++++++++++ .../Protocol/Statusdat/Query/Expression.php | 21 +++++++++++++++++++ .../Icinga/Protocol/Statusdat/Query/Group.php | 21 +++++++++++++++++++ .../Protocol/Statusdat/Query/IQueryPart.php | 21 +++++++++++++++++++ library/Icinga/Protocol/Statusdat/Reader.php | 21 +++++++++++++++++++ .../Statusdat/RuntimeStateContainer.php | 21 +++++++++++++++++++ library/Icinga/Web/ActionController.php | 21 +++++++++++++++++++ library/Icinga/Web/Form.php | 21 +++++++++++++++++++ .../Hook/Configuration/ConfigurationTab.php | 21 +++++++++++++++++++ .../Configuration/ConfigurationTabBuilder.php | 21 +++++++++++++++++++ .../ConfigurationTabInterface.php | 21 +++++++++++++++++++ library/Icinga/Web/Hook/Grapher.php | 21 +++++++++++++++++++ library/Icinga/Web/Hook/Toptray.php | 21 +++++++++++++++++++ library/Icinga/Web/ModuleActionController.php | 21 +++++++++++++++++++ library/Icinga/Web/Notification.php | 21 +++++++++++++++++++ .../Web/Paginator/Adapter/QueryAdapter.php | 21 +++++++++++++++++++ .../ScrollingStyle/SlidingWithBorder.php | 21 +++++++++++++++++++ library/Icinga/Web/Widget.php | 21 +++++++++++++++++++ 74 files changed, 1554 insertions(+) diff --git a/application/controllers/AuthenticationController.php b/application/controllers/AuthenticationController.php index 315e74eaa..f2e20f00b 100644 --- a/application/controllers/AuthenticationController.php +++ b/application/controllers/AuthenticationController.php @@ -1,6 +1,27 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Application\Controllers; diff --git a/application/controllers/ConfigurationController.php b/application/controllers/ConfigurationController.php index 051e1a718..8041093c9 100644 --- a/application/controllers/ConfigurationController.php +++ b/application/controllers/ConfigurationController.php @@ -2,6 +2,27 @@ // @codingStandardsIgnoreStart // {{{ICINGA_LICENSE_HEADER}}} +/** + * Icinga 2 Web - Head for multiple monitoring frontends + * 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 + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Application\Benchmark; diff --git a/application/controllers/ErrorController.php b/application/controllers/ErrorController.php index c523bb77f..42756de86 100755 --- a/application/controllers/ErrorController.php +++ b/application/controllers/ErrorController.php @@ -1,6 +1,27 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Application\Controllers; diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php index f33e0888e..3e1d83c38 100644 --- a/application/controllers/IndexController.php +++ b/application/controllers/IndexController.php @@ -1,6 +1,27 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Application\Controllers; diff --git a/application/controllers/ModulesController.php b/application/controllers/ModulesController.php index c7ce535f1..8e28308ea 100755 --- a/application/controllers/ModulesController.php +++ b/application/controllers/ModulesController.php @@ -1,6 +1,27 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Application\Controllers; diff --git a/application/controllers/StaticController.php b/application/controllers/StaticController.php index 5704dbf4a..96d8b187f 100644 --- a/application/controllers/StaticController.php +++ b/application/controllers/StaticController.php @@ -1,6 +1,27 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Web\Form; diff --git a/application/forms/authentication/LoginForm.php b/application/forms/authentication/LoginForm.php index dc4c10f1a..d78df7521 100644 --- a/application/forms/authentication/LoginForm.php +++ b/application/forms/authentication/LoginForm.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form; diff --git a/application/forms/authentication/SettingsForm.php b/application/forms/authentication/SettingsForm.php index 512e68905..69e8db257 100644 --- a/application/forms/authentication/SettingsForm.php +++ b/application/forms/authentication/SettingsForm.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form; diff --git a/application/views/helpers/Auth.php b/application/views/helpers/Auth.php index 64217fb1b..345cf4e60 100755 --- a/application/views/helpers/Auth.php +++ b/application/views/helpers/Auth.php @@ -2,6 +2,27 @@ // @codingStandardsIgnoreStart // {{{ICINGA_LICENSE_HEADER}}} +/** + * Icinga 2 Web - Head for multiple monitoring frontends + * 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 + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Authentication\Manager; diff --git a/library/Icinga/Application/Logger.php b/library/Icinga/Application/Logger.php index fa3246a4c..f6976b6ac 100755 --- a/library/Icinga/Application/Logger.php +++ b/library/Icinga/Application/Logger.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/Web.php b/library/Icinga/Application/Web.php index 6b6aea625..b27c777f2 100644 --- a/library/Icinga/Application/Web.php +++ b/library/Icinga/Application/Web.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Authentication/Backend/LdapUserBackend.php b/library/Icinga/Authentication/Backend/LdapUserBackend.php index 674aa88a5..93b56b14b 100644 --- a/library/Icinga/Authentication/Backend/LdapUserBackend.php +++ b/library/Icinga/Authentication/Backend/LdapUserBackend.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication\Backend; diff --git a/library/Icinga/Authentication/Credentials.php b/library/Icinga/Authentication/Credentials.php index fb0581ad7..42e8b19e7 100644 --- a/library/Icinga/Authentication/Credentials.php +++ b/library/Icinga/Authentication/Credentials.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/Manager.php b/library/Icinga/Authentication/Manager.php index 5a1acc29d..306cb4993 100644 --- a/library/Icinga/Authentication/Manager.php +++ b/library/Icinga/Authentication/Manager.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/PhpSession.php b/library/Icinga/Authentication/PhpSession.php index 66c83e38b..e0fa6d216 100644 --- a/library/Icinga/Authentication/PhpSession.php +++ b/library/Icinga/Authentication/PhpSession.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/Session.php b/library/Icinga/Authentication/Session.php index 2f1743fb2..305587678 100644 --- a/library/Icinga/Authentication/Session.php +++ b/library/Icinga/Authentication/Session.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/User.php b/library/Icinga/Authentication/User.php index 6571af33e..3c6db51dc 100644 --- a/library/Icinga/Authentication/User.php +++ b/library/Icinga/Authentication/User.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/UserBackend.php b/library/Icinga/Authentication/UserBackend.php index 104ecafb4..cbf79cc01 100644 --- a/library/Icinga/Authentication/UserBackend.php +++ b/library/Icinga/Authentication/UserBackend.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Backend/AbstractBackend.php b/library/Icinga/Backend/AbstractBackend.php index 972bc2d72..db2dab664 100755 --- a/library/Icinga/Backend/AbstractBackend.php +++ b/library/Icinga/Backend/AbstractBackend.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend; diff --git a/library/Icinga/Backend/Criteria/Order.php b/library/Icinga/Backend/Criteria/Order.php index d26392d71..a7d72d76f 100755 --- a/library/Icinga/Backend/Criteria/Order.php +++ b/library/Icinga/Backend/Criteria/Order.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Criteria; diff --git a/library/Icinga/Backend/DataView/AbstractAccessorStrategy.php b/library/Icinga/Backend/DataView/AbstractAccessorStrategy.php index 058653705..ea6df0997 100755 --- a/library/Icinga/Backend/DataView/AbstractAccessorStrategy.php +++ b/library/Icinga/Backend/DataView/AbstractAccessorStrategy.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\DataView; diff --git a/library/Icinga/Backend/DataView/ObjectRemappingView.php b/library/Icinga/Backend/DataView/ObjectRemappingView.php index 1f2338722..012f98d03 100755 --- a/library/Icinga/Backend/DataView/ObjectRemappingView.php +++ b/library/Icinga/Backend/DataView/ObjectRemappingView.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\DataView; diff --git a/library/Icinga/Backend/Query.php b/library/Icinga/Backend/Query.php index 2062e1ff8..b3a5abf38 100755 --- a/library/Icinga/Backend/Query.php +++ b/library/Icinga/Backend/Query.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend; diff --git a/library/Icinga/Backend/Statusdat.php b/library/Icinga/Backend/Statusdat.php index 75f09a93c..935078767 100755 --- a/library/Icinga/Backend/Statusdat.php +++ b/library/Icinga/Backend/Statusdat.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend; diff --git a/library/Icinga/Backend/Statusdat/DataView/StatusdatHostView.php b/library/Icinga/Backend/Statusdat/DataView/StatusdatHostView.php index 6cfe2c674..61b58cd73 100644 --- a/library/Icinga/Backend/Statusdat/DataView/StatusdatHostView.php +++ b/library/Icinga/Backend/Statusdat/DataView/StatusdatHostView.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat\DataView; diff --git a/library/Icinga/Backend/Statusdat/DataView/StatusdatServiceView.php b/library/Icinga/Backend/Statusdat/DataView/StatusdatServiceView.php index fd55d21a5..8524212f3 100755 --- a/library/Icinga/Backend/Statusdat/DataView/StatusdatServiceView.php +++ b/library/Icinga/Backend/Statusdat/DataView/StatusdatServiceView.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat\DataView; diff --git a/library/Icinga/Backend/Statusdat/GroupsummaryQuery.php b/library/Icinga/Backend/Statusdat/GroupsummaryQuery.php index 335677f3d..51fb9f09e 100755 --- a/library/Icinga/Backend/Statusdat/GroupsummaryQuery.php +++ b/library/Icinga/Backend/Statusdat/GroupsummaryQuery.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat; diff --git a/library/Icinga/Backend/Statusdat/HostgroupsummaryQuery.php b/library/Icinga/Backend/Statusdat/HostgroupsummaryQuery.php index 219011a9a..fc3f7b356 100755 --- a/library/Icinga/Backend/Statusdat/HostgroupsummaryQuery.php +++ b/library/Icinga/Backend/Statusdat/HostgroupsummaryQuery.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat; diff --git a/library/Icinga/Backend/Statusdat/HostlistQuery.php b/library/Icinga/Backend/Statusdat/HostlistQuery.php index 1fa025ed6..f5cbe8184 100755 --- a/library/Icinga/Backend/Statusdat/HostlistQuery.php +++ b/library/Icinga/Backend/Statusdat/HostlistQuery.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat; diff --git a/library/Icinga/Backend/Statusdat/Query.php b/library/Icinga/Backend/Statusdat/Query.php index 00b9ae89f..f23e189d6 100644 --- a/library/Icinga/Backend/Statusdat/Query.php +++ b/library/Icinga/Backend/Statusdat/Query.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat; diff --git a/library/Icinga/Backend/Statusdat/ServicegroupsummaryQuery.php b/library/Icinga/Backend/Statusdat/ServicegroupsummaryQuery.php index 4d01b560d..d78f973dc 100644 --- a/library/Icinga/Backend/Statusdat/ServicegroupsummaryQuery.php +++ b/library/Icinga/Backend/Statusdat/ServicegroupsummaryQuery.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat; diff --git a/library/Icinga/Backend/Statusdat/ServicelistQuery.php b/library/Icinga/Backend/Statusdat/ServicelistQuery.php index 550fcfc22..416e193dd 100755 --- a/library/Icinga/Backend/Statusdat/ServicelistQuery.php +++ b/library/Icinga/Backend/Statusdat/ServicelistQuery.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Backend\Statusdat; diff --git a/library/Icinga/Exception/ConfigurationError.php b/library/Icinga/Exception/ConfigurationError.php index 988246f5f..434068009 100644 --- a/library/Icinga/Exception/ConfigurationError.php +++ b/library/Icinga/Exception/ConfigurationError.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Exception; diff --git a/library/Icinga/Exception/MissingParameterException.php b/library/Icinga/Exception/MissingParameterException.php index dda47aeab..de74db6e3 100644 --- a/library/Icinga/Exception/MissingParameterException.php +++ b/library/Icinga/Exception/MissingParameterException.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Exception; diff --git a/library/Icinga/Exception/NotImplementedError.php b/library/Icinga/Exception/NotImplementedError.php index 01131275d..7f85669f8 100644 --- a/library/Icinga/Exception/NotImplementedError.php +++ b/library/Icinga/Exception/NotImplementedError.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Exception; diff --git a/library/Icinga/Exception/ProgrammingError.php b/library/Icinga/Exception/ProgrammingError.php index 282d80db0..2d77f7511 100644 --- a/library/Icinga/Exception/ProgrammingError.php +++ b/library/Icinga/Exception/ProgrammingError.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Exception; diff --git a/library/Icinga/Exception/SystemPermissionException.php b/library/Icinga/Exception/SystemPermissionException.php index 02849ec34..01711cba5 100644 --- a/library/Icinga/Exception/SystemPermissionException.php +++ b/library/Icinga/Exception/SystemPermissionException.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Exception; diff --git a/library/Icinga/Form/Builder.php b/library/Icinga/Form/Builder.php index cc2b08591..89d2bccfb 100644 --- a/library/Icinga/Form/Builder.php +++ b/library/Icinga/Form/Builder.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form; diff --git a/library/Icinga/Protocol/AbstractQuery.php b/library/Icinga/Protocol/AbstractQuery.php index 95b336496..b326b9c12 100755 --- a/library/Icinga/Protocol/AbstractQuery.php +++ b/library/Icinga/Protocol/AbstractQuery.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol; diff --git a/library/Icinga/Protocol/Commandpipe/Acknowledgement.php b/library/Icinga/Protocol/Commandpipe/Acknowledgement.php index f293c5470..e4e94553c 100644 --- a/library/Icinga/Protocol/Commandpipe/Acknowledgement.php +++ b/library/Icinga/Protocol/Commandpipe/Acknowledgement.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Commandpipe/CommandPipe.php b/library/Icinga/Protocol/Commandpipe/CommandPipe.php index b48c5f16a..a89757ad5 100644 --- a/library/Icinga/Protocol/Commandpipe/CommandPipe.php +++ b/library/Icinga/Protocol/Commandpipe/CommandPipe.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Commandpipe/Comment.php b/library/Icinga/Protocol/Commandpipe/Comment.php index 4b8466fb5..6e4333a3f 100644 --- a/library/Icinga/Protocol/Commandpipe/Comment.php +++ b/library/Icinga/Protocol/Commandpipe/Comment.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Commandpipe/Downtime.php b/library/Icinga/Protocol/Commandpipe/Downtime.php index 11919041b..bb0f5629b 100644 --- a/library/Icinga/Protocol/Commandpipe/Downtime.php +++ b/library/Icinga/Protocol/Commandpipe/Downtime.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Commandpipe/Exception/InvalidCommandException.php b/library/Icinga/Protocol/Commandpipe/Exception/InvalidCommandException.php index 8d005f4ed..6017115fb 100644 --- a/library/Icinga/Protocol/Commandpipe/Exception/InvalidCommandException.php +++ b/library/Icinga/Protocol/Commandpipe/Exception/InvalidCommandException.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe\Exception; diff --git a/library/Icinga/Protocol/Commandpipe/IComment.php b/library/Icinga/Protocol/Commandpipe/IComment.php index aa6636868..bc8f068e2 100644 --- a/library/Icinga/Protocol/Commandpipe/IComment.php +++ b/library/Icinga/Protocol/Commandpipe/IComment.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Commandpipe/PropertyModifier.php b/library/Icinga/Protocol/Commandpipe/PropertyModifier.php index c7019a740..dbc7e5af0 100644 --- a/library/Icinga/Protocol/Commandpipe/PropertyModifier.php +++ b/library/Icinga/Protocol/Commandpipe/PropertyModifier.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Ldap/Connection.php b/library/Icinga/Protocol/Ldap/Connection.php index 403bfd665..fbf7883fc 100644 --- a/library/Icinga/Protocol/Ldap/Connection.php +++ b/library/Icinga/Protocol/Ldap/Connection.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Ldap/Exception.php b/library/Icinga/Protocol/Ldap/Exception.php index 41a5b782b..9474b06eb 100644 --- a/library/Icinga/Protocol/Ldap/Exception.php +++ b/library/Icinga/Protocol/Ldap/Exception.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Ldap/LdapUtils.php b/library/Icinga/Protocol/Ldap/LdapUtils.php index 8232ebf67..fa7752228 100644 --- a/library/Icinga/Protocol/Ldap/LdapUtils.php +++ b/library/Icinga/Protocol/Ldap/LdapUtils.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Ldap/Node.php b/library/Icinga/Protocol/Ldap/Node.php index ecff98c0b..2237292f4 100644 --- a/library/Icinga/Protocol/Ldap/Node.php +++ b/library/Icinga/Protocol/Ldap/Node.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Ldap/Query.php b/library/Icinga/Protocol/Ldap/Query.php index 630f1041d..083a680ca 100644 --- a/library/Icinga/Protocol/Ldap/Query.php +++ b/library/Icinga/Protocol/Ldap/Query.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Ldap/Root.php b/library/Icinga/Protocol/Ldap/Root.php index 64b098776..46b80d598 100644 --- a/library/Icinga/Protocol/Ldap/Root.php +++ b/library/Icinga/Protocol/Ldap/Root.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Statusdat/Exception/ParsingException.php b/library/Icinga/Protocol/Statusdat/Exception/ParsingException.php index 0947e65bc..5eefee284 100755 --- a/library/Icinga/Protocol/Statusdat/Exception/ParsingException.php +++ b/library/Icinga/Protocol/Statusdat/Exception/ParsingException.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat\Exception; diff --git a/library/Icinga/Protocol/Statusdat/IReader.php b/library/Icinga/Protocol/Statusdat/IReader.php index 1ce7a02a8..e837edbc2 100755 --- a/library/Icinga/Protocol/Statusdat/IReader.php +++ b/library/Icinga/Protocol/Statusdat/IReader.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/ObjectContainer.php b/library/Icinga/Protocol/Statusdat/ObjectContainer.php index fd40de940..82f72c70b 100644 --- a/library/Icinga/Protocol/Statusdat/ObjectContainer.php +++ b/library/Icinga/Protocol/Statusdat/ObjectContainer.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/Parser.php b/library/Icinga/Protocol/Statusdat/Parser.php index a0636d241..90bc64cb0 100755 --- a/library/Icinga/Protocol/Statusdat/Parser.php +++ b/library/Icinga/Protocol/Statusdat/Parser.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/Query.php b/library/Icinga/Protocol/Statusdat/Query.php index 26604f3b8..108141468 100755 --- a/library/Icinga/Protocol/Statusdat/Query.php +++ b/library/Icinga/Protocol/Statusdat/Query.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/Query/Expression.php b/library/Icinga/Protocol/Statusdat/Query/Expression.php index c4cdb17e3..da722e28a 100755 --- a/library/Icinga/Protocol/Statusdat/Query/Expression.php +++ b/library/Icinga/Protocol/Statusdat/Query/Expression.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat\Query; diff --git a/library/Icinga/Protocol/Statusdat/Query/Group.php b/library/Icinga/Protocol/Statusdat/Query/Group.php index ae29b9ddf..79a748487 100755 --- a/library/Icinga/Protocol/Statusdat/Query/Group.php +++ b/library/Icinga/Protocol/Statusdat/Query/Group.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat\Query; diff --git a/library/Icinga/Protocol/Statusdat/Query/IQueryPart.php b/library/Icinga/Protocol/Statusdat/Query/IQueryPart.php index 852a7362e..4d543a3f9 100755 --- a/library/Icinga/Protocol/Statusdat/Query/IQueryPart.php +++ b/library/Icinga/Protocol/Statusdat/Query/IQueryPart.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat\Query; diff --git a/library/Icinga/Protocol/Statusdat/Reader.php b/library/Icinga/Protocol/Statusdat/Reader.php index 199919071..d0076b45b 100755 --- a/library/Icinga/Protocol/Statusdat/Reader.php +++ b/library/Icinga/Protocol/Statusdat/Reader.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/RuntimeStateContainer.php b/library/Icinga/Protocol/Statusdat/RuntimeStateContainer.php index 96b7bfa13..878bc4c59 100755 --- a/library/Icinga/Protocol/Statusdat/RuntimeStateContainer.php +++ b/library/Icinga/Protocol/Statusdat/RuntimeStateContainer.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Web/ActionController.php b/library/Icinga/Web/ActionController.php index 4d8c02fbe..ebefc8acf 100755 --- a/library/Icinga/Web/ActionController.php +++ b/library/Icinga/Web/ActionController.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Form.php b/library/Icinga/Web/Form.php index 5361a1868..d4caa39c0 100644 --- a/library/Icinga/Web/Form.php +++ b/library/Icinga/Web/Form.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Hook/Configuration/ConfigurationTab.php b/library/Icinga/Web/Hook/Configuration/ConfigurationTab.php index fe6a17428..3188d7d8c 100644 --- a/library/Icinga/Web/Hook/Configuration/ConfigurationTab.php +++ b/library/Icinga/Web/Hook/Configuration/ConfigurationTab.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook\Configuration; diff --git a/library/Icinga/Web/Hook/Configuration/ConfigurationTabBuilder.php b/library/Icinga/Web/Hook/Configuration/ConfigurationTabBuilder.php index ba7bee670..47ead0147 100644 --- a/library/Icinga/Web/Hook/Configuration/ConfigurationTabBuilder.php +++ b/library/Icinga/Web/Hook/Configuration/ConfigurationTabBuilder.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook\Configuration; diff --git a/library/Icinga/Web/Hook/Configuration/ConfigurationTabInterface.php b/library/Icinga/Web/Hook/Configuration/ConfigurationTabInterface.php index 064bd8450..667dd9c3d 100644 --- a/library/Icinga/Web/Hook/Configuration/ConfigurationTabInterface.php +++ b/library/Icinga/Web/Hook/Configuration/ConfigurationTabInterface.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook\Configuration; diff --git a/library/Icinga/Web/Hook/Grapher.php b/library/Icinga/Web/Hook/Grapher.php index 28de49604..5c860f7a3 100644 --- a/library/Icinga/Web/Hook/Grapher.php +++ b/library/Icinga/Web/Hook/Grapher.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook; diff --git a/library/Icinga/Web/Hook/Toptray.php b/library/Icinga/Web/Hook/Toptray.php index f2753db44..028339844 100755 --- a/library/Icinga/Web/Hook/Toptray.php +++ b/library/Icinga/Web/Hook/Toptray.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook; diff --git a/library/Icinga/Web/ModuleActionController.php b/library/Icinga/Web/ModuleActionController.php index 76aa9fe8a..f5eb62e90 100644 --- a/library/Icinga/Web/ModuleActionController.php +++ b/library/Icinga/Web/ModuleActionController.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Notification.php b/library/Icinga/Web/Notification.php index c99713c7a..1b5a975e6 100644 --- a/library/Icinga/Web/Notification.php +++ b/library/Icinga/Web/Notification.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php b/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php index d781cd4b2..01504fafd 100755 --- a/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php +++ b/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Paginator\Adapter; diff --git a/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php b/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php index f929eb60c..a1590c818 100755 --- a/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php +++ b/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php @@ -2,6 +2,27 @@ // @codingStandardsIgnoreStart // {{{ICINGA_LICENSE_HEADER}}} +/** + * Icinga 2 Web - Head for multiple monitoring frontends + * 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 + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/library/Icinga/Web/Widget.php b/library/Icinga/Web/Widget.php index 8d8f3d5a2..8552f4396 100644 --- a/library/Icinga/Web/Widget.php +++ b/library/Icinga/Web/Widget.php @@ -1,5 +1,26 @@ + * @author Icinga Development Team + */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web;