Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-06-21 | responsive: introduce a hamburger navicon to toggle the menu on smaller devices | Pim van den Berg | 1 | -0/+5 | |
2015-05-25 | inc/functions: merge functions GET and validate_get | Pim van den Berg | 1 | -2/+2 | |
And make sure all input from $_GET variables are parsed and validated. | |||||
2015-05-25 | inc/functions: make type argument of validate_get function exactly the same ↵ | Pim van den Berg | 1 | -2/+2 | |
as $_GET value | |||||
2014-07-23 | Remove from all files the ending php tag | François LASSERRE | 1 | -2/+0 | |
2014-07-21 | Fix overly permissive hostname validation, fix host check | Peter Wu | 1 | -1/+1 | |
`[\w\W]` matches EVERYTHING. Validation failed. Also remove `\d` as that `\w` is a superset of it. Also check that the host parameter is actually non-empty, otherwise `collectd_plugins` will happily return results as the directory `$CONFIG['datadir'] . '/' . ''` trivially exists... | |||||
2014-06-30 | Escape HTML in GET-provided hostname | Nicolas Iooss | 1 | -2/+2 | |
A malicious user can enter javascript code in "h" GET parameter and this code gets executed because this parameter is copied in the HTML output without any escaping. This patch escape the output before it is checked it is valid. | |||||
2014-05-03 | inc/collectd: consistently return false instead of an empty array or false | Pim van den Berg | 1 | -3/+1 | |
This means we have to check the return value of these functions for example before doing a foreach. We can't just do a foreach and assume the return value of a function is an array, while it can be false and results in a PHP warning. Closes: https://github.com/pommi/CGP/pull/68 | |||||
2014-02-10 | host.php: remove immediate end tag in fieldset | Pim van den Berg | 1 | -1/+1 | |
2013-06-22 | start using fieldset + legend for showing data | Pim van den Berg | 1 | -1/+4 | |
2013-03-30 | rewrite some code of added overview_filter feature | Pim van den Berg | 1 | -3/+1 | |
Use less variables, less code. | |||||
2013-03-30 | add feature to show a subset of graphs from a plugin on overview page | Rohit Bhute | 1 | -1/+3 | |
2012-12-28 | remove arguments overview_plugins and other_plugins from plugins_list function | Pim van den Berg | 1 | -7/+2 | |
Those can be gathered within the function. | |||||
2012-12-28 | don't show plugins the host doesn't have | Pim van den Berg | 1 | -2/+4 | |
2012-12-21 | remove in-html comments by xian310 | Pim van den Berg | 1 | -1/+1 | |
2012-12-21 | replace the ajax expand system by a navigation menu | xian310 | 1 | -22/+14 | |
Signed-off-by: Pim van den Berg <pim@nethuis.nl> | |||||
2011-04-21 | resolve php notices | Karol Nowacki | 1 | -2/+2 | |
Including a lot of undefined $_GET values. | |||||
2010-01-01 | better validation of possible user input (get) | Pim van den Berg | 1 | -2/+2 | |
2009-12-28 | replace duplicate code by function plugin_header | Pim van den Berg | 1 | -3/+3 | |
2009-12-05 | load plugins on the host page via ajax | Pim van den Berg | 1 | -4/+7 | |
2009-10-11 | replace plus and minus on host page by images | Pim van den Berg | 1 | -3/+3 | |
2009-10-10 | remove laquo from navigation | Pim van den Berg | 1 | -1/+1 | |
You can always return to the main page via the header. From the detail page you can return to the host page by clicking the hostname. | |||||
2009-09-29 | layout improvement based on daniel's patch | Pim van den Berg | 1 | -4/+4 | |
The page is divided into a header, content and footer. It is styled better and the header links to the main page. Patch from Daniel von Fange (Leancoder): http://pommi.nethuis.nl/storage/software/cgp/leancoder-css.cgp-v-0-1.patch | |||||
2009-09-28 | change webdir/weburl and include/require usage | Pim van den Berg | 1 | -0/+1 | |
- Don't depend on includes from files that are included. - Don't use webdir with includes/requires (also because webdir couldn't be available in some cases). - Use common.inc.php instead of config.php in all plugins to have all configuration settings available. |