Commit Graph

11327 Commits

Author SHA1 Message Date
Alexander A. Klimov 2282e1aa4f LdapConnection: respect a query's limit as expected
refs #2765
2018-01-16 12:59:42 +01:00
lippserd 705f3a49d9
Merge pull request #3180 from Icinga/feature/url-static-self
Url: prefer static over self
2018-01-16 10:52:25 +01:00
lippserd 2fb9ce9f93
Merge pull request #3145 from Icinga/bugfix/history-eventgrid-format-2678
Accept /monitoring/list/eventgrid?format=*
2018-01-16 10:43:09 +01:00
Alexander A. Klimov 75b7ff1231 Merge branch 'bugfix/installation-doc-ubuntu-3231'
fixes #3231
2018-01-16 10:28:51 +01:00
lippserd 30e5ee9d79
Merge pull request #3227 from Icinga/feature/separate-reachability-and-check-source-2953
Separate reachability and check source info in detail views
2018-01-16 10:24:14 +01:00
lippserd 44fccfff4d
Merge pull request #3230 from Icinga/bugfix/application-state-log-out-2882
/application-state: ignore unauthenticated requests
2018-01-16 10:20:13 +01:00
lippserd 76bc59b7bf
Merge pull request #3260 from Icinga/bugfix/reset-search-not-working-2753
Make search reset control working across auto-refresh
2018-01-16 10:14:23 +01:00
lippserd e529b9b2ba
Merge pull request #3218 from Icinga/bugfix/remove-leading-and-trailing-blank-from-ip-address-2494
Remove leading and trailing blanks from ip addresses
2018-01-16 09:20:37 +01:00
lippserd c1497cf1c5
Merge pull request #3143 from Icinga/bugfix/inactive-module-config-tabs-2977
Hide inactive modules' config tabs
2018-01-16 09:18:49 +01:00
lippserd 5b069bace4
Merge pull request #3138 from Icinga/bugfix/typo-existance-3062
Fix typo "existance"
2018-01-16 09:03:48 +01:00
Alexander A. Klimov 1f61744b57 Make search reset control working across auto-refresh
refs #2753
2018-01-15 15:09:50 +01:00
Alexander A. Klimov b790cc98c1 /application-state: ignore unauthenticated requests
refs #2882
2018-01-15 14:21:28 +01:00
Alexander A. Klimov 06802cb94e Installation doc: unify resulting installation on Debian and Ubuntu
refs #3231
2018-01-15 13:09:21 +01:00
Alexander A. Klimov 5cb7deda20 Merge branch 'bugfix/domain-aware-auth-non-domain-ldap-group-backend-3250'
fixes #3250
fixes #3251
2018-01-15 11:20:45 +01:00
Paolo Schiro c806099e1b Avoid including domain users in a group not belonging to a domain
Signed-off-by: Alexander A. Klimov <alexander.klimov@icinga.com>

refs #3250
2018-01-15 11:19:35 +01:00
lippserd 02391e648b
Merge pull request #3136 from Icinga/bugfix/sort-resources
/config/resource: sort resources by name
2018-01-15 09:33:17 +01:00
Alexander A. Klimov fd489f861c Merge branch 'feature/vagrant-upgrade-php-7-1-2989'
fixes #2989
2018-01-12 11:32:55 +01:00
Alexander A. Klimov 2ac605800f Install PHP 7.1 from RedHat SCL
refs #2989
2018-01-12 11:30:45 +01:00
lippserd b6ea97090a
Merge pull request #3254 from Icinga/feature/drop-icinga-gui
Puppet: don't install icinga-gui
2018-01-12 11:26:55 +01:00
Alexander A. Klimov 4e49152c9f Puppet: don't install icinga-gui 2018-01-12 10:06:51 +01:00
lippserd 44b490e4b5
Merge pull request #3224 from Icinga/bugfix/custom-menu-item-log-message-3189
Fix unneccessary log message
2018-01-11 11:43:17 +01:00
lippserd 20916509bc
Merge pull request #3222 from Icinga/Fix-typo-in-Automating-the-Installation-of-Icinga-Web-2
20-Advanced-Topics.de Fix typo
2018-01-11 11:42:16 +01:00
lippserd 6abb91421a
Merge pull request #3220 from Icinga/fix/filter-by-custom-variables
Fix filter by host custom variables
2018-01-11 11:40:22 +01:00
lippserd fe0c569b13
Merge pull request #3197 from Icinga/feature/event-history-detail-view-3191
Implement event history detail view
2018-01-11 11:39:50 +01:00
Alexander A. Klimov 196cdbe4af Implement event history detail view
refs #3191
2018-01-09 13:04:06 +01:00
Michael Friedrich 7e5f5405aa
Merge pull request #3241 from Icinga/fix/vagrant-base-box
Vagrant: Use bento base box
2018-01-03 12:14:06 +01:00
Michael Friedrich 8da7b3f0bc Vagrant: Use bento base box
fixes #3240
2018-01-03 12:10:29 +01:00
Alexander A. Klimov 0b6336c623 Separate reachability and check source info in detail views
refs #2953
2017-12-19 17:57:04 +01:00
Alexander A. Klimov a1709a0670 Fix unneccessary log message
refs #3189
2017-12-19 15:58:25 +01:00
Jennifer Mourek b32dae075c
Update 20-Advanced-Topics.md 2017-12-19 12:50:42 +01:00
Eric Lippmann 93ec798c6b Ido: Map h.host_object_id to s.host_object_id in the ServicegroupQuery
This is required to make filters work which filter by host custom variables without using any host related table.
2017-12-18 10:35:16 +01:00
Eric Lippmann b1f7923711 Ido: Allow custom variables to be mapped
If you filter by host custom variables and the query does not have the services table joined,
our query implementation calls the joinHosts method. Then, the column for the JOIN ON condition is
automatically set to h.host_object_id.
But it may be required by the query to call joinServices and use s.host_object_id instead of
h.host_object_id because the query does not use any host related table at all.

This is now possible when h.host_object_id is mapped to s.host_object_id:

class ServicesRelatedQuery
{
    protected $columnMap = array(
        'hosts' => array(
            'h.host_object_id' => 's.host_object_id'
        )
    );

    protected function joinHosts()
    {
        $this->requireVirtualTable('services');
    }
}
2017-12-18 10:23:45 +01:00
Alexander A. Klimov 72592fcccf Merge branch 'bugfix/no-module-less-break-lesscompiler-3149'
fixes #3149
2017-12-18 10:10:13 +01:00
Alexander A. Klimov ba9d286567 Remove leading and trailing blanks from ip addresses
refs #2494
2017-12-15 13:08:14 +01:00
Alexander A. Klimov a5e75554ad Don't require module.less
refs #3149
2017-12-15 11:58:54 +01:00
lippserd 4b458fd719
Merge pull request #3214 from Icinga/bugfix/php-svg-lib-fix-missing-files
php-svg-lib: fix missing files
2017-12-15 11:37:49 +01:00
Alexander A. Klimov 02decd957a php-svg-lib: fix missing files 2017-12-15 11:31:40 +01:00
lippserd 8656d27832
Merge pull request #3188 from Icinga/feature/docs-upgrading-db
Docs: Enhance upgrade chapter with DB update instructions
2017-12-15 10:15:36 +01:00
lippserd 83faa2671c
Merge pull request #3174 from Icinga/fix/fullscreen-layout
Don't discard fullscreen when detecting the layout
2017-12-15 10:13:05 +01:00
lippserd 7b4435102a
Merge pull request #3184 from Icinga/fix/session-timeout
JS: Always request application-state
2017-12-15 10:00:09 +01:00
lippserd 644cf0f1c3
Merge pull request #3183 from Icinga/doc/apache-fpm
Support basic auth on PHP-FPM
2017-12-15 09:59:50 +01:00
Michael Friedrich 402de9ff69 Docs: Enhance upgrade chapter with DB update instructions
Ported from the Icinga 2 docs.

fixes #3175

Signed-off-by: Eric Lippmann <eric.lippmann@icinga.com>
2017-12-15 09:54:43 +01:00
lippserd 89da30f05f
Merge pull request #3209 from Icinga/bugfix/warnings-for-php-7-1-3208
PhpSession: conform to PHP 7.1
2017-12-15 09:22:22 +01:00
lippserd a71037cd5a
Merge pull request #3211 from Icinga/feature/php-svg-lib-v0-3
Upgrade php-svg-lib to v0.3
2017-12-15 09:21:00 +01:00
Alexander A. Klimov 7e2761b277 php-svg-lib: fix interface compatibility 2017-12-14 15:12:35 +01:00
Alexander A. Klimov 4ce4ad1074 Upgrade php-svg-lib to v0.3 2017-12-14 15:12:35 +01:00
lippserd fcd851d1e5
Merge pull request #3207 from Icinga/bugfix/markdown-doesn-t-ignore-comments-3200
Don't interpret shell comments inside fenced code blocks as MD headers
2017-12-14 14:46:41 +01:00
lippserd fedf43239d
Merge pull request #3206 from Icinga/bugfix/pdf-export-error-3202
Upgrade dompdf to v0.8.2
2017-12-14 12:50:00 +01:00
Alexander A. Klimov 788272fad7 PhpSession: conform to PHP 7.1
refs #3208
2017-12-13 13:38:51 +01:00
Alexander A. Klimov b3535481ff Don't interpret shell comments inside fenced code blocks as MD headers
refs #3200
2017-12-13 13:27:15 +01:00