Eric Lippmann
2d69e44846
setup: Set default URL path to /icingaweb2
2014-12-30 14:42:42 +01:00
Eric Lippmann
60b74ddcec
Cli: Fix parameter documentation for ConfigCommand::webserverAction()
...
We speak of icingaweb2 not icingaweb now.
2014-12-30 14:41:35 +01:00
Eric Lippmann
70c564bb0e
Cli: Remove useless sprintf format in Command::fail()
2014-12-30 14:41:00 +01:00
Eric Lippmann
5e812c72f1
cli/webserver config: Fix --config sanity check
2014-12-30 14:37:34 +01:00
Eric Lippmann
8eb37d9d76
Cli/Command: Add @type PHPDoc to params
2014-12-30 14:33:36 +01:00
Eric Lippmann
9af46838b0
Remove the var/log directory
2014-12-30 12:26:40 +01:00
Eric Lippmann
84521a1a24
Merge branch 'feature/untranslated-strings-7988'
...
resolves #7988
2014-12-30 11:16:34 +01:00
Eric Lippmann
ac56cc02ac
monitoring: Fix the notifications view script
2014-12-30 11:14:30 +01:00
Eric Lippmann
a5122f540d
monitoring: Add 'Notifications' to the 'Overview' menu section
2014-12-30 11:14:13 +01:00
Eric Lippmann
358efe06de
Merge branch 'master' into feature/untranslated-strings-7988
2014-12-30 10:55:42 +01:00
Eric Lippmann
a781b8c607
monitoring: Remove the top bar hook
...
No longer in use.
2014-12-30 10:52:57 +01:00
Eric Lippmann
c59c0e6cdb
monitoring: Remove top bar hook layout
...
No longer in use.
2014-12-30 10:52:12 +01:00
Eric Lippmann
a37d68b235
monitoring: Remove run.php
...
The monitoring module still registered the obsolete top bar hook.
2014-12-30 10:51:33 +01:00
Eric Lippmann
07ddc3a455
Merge branch 'feature/translation-plural-8092'
...
resolves #8092
2014-12-30 10:50:17 +01:00
Eric Lippmann
9c989306d9
monitoring: Count services having comments once in services/show.phtml
2014-12-30 10:48:30 +01:00
Eric Lippmann
2e4e04551d
monitoring: Count services in downtime once in services/show.phtml
2014-12-30 10:47:10 +01:00
Eric Lippmann
128f6822f1
monitoring: Count acknowledged services once in services/show.phtml
2014-12-30 10:46:08 +01:00
Eric Lippmann
df3d7d2034
monitoring: Count unhandled services once in services/show.phtml
2014-12-30 10:45:24 +01:00
Eric Lippmann
a7a99b5856
monitoring: Count hosts once in services/show.phtml
2014-12-30 10:44:22 +01:00
Eric Lippmann
3d95e37b7f
monitoring: Count services once in services/show.phtml
2014-12-30 10:43:39 +01:00
Eric Lippmann
c28f4284e4
monitoring: Remove the command/* view scripts
...
They are no longer used.
2014-12-30 10:40:56 +01:00
Eric Lippmann
41ef926fd6
monitoring: Remove the CommandController
...
The controller is no longer used.
2014-12-30 10:39:33 +01:00
Eric Lippmann
b7d6ee75f2
monitoring: Remove the MultiController
...
The controller is no longer used.
2014-12-30 10:38:43 +01:00
Eric Lippmann
8594ff6843
monitoring: Remove multi/* view scripts
...
They are no longer used.
2014-12-30 10:38:02 +01:00
Eric Lippmann
56102a1e39
monitoring: Count hosts having comments once in hosts/show.phtml
2014-12-30 10:35:18 +01:00
Eric Lippmann
b82f4e5356
monitoring: Count hosts in downtime once in hosts/show.phtml
2014-12-30 10:33:32 +01:00
Eric Lippmann
3745d3ebef
monitoring: Count acknowledged hosts once in hosts/show.phtml
2014-12-30 10:31:23 +01:00
Eric Lippmann
507aefa9dd
monitoring: Count unhandled hosts once in hosts/show.phtml
2014-12-30 10:30:31 +01:00
Eric Lippmann
c87733debc
monitoring: Count hosts once in hosts/show.phtml
2014-12-30 10:26:19 +01:00
Eric Lippmann
973a56c984
Merge branch 'master' into feature/translation-plural-8092
2014-12-30 10:22:44 +01:00
Eric Lippmann
59c39e94db
Merge branch 'bugfix/hostgroup-link-7259'
...
fixes #7259
2014-12-30 10:20:44 +01:00
Eric Lippmann
50bbf77d0c
Fix module domain detection in Form::getTranslationDomain()
...
The usage of preg_replace had two errors:
1) The regular expression was wrong
2) $matches[0] always contains the full matched string, not the first parenthesized subpattern
The correct version of preg_replace would've been:
if (preg_match('/^Icinga\\\\Module\\\\([A-Za-z]+)\\\\/', get_called_class(), $matches) === 1) {
return strtolower($matches[1]);
}
But since there's no benefit of using a regular expression here except less speed, I replaced it
with using explode.
refs #7551
2014-12-30 10:08:33 +01:00
Eric Lippmann
d6e331018b
monitoring: Use Form::translate() in the backend configuration form
...
refs #7551
2014-12-30 10:02:31 +01:00
Eric Lippmann
e05e04bb74
monitoring: Uppercasse the first word of comments in the backend configuration form
2014-12-30 09:47:45 +01:00
Eric Lippmann
e72361c2cb
monitoring: Fix missing return argument in the backend configuration form
2014-12-30 09:47:19 +01:00
Eric Lippmann
24b2369adb
monitoring: Fix PHPDoc of BackendConfigForm::setResourceConfig()
2014-12-30 09:45:24 +01:00
Eric Lippmann
27110ce594
monitoring: use @type instead of @var in the backend configuration form
2014-12-30 09:44:33 +01:00
Eric Lippmann
6a67b7fee3
monitoring: add description to @see tags in the backend configuration form
2014-12-30 09:43:35 +01:00
Eric Lippmann
2a1f12354e
monitoring: Use '@return $this' when documenting fluent interfaces in the backend configuration form
2014-12-30 09:41:22 +01:00
Eric Lippmann
d595541d42
monitoring: optimize imports in the backend configuration form
2014-12-30 09:40:09 +01:00
Eric Lippmann
c1aff80f7b
monitoring: Fix "Show resource configuration" link
2014-12-30 09:39:11 +01:00
Eric Lippmann
58cfb67983
Load setup module when necessary when bootstrapping the CLI
...
fixes #8146
2014-12-30 09:27:37 +01:00
Eric Lippmann
fc05f4d53e
setup: Fix the mode of created directories
2014-12-29 17:55:34 +01:00
Eric Lippmann
3bd24c48ff
monitoring: Do not provide export when viewing a monitored object
...
This is simply not possible at the moment.
2014-12-29 17:54:39 +01:00
Eric Lippmann
e376bd6285
monitoring: Fix that exporting a object's history throws an exception
...
fixes #6586
2014-12-29 17:54:09 +01:00
Eric Lippmann
fd044017fb
Revert "Highlight hovered state rows even if there is no href"
...
This reverts commit 73f9328f12
.
Highlighting table rows which do not contain a link does not make sense.
refs #8024
2014-12-29 17:31:00 +01:00
Eric Lippmann
9d9dd8ac99
Merge branch 'feature/rhel-packages-6401'
...
resolves #6401
2014-12-29 16:50:20 +01:00
Eric Lippmann
2d0153464d
Add spec file for RHEL (CentOS and Fedora) packages
...
refs #6401
fixes #6894
2014-12-29 16:48:18 +01:00
Eric Lippmann
57121bf0ea
dompdf: Rename LICENSE.LGPL to LICENSE
2014-12-29 16:31:21 +01:00
Eric Lippmann
0b8ab18243
Parsedown: Rename LICENSE.txt to LICENSE
2014-12-29 16:30:44 +01:00