From e7a8c3bec3a8047d9da38016b7be830d8f438a54 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 15 Jul 2014 12:50:24 +0200 Subject: [PATCH 1/4] Provide a template for our license headers refs #6309 --- etc/license_header.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 etc/license_header.txt diff --git a/etc/license_header.txt b/etc/license_header.txt new file mode 100644 index 000000000..db19a8436 --- /dev/null +++ b/etc/license_header.txt @@ -0,0 +1,5 @@ +Icinga Web 2 + +@link https://www.icinga.org/icingaweb2/ +@copyright Copyright (c) 2013-%(YEAR)s Icinga Development Team (https://www.icinga.org) +@license http://www.gnu.org/licenses/gpl-2.0.txt, or any later version \ No newline at end of file From 39cd4a436b4d141b6593bb048934ff87c55c1f19 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 15 Jul 2014 12:50:58 +0200 Subject: [PATCH 2/4] Allow empty license headers being applied to files refs #6309 --- bin/license_writer.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bin/license_writer.py b/bin/license_writer.py index 5357961bb..c0b68701e 100755 --- a/bin/license_writer.py +++ b/bin/license_writer.py @@ -191,6 +191,9 @@ def get_license(type): try: return __LICENSE_STORE[type] except(KeyError): + if not LICENSE_DATA: + __LICENSE_STORE[type] = '' + return '' config = FILE_TYPE_CONFIG[type] license_data = [] license_data.extend([''] * config['linesBefore']) @@ -239,8 +242,9 @@ def replace_text(org_data, license_data): test = True elif SECTION_MARKER.search(line) and test == True: test = False - out += license_data - out += '\n' + if license_data: + out += license_data + out += '\n' elif test == True: continue From 861f9e03c51a7b3305e5381c50c1598838c68b84 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 15 Jul 2014 13:36:17 +0200 Subject: [PATCH 3/4] Drop public/css/icinga/actiontable.less as its not in use anywhere --- public/css/icinga/actiontable.less | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 public/css/icinga/actiontable.less diff --git a/public/css/icinga/actiontable.less b/public/css/icinga/actiontable.less deleted file mode 100644 index e69de29bb..000000000 From 3105c2059e4ef5f952dcc7ec6cf3c86156764024 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 15 Jul 2014 13:39:22 +0200 Subject: [PATCH 4/4] Remove license headers from all files refs #6309 --- .../files/var/www/html/icingaweb/index.php | 2 ++ .../clicommands/AutocompleteCommand.php | 2 ++ application/clicommands/HelpCommand.php | 2 ++ application/clicommands/ModuleCommand.php | 2 ++ application/clicommands/WebCommand.php | 2 ++ .../controllers/AuthenticationController.php | 25 ----------------- application/controllers/ConfigController.php | 24 ---------------- .../controllers/DashboardController.php | 25 ----------------- application/controllers/ErrorController.php | 25 ----------------- application/controllers/FilterController.php | 25 ----------------- application/controllers/IndexController.php | 25 ----------------- application/controllers/ListController.php | 25 ----------------- .../controllers/PreferenceController.php | 25 ----------------- application/controllers/SearchController.php | 2 ++ application/controllers/StaticController.php | 25 ----------------- .../forms/Authentication/LoginForm.php | 2 ++ .../Config/Authentication/BaseBackendForm.php | 25 ----------------- .../Config/Authentication/DbBackendForm.php | 25 ----------------- .../Config/Authentication/LdapBackendForm.php | 25 ----------------- .../Config/Authentication/ReorderForm.php | 25 ----------------- .../forms/Config/ConfirmRemovalForm.php | 25 ----------------- application/forms/Config/GeneralForm.php | 25 ----------------- application/forms/Config/LoggingForm.php | 25 ----------------- application/forms/Config/ResourceForm.php | 25 ----------------- application/forms/Dashboard/AddUrlForm.php | 25 ----------------- application/forms/Preference/GeneralForm.php | 25 ----------------- application/views/helpers/DateFormat.php | 25 ----------------- application/views/helpers/FormDateTime.php | 25 ----------------- application/views/helpers/FormNumber.php | 25 ----------------- .../views/helpers/FormTriStateCheckbox.php | 25 ----------------- application/views/helpers/Util.php | 25 ----------------- bin/license_writer.py | 23 --------------- .../Application/ApplicationBootstrap.php | 25 ----------------- library/Icinga/Application/Benchmark.php | 25 ----------------- library/Icinga/Application/Cli.php | 25 ----------------- library/Icinga/Application/Config.php | 25 ----------------- library/Icinga/Application/EmbeddedWeb.php | 25 ----------------- library/Icinga/Application/Icinga.php | 25 ----------------- library/Icinga/Application/LegacyWeb.php | 25 ----------------- .../Icinga/Application/Modules/Manager.php | 25 ----------------- library/Icinga/Application/Modules/Module.php | 9 ++---- library/Icinga/Application/Platform.php | 25 ----------------- library/Icinga/Application/Web.php | 25 ----------------- library/Icinga/Application/functions.php | 25 ----------------- library/Icinga/Application/webrouter.php | 2 ++ .../Icinga/Authentication/AdmissionLoader.php | 25 ----------------- library/Icinga/Authentication/AuthChain.php | 2 ++ .../Authentication/Backend/DbUserBackend.php | 25 ----------------- .../Backend/LdapUserBackend.php | 25 ----------------- library/Icinga/Authentication/Manager.php | 25 ----------------- library/Icinga/Authentication/Membership.php | 25 ----------------- library/Icinga/Authentication/UserBackend.php | 25 ----------------- library/Icinga/Chart/Axis.php | 25 ----------------- library/Icinga/Chart/Chart.php | 25 ----------------- library/Icinga/Chart/Format.php | 24 ---------------- library/Icinga/Chart/Graph/BarGraph.php | 25 ----------------- library/Icinga/Chart/Graph/LineGraph.php | 25 ----------------- library/Icinga/Chart/Graph/StackedGraph.php | 25 ----------------- library/Icinga/Chart/GridChart.php | 25 ----------------- library/Icinga/Chart/Inline/Inline.php | 25 ----------------- library/Icinga/Chart/Inline/PieChart.php | 25 ----------------- library/Icinga/Chart/Legend.php | 25 ----------------- library/Icinga/Chart/Palette.php | 25 ----------------- library/Icinga/Chart/PieChart.php | 25 ----------------- library/Icinga/Chart/Primitive/Animatable.php | 25 ----------------- library/Icinga/Chart/Primitive/Animation.php | 25 ----------------- library/Icinga/Chart/Primitive/Canvas.php | 25 ----------------- library/Icinga/Chart/Primitive/Circle.php | 25 ----------------- library/Icinga/Chart/Primitive/Drawable.php | 25 ----------------- library/Icinga/Chart/Primitive/Line.php | 25 ----------------- library/Icinga/Chart/Primitive/Path.php | 25 ----------------- library/Icinga/Chart/Primitive/PieSlice.php | 25 ----------------- library/Icinga/Chart/Primitive/RawElement.php | 25 ----------------- library/Icinga/Chart/Primitive/Rect.php | 25 ----------------- library/Icinga/Chart/Primitive/Styleable.php | 25 ----------------- library/Icinga/Chart/Primitive/Text.php | 25 ----------------- library/Icinga/Chart/Render/LayoutBox.php | 25 ----------------- library/Icinga/Chart/Render/RenderContext.php | 25 ----------------- library/Icinga/Chart/SVGRenderer.php | 25 ----------------- library/Icinga/Chart/Unit/AxisUnit.php | 25 ----------------- library/Icinga/Chart/Unit/CalendarUnit.php | 25 ----------------- library/Icinga/Chart/Unit/LinearUnit.php | 25 ----------------- library/Icinga/Chart/Unit/StaticAxis.php | 24 ---------------- library/Icinga/Cli/AnsiScreen.php | 2 ++ library/Icinga/Cli/Command.php | 2 ++ library/Icinga/Cli/Documentation.php | 2 ++ .../Cli/Documentation/CommentParser.php | 2 ++ library/Icinga/Cli/Loader.php | 2 ++ library/Icinga/Cli/Screen.php | 2 ++ library/Icinga/Config/IniEditor.php | 25 ----------------- library/Icinga/Config/PreservingIniWriter.php | 25 ----------------- library/Icinga/Data/Browsable.php | 2 ++ library/Icinga/Data/ConnectionInterface.php | 2 ++ .../Icinga/Data/DataArray/ArrayDatasource.php | 2 ++ library/Icinga/Data/Db/DbConnection.php | 25 ----------------- library/Icinga/Data/Db/DbQuery.php | 2 ++ library/Icinga/Data/Fetchable.php | 2 ++ library/Icinga/Data/Filter/Filter.php | 2 ++ library/Icinga/Data/Filter/FilterAnd.php | 2 ++ library/Icinga/Data/Filter/FilterChain.php | 2 ++ library/Icinga/Data/Filter/FilterEqual.php | 2 ++ .../Data/Filter/FilterEqualOrGreaterThan.php | 2 ++ .../Data/Filter/FilterEqualOrLessThan.php | 2 ++ .../Icinga/Data/Filter/FilterException.php | 2 ++ .../Icinga/Data/Filter/FilterExpression.php | 2 ++ .../Icinga/Data/Filter/FilterGreaterThan.php | 2 ++ library/Icinga/Data/Filter/FilterLessThan.php | 2 ++ library/Icinga/Data/Filter/FilterNot.php | 2 ++ library/Icinga/Data/Filter/FilterOr.php | 2 ++ .../Data/Filter/FilterParseException.php | 2 ++ .../Icinga/Data/Filter/FilterQueryString.php | 2 ++ library/Icinga/Data/Filterable.php | 2 ++ library/Icinga/Data/Limitable.php | 2 ++ library/Icinga/Data/QueryInterface.php | 2 ++ library/Icinga/Data/Queryable.php | 2 ++ library/Icinga/Data/ResourceFactory.php | 25 ----------------- library/Icinga/Data/Selectable.php | 2 ++ library/Icinga/Data/SimpleQuery.php | 2 ++ library/Icinga/Data/Sortable.php | 2 ++ .../Icinga/Exception/ConfigurationError.php | 25 ----------------- .../Exception/MissingParameterException.php | 25 ----------------- .../Icinga/Exception/NotImplementedError.php | 25 ----------------- library/Icinga/Exception/ProgrammingError.php | 25 ----------------- .../Exception/SystemPermissionException.php | 25 ----------------- library/Icinga/File/Pdf.php | 2 ++ .../Icinga/Protocol/Commandpipe/Command.php | 25 ----------------- .../Protocol/Commandpipe/CommandPipe.php | 25 ----------------- .../Icinga/Protocol/Commandpipe/Comment.php | 25 ----------------- .../Exception/InvalidCommandException.php | 25 ----------------- .../Protocol/Commandpipe/PropertyModifier.php | 25 ----------------- .../Commandpipe/Transport/LocalPipe.php | 25 ----------------- .../Commandpipe/Transport/SecureShell.php | 25 ----------------- .../Commandpipe/Transport/Transport.php | 25 ----------------- library/Icinga/Protocol/Dns.php | 25 ----------------- library/Icinga/Protocol/Ldap/Connection.php | 25 ----------------- library/Icinga/Protocol/Ldap/Exception.php | 25 ----------------- library/Icinga/Protocol/Ldap/LdapUtils.php | 25 ----------------- library/Icinga/Protocol/Ldap/Node.php | 25 ----------------- library/Icinga/Protocol/Ldap/Query.php | 2 ++ library/Icinga/Protocol/Ldap/Root.php | 25 ----------------- .../Icinga/Protocol/Livestatus/Connection.php | 2 ++ library/Icinga/Protocol/Livestatus/Query.php | 2 ++ library/Icinga/Protocol/Nrpe/Connection.php | 2 ++ library/Icinga/Protocol/Nrpe/Packet.php | 2 ++ .../Statusdat/Exception/ParsingException.php | 25 ----------------- library/Icinga/Protocol/Statusdat/IReader.php | 25 ----------------- .../Protocol/Statusdat/ObjectContainer.php | 25 ----------------- library/Icinga/Protocol/Statusdat/Parser.php | 25 ----------------- .../Protocol/Statusdat/PrintableObject.php | 25 ----------------- library/Icinga/Protocol/Statusdat/Query.php | 25 ----------------- .../Protocol/Statusdat/Query/Expression.php | 25 ----------------- .../Icinga/Protocol/Statusdat/Query/Group.php | 25 ----------------- .../Protocol/Statusdat/Query/IQueryPart.php | 25 ----------------- library/Icinga/Protocol/Statusdat/Reader.php | 25 ----------------- .../Statusdat/RuntimeStateContainer.php | 25 ----------------- .../Statusdat/View/AccessorStrategy.php | 25 ----------------- .../Statusdat/View/MonitoringObjectList.php | 2 ++ library/Icinga/Test/DbTest.php | 25 ----------------- library/Icinga/Test/FormTest.php | 25 ----------------- library/Icinga/User.php | 25 ----------------- library/Icinga/User/Message.php | 2 ++ library/Icinga/User/Preferences.php | 25 ----------------- library/Icinga/Util/Color.php | 28 ++----------------- library/Icinga/Util/ConfigAwareFactory.php | 25 ----------------- library/Icinga/Util/DateTimeFactory.php | 25 ----------------- library/Icinga/Util/Dimension.php | 25 ----------------- library/Icinga/Util/Format.php | 25 ----------------- library/Icinga/Util/String.php | 25 ----------------- library/Icinga/Util/Translator.php | 25 ----------------- .../Web/Controller/ActionController.php | 25 ----------------- .../Web/Controller/BaseConfigController.php | 25 ----------------- .../Controller/BasePreferenceController.php | 25 ----------------- .../Web/Controller/ControllerTabCollector.php | 25 ----------------- .../Web/Controller/ModuleActionController.php | 2 ++ library/Icinga/Web/Form.php | 25 ----------------- .../Web/Form/Decorator/BootstrapForm.php | 25 ----------------- .../Web/Form/Decorator/ConditionalHidden.php | 25 ----------------- .../Icinga/Web/Form/Decorator/HelpText.php | 25 ----------------- .../Web/Form/Element/DateTimePicker.php | 25 ----------------- library/Icinga/Web/Form/Element/Note.php | 25 ----------------- library/Icinga/Web/Form/Element/Number.php | 25 ----------------- .../Web/Form/Element/TriStateCheckbox.php | 25 ----------------- .../Web/Form/InvalidCSRFTokenException.php | 25 ----------------- .../Form/Validator/DateFormatValidator.php | 25 ----------------- .../Web/Form/Validator/DateTimeValidator.php | 25 ----------------- .../Form/Validator/TimeFormatValidator.php | 25 ----------------- .../Web/Form/Validator/TriStateValidator.php | 25 ----------------- .../Form/Validator/WritablePathValidator.php | 25 ----------------- library/Icinga/Web/Hook.php | 25 ----------------- .../Hook/Configuration/ConfigurationTab.php | 25 ----------------- .../Configuration/ConfigurationTabBuilder.php | 25 ----------------- .../ConfigurationTabInterface.php | 25 ----------------- library/Icinga/Web/Hook/Grapher.php | 25 ----------------- library/Icinga/Web/Hook/Ticket.php | 5 ++-- library/Icinga/Web/Hook/TopBar.php | 25 ----------------- library/Icinga/Web/JavaScript.php | 2 ++ library/Icinga/Web/LessCompiler.php | 25 ----------------- library/Icinga/Web/Notification.php | 25 ----------------- .../Web/Paginator/Adapter/QueryAdapter.php | 25 ----------------- .../ScrollingStyle/SlidingWithBorder.php | 25 ----------------- library/Icinga/Web/Request.php | 25 ----------------- library/Icinga/Web/Response.php | 2 ++ library/Icinga/Web/Session.php | 25 ----------------- library/Icinga/Web/Session/PhpSession.php | 25 ----------------- library/Icinga/Web/Session/Session.php | 25 ----------------- .../Icinga/Web/Session/SessionNamespace.php | 25 ----------------- library/Icinga/Web/StyleSheet.php | 2 ++ library/Icinga/Web/Url.php | 25 ----------------- library/Icinga/Web/UrlParams.php | 2 ++ library/Icinga/Web/View.php | 25 ----------------- library/Icinga/Web/View/helpers/format.php | 2 ++ library/Icinga/Web/View/helpers/generic.php | 2 ++ library/Icinga/Web/View/helpers/url.php | 2 ++ library/Icinga/Web/ViewStream.php | 25 ----------------- library/Icinga/Web/Widget.php | 5 ++-- library/Icinga/Web/Widget/AbstractWidget.php | 2 ++ library/Icinga/Web/Widget/AlertMessageBox.php | 2 ++ .../Web/Widget/Chart/HistoryColorGrid.php | 25 ----------------- library/Icinga/Web/Widget/Chart/InlinePie.php | 25 ----------------- library/Icinga/Web/Widget/Dashboard.php | 25 ----------------- .../Icinga/Web/Widget/Dashboard/Component.php | 25 ----------------- library/Icinga/Web/Widget/Dashboard/Pane.php | 25 ----------------- library/Icinga/Web/Widget/FilterEditor.php | 2 ++ library/Icinga/Web/Widget/FilterWidget.php | 2 ++ library/Icinga/Web/Widget/Limiter.php | 2 ++ library/Icinga/Web/Widget/SortBox.php | 25 ----------------- library/Icinga/Web/Widget/Tab.php | 25 ----------------- .../Web/Widget/Tabextension/BasketAction.php | 25 ----------------- .../Widget/Tabextension/DashboardAction.php | 25 ----------------- .../Web/Widget/Tabextension/OutputFormat.php | 25 ----------------- .../Web/Widget/Tabextension/Tabextension.php | 25 ----------------- library/Icinga/Web/Widget/Tabs.php | 25 ----------------- library/Icinga/Web/Widget/Widget.php | 25 ----------------- library/Icinga/Web/Window.php | 2 ++ modules/doc/library/Doc/DocParser.php | 2 +- .../doc/library/Doc/MarkdownFileIterator.php | 2 +- .../clicommands/ConferenceCommand.php | 2 ++ .../application/clicommands/ListCommand.php | 2 ++ .../application/clicommands/NrpeCommand.php | 2 ++ .../controllers/ChartController.php | 25 ----------------- .../controllers/CommandController.php | 25 ----------------- .../controllers/ConfigController.php | 25 ----------------- .../controllers/ListController.php | 2 ++ .../controllers/MonitoringCommands.php | 25 ----------------- .../controllers/MultiController.php | 25 ----------------- .../controllers/ProcessController.php | 25 ----------------- .../controllers/ShowController.php | 25 ----------------- .../forms/Command/AcknowledgeForm.php | 25 ----------------- .../application/forms/Command/CommandForm.php | 25 ----------------- .../application/forms/Command/CommentForm.php | 25 ----------------- .../forms/Command/CustomNotificationForm.php | 25 ----------------- .../forms/Command/DelayNotificationForm.php | 25 ----------------- .../DisableNotificationWithExpireForm.php | 25 ----------------- .../forms/Command/MultiCommandFlagForm.php | 25 ----------------- .../forms/Command/RescheduleNextCheckForm.php | 25 ----------------- .../forms/Command/ScheduleDowntimeForm.php | 25 ----------------- .../Command/SingleArgumentCommandForm.php | 25 ----------------- .../Command/SubmitPassiveCheckResultForm.php | 25 ----------------- .../forms/Command/WithChildrenCommandForm.php | 25 ----------------- .../Config/Backend/CreateBackendForm.php | 25 ----------------- .../forms/Config/ConfirmRemovalForm.php | 25 ----------------- .../Config/Instance/CreateInstanceForm.php | 25 ----------------- .../Config/Instance/EditInstanceForm.php | 25 ----------------- .../views/helpers/CheckPerformance.php | 25 ----------------- .../application/views/helpers/CommandForm.php | 25 ----------------- .../views/helpers/ContactFlags.php | 2 ++ .../views/helpers/MonitoringFlags.php | 25 ----------------- .../views/helpers/MonitoringProperties.php | 25 ----------------- .../views/helpers/MonitoringState.php | 2 ++ .../views/helpers/PluginOutput.php | 2 ++ .../views/helpers/ResolveComments.php | 2 ++ .../views/helpers/ResolveMacros.php | 25 ----------------- .../views/helpers/RuntimeVariables.php | 25 ----------------- .../views/helpers/SelectionToolbar.php | 2 ++ .../views/helpers/_RenderServicePerfdata.php | 2 ++ modules/monitoring/bin/action/list.inc.php | 2 ++ modules/monitoring/configuration.php | 2 ++ .../Backend/Ido/Query/AllcontactsQuery.php | 2 ++ .../Backend/Ido/Query/CommentQuery.php | 25 ----------------- .../Ido/Query/CommentdeletionhistoryQuery.php | 2 ++ .../Backend/Ido/Query/CommenthistoryQuery.php | 2 ++ .../Backend/Ido/Query/ContactQuery.php | 2 ++ .../Backend/Ido/Query/ContactgroupQuery.php | 2 ++ .../Backend/Ido/Query/CustomvarQuery.php | 2 ++ .../Backend/Ido/Query/DowntimeQuery.php | 25 ----------------- .../Ido/Query/DowntimeendhistoryQuery.php | 2 ++ .../Ido/Query/DowntimestarthistoryQuery.php | 2 ++ .../Backend/Ido/Query/EventHistoryQuery.php | 2 ++ .../Backend/Ido/Query/GroupsummaryQuery.php | 25 ----------------- .../Backend/Ido/Query/HostgroupQuery.php | 2 ++ .../Backend/Ido/Query/HoststatusQuery.php | 25 ----------------- .../Monitoring/Backend/Ido/Query/IdoQuery.php | 2 ++ .../Backend/Ido/Query/NotificationQuery.php | 25 ----------------- .../Ido/Query/NotificationhistoryQuery.php | 2 ++ .../Backend/Ido/Query/ProgramstatusQuery.php | 25 ----------------- .../Backend/Ido/Query/RuntimesummaryQuery.php | 25 ----------------- .../Ido/Query/RuntimevariablesQuery.php | 25 ----------------- .../Backend/Ido/Query/ServicegroupQuery.php | 2 ++ .../Ido/Query/StateHistorySummaryQuery.php | 2 ++ .../Backend/Ido/Query/StatehistoryQuery.php | 2 ++ .../Backend/Ido/Query/StatusQuery.php | 25 ----------------- .../Backend/Ido/Query/StatusSummaryQuery.php | 25 ----------------- .../Backend/Livestatus/Query/StatusQuery.php | 2 ++ .../Backend/Statusdat/Query/CommentQuery.php | 25 ----------------- .../Backend/Statusdat/Query/ContactQuery.php | 2 ++ .../Statusdat/Query/ContactgroupQuery.php | 2 ++ .../Backend/Statusdat/Query/DowntimeQuery.php | 25 ----------------- .../Statusdat/Query/GroupsummaryQuery.php | 2 ++ .../Statusdat/Query/HostgroupQuery.php | 25 ----------------- .../Backend/Statusdat/Query/HostlistQuery.php | 25 ----------------- .../Statusdat/Query/ServicegroupQuery.php | 25 ----------------- .../Query/ServicegroupsummaryQuery.php | 25 ----------------- .../Statusdat/Query/ServicelistQuery.php | 25 ----------------- .../Backend/Statusdat/Query/StatusQuery.php | 9 ++---- .../Statusdat/Query/StatusSummaryQuery.php | 25 ----------------- .../Statusdat/Query/StatusdatQuery.php | 25 ----------------- .../library/Monitoring/Cli/CliUtils.php | 2 ++ .../Monitoring/Command/AcknowledgeCommand.php | 25 ----------------- .../Monitoring/Command/AddCommentCommand.php | 25 ----------------- .../Command/CustomNotificationCommand.php | 25 ----------------- .../Command/DelayNotificationCommand.php | 25 ----------------- .../DisableNotificationWithExpireCommand.php | 25 ----------------- .../Command/ScheduleCheckCommand.php | 25 ----------------- .../Command/ScheduleDowntimeCommand.php | 25 ----------------- .../Command/SingleArgumentCommand.php | 25 ----------------- .../SubmitPassiveCheckresultCommand.php | 25 ----------------- .../library/Monitoring/Controller.php | 25 ----------------- .../library/Monitoring/DataView/Comment.php | 25 ----------------- .../library/Monitoring/DataView/Contact.php | 2 ++ .../Monitoring/DataView/Contactgroup.php | 2 ++ .../library/Monitoring/DataView/Customvar.php | 25 ----------------- .../library/Monitoring/DataView/DataView.php | 25 ----------------- .../library/Monitoring/DataView/Downtime.php | 25 ----------------- .../Monitoring/DataView/EventHistory.php | 25 ----------------- .../Monitoring/DataView/Groupsummary.php | 25 ----------------- .../Monitoring/DataView/HostStatus.php | 25 ----------------- .../library/Monitoring/DataView/Hostgroup.php | 25 ----------------- .../Monitoring/DataView/Notification.php | 2 ++ .../Monitoring/DataView/Programstatus.php | 25 ----------------- .../Monitoring/DataView/Runtimesummary.php | 25 ----------------- .../Monitoring/DataView/Runtimevariables.php | 25 ----------------- .../Monitoring/DataView/ServiceStatus.php | 25 ----------------- .../Monitoring/DataView/Servicegroup.php | 25 ----------------- .../DataView/StateHistorySummary.php | 25 ----------------- .../Monitoring/DataView/StatusSummary.php | 25 ----------------- .../library/Monitoring/Environment.php | 2 ++ .../Exception/UnsupportedBackendException.php | 25 ----------------- .../Monitoring/Object/AbstractObject.php | 2 ++ .../library/Monitoring/Object/Host.php | 2 ++ .../library/Monitoring/Object/Service.php | 2 ++ .../monitoring/library/Monitoring/Plugin.php | 2 ++ .../library/Monitoring/Web/Hook/TopBar.php | 25 ----------------- modules/monitoring/public/css/module.less | 3 ++ modules/monitoring/public/js/module.js | 2 ++ modules/monitoring/run.php | 8 ++---- .../clicommands/CompileCommand.php | 25 ----------------- .../clicommands/RefreshCommand.php | 25 ----------------- .../Translation/Cli/TranslationCommand.php | 25 ----------------- .../Util/GettextTranslationHelper.php | 25 ----------------- packages/files/public/index.php | 2 ++ .../rhel/usr/share/icingaweb/public/index.php | 2 ++ public/css/icinga/defaults.less | 2 ++ public/css/icinga/forms.less | 2 ++ public/css/icinga/header-elements.less | 2 ++ public/css/icinga/layout-colors.less | 3 ++ public/css/icinga/layout-structure.less | 2 ++ public/css/icinga/login.less | 2 ++ public/css/icinga/main-content.less | 2 ++ public/css/icinga/menu.less | 2 ++ public/css/icinga/monitoring-colors.less | 2 ++ public/css/icinga/pagination.less | 3 ++ public/css/icinga/selection-toolbar.less | 3 ++ public/css/icinga/tabs.less | 2 ++ public/css/icinga/widgets.less | 3 ++ public/css/pdf/pdfprint.less | 3 ++ public/index.php | 2 ++ public/js/helpers.js | 2 ++ public/js/icinga.js | 3 ++ public/js/icinga/events.js | 3 ++ public/js/icinga/history.js | 3 ++ public/js/icinga/loader.js | 3 ++ public/js/icinga/logger.js | 3 ++ public/js/icinga/module.js | 3 ++ public/js/icinga/timer.js | 3 ++ public/js/icinga/ui.js | 3 ++ public/js/icinga/utils.js | 3 ++ test/php/bootstrap.php | 2 ++ .../Data/DataArray/ArrayDatasourceTest.php | 2 ++ .../library/Icinga/Data/Filter/FilterTest.php | 2 ++ 389 files changed, 300 insertions(+), 6198 deletions(-) diff --git a/.vagrant-puppet/files/var/www/html/icingaweb/index.php b/.vagrant-puppet/files/var/www/html/icingaweb/index.php index 86f99f056..9e452ac70 100644 --- a/.vagrant-puppet/files/var/www/html/icingaweb/index.php +++ b/.vagrant-puppet/files/var/www/html/icingaweb/index.php @@ -1,3 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Application\Controllers; diff --git a/application/controllers/ConfigController.php b/application/controllers/ConfigController.php index ce87f4bf7..31739c30e 100644 --- a/application/controllers/ConfigController.php +++ b/application/controllers/ConfigController.php @@ -1,29 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Web\Controller\BaseConfigController; diff --git a/application/controllers/DashboardController.php b/application/controllers/DashboardController.php index c44fbfa1f..1f45eacde 100644 --- a/application/controllers/DashboardController.php +++ b/application/controllers/DashboardController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Zend_Config; diff --git a/application/controllers/ErrorController.php b/application/controllers/ErrorController.php index b4007bb6d..7d30d62e5 100644 --- a/application/controllers/ErrorController.php +++ b/application/controllers/ErrorController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} // namespace Icinga\Application\Controllers; diff --git a/application/controllers/FilterController.php b/application/controllers/FilterController.php index 149dc14fe..2ffa869db 100644 --- a/application/controllers/FilterController.php +++ b/application/controllers/FilterController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Web\Controller\ActionController; diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php index 6d042eb64..83ec0dd1d 100644 --- a/application/controllers/IndexController.php +++ b/application/controllers/IndexController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} # namespace Icinga\Application\Controllers; diff --git a/application/controllers/ListController.php b/application/controllers/ListController.php index cc0255d2c..b790418f7 100644 --- a/application/controllers/ListController.php +++ b/application/controllers/ListController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Module\Monitoring\Controller; diff --git a/application/controllers/PreferenceController.php b/application/controllers/PreferenceController.php index 1055451db..cc2ea4e95 100644 --- a/application/controllers/PreferenceController.php +++ b/application/controllers/PreferenceController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Web\Controller\BasePreferenceController; diff --git a/application/controllers/SearchController.php b/application/controllers/SearchController.php index 0707aa564..f2bf1ceac 100644 --- a/application/controllers/SearchController.php +++ b/application/controllers/SearchController.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Zend_Controller_Action_Exception as ActionException; diff --git a/application/forms/Authentication/LoginForm.php b/application/forms/Authentication/LoginForm.php index b9eb2f27d..fa39af35f 100644 --- a/application/forms/Authentication/LoginForm.php +++ b/application/forms/Authentication/LoginForm.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config\Authentication; diff --git a/application/forms/Config/Authentication/DbBackendForm.php b/application/forms/Config/Authentication/DbBackendForm.php index 7aa417cea..2c57b82e2 100644 --- a/application/forms/Config/Authentication/DbBackendForm.php +++ b/application/forms/Config/Authentication/DbBackendForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config\Authentication; diff --git a/application/forms/Config/Authentication/LdapBackendForm.php b/application/forms/Config/Authentication/LdapBackendForm.php index 9112f8324..ee90fa95c 100644 --- a/application/forms/Config/Authentication/LdapBackendForm.php +++ b/application/forms/Config/Authentication/LdapBackendForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config\Authentication; diff --git a/application/forms/Config/Authentication/ReorderForm.php b/application/forms/Config/Authentication/ReorderForm.php index b6a3b81f0..a074febea 100644 --- a/application/forms/Config/Authentication/ReorderForm.php +++ b/application/forms/Config/Authentication/ReorderForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config\Authentication; diff --git a/application/forms/Config/ConfirmRemovalForm.php b/application/forms/Config/ConfirmRemovalForm.php index 337fad991..65624c7b5 100644 --- a/application/forms/Config/ConfirmRemovalForm.php +++ b/application/forms/Config/ConfirmRemovalForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config; diff --git a/application/forms/Config/GeneralForm.php b/application/forms/Config/GeneralForm.php index d626be5e8..ced24401c 100644 --- a/application/forms/Config/GeneralForm.php +++ b/application/forms/Config/GeneralForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config; diff --git a/application/forms/Config/LoggingForm.php b/application/forms/Config/LoggingForm.php index 0a343a7c0..b3b4089c8 100644 --- a/application/forms/Config/LoggingForm.php +++ b/application/forms/Config/LoggingForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config; diff --git a/application/forms/Config/ResourceForm.php b/application/forms/Config/ResourceForm.php index 52650411f..9a48c1f56 100644 --- a/application/forms/Config/ResourceForm.php +++ b/application/forms/Config/ResourceForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Config; diff --git a/application/forms/Dashboard/AddUrlForm.php b/application/forms/Dashboard/AddUrlForm.php index 84c7791e0..09759a265 100644 --- a/application/forms/Dashboard/AddUrlForm.php +++ b/application/forms/Dashboard/AddUrlForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Dashboard; diff --git a/application/forms/Preference/GeneralForm.php b/application/forms/Preference/GeneralForm.php index 03383a708..fbc8f8d74 100644 --- a/application/forms/Preference/GeneralForm.php +++ b/application/forms/Preference/GeneralForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Form\Preference; diff --git a/application/views/helpers/DateFormat.php b/application/views/helpers/DateFormat.php index 80c6bc50a..a03316f25 100644 --- a/application/views/helpers/DateFormat.php +++ b/application/views/helpers/DateFormat.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Application\Icinga; diff --git a/application/views/helpers/FormDateTime.php b/application/views/helpers/FormDateTime.php index 959675afa..07d5fb930 100644 --- a/application/views/helpers/FormDateTime.php +++ b/application/views/helpers/FormDateTime.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Zend_View_Helper_FormElement; diff --git a/application/views/helpers/FormNumber.php b/application/views/helpers/FormNumber.php index 11d25679f..a8768f0b7 100644 --- a/application/views/helpers/FormNumber.php +++ b/application/views/helpers/FormNumber.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/application/views/helpers/FormTriStateCheckbox.php b/application/views/helpers/FormTriStateCheckbox.php index df32f8e60..695c9af56 100644 --- a/application/views/helpers/FormTriStateCheckbox.php +++ b/application/views/helpers/FormTriStateCheckbox.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Zend_View_Helper_FormElement; diff --git a/application/views/helpers/Util.php b/application/views/helpers/Util.php index 2ab111fcb..25b209a36 100644 --- a/application/views/helpers/Util.php +++ b/application/views/helpers/Util.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/bin/license_writer.py b/bin/license_writer.py index c0b68701e..532839e2e 100755 --- a/bin/license_writer.py +++ b/bin/license_writer.py @@ -1,29 +1,6 @@ #!/usr/bin/python # {{{ICINGA_LICENSE_HEADER}}} -# This file is part of Icinga Web 2. -# -# Icinga Web 2 - 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}}} import sys diff --git a/library/Icinga/Application/ApplicationBootstrap.php b/library/Icinga/Application/ApplicationBootstrap.php index 428f4c3ef..19fb48b58 100644 --- a/library/Icinga/Application/ApplicationBootstrap.php +++ b/library/Icinga/Application/ApplicationBootstrap.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/Benchmark.php b/library/Icinga/Application/Benchmark.php index fbe967391..c510c61bf 100644 --- a/library/Icinga/Application/Benchmark.php +++ b/library/Icinga/Application/Benchmark.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/library/Icinga/Application/Cli.php b/library/Icinga/Application/Cli.php index 31e89f3c9..58daf5f2f 100644 --- a/library/Icinga/Application/Cli.php +++ b/library/Icinga/Application/Cli.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/Config.php b/library/Icinga/Application/Config.php index 8771faa10..e81e8062f 100644 --- a/library/Icinga/Application/Config.php +++ b/library/Icinga/Application/Config.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/EmbeddedWeb.php b/library/Icinga/Application/EmbeddedWeb.php index 4a4620b8e..6a160017c 100644 --- a/library/Icinga/Application/EmbeddedWeb.php +++ b/library/Icinga/Application/EmbeddedWeb.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/Icinga.php b/library/Icinga/Application/Icinga.php index a3a0d3b96..1ab9c36f0 100644 --- a/library/Icinga/Application/Icinga.php +++ b/library/Icinga/Application/Icinga.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/LegacyWeb.php b/library/Icinga/Application/LegacyWeb.php index bf1ff3a45..a5b5beed9 100644 --- a/library/Icinga/Application/LegacyWeb.php +++ b/library/Icinga/Application/LegacyWeb.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/Modules/Manager.php b/library/Icinga/Application/Modules/Manager.php index e38383188..28241adc3 100644 --- a/library/Icinga/Application/Modules/Manager.php +++ b/library/Icinga/Application/Modules/Manager.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application\Modules; diff --git a/library/Icinga/Application/Modules/Module.php b/library/Icinga/Application/Modules/Module.php index f70ab0700..8dd189097 100644 --- a/library/Icinga/Application/Modules/Module.php +++ b/library/Icinga/Application/Modules/Module.php @@ -1,12 +1,7 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 8c2ce1efb..8ee18771d 100644 --- a/library/Icinga/Application/Web.php +++ b/library/Icinga/Application/Web.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Application; diff --git a/library/Icinga/Application/functions.php b/library/Icinga/Application/functions.php index 0530b6af2..cfa5620ba 100644 --- a/library/Icinga/Application/functions.php +++ b/library/Icinga/Application/functions.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Icinga\Util\Translator; diff --git a/library/Icinga/Application/webrouter.php b/library/Icinga/Application/webrouter.php index 82c630056..71b48b2c7 100644 --- a/library/Icinga/Application/webrouter.php +++ b/library/Icinga/Application/webrouter.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/AuthChain.php b/library/Icinga/Authentication/AuthChain.php index 8f34ed84b..216344735 100644 --- a/library/Icinga/Authentication/AuthChain.php +++ b/library/Icinga/Authentication/AuthChain.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication\Backend; diff --git a/library/Icinga/Authentication/Backend/LdapUserBackend.php b/library/Icinga/Authentication/Backend/LdapUserBackend.php index 22995c708..fe80e900a 100644 --- a/library/Icinga/Authentication/Backend/LdapUserBackend.php +++ b/library/Icinga/Authentication/Backend/LdapUserBackend.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication\Backend; diff --git a/library/Icinga/Authentication/Manager.php b/library/Icinga/Authentication/Manager.php index e13526413..5b9f57e4e 100644 --- a/library/Icinga/Authentication/Manager.php +++ b/library/Icinga/Authentication/Manager.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Authentication/Membership.php b/library/Icinga/Authentication/Membership.php index 2451963d9..2f6e83710 100644 --- a/library/Icinga/Authentication/Membership.php +++ b/library/Icinga/Authentication/Membership.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 9dcf9c641..f90eef1c7 100644 --- a/library/Icinga/Authentication/UserBackend.php +++ b/library/Icinga/Authentication/UserBackend.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}}} namespace Icinga\Authentication; diff --git a/library/Icinga/Chart/Axis.php b/library/Icinga/Chart/Axis.php index 83a3d08b1..db1a82a83 100644 --- a/library/Icinga/Chart/Axis.php +++ b/library/Icinga/Chart/Axis.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Chart.php b/library/Icinga/Chart/Chart.php index d3ce9013e..be436df2a 100644 --- a/library/Icinga/Chart/Chart.php +++ b/library/Icinga/Chart/Chart.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Format.php b/library/Icinga/Chart/Format.php index d55d58b26..80b48ecb5 100644 --- a/library/Icinga/Chart/Format.php +++ b/library/Icinga/Chart/Format.php @@ -1,29 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Graph/BarGraph.php b/library/Icinga/Chart/Graph/BarGraph.php index 675aa76d2..8bde864ce 100644 --- a/library/Icinga/Chart/Graph/BarGraph.php +++ b/library/Icinga/Chart/Graph/BarGraph.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Graph; diff --git a/library/Icinga/Chart/Graph/LineGraph.php b/library/Icinga/Chart/Graph/LineGraph.php index cf3c9bcc1..d12d4eed9 100644 --- a/library/Icinga/Chart/Graph/LineGraph.php +++ b/library/Icinga/Chart/Graph/LineGraph.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/Graph/StackedGraph.php b/library/Icinga/Chart/Graph/StackedGraph.php index 7a2152bab..ae4f593e2 100644 --- a/library/Icinga/Chart/Graph/StackedGraph.php +++ b/library/Icinga/Chart/Graph/StackedGraph.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Graph; diff --git a/library/Icinga/Chart/GridChart.php b/library/Icinga/Chart/GridChart.php index c25cf5e65..ef1682921 100644 --- a/library/Icinga/Chart/GridChart.php +++ b/library/Icinga/Chart/GridChart.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Inline/Inline.php b/library/Icinga/Chart/Inline/Inline.php index 475f5b13f..8faa388bf 100644 --- a/library/Icinga/Chart/Inline/Inline.php +++ b/library/Icinga/Chart/Inline/Inline.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Inline; diff --git a/library/Icinga/Chart/Inline/PieChart.php b/library/Icinga/Chart/Inline/PieChart.php index a77dd7015..573c5e05d 100644 --- a/library/Icinga/Chart/Inline/PieChart.php +++ b/library/Icinga/Chart/Inline/PieChart.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Inline; diff --git a/library/Icinga/Chart/Legend.php b/library/Icinga/Chart/Legend.php index 1ac9335c5..46ba8081c 100644 --- a/library/Icinga/Chart/Legend.php +++ b/library/Icinga/Chart/Legend.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Palette.php b/library/Icinga/Chart/Palette.php index 8cf49f535..ef413e73e 100644 --- a/library/Icinga/Chart/Palette.php +++ b/library/Icinga/Chart/Palette.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/PieChart.php b/library/Icinga/Chart/PieChart.php index dc7066ad2..222af96bd 100644 --- a/library/Icinga/Chart/PieChart.php +++ b/library/Icinga/Chart/PieChart.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Primitive/Animatable.php b/library/Icinga/Chart/Primitive/Animatable.php index aadb80908..3d4d24f00 100644 --- a/library/Icinga/Chart/Primitive/Animatable.php +++ b/library/Icinga/Chart/Primitive/Animatable.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/Animation.php b/library/Icinga/Chart/Primitive/Animation.php index 545f71da6..dbcdb1a2c 100644 --- a/library/Icinga/Chart/Primitive/Animation.php +++ b/library/Icinga/Chart/Primitive/Animation.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/Canvas.php b/library/Icinga/Chart/Primitive/Canvas.php index e33a2e20d..55159d975 100644 --- a/library/Icinga/Chart/Primitive/Canvas.php +++ b/library/Icinga/Chart/Primitive/Canvas.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/Primitive/Circle.php b/library/Icinga/Chart/Primitive/Circle.php index 4d9d75a36..058211bf7 100644 --- a/library/Icinga/Chart/Primitive/Circle.php +++ b/library/Icinga/Chart/Primitive/Circle.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/Primitive/Drawable.php b/library/Icinga/Chart/Primitive/Drawable.php index 69b937b7d..ea5dca077 100644 --- a/library/Icinga/Chart/Primitive/Drawable.php +++ b/library/Icinga/Chart/Primitive/Drawable.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/Line.php b/library/Icinga/Chart/Primitive/Line.php index b3a5d7f77..150013f82 100644 --- a/library/Icinga/Chart/Primitive/Line.php +++ b/library/Icinga/Chart/Primitive/Line.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/Path.php b/library/Icinga/Chart/Primitive/Path.php index ea42c58f7..0969e9674 100644 --- a/library/Icinga/Chart/Primitive/Path.php +++ b/library/Icinga/Chart/Primitive/Path.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/PieSlice.php b/library/Icinga/Chart/Primitive/PieSlice.php index e930390a1..1ded01dbd 100644 --- a/library/Icinga/Chart/Primitive/PieSlice.php +++ b/library/Icinga/Chart/Primitive/PieSlice.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/RawElement.php b/library/Icinga/Chart/Primitive/RawElement.php index be0f6c3ee..459a2d1ce 100644 --- a/library/Icinga/Chart/Primitive/RawElement.php +++ b/library/Icinga/Chart/Primitive/RawElement.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/Rect.php b/library/Icinga/Chart/Primitive/Rect.php index 8b86b35fb..36b63912f 100644 --- a/library/Icinga/Chart/Primitive/Rect.php +++ b/library/Icinga/Chart/Primitive/Rect.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Primitive; diff --git a/library/Icinga/Chart/Primitive/Styleable.php b/library/Icinga/Chart/Primitive/Styleable.php index 9b4a4f59b..248a560d3 100644 --- a/library/Icinga/Chart/Primitive/Styleable.php +++ b/library/Icinga/Chart/Primitive/Styleable.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/Primitive/Text.php b/library/Icinga/Chart/Primitive/Text.php index 5cd47e56b..5521d6e27 100644 --- a/library/Icinga/Chart/Primitive/Text.php +++ b/library/Icinga/Chart/Primitive/Text.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/Render/LayoutBox.php b/library/Icinga/Chart/Render/LayoutBox.php index 02d99376d..00e75f3c4 100644 --- a/library/Icinga/Chart/Render/LayoutBox.php +++ b/library/Icinga/Chart/Render/LayoutBox.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Render; diff --git a/library/Icinga/Chart/Render/RenderContext.php b/library/Icinga/Chart/Render/RenderContext.php index ea8d97332..476d36554 100644 --- a/library/Icinga/Chart/Render/RenderContext.php +++ b/library/Icinga/Chart/Render/RenderContext.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/SVGRenderer.php b/library/Icinga/Chart/SVGRenderer.php index eca1ce99c..390e48739 100644 --- a/library/Icinga/Chart/SVGRenderer.php +++ b/library/Icinga/Chart/SVGRenderer.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart; diff --git a/library/Icinga/Chart/Unit/AxisUnit.php b/library/Icinga/Chart/Unit/AxisUnit.php index 9e77bb8dc..dc57f99e0 100644 --- a/library/Icinga/Chart/Unit/AxisUnit.php +++ b/library/Icinga/Chart/Unit/AxisUnit.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Unit; diff --git a/library/Icinga/Chart/Unit/CalendarUnit.php b/library/Icinga/Chart/Unit/CalendarUnit.php index 8da617ea6..2845303c4 100644 --- a/library/Icinga/Chart/Unit/CalendarUnit.php +++ b/library/Icinga/Chart/Unit/CalendarUnit.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Chart/Unit/LinearUnit.php b/library/Icinga/Chart/Unit/LinearUnit.php index dd8c91c8e..bf27486d2 100644 --- a/library/Icinga/Chart/Unit/LinearUnit.php +++ b/library/Icinga/Chart/Unit/LinearUnit.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Chart\Unit; diff --git a/library/Icinga/Chart/Unit/StaticAxis.php b/library/Icinga/Chart/Unit/StaticAxis.php index 2d776f3b8..6458ae599 100644 --- a/library/Icinga/Chart/Unit/StaticAxis.php +++ b/library/Icinga/Chart/Unit/StaticAxis.php @@ -1,29 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/library/Icinga/Cli/AnsiScreen.php b/library/Icinga/Cli/AnsiScreen.php index a18b9649e..d3eeed44e 100644 --- a/library/Icinga/Cli/AnsiScreen.php +++ b/library/Icinga/Cli/AnsiScreen.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Config; diff --git a/library/Icinga/Config/PreservingIniWriter.php b/library/Icinga/Config/PreservingIniWriter.php index a89cf268c..67059b6d8 100644 --- a/library/Icinga/Config/PreservingIniWriter.php +++ b/library/Icinga/Config/PreservingIniWriter.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Config; diff --git a/library/Icinga/Data/Browsable.php b/library/Icinga/Data/Browsable.php index 852808d21..4d8d2136f 100644 --- a/library/Icinga/Data/Browsable.php +++ b/library/Icinga/Data/Browsable.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Data\Db; diff --git a/library/Icinga/Data/Db/DbQuery.php b/library/Icinga/Data/Db/DbQuery.php index 266f5f816..7fef56efc 100644 --- a/library/Icinga/Data/Db/DbQuery.php +++ b/library/Icinga/Data/Db/DbQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Data; diff --git a/library/Icinga/Data/Selectable.php b/library/Icinga/Data/Selectable.php index 2b48b206b..06aa4f93c 100644 --- a/library/Icinga/Data/Selectable.php +++ b/library/Icinga/Data/Selectable.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 81df20de0..dda47aeab 100644 --- a/library/Icinga/Exception/MissingParameterException.php +++ b/library/Icinga/Exception/MissingParameterException.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 598e01800..01131275d 100644 --- a/library/Icinga/Exception/NotImplementedError.php +++ b/library/Icinga/Exception/NotImplementedError.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 809f6690b..282d80db0 100644 --- a/library/Icinga/Exception/ProgrammingError.php +++ b/library/Icinga/Exception/ProgrammingError.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 77078dcfd..8202e34ac 100644 --- a/library/Icinga/Exception/SystemPermissionException.php +++ b/library/Icinga/Exception/SystemPermissionException.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Exception; diff --git a/library/Icinga/File/Pdf.php b/library/Icinga/File/Pdf.php index 304fc9bfe..2e8a97887 100644 --- a/library/Icinga/File/Pdf.php +++ b/library/Icinga/File/Pdf.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 4e14ba6d9..91be222cd 100644 --- a/library/Icinga/Protocol/Commandpipe/CommandPipe.php +++ b/library/Icinga/Protocol/Commandpipe/CommandPipe.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 5618203d2..2b8caf52b 100644 --- a/library/Icinga/Protocol/Commandpipe/Comment.php +++ b/library/Icinga/Protocol/Commandpipe/Comment.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 d49d87f81..662a156e9 100644 --- a/library/Icinga/Protocol/Commandpipe/Exception/InvalidCommandException.php +++ b/library/Icinga/Protocol/Commandpipe/Exception/InvalidCommandException.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe\Exception; diff --git a/library/Icinga/Protocol/Commandpipe/PropertyModifier.php b/library/Icinga/Protocol/Commandpipe/PropertyModifier.php index eb5a261b8..b398d73c7 100644 --- a/library/Icinga/Protocol/Commandpipe/PropertyModifier.php +++ b/library/Icinga/Protocol/Commandpipe/PropertyModifier.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe; diff --git a/library/Icinga/Protocol/Commandpipe/Transport/LocalPipe.php b/library/Icinga/Protocol/Commandpipe/Transport/LocalPipe.php index 65a3dab45..ecf1a981c 100644 --- a/library/Icinga/Protocol/Commandpipe/Transport/LocalPipe.php +++ b/library/Icinga/Protocol/Commandpipe/Transport/LocalPipe.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe\Transport; diff --git a/library/Icinga/Protocol/Commandpipe/Transport/SecureShell.php b/library/Icinga/Protocol/Commandpipe/Transport/SecureShell.php index cc51a5180..f1505c2ef 100644 --- a/library/Icinga/Protocol/Commandpipe/Transport/SecureShell.php +++ b/library/Icinga/Protocol/Commandpipe/Transport/SecureShell.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe\Transport; diff --git a/library/Icinga/Protocol/Commandpipe/Transport/Transport.php b/library/Icinga/Protocol/Commandpipe/Transport/Transport.php index d586cc53c..c5a5b3883 100644 --- a/library/Icinga/Protocol/Commandpipe/Transport/Transport.php +++ b/library/Icinga/Protocol/Commandpipe/Transport/Transport.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Commandpipe\Transport; diff --git a/library/Icinga/Protocol/Dns.php b/library/Icinga/Protocol/Dns.php index cb8681080..92e8b2a4d 100644 --- a/library/Icinga/Protocol/Dns.php +++ b/library/Icinga/Protocol/Dns.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol; diff --git a/library/Icinga/Protocol/Ldap/Connection.php b/library/Icinga/Protocol/Ldap/Connection.php index f6aaa6511..edd99d021 100644 --- a/library/Icinga/Protocol/Ldap/Connection.php +++ b/library/Icinga/Protocol/Ldap/Connection.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 7d6eb7317..41a5b782b 100644 --- a/library/Icinga/Protocol/Ldap/Exception.php +++ b/library/Icinga/Protocol/Ldap/Exception.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 1be25a2f1..8232ebf67 100644 --- a/library/Icinga/Protocol/Ldap/LdapUtils.php +++ b/library/Icinga/Protocol/Ldap/LdapUtils.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 0332de7b3..8e9570d25 100644 --- a/library/Icinga/Protocol/Ldap/Node.php +++ b/library/Icinga/Protocol/Ldap/Node.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 13193885e..3d380f9c7 100644 --- a/library/Icinga/Protocol/Ldap/Query.php +++ b/library/Icinga/Protocol/Ldap/Query.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Ldap; diff --git a/library/Icinga/Protocol/Livestatus/Connection.php b/library/Icinga/Protocol/Livestatus/Connection.php index fe440c788..0b37f3fcf 100644 --- a/library/Icinga/Protocol/Livestatus/Connection.php +++ b/library/Icinga/Protocol/Livestatus/Connection.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 adde66f80..0f9a7d73f 100644 --- a/library/Icinga/Protocol/Statusdat/IReader.php +++ b/library/Icinga/Protocol/Statusdat/IReader.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 42ec2f236..8fc267bf3 100644 --- a/library/Icinga/Protocol/Statusdat/ObjectContainer.php +++ b/library/Icinga/Protocol/Statusdat/ObjectContainer.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 f53e8dd41..f2c2e7793 100644 --- a/library/Icinga/Protocol/Statusdat/Parser.php +++ b/library/Icinga/Protocol/Statusdat/Parser.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/PrintableObject.php b/library/Icinga/Protocol/Statusdat/PrintableObject.php index 5382fc88d..840a7aa2a 100644 --- a/library/Icinga/Protocol/Statusdat/PrintableObject.php +++ b/library/Icinga/Protocol/Statusdat/PrintableObject.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 d80449a13..4ab7c3053 100644 --- a/library/Icinga/Protocol/Statusdat/Query.php +++ b/library/Icinga/Protocol/Statusdat/Query.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 b3cb1c655..1a04f07ff 100644 --- a/library/Icinga/Protocol/Statusdat/Query/Expression.php +++ b/library/Icinga/Protocol/Statusdat/Query/Expression.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 cf091599a..51f4c2cf8 100644 --- a/library/Icinga/Protocol/Statusdat/Query/Group.php +++ b/library/Icinga/Protocol/Statusdat/Query/Group.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 70c91f168..1dcd434df 100644 --- a/library/Icinga/Protocol/Statusdat/Query/IQueryPart.php +++ b/library/Icinga/Protocol/Statusdat/Query/IQueryPart.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 342e09af1..e9b767127 100644 --- a/library/Icinga/Protocol/Statusdat/Reader.php +++ b/library/Icinga/Protocol/Statusdat/Reader.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 bba702c79..b15dfe4bb 100644 --- a/library/Icinga/Protocol/Statusdat/RuntimeStateContainer.php +++ b/library/Icinga/Protocol/Statusdat/RuntimeStateContainer.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; diff --git a/library/Icinga/Protocol/Statusdat/View/AccessorStrategy.php b/library/Icinga/Protocol/Statusdat/View/AccessorStrategy.php index b266e3ae6..4e4bc76a1 100644 --- a/library/Icinga/Protocol/Statusdat/View/AccessorStrategy.php +++ b/library/Icinga/Protocol/Statusdat/View/AccessorStrategy.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat\View; diff --git a/library/Icinga/Protocol/Statusdat/View/MonitoringObjectList.php b/library/Icinga/Protocol/Statusdat/View/MonitoringObjectList.php index 8cdda5351..8c6fdf0bc 100644 --- a/library/Icinga/Protocol/Statusdat/View/MonitoringObjectList.php +++ b/library/Icinga/Protocol/Statusdat/View/MonitoringObjectList.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Test; diff --git a/library/Icinga/Test/FormTest.php b/library/Icinga/Test/FormTest.php index 586db1f3c..e8b070483 100644 --- a/library/Icinga/Test/FormTest.php +++ b/library/Icinga/Test/FormTest.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Test; diff --git a/library/Icinga/User.php b/library/Icinga/User.php index 9a759e529..848877850 100644 --- a/library/Icinga/User.php +++ b/library/Icinga/User.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga; diff --git a/library/Icinga/User/Message.php b/library/Icinga/User/Message.php index 79d907d81..83d780563 100644 --- a/library/Icinga/User/Message.php +++ b/library/Icinga/User/Message.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\User; diff --git a/library/Icinga/Util/Color.php b/library/Icinga/Util/Color.php index 575773fca..8058f0152 100644 --- a/library/Icinga/Util/Color.php +++ b/library/Icinga/Util/Color.php @@ -1,29 +1,7 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ +// {{{ICINGA_LICENSE_HEADER}}} +// {{{ICINGA_LICENSE_HEADER}}} + namespace Icinga\Util; /** diff --git a/library/Icinga/Util/ConfigAwareFactory.php b/library/Icinga/Util/ConfigAwareFactory.php index f89c0b14e..4a40c4200 100644 --- a/library/Icinga/Util/ConfigAwareFactory.php +++ b/library/Icinga/Util/ConfigAwareFactory.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Util; diff --git a/library/Icinga/Util/DateTimeFactory.php b/library/Icinga/Util/DateTimeFactory.php index 5f6700882..724b54770 100644 --- a/library/Icinga/Util/DateTimeFactory.php +++ b/library/Icinga/Util/DateTimeFactory.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Util; diff --git a/library/Icinga/Util/Dimension.php b/library/Icinga/Util/Dimension.php index 16f617202..2f367483b 100644 --- a/library/Icinga/Util/Dimension.php +++ b/library/Icinga/Util/Dimension.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Util; diff --git a/library/Icinga/Util/Format.php b/library/Icinga/Util/Format.php index 33c7ebd83..0658b2a57 100644 --- a/library/Icinga/Util/Format.php +++ b/library/Icinga/Util/Format.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Util; diff --git a/library/Icinga/Util/String.php b/library/Icinga/Util/String.php index 434159578..b64d9e524 100644 --- a/library/Icinga/Util/String.php +++ b/library/Icinga/Util/String.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Util; diff --git a/library/Icinga/Util/Translator.php b/library/Icinga/Util/Translator.php index 59f5f61a3..111e414ad 100644 --- a/library/Icinga/Util/Translator.php +++ b/library/Icinga/Util/Translator.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Util; diff --git a/library/Icinga/Web/Controller/ActionController.php b/library/Icinga/Web/Controller/ActionController.php index 8d8345a55..b28bddc37 100644 --- a/library/Icinga/Web/Controller/ActionController.php +++ b/library/Icinga/Web/Controller/ActionController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Controller; diff --git a/library/Icinga/Web/Controller/BaseConfigController.php b/library/Icinga/Web/Controller/BaseConfigController.php index 332bccfce..98941686e 100644 --- a/library/Icinga/Web/Controller/BaseConfigController.php +++ b/library/Icinga/Web/Controller/BaseConfigController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Controller; diff --git a/library/Icinga/Web/Controller/BasePreferenceController.php b/library/Icinga/Web/Controller/BasePreferenceController.php index e1c330413..a83b8e6c0 100644 --- a/library/Icinga/Web/Controller/BasePreferenceController.php +++ b/library/Icinga/Web/Controller/BasePreferenceController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Controller; diff --git a/library/Icinga/Web/Controller/ControllerTabCollector.php b/library/Icinga/Web/Controller/ControllerTabCollector.php index 50c6955b3..2078d80b2 100644 --- a/library/Icinga/Web/Controller/ControllerTabCollector.php +++ b/library/Icinga/Web/Controller/ControllerTabCollector.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Controller; diff --git a/library/Icinga/Web/Controller/ModuleActionController.php b/library/Icinga/Web/Controller/ModuleActionController.php index 89566368e..55663123b 100644 --- a/library/Icinga/Web/Controller/ModuleActionController.php +++ b/library/Icinga/Web/Controller/ModuleActionController.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Form/Decorator/BootstrapForm.php b/library/Icinga/Web/Form/Decorator/BootstrapForm.php index 89ad82780..dfb60de2c 100644 --- a/library/Icinga/Web/Form/Decorator/BootstrapForm.php +++ b/library/Icinga/Web/Form/Decorator/BootstrapForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Decorator; diff --git a/library/Icinga/Web/Form/Decorator/ConditionalHidden.php b/library/Icinga/Web/Form/Decorator/ConditionalHidden.php index 305054a88..5d29caee4 100644 --- a/library/Icinga/Web/Form/Decorator/ConditionalHidden.php +++ b/library/Icinga/Web/Form/Decorator/ConditionalHidden.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Decorator; diff --git a/library/Icinga/Web/Form/Decorator/HelpText.php b/library/Icinga/Web/Form/Decorator/HelpText.php index fb89b310c..970da5cfb 100644 --- a/library/Icinga/Web/Form/Decorator/HelpText.php +++ b/library/Icinga/Web/Form/Decorator/HelpText.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Decorator; diff --git a/library/Icinga/Web/Form/Element/DateTimePicker.php b/library/Icinga/Web/Form/Element/DateTimePicker.php index c9b41c6b4..911e26322 100644 --- a/library/Icinga/Web/Form/Element/DateTimePicker.php +++ b/library/Icinga/Web/Form/Element/DateTimePicker.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Element; diff --git a/library/Icinga/Web/Form/Element/Note.php b/library/Icinga/Web/Form/Element/Note.php index 3ac383c1b..5788c200d 100644 --- a/library/Icinga/Web/Form/Element/Note.php +++ b/library/Icinga/Web/Form/Element/Note.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Element; diff --git a/library/Icinga/Web/Form/Element/Number.php b/library/Icinga/Web/Form/Element/Number.php index 8749c07ea..d87a6d09f 100644 --- a/library/Icinga/Web/Form/Element/Number.php +++ b/library/Icinga/Web/Form/Element/Number.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Element; diff --git a/library/Icinga/Web/Form/Element/TriStateCheckbox.php b/library/Icinga/Web/Form/Element/TriStateCheckbox.php index cc6d935ee..fb6ffb692 100644 --- a/library/Icinga/Web/Form/Element/TriStateCheckbox.php +++ b/library/Icinga/Web/Form/Element/TriStateCheckbox.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Element; diff --git a/library/Icinga/Web/Form/InvalidCSRFTokenException.php b/library/Icinga/Web/Form/InvalidCSRFTokenException.php index fedae1faf..4e1ae8ba7 100644 --- a/library/Icinga/Web/Form/InvalidCSRFTokenException.php +++ b/library/Icinga/Web/Form/InvalidCSRFTokenException.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form; diff --git a/library/Icinga/Web/Form/Validator/DateFormatValidator.php b/library/Icinga/Web/Form/Validator/DateFormatValidator.php index 0e5756653..2b2a413fd 100644 --- a/library/Icinga/Web/Form/Validator/DateFormatValidator.php +++ b/library/Icinga/Web/Form/Validator/DateFormatValidator.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Validator; diff --git a/library/Icinga/Web/Form/Validator/DateTimeValidator.php b/library/Icinga/Web/Form/Validator/DateTimeValidator.php index 214515810..952ac6c86 100644 --- a/library/Icinga/Web/Form/Validator/DateTimeValidator.php +++ b/library/Icinga/Web/Form/Validator/DateTimeValidator.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Validator; diff --git a/library/Icinga/Web/Form/Validator/TimeFormatValidator.php b/library/Icinga/Web/Form/Validator/TimeFormatValidator.php index 7dd9ac573..1715f7fdb 100644 --- a/library/Icinga/Web/Form/Validator/TimeFormatValidator.php +++ b/library/Icinga/Web/Form/Validator/TimeFormatValidator.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Validator; diff --git a/library/Icinga/Web/Form/Validator/TriStateValidator.php b/library/Icinga/Web/Form/Validator/TriStateValidator.php index c20b87f3c..f05f35b27 100644 --- a/library/Icinga/Web/Form/Validator/TriStateValidator.php +++ b/library/Icinga/Web/Form/Validator/TriStateValidator.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Validator; diff --git a/library/Icinga/Web/Form/Validator/WritablePathValidator.php b/library/Icinga/Web/Form/Validator/WritablePathValidator.php index a9114df9e..1381da9c7 100644 --- a/library/Icinga/Web/Form/Validator/WritablePathValidator.php +++ b/library/Icinga/Web/Form/Validator/WritablePathValidator.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Form\Validator; diff --git a/library/Icinga/Web/Hook.php b/library/Icinga/Web/Hook.php index 6f3ffc2f0..2b776daca 100644 --- a/library/Icinga/Web/Hook.php +++ b/library/Icinga/Web/Hook.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 a3493517b..28538687b 100644 --- a/library/Icinga/Web/Hook/Configuration/ConfigurationTab.php +++ b/library/Icinga/Web/Hook/Configuration/ConfigurationTab.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 dad7a37f0..c84073e1e 100644 --- a/library/Icinga/Web/Hook/Configuration/ConfigurationTabBuilder.php +++ b/library/Icinga/Web/Hook/Configuration/ConfigurationTabBuilder.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 ed2d77489..064bd8450 100644 --- a/library/Icinga/Web/Hook/Configuration/ConfigurationTabInterface.php +++ b/library/Icinga/Web/Hook/Configuration/ConfigurationTabInterface.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 f5703ba2e..28de49604 100644 --- a/library/Icinga/Web/Hook/Grapher.php +++ b/library/Icinga/Web/Hook/Grapher.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook; diff --git a/library/Icinga/Web/Hook/Ticket.php b/library/Icinga/Web/Hook/Ticket.php index 1ba1192b0..f9c1b495e 100644 --- a/library/Icinga/Web/Hook/Ticket.php +++ b/library/Icinga/Web/Hook/Ticket.php @@ -1,8 +1,7 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Hook; diff --git a/library/Icinga/Web/JavaScript.php b/library/Icinga/Web/JavaScript.php index 3b468993d..2f4ef0485 100644 --- a/library/Icinga/Web/JavaScript.php +++ b/library/Icinga/Web/JavaScript.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 941654277..47fb64af5 100644 --- a/library/Icinga/Web/Notification.php +++ b/library/Icinga/Web/Notification.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 6aa60c58a..03f8f1cc5 100644 --- a/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php +++ b/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @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 29a185299..d861dbe29 100644 --- a/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php +++ b/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/library/Icinga/Web/Request.php b/library/Icinga/Web/Request.php index 95a5a2a37..8b09f68fb 100644 --- a/library/Icinga/Web/Request.php +++ b/library/Icinga/Web/Request.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Response.php b/library/Icinga/Web/Response.php index 962e670d3..33e0ea2a3 100644 --- a/library/Icinga/Web/Response.php +++ b/library/Icinga/Web/Response.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Session/PhpSession.php b/library/Icinga/Web/Session/PhpSession.php index df04183bd..0b8c1b866 100644 --- a/library/Icinga/Web/Session/PhpSession.php +++ b/library/Icinga/Web/Session/PhpSession.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Session; diff --git a/library/Icinga/Web/Session/Session.php b/library/Icinga/Web/Session/Session.php index a70ba6723..eccd127ed 100644 --- a/library/Icinga/Web/Session/Session.php +++ b/library/Icinga/Web/Session/Session.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Session; diff --git a/library/Icinga/Web/Session/SessionNamespace.php b/library/Icinga/Web/Session/SessionNamespace.php index 39d14a159..8862d343f 100644 --- a/library/Icinga/Web/Session/SessionNamespace.php +++ b/library/Icinga/Web/Session/SessionNamespace.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Session; diff --git a/library/Icinga/Web/StyleSheet.php b/library/Icinga/Web/StyleSheet.php index 84df2a18f..fedd8207a 100644 --- a/library/Icinga/Web/StyleSheet.php +++ b/library/Icinga/Web/StyleSheet.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/UrlParams.php b/library/Icinga/Web/UrlParams.php index ecb9c5230..830d1b76e 100644 --- a/library/Icinga/Web/UrlParams.php +++ b/library/Icinga/Web/UrlParams.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/View/helpers/format.php b/library/Icinga/Web/View/helpers/format.php index b229fc362..0d902acfd 100644 --- a/library/Icinga/Web/View/helpers/format.php +++ b/library/Icinga/Web/View/helpers/format.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web; diff --git a/library/Icinga/Web/Widget.php b/library/Icinga/Web/Widget.php index 32547d238..4bb177341 100644 --- a/library/Icinga/Web/Widget.php +++ b/library/Icinga/Web/Widget.php @@ -1,8 +1,7 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Chart; diff --git a/library/Icinga/Web/Widget/Chart/InlinePie.php b/library/Icinga/Web/Widget/Chart/InlinePie.php index c0b8820fa..e4621ba09 100644 --- a/library/Icinga/Web/Widget/Chart/InlinePie.php +++ b/library/Icinga/Web/Widget/Chart/InlinePie.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Chart; diff --git a/library/Icinga/Web/Widget/Dashboard.php b/library/Icinga/Web/Widget/Dashboard.php index c997ada87..c87afa1ab 100644 --- a/library/Icinga/Web/Widget/Dashboard.php +++ b/library/Icinga/Web/Widget/Dashboard.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget; diff --git a/library/Icinga/Web/Widget/Dashboard/Component.php b/library/Icinga/Web/Widget/Dashboard/Component.php index 3c2c41edb..c658d98c4 100644 --- a/library/Icinga/Web/Widget/Dashboard/Component.php +++ b/library/Icinga/Web/Widget/Dashboard/Component.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Dashboard; diff --git a/library/Icinga/Web/Widget/Dashboard/Pane.php b/library/Icinga/Web/Widget/Dashboard/Pane.php index 24b43040d..5e3e8ffea 100644 --- a/library/Icinga/Web/Widget/Dashboard/Pane.php +++ b/library/Icinga/Web/Widget/Dashboard/Pane.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Dashboard; diff --git a/library/Icinga/Web/Widget/FilterEditor.php b/library/Icinga/Web/Widget/FilterEditor.php index 19410c78e..4ce6ac6e6 100644 --- a/library/Icinga/Web/Widget/FilterEditor.php +++ b/library/Icinga/Web/Widget/FilterEditor.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget; diff --git a/library/Icinga/Web/Widget/Tab.php b/library/Icinga/Web/Widget/Tab.php index d330b6858..92a1a9954 100644 --- a/library/Icinga/Web/Widget/Tab.php +++ b/library/Icinga/Web/Widget/Tab.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget; diff --git a/library/Icinga/Web/Widget/Tabextension/BasketAction.php b/library/Icinga/Web/Widget/Tabextension/BasketAction.php index 1c0e617ef..34514f834 100644 --- a/library/Icinga/Web/Widget/Tabextension/BasketAction.php +++ b/library/Icinga/Web/Widget/Tabextension/BasketAction.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Tabextension; diff --git a/library/Icinga/Web/Widget/Tabextension/DashboardAction.php b/library/Icinga/Web/Widget/Tabextension/DashboardAction.php index 361d06a29..3d1c97ed0 100644 --- a/library/Icinga/Web/Widget/Tabextension/DashboardAction.php +++ b/library/Icinga/Web/Widget/Tabextension/DashboardAction.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Tabextension; diff --git a/library/Icinga/Web/Widget/Tabextension/OutputFormat.php b/library/Icinga/Web/Widget/Tabextension/OutputFormat.php index 863848aa8..46c55fad2 100644 --- a/library/Icinga/Web/Widget/Tabextension/OutputFormat.php +++ b/library/Icinga/Web/Widget/Tabextension/OutputFormat.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Tabextension; diff --git a/library/Icinga/Web/Widget/Tabextension/Tabextension.php b/library/Icinga/Web/Widget/Tabextension/Tabextension.php index 5d51379ef..881668d2e 100644 --- a/library/Icinga/Web/Widget/Tabextension/Tabextension.php +++ b/library/Icinga/Web/Widget/Tabextension/Tabextension.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget\Tabextension; diff --git a/library/Icinga/Web/Widget/Tabs.php b/library/Icinga/Web/Widget/Tabs.php index 13cabee2a..cd480ba32 100644 --- a/library/Icinga/Web/Widget/Tabs.php +++ b/library/Icinga/Web/Widget/Tabs.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget; diff --git a/library/Icinga/Web/Widget/Widget.php b/library/Icinga/Web/Widget/Widget.php index 2e61adcd1..3eda668ce 100644 --- a/library/Icinga/Web/Widget/Widget.php +++ b/library/Icinga/Web/Widget/Widget.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Web\Widget; diff --git a/library/Icinga/Web/Window.php b/library/Icinga/Web/Window.php index a2dc89eb7..3a541d3bb 100644 --- a/library/Icinga/Web/Window.php +++ b/library/Icinga/Web/Window.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Application\Icinga; diff --git a/modules/monitoring/application/controllers/CommandController.php b/modules/monitoring/application/controllers/CommandController.php index 70e9e5a25..bb1abcc74 100644 --- a/modules/monitoring/application/controllers/CommandController.php +++ b/modules/monitoring/application/controllers/CommandController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Application\Icinga; diff --git a/modules/monitoring/application/controllers/ConfigController.php b/modules/monitoring/application/controllers/ConfigController.php index e3e90bd16..c06ded57f 100644 --- a/modules/monitoring/application/controllers/ConfigController.php +++ b/modules/monitoring/application/controllers/ConfigController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Exception; diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index 3c08b5e76..ec46b8172 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Icinga\Module\Monitoring\Command\Meta; diff --git a/modules/monitoring/application/controllers/MultiController.php b/modules/monitoring/application/controllers/MultiController.php index 28661d54b..a623dd88b 100644 --- a/modules/monitoring/application/controllers/MultiController.php +++ b/modules/monitoring/application/controllers/MultiController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Web\Form; diff --git a/modules/monitoring/application/controllers/ProcessController.php b/modules/monitoring/application/controllers/ProcessController.php index 4a606aade..49f5715b1 100644 --- a/modules/monitoring/application/controllers/ProcessController.php +++ b/modules/monitoring/application/controllers/ProcessController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Module\Monitoring\Controller as MonitoringController; diff --git a/modules/monitoring/application/controllers/ShowController.php b/modules/monitoring/application/controllers/ShowController.php index 4008ce318..d7d14ce15 100644 --- a/modules/monitoring/application/controllers/ShowController.php +++ b/modules/monitoring/application/controllers/ShowController.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Application\Benchmark; diff --git a/modules/monitoring/application/forms/Command/AcknowledgeForm.php b/modules/monitoring/application/forms/Command/AcknowledgeForm.php index 31dc2a799..364c3c20a 100644 --- a/modules/monitoring/application/forms/Command/AcknowledgeForm.php +++ b/modules/monitoring/application/forms/Command/AcknowledgeForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/CommandForm.php b/modules/monitoring/application/forms/Command/CommandForm.php index 04a1430a4..df1bed008 100644 --- a/modules/monitoring/application/forms/Command/CommandForm.php +++ b/modules/monitoring/application/forms/Command/CommandForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/CommentForm.php b/modules/monitoring/application/forms/Command/CommentForm.php index fa3c71a36..497c276f1 100644 --- a/modules/monitoring/application/forms/Command/CommentForm.php +++ b/modules/monitoring/application/forms/Command/CommentForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/CustomNotificationForm.php b/modules/monitoring/application/forms/Command/CustomNotificationForm.php index f1c078e33..9eb75a67b 100644 --- a/modules/monitoring/application/forms/Command/CustomNotificationForm.php +++ b/modules/monitoring/application/forms/Command/CustomNotificationForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/DelayNotificationForm.php b/modules/monitoring/application/forms/Command/DelayNotificationForm.php index e5aecf131..efb6eae0f 100644 --- a/modules/monitoring/application/forms/Command/DelayNotificationForm.php +++ b/modules/monitoring/application/forms/Command/DelayNotificationForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/DisableNotificationWithExpireForm.php b/modules/monitoring/application/forms/Command/DisableNotificationWithExpireForm.php index 0dbbeb4bb..d6657dd37 100644 --- a/modules/monitoring/application/forms/Command/DisableNotificationWithExpireForm.php +++ b/modules/monitoring/application/forms/Command/DisableNotificationWithExpireForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/MultiCommandFlagForm.php b/modules/monitoring/application/forms/Command/MultiCommandFlagForm.php index 3b30574ff..6d49580a0 100644 --- a/modules/monitoring/application/forms/Command/MultiCommandFlagForm.php +++ b/modules/monitoring/application/forms/Command/MultiCommandFlagForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/RescheduleNextCheckForm.php b/modules/monitoring/application/forms/Command/RescheduleNextCheckForm.php index c65339019..cb7ab90f1 100644 --- a/modules/monitoring/application/forms/Command/RescheduleNextCheckForm.php +++ b/modules/monitoring/application/forms/Command/RescheduleNextCheckForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php b/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php index 2e2b63c55..593654c02 100644 --- a/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php +++ b/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/SingleArgumentCommandForm.php b/modules/monitoring/application/forms/Command/SingleArgumentCommandForm.php index 68b868df1..7333ccdac 100644 --- a/modules/monitoring/application/forms/Command/SingleArgumentCommandForm.php +++ b/modules/monitoring/application/forms/Command/SingleArgumentCommandForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php b/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php index 768282ee5..de2965565 100644 --- a/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php +++ b/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Command/WithChildrenCommandForm.php b/modules/monitoring/application/forms/Command/WithChildrenCommandForm.php index cb9bd5892..5ae69173e 100644 --- a/modules/monitoring/application/forms/Command/WithChildrenCommandForm.php +++ b/modules/monitoring/application/forms/Command/WithChildrenCommandForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Command; diff --git a/modules/monitoring/application/forms/Config/Backend/CreateBackendForm.php b/modules/monitoring/application/forms/Config/Backend/CreateBackendForm.php index 1c5bd25d4..513dea238 100644 --- a/modules/monitoring/application/forms/Config/Backend/CreateBackendForm.php +++ b/modules/monitoring/application/forms/Config/Backend/CreateBackendForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Config\Backend; diff --git a/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php b/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php index 9f077bdf5..6a9e17bd5 100644 --- a/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php +++ b/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Config; diff --git a/modules/monitoring/application/forms/Config/Instance/CreateInstanceForm.php b/modules/monitoring/application/forms/Config/Instance/CreateInstanceForm.php index 3c8cc2520..705804bb9 100644 --- a/modules/monitoring/application/forms/Config/Instance/CreateInstanceForm.php +++ b/modules/monitoring/application/forms/Config/Instance/CreateInstanceForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Config\Instance; diff --git a/modules/monitoring/application/forms/Config/Instance/EditInstanceForm.php b/modules/monitoring/application/forms/Config/Instance/EditInstanceForm.php index 261fbccc1..e2a091c0f 100644 --- a/modules/monitoring/application/forms/Config/Instance/EditInstanceForm.php +++ b/modules/monitoring/application/forms/Config/Instance/EditInstanceForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Form\Config\Instance; diff --git a/modules/monitoring/application/views/helpers/CheckPerformance.php b/modules/monitoring/application/views/helpers/CheckPerformance.php index c2e50494e..19912d3d6 100644 --- a/modules/monitoring/application/views/helpers/CheckPerformance.php +++ b/modules/monitoring/application/views/helpers/CheckPerformance.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/modules/monitoring/application/views/helpers/CommandForm.php b/modules/monitoring/application/views/helpers/CommandForm.php index a5e9557d6..fd0ffd581 100644 --- a/modules/monitoring/application/views/helpers/CommandForm.php +++ b/modules/monitoring/application/views/helpers/CommandForm.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Web\Form; diff --git a/modules/monitoring/application/views/helpers/ContactFlags.php b/modules/monitoring/application/views/helpers/ContactFlags.php index 367f2d47d..da2b2823a 100644 --- a/modules/monitoring/application/views/helpers/ContactFlags.php +++ b/modules/monitoring/application/views/helpers/ContactFlags.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /*use Icinga\Module\Monitoring\Object\AbstractObject;*/ diff --git a/modules/monitoring/application/views/helpers/MonitoringProperties.php b/modules/monitoring/application/views/helpers/MonitoringProperties.php index e89939cb2..ed52c5a04 100644 --- a/modules/monitoring/application/views/helpers/MonitoringProperties.php +++ b/modules/monitoring/application/views/helpers/MonitoringProperties.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use Icinga\Module\Monitoring\Object\AbstractObject; diff --git a/modules/monitoring/application/views/helpers/MonitoringState.php b/modules/monitoring/application/views/helpers/MonitoringState.php index 2051975b7..935578ca5 100644 --- a/modules/monitoring/application/views/helpers/MonitoringState.php +++ b/modules/monitoring/application/views/helpers/MonitoringState.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} use \Zend_View_Helper_Abstract; diff --git a/modules/monitoring/application/views/helpers/RuntimeVariables.php b/modules/monitoring/application/views/helpers/RuntimeVariables.php index 5e95dc792..fa9b639a8 100644 --- a/modules/monitoring/application/views/helpers/RuntimeVariables.php +++ b/modules/monitoring/application/views/helpers/RuntimeVariables.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} /** diff --git a/modules/monitoring/application/views/helpers/SelectionToolbar.php b/modules/monitoring/application/views/helpers/SelectionToolbar.php index 71ffee8ff..0b4254522 100644 --- a/modules/monitoring/application/views/helpers/SelectionToolbar.php +++ b/modules/monitoring/application/views/helpers/SelectionToolbar.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/CommentdeletionhistoryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/CommentdeletionhistoryQuery.php index 3d3ffdf65..8149c1c67 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/CommentdeletionhistoryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/CommentdeletionhistoryQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/DowntimeendhistoryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/DowntimeendhistoryQuery.php index 75998e3de..5d600be03 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/DowntimeendhistoryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/DowntimeendhistoryQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostgroupQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostgroupQuery.php index 81712bdff..eedb2f1e9 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostgroupQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostgroupQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php index 4d4bf82dc..f0f927487 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php index 7abb466ca..e557f4c7b 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimesummaryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimesummaryQuery.php index ba550ed54..cf3b6ea6d 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimesummaryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimesummaryQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimevariablesQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimevariablesQuery.php index b259562b1..479142547 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimevariablesQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/RuntimevariablesQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php index ac3ad16e7..84ad94b86 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/StatusSummaryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/StatusSummaryQuery.php index 0338969ed..ce61c8f1b 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/StatusSummaryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/StatusSummaryQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Ido\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Livestatus/Query/StatusQuery.php b/modules/monitoring/library/Monitoring/Backend/Livestatus/Query/StatusQuery.php index cdca2e8ae..20ffe57e5 100644 --- a/modules/monitoring/library/Monitoring/Backend/Livestatus/Query/StatusQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Livestatus/Query/StatusQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ContactQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ContactQuery.php index f69b18452..d4ea895e3 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ContactQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ContactQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/GroupsummaryQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/GroupsummaryQuery.php index 77b833ffb..1168d6da3 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/GroupsummaryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/GroupsummaryQuery.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/HostlistQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/HostlistQuery.php index 810a87fcc..48ee82284 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/HostlistQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/HostlistQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupQuery.php index a08243ec7..8d3f9a4ec 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupsummaryQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupsummaryQuery.php index cf76f7744..cd712d801 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupsummaryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicegroupsummaryQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicelistQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicelistQuery.php index dabc7026e..86a7310d0 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicelistQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/ServicelistQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusQuery.php index d17468bd3..e78942f4c 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusQuery.php @@ -1,11 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusdatQuery.php b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusdatQuery.php index 5e6abb4cb..33b006c86 100644 --- a/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusdatQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Statusdat/Query/StatusdatQuery.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Backend\Statusdat\Query; diff --git a/modules/monitoring/library/Monitoring/Cli/CliUtils.php b/modules/monitoring/library/Monitoring/Cli/CliUtils.php index fd894aeb9..5b443c714 100644 --- a/modules/monitoring/library/Monitoring/Cli/CliUtils.php +++ b/modules/monitoring/library/Monitoring/Cli/CliUtils.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/AddCommentCommand.php b/modules/monitoring/library/Monitoring/Command/AddCommentCommand.php index 703735c25..0464d5cb2 100644 --- a/modules/monitoring/library/Monitoring/Command/AddCommentCommand.php +++ b/modules/monitoring/library/Monitoring/Command/AddCommentCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/CustomNotificationCommand.php b/modules/monitoring/library/Monitoring/Command/CustomNotificationCommand.php index 97e55c3d3..21cf22520 100644 --- a/modules/monitoring/library/Monitoring/Command/CustomNotificationCommand.php +++ b/modules/monitoring/library/Monitoring/Command/CustomNotificationCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/DelayNotificationCommand.php b/modules/monitoring/library/Monitoring/Command/DelayNotificationCommand.php index 67c0823b5..7f8dcf749 100644 --- a/modules/monitoring/library/Monitoring/Command/DelayNotificationCommand.php +++ b/modules/monitoring/library/Monitoring/Command/DelayNotificationCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/DisableNotificationWithExpireCommand.php b/modules/monitoring/library/Monitoring/Command/DisableNotificationWithExpireCommand.php index 5c91f0411..d6fb6322a 100644 --- a/modules/monitoring/library/Monitoring/Command/DisableNotificationWithExpireCommand.php +++ b/modules/monitoring/library/Monitoring/Command/DisableNotificationWithExpireCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/ScheduleCheckCommand.php b/modules/monitoring/library/Monitoring/Command/ScheduleCheckCommand.php index 14b8d4794..7908e637d 100644 --- a/modules/monitoring/library/Monitoring/Command/ScheduleCheckCommand.php +++ b/modules/monitoring/library/Monitoring/Command/ScheduleCheckCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/ScheduleDowntimeCommand.php b/modules/monitoring/library/Monitoring/Command/ScheduleDowntimeCommand.php index 50b55ed8a..e1d79ddce 100644 --- a/modules/monitoring/library/Monitoring/Command/ScheduleDowntimeCommand.php +++ b/modules/monitoring/library/Monitoring/Command/ScheduleDowntimeCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/SingleArgumentCommand.php b/modules/monitoring/library/Monitoring/Command/SingleArgumentCommand.php index 162c8f3ef..27fecd48d 100644 --- a/modules/monitoring/library/Monitoring/Command/SingleArgumentCommand.php +++ b/modules/monitoring/library/Monitoring/Command/SingleArgumentCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Command/SubmitPassiveCheckresultCommand.php b/modules/monitoring/library/Monitoring/Command/SubmitPassiveCheckresultCommand.php index ce79ece2f..262987de1 100644 --- a/modules/monitoring/library/Monitoring/Command/SubmitPassiveCheckresultCommand.php +++ b/modules/monitoring/library/Monitoring/Command/SubmitPassiveCheckresultCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Command; diff --git a/modules/monitoring/library/Monitoring/Controller.php b/modules/monitoring/library/Monitoring/Controller.php index fd1358c12..db7aabb92 100644 --- a/modules/monitoring/library/Monitoring/Controller.php +++ b/modules/monitoring/library/Monitoring/Controller.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring; diff --git a/modules/monitoring/library/Monitoring/DataView/Comment.php b/modules/monitoring/library/Monitoring/DataView/Comment.php index 1047854a0..4d62fd27c 100644 --- a/modules/monitoring/library/Monitoring/DataView/Comment.php +++ b/modules/monitoring/library/Monitoring/DataView/Comment.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Contact.php b/modules/monitoring/library/Monitoring/DataView/Contact.php index d095e2982..7d24d1255 100644 --- a/modules/monitoring/library/Monitoring/DataView/Contact.php +++ b/modules/monitoring/library/Monitoring/DataView/Contact.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/DataView.php b/modules/monitoring/library/Monitoring/DataView/DataView.php index 5d8301749..b8ccbb852 100644 --- a/modules/monitoring/library/Monitoring/DataView/DataView.php +++ b/modules/monitoring/library/Monitoring/DataView/DataView.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Downtime.php b/modules/monitoring/library/Monitoring/DataView/Downtime.php index 73eb5c547..8bd97673a 100644 --- a/modules/monitoring/library/Monitoring/DataView/Downtime.php +++ b/modules/monitoring/library/Monitoring/DataView/Downtime.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/EventHistory.php b/modules/monitoring/library/Monitoring/DataView/EventHistory.php index b1b76459b..09779b27d 100644 --- a/modules/monitoring/library/Monitoring/DataView/EventHistory.php +++ b/modules/monitoring/library/Monitoring/DataView/EventHistory.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Groupsummary.php b/modules/monitoring/library/Monitoring/DataView/Groupsummary.php index dc1a2ed4b..a623dab45 100644 --- a/modules/monitoring/library/Monitoring/DataView/Groupsummary.php +++ b/modules/monitoring/library/Monitoring/DataView/Groupsummary.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/HostStatus.php b/modules/monitoring/library/Monitoring/DataView/HostStatus.php index 9bf1f97a1..60f224264 100644 --- a/modules/monitoring/library/Monitoring/DataView/HostStatus.php +++ b/modules/monitoring/library/Monitoring/DataView/HostStatus.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Hostgroup.php b/modules/monitoring/library/Monitoring/DataView/Hostgroup.php index fc5090b65..94fc7ac56 100644 --- a/modules/monitoring/library/Monitoring/DataView/Hostgroup.php +++ b/modules/monitoring/library/Monitoring/DataView/Hostgroup.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/modules/monitoring/library/Monitoring/DataView/Notification.php b/modules/monitoring/library/Monitoring/DataView/Notification.php index cf2882c06..6156a5f15 100644 --- a/modules/monitoring/library/Monitoring/DataView/Notification.php +++ b/modules/monitoring/library/Monitoring/DataView/Notification.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Runtimesummary.php b/modules/monitoring/library/Monitoring/DataView/Runtimesummary.php index 1ea362b49..d9d15a517 100644 --- a/modules/monitoring/library/Monitoring/DataView/Runtimesummary.php +++ b/modules/monitoring/library/Monitoring/DataView/Runtimesummary.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Runtimevariables.php b/modules/monitoring/library/Monitoring/DataView/Runtimevariables.php index 2b41c3957..dbdd338c0 100644 --- a/modules/monitoring/library/Monitoring/DataView/Runtimevariables.php +++ b/modules/monitoring/library/Monitoring/DataView/Runtimevariables.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/ServiceStatus.php b/modules/monitoring/library/Monitoring/DataView/ServiceStatus.php index 108261b89..b81b56764 100644 --- a/modules/monitoring/library/Monitoring/DataView/ServiceStatus.php +++ b/modules/monitoring/library/Monitoring/DataView/ServiceStatus.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/Servicegroup.php b/modules/monitoring/library/Monitoring/DataView/Servicegroup.php index d3f65d79c..00a6f7d5f 100644 --- a/modules/monitoring/library/Monitoring/DataView/Servicegroup.php +++ b/modules/monitoring/library/Monitoring/DataView/Servicegroup.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/modules/monitoring/library/Monitoring/DataView/StateHistorySummary.php b/modules/monitoring/library/Monitoring/DataView/StateHistorySummary.php index 0f2a27837..0c7ca68a5 100644 --- a/modules/monitoring/library/Monitoring/DataView/StateHistorySummary.php +++ b/modules/monitoring/library/Monitoring/DataView/StateHistorySummary.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/DataView/StatusSummary.php b/modules/monitoring/library/Monitoring/DataView/StatusSummary.php index efba4e37d..74574bc72 100644 --- a/modules/monitoring/library/Monitoring/DataView/StatusSummary.php +++ b/modules/monitoring/library/Monitoring/DataView/StatusSummary.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\DataView; diff --git a/modules/monitoring/library/Monitoring/Environment.php b/modules/monitoring/library/Monitoring/Environment.php index 0213118a2..f9ad28654 100644 --- a/modules/monitoring/library/Monitoring/Environment.php +++ b/modules/monitoring/library/Monitoring/Environment.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} diff --git a/modules/monitoring/library/Monitoring/Object/AbstractObject.php b/modules/monitoring/library/Monitoring/Object/AbstractObject.php index 17be0cacf..73314fbc9 100644 --- a/modules/monitoring/library/Monitoring/Object/AbstractObject.php +++ b/modules/monitoring/library/Monitoring/Object/AbstractObject.php @@ -1,4 +1,6 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Monitoring\Web\Hook; diff --git a/modules/monitoring/public/css/module.less b/modules/monitoring/public/css/module.less index d7e3dbe38..c11b18414 100644 --- a/modules/monitoring/public/css/module.less +++ b/modules/monitoring/public/css/module.less @@ -1,3 +1,6 @@ +// {{{ICINGA_LICENSE_HEADER}}} +// {{{ICINGA_LICENSE_HEADER}}} + table.action.comments td p, table.action.downtimes td p { margin: 0; font-size: 0.8em; diff --git a/modules/monitoring/public/js/module.js b/modules/monitoring/public/js/module.js index ea31f18d8..b3ba863ff 100644 --- a/modules/monitoring/public/js/module.js +++ b/modules/monitoring/public/js/module.js @@ -1,3 +1,5 @@ +// {{{ICINGA_LICENSE_HEADER}}} +// {{{ICINGA_LICENSE_HEADER}}} (function(Icinga) { diff --git a/modules/monitoring/run.php b/modules/monitoring/run.php index 51ca985c7..8f4ee1b67 100644 --- a/modules/monitoring/run.php +++ b/modules/monitoring/run.php @@ -1,10 +1,6 @@ registerHook( 'TopBar', diff --git a/modules/translation/application/clicommands/CompileCommand.php b/modules/translation/application/clicommands/CompileCommand.php index be4f6b4f9..77116d74a 100644 --- a/modules/translation/application/clicommands/CompileCommand.php +++ b/modules/translation/application/clicommands/CompileCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Translation\Clicommands; diff --git a/modules/translation/application/clicommands/RefreshCommand.php b/modules/translation/application/clicommands/RefreshCommand.php index 9da6cc9e5..78b58f55c 100644 --- a/modules/translation/application/clicommands/RefreshCommand.php +++ b/modules/translation/application/clicommands/RefreshCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Translation\Clicommands; diff --git a/modules/translation/library/Translation/Cli/TranslationCommand.php b/modules/translation/library/Translation/Cli/TranslationCommand.php index 08223cbbb..2cdc875ec 100644 --- a/modules/translation/library/Translation/Cli/TranslationCommand.php +++ b/modules/translation/library/Translation/Cli/TranslationCommand.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Translation\Cli; diff --git a/modules/translation/library/Translation/Util/GettextTranslationHelper.php b/modules/translation/library/Translation/Util/GettextTranslationHelper.php index aa1aaa5db..895e01fa5 100644 --- a/modules/translation/library/Translation/Util/GettextTranslationHelper.php +++ b/modules/translation/library/Translation/Util/GettextTranslationHelper.php @@ -1,30 +1,5 @@ - * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 - * @author Icinga Development Team - * - */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Module\Translation\Util; diff --git a/packages/files/public/index.php b/packages/files/public/index.php index 77953b1b6..1acee9445 100644 --- a/packages/files/public/index.php +++ b/packages/files/public/index.php @@ -1,4 +1,6 @@ .tabs, .dontprint, .inlinepie { display: none !important; } diff --git a/public/index.php b/public/index.php index 69b3dfce8..171581155 100644 --- a/public/index.php +++ b/public/index.php @@ -1,3 +1,5 @@