diff options
author | vanilla <vanilla@FreeBSD.org> | 2017-02-10 23:50:53 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2017-02-10 23:50:53 +0800 |
commit | f2aabad066f73e6ca4e0e6aa459180a634c5203e (patch) | |
tree | 325836e9868ff7c0064b3556e39cb66e5fea40de /net-mgmt | |
parent | 531ba050f76124fb4b91e32957271e48f42b6f91 (diff) | |
download | freebsd-ports-gnome-f2aabad066f73e6ca4e0e6aa459180a634c5203e.tar.gz freebsd-ports-gnome-f2aabad066f73e6ca4e0e6aa459180a634c5203e.tar.zst freebsd-ports-gnome-f2aabad066f73e6ca4e0e6aa459180a634c5203e.zip |
Update to 1.0.0, and adds support for php7.
PR: 216801
Submitted by: maintainer
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/cacti/Makefile | 7 | ||||
-rw-r--r-- | net-mgmt/cacti/distinfo | 5 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-include__global.php | 18 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-include__global_settings.php | 23 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-install__functions.php | 11 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-install__index.php | 20 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-lib__clog_webapi.php | 20 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-lib__functions.php | 24 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-poller_maintenance.php | 15 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-scripts__ping.pl | 11 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-utilities.php | 20 | ||||
-rw-r--r-- | net-mgmt/cacti/files/pkg-message.in | 22 | ||||
-rw-r--r-- | net-mgmt/cacti/pkg-plist | 995 |
13 files changed, 916 insertions, 275 deletions
diff --git a/net-mgmt/cacti/Makefile b/net-mgmt/cacti/Makefile index 734171f77301..2bbb67d9b1a9 100644 --- a/net-mgmt/cacti/Makefile +++ b/net-mgmt/cacti/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cacti -PORTVERSION= 0.8.8h${PATCHLEVEL} +PORTVERSION= 1.0.1 CATEGORIES= net-mgmt www MASTER_SITES= http://www.cacti.net/downloads/ \ ftp://ftpmirror.uk/freebsd-ports/cacti/ @@ -14,9 +14,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rrdtool:databases/rrdtool -USES= cpe mysql shebangfix -USE_PHP= mysqli pcre session sockets snmp xml -WANT_PHP_WEB= yes +USES= cpe mysql php:web shebangfix +USE_PHP= ctype filter gd gmp hash json ldap mbstring openssl pcre pdo pdo_mysql posix session simplexml sockets snmp xml zlib NO_ARCH= yes NO_BUILD= yes PKGMESSAGE= ${WRKDIR}/pkg-message diff --git a/net-mgmt/cacti/distinfo b/net-mgmt/cacti/distinfo index c592245be42c..f1d7cc63f85f 100644 --- a/net-mgmt/cacti/distinfo +++ b/net-mgmt/cacti/distinfo @@ -1,2 +1,3 @@ -SHA256 (cacti-0.8.8h.tar.gz) = 0673bd9513dad381c8bbb9133c721a32bc6422dc91c5a81de16e3cd32e4d0600 -SIZE (cacti-0.8.8h.tar.gz) = 2585226 +TIMESTAMP = 1486494702 +SHA256 (cacti-1.0.1.tar.gz) = cc36b83653cecd2be0a4a239927dcdaafeb81e7fd7ad6f97c664edcb7fb07628 +SIZE (cacti-1.0.1.tar.gz) = 7230227 diff --git a/net-mgmt/cacti/files/patch-include__global.php b/net-mgmt/cacti/files/patch-include__global.php index 7c094a4d3778..956c25387f5d 100644 --- a/net-mgmt/cacti/files/patch-include__global.php +++ b/net-mgmt/cacti/files/patch-include__global.php @@ -1,11 +1,11 @@ ---- include/global.php.bak 2015-03-12 03:07:05.768314249 -0700 -+++ include/global.php 2015-03-12 03:08:04.171320391 -0700 -@@ -113,7 +113,7 @@ - $config["library_path"] = preg_replace("/(.*[\/])include/", "\\1lib", dirname(__FILE__)); +--- include/global.php.orig 2017-02-04 14:12:12.747287000 +0000 ++++ include/global.php 2017-02-04 14:12:32.931726000 +0000 +@@ -126,7 +126,7 @@ + $config['library_path'] = preg_replace("/(.*[\/])include/", "\\1lib", dirname(__FILE__)); } - $config["include_path"] = dirname(__FILE__); --$config["rra_path"] = $config["base_path"] . '/rra'; -+$config["rra_path"] = '/var/db/cacti/rra'; + $config['include_path'] = dirname(__FILE__); +-$config['rra_path'] = $config['base_path'] . '/rra'; ++$config['rra_path'] = '/var/db/cacti/rra'; - /* colors */ - $colors["dark_outline"] = "454E53"; + /* for multiple pollers, we need to know this location */ + if (!isset($scripts_path)) { diff --git a/net-mgmt/cacti/files/patch-include__global_settings.php b/net-mgmt/cacti/files/patch-include__global_settings.php index c365a805c9cd..5bb942b4c8ca 100644 --- a/net-mgmt/cacti/files/patch-include__global_settings.php +++ b/net-mgmt/cacti/files/patch-include__global_settings.php @@ -1,11 +1,14 @@ ---- include/global_settings.php.bak 2015-03-12 03:08:59.333297709 -0700 -+++ include/global_settings.php 2015-03-12 03:10:47.532302704 -0700 -@@ -96,7 +96,7 @@ +--- include/global_settings.php.orig 2017-02-04 14:13:42.140386000 +0000 ++++ include/global_settings.php 2017-02-04 14:20:35.592474000 +0000 +@@ -135,9 +135,9 @@ ), - "path_cactilog" => array( - "friendly_name" => "Cacti Log File Path", -- "description" => "The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)", -+ "description" => "The path to your Cacti log file (if blank, defaults to /var/log/cacti/log)", - "method" => "filepath", - "default" => $config["base_path"] . "/log/cacti.log", - "max_length" => "255" + 'path_cactilog' => array( + 'friendly_name' => __('Cacti Log Path'), +- 'description' => __('The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)'), ++ 'description' => __('The path to your Cacti log file (if blank, defaults to /var/log/cacti/log)'), + 'method' => 'filepath', +- 'default' => $config['base_path'] . '/log/cacti.log', ++ 'default' => '/var/log/cacti/log', + 'max_length' => '255' + ), + 'logrotate_enabled' => array( diff --git a/net-mgmt/cacti/files/patch-install__functions.php b/net-mgmt/cacti/files/patch-install__functions.php new file mode 100644 index 000000000000..deb2dbedc9ac --- /dev/null +++ b/net-mgmt/cacti/files/patch-install__functions.php @@ -0,0 +1,11 @@ +--- install/functions.php.orig 2017-02-04 14:21:02.093580000 +0000 ++++ install/functions.php 2017-02-04 14:21:31.615575000 +0000 +@@ -365,7 +365,7 @@ + if (config_value_exists('path_cactilog')) { + $input['path_cactilog']['default'] = read_config_option('path_cactilog'); + } else { +- $input['path_cactilog']['default'] = $config['base_path'] . '/log/cacti.log'; ++ $input['path_cactilog']['default'] = '/var/log/cacti/log'; + } + + /* Theme */ diff --git a/net-mgmt/cacti/files/patch-install__index.php b/net-mgmt/cacti/files/patch-install__index.php deleted file mode 100644 index 904c79ea1634..000000000000 --- a/net-mgmt/cacti/files/patch-install__index.php +++ /dev/null @@ -1,20 +0,0 @@ ---- install/index.php.orig 2016-05-28 10:54:08.124059773 +0100 -+++ install/index.php 2016-05-28 10:54:34.252057818 +0100 -@@ -63,7 +63,7 @@ - } - - function verify_php_extensions() { -- $extensions = array("session", "sockets", "mysql", "xml"); -+ $extensions = array("session", "sockets", "mysqli", "xml"); - $ok = true; - $missing_extension = " <p style='font-family: Verdana, Arial; font-size: 16px; font-weight: bold; color: red;'>Error</p> - <p style='font-family: Verdana, Arial; font-size: 12px;'>The following PHP extensions are missing:</p><ul>"; -@@ -267,7 +267,7 @@ - if (config_value_exists("path_cactilog")) { - $input["path_cactilog"]["default"] = read_config_option("path_cactilog"); - } else { -- $input["path_cactilog"]["default"] = $config["base_path"] . "/log/cacti.log"; -+ $input["path_cactilog"]["default"] = "/var/log/cacti/log"; - } - - /* SNMP Version */ diff --git a/net-mgmt/cacti/files/patch-lib__clog_webapi.php b/net-mgmt/cacti/files/patch-lib__clog_webapi.php new file mode 100644 index 000000000000..2153d69dbc9f --- /dev/null +++ b/net-mgmt/cacti/files/patch-lib__clog_webapi.php @@ -0,0 +1,20 @@ +--- lib/clog_webapi.php.orig 2017-02-04 14:22:42.713430000 +0000 ++++ lib/clog_webapi.php 2017-02-04 14:23:10.949163000 +0000 +@@ -40,7 +40,7 @@ + $logfile = read_config_option('path_cactilog'); + + if ($logfile == '') { +- $logfile = $config['base_path'] . '/log/cacti.log'; ++ $logfile = '/var/log/cacti/log'; + } + + if (file_exists($logfile)) { +@@ -64,7 +64,7 @@ + $logfile = read_config_option('path_cactilog'); + + if ($logfile == '') { +- $logfile = './log/cacti.log'; ++ $logfile = '/var/log/cacti/log'; + } + + /* helps determine output color */ diff --git a/net-mgmt/cacti/files/patch-lib__functions.php b/net-mgmt/cacti/files/patch-lib__functions.php index 41a9c1006d90..677acd08afe7 100644 --- a/net-mgmt/cacti/files/patch-lib__functions.php +++ b/net-mgmt/cacti/files/patch-lib__functions.php @@ -1,15 +1,11 @@ ---- lib/functions.php.orig 2016-05-28 10:58:17.522042409 +0100 -+++ lib/functions.php 2016-05-28 11:00:31.399032747 +0100 -@@ -670,8 +670,10 @@ - $issue_log_message = false; - $ping_failure_count = read_config_option("ping_failure_count"); - $ping_recovery_count = read_config_option("ping_recovery_count"); -- $hosts[$host_id]["status_fail_date"] = '0000-00-00 00:00:00'; -- $hosts[$host_id]["status_rec_date"] = '0000-00-00 00:00:00'; -+ if ((!isset($hosts[$host_id]["status_fail_date"])) || ($hosts[$host_id]["status_fail_date"] == "")) -+ $hosts[$host_id]["status_fail_date"] = '0000-00-00 00:00:00'; -+ if ((!isset($hosts[$host_id]["status_rec_date"])) || ($hosts[$host_id]["status_rec_date"] == "")) -+ $hosts[$host_id]["status_rec_date"] = '0000-00-00 00:00:00'; +--- lib/functions.php.orig 2017-02-04 14:16:43.886716000 +0000 ++++ lib/functions.php 2017-02-04 14:22:18.219392000 +0000 +@@ -649,7 +649,7 @@ + /* Log to Logfile */ + if ((($logdestination == 1) || ($logdestination == 2)) && (read_config_option('log_verbosity') != POLLER_VERBOSITY_NONE)) { + if ($logfile == '') { +- $logfile = $config['base_path'] . '/log/cacti.log'; ++ $logfile = '/var/log/cacti/log'; + } - if ($status == HOST_DOWN) { - /* update total polls, failed polls and availability */ + /* echo the data to the log (append) */ diff --git a/net-mgmt/cacti/files/patch-poller_maintenance.php b/net-mgmt/cacti/files/patch-poller_maintenance.php new file mode 100644 index 000000000000..7386f22a78ec --- /dev/null +++ b/net-mgmt/cacti/files/patch-poller_maintenance.php @@ -0,0 +1,15 @@ +--- poller_maintenance.php.orig 2017-02-04 14:23:37.951265000 +0000 ++++ poller_maintenance.php 2017-02-04 14:24:49.403929000 +0000 +@@ -172,10 +172,10 @@ + */ + function logrotate_rotatenow () { + global $config; +- $log = $config['base_path'] . '/log/cacti.log'; ++ $log = '/var/log/cacti/log'; + set_config_option('logrotate_lastrun', time()); + clearstatcache(); +- if (is_writable($config['base_path'] . '/log/') && is_writable($log)) { ++ if (is_writable('/var/log/cacti') && is_writable($log)) { + $perms = octdec(substr(decoct( fileperms($log) ), 2)); + $owner = fileowner($log); + $group = filegroup($log); diff --git a/net-mgmt/cacti/files/patch-scripts__ping.pl b/net-mgmt/cacti/files/patch-scripts__ping.pl deleted file mode 100644 index 65e3f1e06ec2..000000000000 --- a/net-mgmt/cacti/files/patch-scripts__ping.pl +++ /dev/null @@ -1,11 +0,0 @@ ---- ./scripts/ping.pl.orig 2014-08-15 15:39:56.000000000 +0200 -+++ ./scripts/ping.pl 2014-08-15 15:40:35.000000000 +0200 -@@ -6,7 +6,7 @@ - - # old linux version use "icmp_seq" - # newer use "icmp_req" instead --open(PROCESS, "ping -c 1 $host | grep 'icmp_[s|r]eq' | grep time |"); -+open(PROCESS, "/sbin/ping -c 1 $host | grep 'icmp_[s|r]eq' | grep time |"); - $ping = <PROCESS>; - close(PROCESS); - $ping =~ m/(.*time=)(.*) (ms|usec)/; diff --git a/net-mgmt/cacti/files/patch-utilities.php b/net-mgmt/cacti/files/patch-utilities.php new file mode 100644 index 000000000000..ce85642faccc --- /dev/null +++ b/net-mgmt/cacti/files/patch-utilities.php @@ -0,0 +1,20 @@ +--- utilities.php.orig 2017-02-04 14:25:11.346062000 +0000 ++++ utilities.php 2017-02-04 14:25:39.435371000 +0000 +@@ -869,7 +869,7 @@ + $logfile = read_config_option('path_cactilog'); + + if ($logfile == '') { +- $logfile = $config['base_path'] . '/log/cacti.log'; ++ $logfile = '/var/log/cacti/log'; + } + + /* helps determine output color */ +@@ -1149,7 +1149,7 @@ + $logfile = read_config_option('path_cactilog'); + + if ($logfile == '') { +- $logfile = './log/cacti.log'; ++ $logfile = '/var/log/cacti/log'; + } + + html_start_box(__('Clear Cacti Log'), '100%', '', '3', 'center', ''); diff --git a/net-mgmt/cacti/files/pkg-message.in b/net-mgmt/cacti/files/pkg-message.in index 0a16e3c5fca8..68e320f6032a 100644 --- a/net-mgmt/cacti/files/pkg-message.in +++ b/net-mgmt/cacti/files/pkg-message.in @@ -1,18 +1,22 @@ ======================================================================= -Cacti is now installed. If you intall it for the first time, +Cacti is now installed. If you install it for the first time, you may have to follow this steps to make it work correctly: 1. Create the MySQL database, a cacti user, and initialize: - a) CREATE DATABASE cacti; + a) CREATE DATABASE `cacti`; b) Create a mysql user/password for cacti: CREATE USER 'cacti'@'localhost' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; c) Add GRANTS: - GRANT ALL ON cacti.* TO 'cacti'@'localhost'; + GRANT ALL ON `cacti`.* TO 'cacti'@'localhost'; + GRANT SELECT ON `mysql`.`time_zone_name` TO 'cacti'@'localhost'; FLUSH PRIVILEGES; d) Import the default cacti database: mysql --database=cacti -ucacti -p < %%PREFIX%%/%%CACTIDIR%%/cacti.sql + If you haven't already imported your MySQL timezone data, you need to do this: + mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql + NOTE: * Cacti does not LOCK TABLES. @@ -29,8 +33,8 @@ you may have to follow this steps to make it work correctly: */5 * * * * %%LOCALBASE%%/bin/php %%PREFIX%%/%%CACTIDIR%%/poller.php > /dev/null 2>&1 4. Example Apache 2.4 configuration: + (This assumes that you have installed a working PHP Apache install, e.g. with mod_php) - LoadModule php5_module libexec/apache22/libphp5.so <FilesMatch "\.php$"> SetHandler application/x-httpd-php @@ -53,8 +57,8 @@ you may have to follow this steps to make it work correctly: Allow from all </Directory> -5. Open a Cacti login page in your web browser and login with - admin/admin. +5. Open a Cacti login page in your web browser and follow the install instructions. + If you update cacti, open a login page and an updating process will start automatically. @@ -82,6 +86,8 @@ NOTEs as of 10Aug2014: /usr/local/bin. Other Erratas: -Mount linprocfs in /compat/linux/proc will alow most scripts to work. - + 1) Mount linprocfs in /compat/linux/proc will allow most scripts to work. + 2) This package does not install a MySQL server in case you wish to use an + external MySQL server. Install a package such as mysql57-server if you + require a local server. ======================================================================= diff --git a/net-mgmt/cacti/pkg-plist b/net-mgmt/cacti/pkg-plist index 7c5dcbf141fd..68f28b5a7139 100644 --- a/net-mgmt/cacti/pkg-plist +++ b/net-mgmt/cacti/pkg-plist @@ -1,8 +1,28 @@ %%CACTIDIR%%/LICENSE -%%CACTIDIR%%/README +%%CACTIDIR%%/README.md %%CACTIDIR%%/about.php +%%CACTIDIR%%/aggregate_graphs.php +%%CACTIDIR%%/aggregate_items.php +%%CACTIDIR%%/aggregate_templates.php %%CACTIDIR%%/auth_changepassword.php %%CACTIDIR%%/auth_login.php +%%CACTIDIR%%/auth_profile.php +%%CACTIDIR%%/automation_devices.php +%%CACTIDIR%%/automation_graph_rules.php +%%CACTIDIR%%/automation_networks.php +%%CACTIDIR%%/automation_snmp.php +%%CACTIDIR%%/automation_templates.php +%%CACTIDIR%%/automation_tree_rules.php +%%CACTIDIR%%/boost_rrdupdate.php +%%CACTIDIR%%/cache/boost/.htaccess +%%CACTIDIR%%/cache/boost/index.php +%%CACTIDIR%%/cache/index.php +%%CACTIDIR%%/cache/mibcache/.htaccess +%%CACTIDIR%%/cache/mibcache/index.php +%%CACTIDIR%%/cache/realtime/.htaccess +%%CACTIDIR%%/cache/realtime/index.php +%%CACTIDIR%%/cache/spikekill/.htaccess +%%CACTIDIR%%/cache/spikekill/index.php %%CACTIDIR%%/%%CACTIUSER%%.sql %%CACTIDIR%%/cdef.php %%CACTIDIR%%/cli/.htaccess @@ -18,26 +38,33 @@ %%CACTIDIR%%/cli/copy_user.php %%CACTIDIR%%/cli/data_template_associate_rra.php %%CACTIDIR%%/cli/host_update_template.php +%%CACTIDIR%%/cli/import_package.php %%CACTIDIR%%/cli/import_template.php %%CACTIDIR%%/cli/poller_data_sources_reapply_names.php %%CACTIDIR%%/cli/poller_graphs_reapply_names.php %%CACTIDIR%%/cli/poller_output_empty.php %%CACTIDIR%%/cli/poller_reindex_hosts.php %%CACTIDIR%%/cli/rebuild_poller_cache.php +%%CACTIDIR%%/cli/removespikes.php %%CACTIDIR%%/cli/reorder_data_query.php %%CACTIDIR%%/cli/repair_database.php %%CACTIDIR%%/cli/repair_templates.php +%%CACTIDIR%%/cli/sqltable_to_php.php %%CACTIDIR%%/cli/structure_rra_paths.php %%CACTIDIR%%/cli/upgrade_database.php +%%CACTIDIR%%/clog.php +%%CACTIDIR%%/clog_user.php %%CACTIDIR%%/cmd.php +%%CACTIDIR%%/cmd_realtime.php %%CACTIDIR%%/color.php +%%CACTIDIR%%/color_templates.php +%%CACTIDIR%%/color_templates_items.php %%CACTIDIR%%/data_input.php %%CACTIDIR%%/data_queries.php %%CACTIDIR%%/data_sources.php +%%CACTIDIR%%/data_source_profiles.php %%CACTIDIR%%/data_templates.php %%CACTIDIR%%/docs/CHANGELOG -%%CACTIDIR%%/docs/CONTRIB -%%CACTIDIR%%/docs/README %%CACTIDIR%%/docs/html/LICENSE.html %%CACTIDIR%%/docs/html/advanced_topics.html %%CACTIDIR%%/docs/html/basics.html @@ -137,11 +164,20 @@ %%CACTIDIR%%/docs/html/user_management.html %%CACTIDIR%%/docs/html/using_spine.html %%CACTIDIR%%/docs/html/variables.html +%%CACTIDIR%%/docs/index.php +%%CACTIDIR%%/docs/pdf/manual.pdf %%CACTIDIR%%/docs/txt/manual.txt +%%CACTIDIR%%/formats/%%CACTIUSER%%_group.format +%%CACTIDIR%%/formats/%%CACTIUSER%%_group_dark.format +%%CACTIDIR%%/formats/%%CACTIUSER%%_monitor.format +%%CACTIDIR%%/formats/default.format +%%CACTIDIR%%/formats/index.php +%%CACTIDIR%%/formats/lotus_notes.format %%CACTIDIR%%/gprint_presets.php %%CACTIDIR%%/graph.php %%CACTIDIR%%/graph_image.php -%%CACTIDIR%%/graph_settings.php +%%CACTIDIR%%/graph_json.php +%%CACTIDIR%%/graph_realtime.php %%CACTIDIR%%/graph_templates.php %%CACTIDIR%%/graph_templates_inputs.php %%CACTIDIR%%/graph_templates_items.php @@ -152,36 +188,26 @@ %%CACTIDIR%%/graphs_new.php %%CACTIDIR%%/host.php %%CACTIDIR%%/host_templates.php +%%CACTIDIR%%/images/accept.png +%%CACTIDIR%%/images/application_edit.png %%CACTIDIR%%/images/arrow.gif -%%CACTIDIR%%/images/auth_deny.gif -%%CACTIDIR%%/images/auth_login.gif -%%CACTIDIR%%/images/auth_logout.gif -%%CACTIDIR%%/images/button_add.gif -%%CACTIDIR%%/images/button_cancel.gif -%%CACTIDIR%%/images/button_cancel2.gif -%%CACTIDIR%%/images/button_clear.gif -%%CACTIDIR%%/images/button_colapse_all.gif -%%CACTIDIR%%/images/button_create.gif -%%CACTIDIR%%/images/button_default.gif -%%CACTIDIR%%/images/button_delete.gif -%%CACTIDIR%%/images/button_expand_all.gif -%%CACTIDIR%%/images/button_export.gif -%%CACTIDIR%%/images/button_go.gif -%%CACTIDIR%%/images/button_help.gif -%%CACTIDIR%%/images/button_import.gif -%%CACTIDIR%%/images/button_no.gif -%%CACTIDIR%%/images/button_purge.gif -%%CACTIDIR%%/images/button_refresh.gif -%%CACTIDIR%%/images/button_save.gif -%%CACTIDIR%%/images/button_view.gif -%%CACTIDIR%%/images/button_yes.gif +%%CACTIDIR%%/images/auth_background.gif +%%CACTIDIR%%/images/bullet_arrow_down.png +%%CACTIDIR%%/images/bullet_arrow_up.png %%CACTIDIR%%/images/%%CACTIUSER%%_about_logo.gif %%CACTIDIR%%/images/%%CACTIUSER%%_backdrop.gif %%CACTIDIR%%/images/%%CACTIUSER%%_backdrop2.gif %%CACTIDIR%%/images/%%CACTIUSER%%_logo.gif +%%CACTIDIR%%/images/%%CACTIUSER%%_logo_new.gif %%CACTIDIR%%/images/calendar.gif +%%CACTIDIR%%/images/chart_curve_go.png +%%CACTIDIR%%/images/cog.png +%%CACTIDIR%%/images/cog_add.png +%%CACTIDIR%%/images/cog_delete.png +%%CACTIDIR%%/images/cog_error.png %%CACTIDIR%%/images/delete_icon.gif %%CACTIDIR%%/images/delete_icon_large.gif +%%CACTIDIR%%/images/device_template.png %%CACTIDIR%%/images/disable_icon.png %%CACTIDIR%%/images/enable_icon.png %%CACTIDIR%%/images/enable_icon_disabled.png @@ -190,131 +216,731 @@ %%CACTIDIR%%/images/graph_properties.gif %%CACTIDIR%%/images/graph_query.png %%CACTIDIR%%/images/graph_zoom.gif -%%CACTIDIR%%/images/hide.gif +%%CACTIDIR%%/images/index.php %%CACTIDIR%%/images/install_icon.png %%CACTIDIR%%/images/install_icon_disabled.png -%%CACTIDIR%%/images/left_border.gif -%%CACTIDIR%%/images/menu_line.gif %%CACTIDIR%%/images/menuarrow.gif %%CACTIDIR%%/images/move_down.gif %%CACTIDIR%%/images/move_left.gif %%CACTIDIR%%/images/move_right.gif %%CACTIDIR%%/images/move_up.gif %%CACTIDIR%%/images/reload_icon_small.gif +%%CACTIDIR%%/images/rrd_not_found.png %%CACTIDIR%%/images/server.png %%CACTIDIR%%/images/server_chart.png %%CACTIDIR%%/images/server_chart_curve.png %%CACTIDIR%%/images/server_dataquery.png +%%CACTIDIR%%/images/server_graph_template.png +%%CACTIDIR%%/images/server_table.png %%CACTIDIR%%/images/shadow.gif %%CACTIDIR%%/images/shadow_gray.gif -%%CACTIDIR%%/images/show.gif +%%CACTIDIR%%/images/site.png +%%CACTIDIR%%/images/spikekill.gif +%%CACTIDIR%%/images/stop.png %%CACTIDIR%%/images/tab_%%CACTIUSER%%.gif +%%CACTIDIR%%/images/tab_clog.png +%%CACTIDIR%%/images/tab_clog_down.png %%CACTIDIR%%/images/tab_console.gif %%CACTIDIR%%/images/tab_console_down.gif %%CACTIDIR%%/images/tab_graphs.gif %%CACTIDIR%%/images/tab_graphs_down.gif +%%CACTIDIR%%/images/tab_list.gif %%CACTIDIR%%/images/tab_mode_list.gif %%CACTIDIR%%/images/tab_mode_list_down.gif %%CACTIDIR%%/images/tab_mode_preview.gif %%CACTIDIR%%/images/tab_mode_preview_down.gif %%CACTIDIR%%/images/tab_mode_tree.gif %%CACTIDIR%%/images/tab_mode_tree_down.gif +%%CACTIDIR%%/images/tab_nectar.gif +%%CACTIDIR%%/images/tab_nectar_down.gif +%%CACTIDIR%%/images/tab_preview.gif %%CACTIDIR%%/images/tab_settings.gif %%CACTIDIR%%/images/tab_settings_down.gif +%%CACTIDIR%%/images/tab_tree.gif +%%CACTIDIR%%/images/table.png +%%CACTIDIR%%/images/table_go.png +%%CACTIDIR%%/images/timeview.png %%CACTIDIR%%/images/transparent_line.gif +%%CACTIDIR%%/images/tree.png %%CACTIDIR%%/images/uninstall_icon.gif %%CACTIDIR%%/images/view_none.gif +%%CACTIDIR%%/images/view_page.png %%CACTIDIR%%/include/auth.php %%CACTIDIR%%/include/bottom_footer.php %%CACTIDIR%%/include/config.php.sample +%%CACTIDIR%%/include/content/README +%%CACTIDIR%%/include/content/basic-example.html +%%CACTIDIR%%/include/content/iframe-example.html +%%CACTIDIR%%/include/content/index.php +%%CACTIDIR%%/include/content/php-example.html +%%CACTIDIR%%/include/csrf/LICENSE +%%CACTIDIR%%/include/csrf/NEWS +%%CACTIDIR%%/include/csrf/README %%CACTIDIR%%/include/csrf/csrf-magic.js %%CACTIDIR%%/include/csrf/csrf-magic.php %%CACTIDIR%%/include/csrf/index.php +%%CACTIDIR%%/include/fa/css/font-awesome.css +%%CACTIDIR%%/include/fa/css/font-awesome.min.css +%%CACTIDIR%%/include/fa/css/index.php +%%CACTIDIR%%/include/fa/fonts/FontAwesome.otf +%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.eot +%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.svg +%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.ttf +%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.woff +%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.woff2 +%%CACTIDIR%%/include/fa/fonts/index.php +%%CACTIDIR%%/include/fa/index.php +%%CACTIDIR%%/include/fonts/DejaVuSans-Bold.ttf +%%CACTIDIR%%/include/fonts/DejaVuSansCondensed-Bold.ttf %%CACTIDIR%%/include/global.php %%CACTIDIR%%/include/global_arrays.php %%CACTIDIR%%/include/global_constants.php %%CACTIDIR%%/include/global_form.php +%%CACTIDIR%%/include/global_languages.php +%%CACTIDIR%%/include/global_session.php %%CACTIDIR%%/include/global_settings.php -%%CACTIDIR%%/include/js/images/ui-bg_diagonals-thick_18_b81900_40x40.png -%%CACTIDIR%%/include/js/images/ui-bg_diagonals-thick_20_666666_40x40.png -%%CACTIDIR%%/include/js/images/ui-bg_flat_10_000000_40x100.png -%%CACTIDIR%%/include/js/images/ui-bg_glass_100_f6f6f6_1x400.png -%%CACTIDIR%%/include/js/images/ui-bg_glass_100_fdf5ce_1x400.png -%%CACTIDIR%%/include/js/images/ui-bg_glass_65_ffffff_1x400.png -%%CACTIDIR%%/include/js/images/ui-bg_gloss-wave_35_f6a828_500x100.png -%%CACTIDIR%%/include/js/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -%%CACTIDIR%%/include/js/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -%%CACTIDIR%%/include/js/images/ui-icons_222222_256x240.png -%%CACTIDIR%%/include/js/images/ui-icons_228ef1_256x240.png -%%CACTIDIR%%/include/js/images/ui-icons_ef8c08_256x240.png -%%CACTIDIR%%/include/js/images/ui-icons_ffd27a_256x240.png -%%CACTIDIR%%/include/js/images/ui-icons_ffffff_256x240.png +%%CACTIDIR%%/include/index.php +%%CACTIDIR%%/include/js/Chart.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-af.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-arabic_saudi_arabia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-az.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-bs.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-bulgarian_bulgaria.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-ca.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-chinese_china_simplified.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-chinese_hong_kong.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-chinese_taiwan.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-czech_czech_republic.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-danish_denmark.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-de-CH.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-en-GB.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-english_usa.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-eo.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-estonian_estonia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-eu.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-fa.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-finnish_finland.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-fo.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-fr-CH.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-french_france.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-german_germany.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-greek_greece.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-he.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-hr.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-hungarian_hungary.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-hy.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-icelandic_iceland.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-indonesian_indonesia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-italian_italy.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-japanese_japan.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-korean_korea.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-latvian_latvia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-lithuanian_lithuania.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-malay_malaysia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-nl-BE.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-nl.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-norwegian_norway.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-polish_poland.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-pt-BR.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-romanian_romania.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-russian_russia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-serbian_serbia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-slovak_slovakia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-slovenian_slovenia.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-spanish_spain.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-sq.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-sr-SR.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-swedish_sweden.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-ta.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-thai_thailand.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-turkish_turkey.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-uk.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-vietnamese_vietnam.js +%%CACTIDIR%%/include/js/c3.js +%%CACTIDIR%%/include/js/d3.js +%%CACTIDIR%%/include/js/dygraph-combined.js +%%CACTIDIR%%/include/js/index.php +%%CACTIDIR%%/include/js/jquery.colorpicker.js %%CACTIDIR%%/include/js/jquery.cookie.js %%CACTIDIR%%/include/js/jquery.dropdown.js +%%CACTIDIR%%/include/js/jquery.hotkeys.js %%CACTIDIR%%/include/js/jquery.js -%%CACTIDIR%%/include/js/jquery.zoom.css +%%CACTIDIR%%/include/js/jquery.metadata.js +%%CACTIDIR%%/include/js/jquery.multiselect.filter.js +%%CACTIDIR%%/include/js/jquery.multiselect.js +%%CACTIDIR%%/include/js/jquery.sparkline.js +%%CACTIDIR%%/include/js/jquery.storageapi.js +%%CACTIDIR%%/include/js/jquery.tablednd.js +%%CACTIDIR%%/include/js/jquery.tablesorter.js +%%CACTIDIR%%/include/js/jquery.timepicker.js +%%CACTIDIR%%/include/js/jquery.ui.touch.punch.js %%CACTIDIR%%/include/js/jquery.zoom.js -%%CACTIDIR%%/include/js/jquery-ui.css +%%CACTIDIR%%/include/js/jquery-migrate.js %%CACTIDIR%%/include/js/jquery-ui.js %%CACTIDIR%%/include/js/jstree.js -%%CACTIDIR%%/include/js/themes/default-dark/32px.png -%%CACTIDIR%%/include/js/themes/default-dark/40px.png -%%CACTIDIR%%/include/js/themes/default-dark/style.css -%%CACTIDIR%%/include/js/themes/default-dark/style.min.css -%%CACTIDIR%%/include/js/themes/default-dark/throbber.gif -%%CACTIDIR%%/include/js/themes/default/32px.png -%%CACTIDIR%%/include/js/themes/default/40px.png -%%CACTIDIR%%/include/js/themes/default/style.css -%%CACTIDIR%%/include/js/themes/default/style.min.css -%%CACTIDIR%%/include/js/themes/default/throbber.gif -%%CACTIDIR%%/include/jscalendar/calendar-setup.js -%%CACTIDIR%%/include/jscalendar/calendar.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-af.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-al.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-bg.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-big5-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-big5.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-br.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-ca.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-cs-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-cs-win.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-da.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-de.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-du.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-el.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-en.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-es.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-fi.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-fr.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-he-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-hr-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-hr.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-hu.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-it.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-jp.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-ko-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-ko.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-lt-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-lt.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-lv.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-nl.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-no.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-pl-utf8.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-pl.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-pt.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-ro.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-ru.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-ru_win_.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-si.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-sk.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-sp.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-sv.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-tr.js -%%CACTIDIR%%/include/jscalendar/lang/calendar-zh.js -%%CACTIDIR%%/include/jscalendar/lang/cn_utf8.js +%%CACTIDIR%%/include/js/pace.js %%CACTIDIR%%/include/layout.js %%CACTIDIR%%/include/main.css +%%CACTIDIR%%/include/phpgettext/gettext.php +%%CACTIDIR%%/include/phpgettext/streams.php +%%CACTIDIR%%/include/phpmailer/LICENSE +%%CACTIDIR%%/include/phpmailer/PHPMailerAutoload.php +%%CACTIDIR%%/include/phpmailer/VERSION +%%CACTIDIR%%/include/phpmailer/class.phpmailer.php +%%CACTIDIR%%/include/phpmailer/class.phpmaileroauth.php +%%CACTIDIR%%/include/phpmailer/class.pop3.php +%%CACTIDIR%%/include/phpmailer/class.smtp.php +%%CACTIDIR%%/include/phpmailer/index.php +%%CACTIDIR%%/include/phpmailer/language/index.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-am.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ar.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-az.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-be.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-bg.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ca.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ch.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-cs.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-da.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-de.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-el.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-eo.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-es.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-et.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fa.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fi.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fo.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fr.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-gl.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-he.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-hr.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-hu.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-id.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-it.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ja.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ka.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ko.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-lt.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-lv.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ms.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-nb.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-nl.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-pl.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-pt.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-pt_br.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ro.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ru.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sk.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sl.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sr.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sv.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-tr.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-uk.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-vi.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-zh.php +%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-zh_cn.php +%%CACTIDIR%%/include/phpseclib/Crypt/AES.php +%%CACTIDIR%%/include/phpseclib/Crypt/Base.php +%%CACTIDIR%%/include/phpseclib/Crypt/Blowfish.php +%%CACTIDIR%%/include/phpseclib/Crypt/DES.php +%%CACTIDIR%%/include/phpseclib/Crypt/Hash.php +%%CACTIDIR%%/include/phpseclib/Crypt/RC2.php +%%CACTIDIR%%/include/phpseclib/Crypt/RC4.php +%%CACTIDIR%%/include/phpseclib/Crypt/RSA.php +%%CACTIDIR%%/include/phpseclib/Crypt/Random.php +%%CACTIDIR%%/include/phpseclib/Crypt/Rijndael.php +%%CACTIDIR%%/include/phpseclib/Crypt/TripleDES.php +%%CACTIDIR%%/include/phpseclib/Crypt/Twofish.php +%%CACTIDIR%%/include/phpseclib/File/ANSI.php +%%CACTIDIR%%/include/phpseclib/File/ASN1.php +%%CACTIDIR%%/include/phpseclib/File/ASN1/Element.php +%%CACTIDIR%%/include/phpseclib/File/X509.php +%%CACTIDIR%%/include/phpseclib/Math/BigInteger.php +%%CACTIDIR%%/include/phpseclib/Net/SCP.php +%%CACTIDIR%%/include/phpseclib/Net/SFTP.php +%%CACTIDIR%%/include/phpseclib/Net/SFTP/Stream.php +%%CACTIDIR%%/include/phpseclib/Net/SSH1.php +%%CACTIDIR%%/include/phpseclib/Net/SSH2.php +%%CACTIDIR%%/include/phpseclib/System/SSH/Agent.php +%%CACTIDIR%%/include/phpseclib/System/SSH/Agent/Identity.php +%%CACTIDIR%%/include/phpseclib/System/SSH_Agent.php +%%CACTIDIR%%/include/phpseclib/bootstrap.php +%%CACTIDIR%%/include/phpseclib/openssl.cnf +%%CACTIDIR%%/include/phpsnmp/classSNMP.php +%%CACTIDIR%%/include/phptwig/Autoloader.php +%%CACTIDIR%%/include/phptwig/BaseNodeVisitor.php +%%CACTIDIR%%/include/phptwig/CHANGELOG +%%CACTIDIR%%/include/phptwig/Cache/Filesystem.php +%%CACTIDIR%%/include/phptwig/Cache/Null.php +%%CACTIDIR%%/include/phptwig/CacheInterface.php +%%CACTIDIR%%/include/phptwig/Compiler.php +%%CACTIDIR%%/include/phptwig/CompilerInterface.php +%%CACTIDIR%%/include/phptwig/Environment.php +%%CACTIDIR%%/include/phptwig/Error.php +%%CACTIDIR%%/include/phptwig/Error/Loader.php +%%CACTIDIR%%/include/phptwig/Error/Runtime.php +%%CACTIDIR%%/include/phptwig/Error/Syntax.php +%%CACTIDIR%%/include/phptwig/ExistsLoaderInterface.php +%%CACTIDIR%%/include/phptwig/ExpressionParser.php +%%CACTIDIR%%/include/phptwig/Extension.php +%%CACTIDIR%%/include/phptwig/Extension/Core.php +%%CACTIDIR%%/include/phptwig/Extension/Debug.php +%%CACTIDIR%%/include/phptwig/Extension/Escaper.php +%%CACTIDIR%%/include/phptwig/Extension/GlobalsInterface.php +%%CACTIDIR%%/include/phptwig/Extension/InitRuntimeInterface.php +%%CACTIDIR%%/include/phptwig/Extension/Optimizer.php +%%CACTIDIR%%/include/phptwig/Extension/Profiler.php +%%CACTIDIR%%/include/phptwig/Extension/Sandbox.php +%%CACTIDIR%%/include/phptwig/Extension/Staging.php +%%CACTIDIR%%/include/phptwig/Extension/StringLoader.php +%%CACTIDIR%%/include/phptwig/ExtensionInterface.php +%%CACTIDIR%%/include/phptwig/FileExtensionEscapingStrategy.php +%%CACTIDIR%%/include/phptwig/Filter.php +%%CACTIDIR%%/include/phptwig/Filter/Function.php +%%CACTIDIR%%/include/phptwig/Filter/Method.php +%%CACTIDIR%%/include/phptwig/Filter/Node.php +%%CACTIDIR%%/include/phptwig/FilterCallableInterface.php +%%CACTIDIR%%/include/phptwig/FilterInterface.php +%%CACTIDIR%%/include/phptwig/Function.php +%%CACTIDIR%%/include/phptwig/Function/Function.php +%%CACTIDIR%%/include/phptwig/Function/Method.php +%%CACTIDIR%%/include/phptwig/Function/Node.php +%%CACTIDIR%%/include/phptwig/FunctionCallableInterface.php +%%CACTIDIR%%/include/phptwig/FunctionInterface.php +%%CACTIDIR%%/include/phptwig/LICENSE +%%CACTIDIR%%/include/phptwig/Lexer.php +%%CACTIDIR%%/include/phptwig/LexerInterface.php +%%CACTIDIR%%/include/phptwig/Loader/Array.php +%%CACTIDIR%%/include/phptwig/Loader/Chain.php +%%CACTIDIR%%/include/phptwig/Loader/Filesystem.php +%%CACTIDIR%%/include/phptwig/Loader/String.php +%%CACTIDIR%%/include/phptwig/LoaderInterface.php +%%CACTIDIR%%/include/phptwig/Markup.php +%%CACTIDIR%%/include/phptwig/Node.php +%%CACTIDIR%%/include/phptwig/Node/AutoEscape.php +%%CACTIDIR%%/include/phptwig/Node/Block.php +%%CACTIDIR%%/include/phptwig/Node/BlockReference.php +%%CACTIDIR%%/include/phptwig/Node/Body.php +%%CACTIDIR%%/include/phptwig/Node/CheckSecurity.php +%%CACTIDIR%%/include/phptwig/Node/Do.php +%%CACTIDIR%%/include/phptwig/Node/Embed.php +%%CACTIDIR%%/include/phptwig/Node/Expression.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Array.php +%%CACTIDIR%%/include/phptwig/Node/Expression/AssignName.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Add.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/And.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/BitwiseAnd.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/BitwiseOr.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/BitwiseXor.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Concat.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Div.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/EndsWith.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Equal.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/FloorDiv.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Greater.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/GreaterEqual.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/In.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Less.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/LessEqual.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Matches.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Mod.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Mul.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/NotEqual.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/NotIn.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Or.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Power.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Range.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/StartsWith.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Sub.php +%%CACTIDIR%%/include/phptwig/Node/Expression/BlockReference.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Call.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Conditional.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Constant.php +%%CACTIDIR%%/include/phptwig/Node/Expression/ExtensionReference.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Filter.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Filter/Default.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Function.php +%%CACTIDIR%%/include/phptwig/Node/Expression/GetAttr.php +%%CACTIDIR%%/include/phptwig/Node/Expression/MethodCall.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Name.php +%%CACTIDIR%%/include/phptwig/Node/Expression/NullCoalesce.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Parent.php +%%CACTIDIR%%/include/phptwig/Node/Expression/TempName.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Constant.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Defined.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Divisibleby.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Even.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Null.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Odd.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Sameas.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Unary.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Unary/Neg.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Unary/Not.php +%%CACTIDIR%%/include/phptwig/Node/Expression/Unary/Pos.php +%%CACTIDIR%%/include/phptwig/Node/Flush.php +%%CACTIDIR%%/include/phptwig/Node/For.php +%%CACTIDIR%%/include/phptwig/Node/ForLoop.php +%%CACTIDIR%%/include/phptwig/Node/If.php +%%CACTIDIR%%/include/phptwig/Node/Import.php +%%CACTIDIR%%/include/phptwig/Node/Include.php +%%CACTIDIR%%/include/phptwig/Node/Macro.php +%%CACTIDIR%%/include/phptwig/Node/Module.php +%%CACTIDIR%%/include/phptwig/Node/Print.php +%%CACTIDIR%%/include/phptwig/Node/Sandbox.php +%%CACTIDIR%%/include/phptwig/Node/SandboxedPrint.php +%%CACTIDIR%%/include/phptwig/Node/Set.php +%%CACTIDIR%%/include/phptwig/Node/SetTemp.php +%%CACTIDIR%%/include/phptwig/Node/Spaceless.php +%%CACTIDIR%%/include/phptwig/Node/Text.php +%%CACTIDIR%%/include/phptwig/NodeInterface.php +%%CACTIDIR%%/include/phptwig/NodeOutputInterface.php +%%CACTIDIR%%/include/phptwig/NodeTraverser.php +%%CACTIDIR%%/include/phptwig/NodeVisitor/Escaper.php +%%CACTIDIR%%/include/phptwig/NodeVisitor/Optimizer.php +%%CACTIDIR%%/include/phptwig/NodeVisitor/SafeAnalysis.php +%%CACTIDIR%%/include/phptwig/NodeVisitor/Sandbox.php +%%CACTIDIR%%/include/phptwig/NodeVisitorInterface.php +%%CACTIDIR%%/include/phptwig/Parser.php +%%CACTIDIR%%/include/phptwig/ParserInterface.php +%%CACTIDIR%%/include/phptwig/Profiler/Dumper/Blackfire.php +%%CACTIDIR%%/include/phptwig/Profiler/Dumper/Html.php +%%CACTIDIR%%/include/phptwig/Profiler/Dumper/Text.php +%%CACTIDIR%%/include/phptwig/Profiler/Node/EnterProfile.php +%%CACTIDIR%%/include/phptwig/Profiler/Node/LeaveProfile.php +%%CACTIDIR%%/include/phptwig/Profiler/NodeVisitor/Profiler.php +%%CACTIDIR%%/include/phptwig/Profiler/Profile.php +%%CACTIDIR%%/include/phptwig/README.rst +%%CACTIDIR%%/include/phptwig/Sandbox/SecurityError.php +%%CACTIDIR%%/include/phptwig/Sandbox/SecurityNotAllowedFilterError.php +%%CACTIDIR%%/include/phptwig/Sandbox/SecurityNotAllowedFunctionError.php +%%CACTIDIR%%/include/phptwig/Sandbox/SecurityNotAllowedTagError.php +%%CACTIDIR%%/include/phptwig/Sandbox/SecurityPolicy.php +%%CACTIDIR%%/include/phptwig/Sandbox/SecurityPolicyInterface.php +%%CACTIDIR%%/include/phptwig/SimpleFilter.php +%%CACTIDIR%%/include/phptwig/SimpleFunction.php +%%CACTIDIR%%/include/phptwig/SimpleTest.php +%%CACTIDIR%%/include/phptwig/Template.php +%%CACTIDIR%%/include/phptwig/TemplateInterface.php +%%CACTIDIR%%/include/phptwig/Test.php +%%CACTIDIR%%/include/phptwig/Test/Function.php +%%CACTIDIR%%/include/phptwig/Test/IntegrationTestCase.php +%%CACTIDIR%%/include/phptwig/Test/Method.php +%%CACTIDIR%%/include/phptwig/Test/Node.php +%%CACTIDIR%%/include/phptwig/Test/NodeTestCase.php +%%CACTIDIR%%/include/phptwig/TestCallableInterface.php +%%CACTIDIR%%/include/phptwig/TestInterface.php +%%CACTIDIR%%/include/phptwig/Token.php +%%CACTIDIR%%/include/phptwig/TokenParser.php +%%CACTIDIR%%/include/phptwig/TokenParser/AutoEscape.php +%%CACTIDIR%%/include/phptwig/TokenParser/Block.php +%%CACTIDIR%%/include/phptwig/TokenParser/Do.php +%%CACTIDIR%%/include/phptwig/TokenParser/Embed.php +%%CACTIDIR%%/include/phptwig/TokenParser/Extends.php +%%CACTIDIR%%/include/phptwig/TokenParser/Filter.php +%%CACTIDIR%%/include/phptwig/TokenParser/Flush.php +%%CACTIDIR%%/include/phptwig/TokenParser/For.php +%%CACTIDIR%%/include/phptwig/TokenParser/From.php +%%CACTIDIR%%/include/phptwig/TokenParser/If.php +%%CACTIDIR%%/include/phptwig/TokenParser/Import.php +%%CACTIDIR%%/include/phptwig/TokenParser/Include.php +%%CACTIDIR%%/include/phptwig/TokenParser/Macro.php +%%CACTIDIR%%/include/phptwig/TokenParser/Sandbox.php +%%CACTIDIR%%/include/phptwig/TokenParser/Set.php +%%CACTIDIR%%/include/phptwig/TokenParser/Spaceless.php +%%CACTIDIR%%/include/phptwig/TokenParser/Use.php +%%CACTIDIR%%/include/phptwig/TokenParserBroker.php +%%CACTIDIR%%/include/phptwig/TokenParserBrokerInterface.php +%%CACTIDIR%%/include/phptwig/TokenParserInterface.php +%%CACTIDIR%%/include/phptwig/TokenStream.php +%%CACTIDIR%%/include/phptwig/Util/DeprecationCollector.php +%%CACTIDIR%%/include/phptwig/Util/TemplateDirIterator.php +%%CACTIDIR%%/include/phptwig/doc/advanced.rst +%%CACTIDIR%%/include/phptwig/doc/advanced_legacy.rst +%%CACTIDIR%%/include/phptwig/doc/api.rst +%%CACTIDIR%%/include/phptwig/doc/coding_standards.rst +%%CACTIDIR%%/include/phptwig/doc/deprecated.rst +%%CACTIDIR%%/include/phptwig/doc/filters/abs.rst +%%CACTIDIR%%/include/phptwig/doc/filters/batch.rst +%%CACTIDIR%%/include/phptwig/doc/filters/capitalize.rst +%%CACTIDIR%%/include/phptwig/doc/filters/convert_encoding.rst +%%CACTIDIR%%/include/phptwig/doc/filters/date.rst +%%CACTIDIR%%/include/phptwig/doc/filters/date_modify.rst +%%CACTIDIR%%/include/phptwig/doc/filters/default.rst +%%CACTIDIR%%/include/phptwig/doc/filters/escape.rst +%%CACTIDIR%%/include/phptwig/doc/filters/first.rst +%%CACTIDIR%%/include/phptwig/doc/filters/format.rst +%%CACTIDIR%%/include/phptwig/doc/filters/index.rst +%%CACTIDIR%%/include/phptwig/doc/filters/join.rst +%%CACTIDIR%%/include/phptwig/doc/filters/json_encode.rst +%%CACTIDIR%%/include/phptwig/doc/filters/keys.rst +%%CACTIDIR%%/include/phptwig/doc/filters/last.rst +%%CACTIDIR%%/include/phptwig/doc/filters/length.rst +%%CACTIDIR%%/include/phptwig/doc/filters/lower.rst +%%CACTIDIR%%/include/phptwig/doc/filters/merge.rst +%%CACTIDIR%%/include/phptwig/doc/filters/nl2br.rst +%%CACTIDIR%%/include/phptwig/doc/filters/number_format.rst +%%CACTIDIR%%/include/phptwig/doc/filters/raw.rst +%%CACTIDIR%%/include/phptwig/doc/filters/replace.rst +%%CACTIDIR%%/include/phptwig/doc/filters/reverse.rst +%%CACTIDIR%%/include/phptwig/doc/filters/round.rst +%%CACTIDIR%%/include/phptwig/doc/filters/slice.rst +%%CACTIDIR%%/include/phptwig/doc/filters/sort.rst +%%CACTIDIR%%/include/phptwig/doc/filters/split.rst +%%CACTIDIR%%/include/phptwig/doc/filters/striptags.rst +%%CACTIDIR%%/include/phptwig/doc/filters/title.rst +%%CACTIDIR%%/include/phptwig/doc/filters/trim.rst +%%CACTIDIR%%/include/phptwig/doc/filters/upper.rst +%%CACTIDIR%%/include/phptwig/doc/filters/url_encode.rst +%%CACTIDIR%%/include/phptwig/doc/functions/attribute.rst +%%CACTIDIR%%/include/phptwig/doc/functions/block.rst +%%CACTIDIR%%/include/phptwig/doc/functions/constant.rst +%%CACTIDIR%%/include/phptwig/doc/functions/cycle.rst +%%CACTIDIR%%/include/phptwig/doc/functions/date.rst +%%CACTIDIR%%/include/phptwig/doc/functions/dump.rst +%%CACTIDIR%%/include/phptwig/doc/functions/include.rst +%%CACTIDIR%%/include/phptwig/doc/functions/index.rst +%%CACTIDIR%%/include/phptwig/doc/functions/max.rst +%%CACTIDIR%%/include/phptwig/doc/functions/min.rst +%%CACTIDIR%%/include/phptwig/doc/functions/parent.rst +%%CACTIDIR%%/include/phptwig/doc/functions/random.rst +%%CACTIDIR%%/include/phptwig/doc/functions/range.rst +%%CACTIDIR%%/include/phptwig/doc/functions/source.rst +%%CACTIDIR%%/include/phptwig/doc/functions/template_from_string.rst +%%CACTIDIR%%/include/phptwig/doc/index.rst +%%CACTIDIR%%/include/phptwig/doc/installation.rst +%%CACTIDIR%%/include/phptwig/doc/internals.rst +%%CACTIDIR%%/include/phptwig/doc/intro.rst +%%CACTIDIR%%/include/phptwig/doc/recipes.rst +%%CACTIDIR%%/include/phptwig/doc/tags/autoescape.rst +%%CACTIDIR%%/include/phptwig/doc/tags/block.rst +%%CACTIDIR%%/include/phptwig/doc/tags/do.rst +%%CACTIDIR%%/include/phptwig/doc/tags/embed.rst +%%CACTIDIR%%/include/phptwig/doc/tags/extends.rst +%%CACTIDIR%%/include/phptwig/doc/tags/filter.rst +%%CACTIDIR%%/include/phptwig/doc/tags/flush.rst +%%CACTIDIR%%/include/phptwig/doc/tags/for.rst +%%CACTIDIR%%/include/phptwig/doc/tags/from.rst +%%CACTIDIR%%/include/phptwig/doc/tags/if.rst +%%CACTIDIR%%/include/phptwig/doc/tags/import.rst +%%CACTIDIR%%/include/phptwig/doc/tags/include.rst +%%CACTIDIR%%/include/phptwig/doc/tags/index.rst +%%CACTIDIR%%/include/phptwig/doc/tags/macro.rst +%%CACTIDIR%%/include/phptwig/doc/tags/sandbox.rst +%%CACTIDIR%%/include/phptwig/doc/tags/set.rst +%%CACTIDIR%%/include/phptwig/doc/tags/spaceless.rst +%%CACTIDIR%%/include/phptwig/doc/tags/use.rst +%%CACTIDIR%%/include/phptwig/doc/tags/verbatim.rst +%%CACTIDIR%%/include/phptwig/doc/templates.rst +%%CACTIDIR%%/include/phptwig/doc/tests/constant.rst +%%CACTIDIR%%/include/phptwig/doc/tests/defined.rst +%%CACTIDIR%%/include/phptwig/doc/tests/divisibleby.rst +%%CACTIDIR%%/include/phptwig/doc/tests/empty.rst +%%CACTIDIR%%/include/phptwig/doc/tests/even.rst +%%CACTIDIR%%/include/phptwig/doc/tests/index.rst +%%CACTIDIR%%/include/phptwig/doc/tests/iterable.rst +%%CACTIDIR%%/include/phptwig/doc/tests/null.rst +%%CACTIDIR%%/include/phptwig/doc/tests/odd.rst +%%CACTIDIR%%/include/phptwig/doc/tests/sameas.rst %%CACTIDIR%%/include/plugins.php +%%CACTIDIR%%/include/realtime.js +%%CACTIDIR%%/include/session.php +%%CACTIDIR%%/include/themes/classic/c3.css +%%CACTIDIR%%/include/themes/classic/default/32px.png +%%CACTIDIR%%/include/themes/classic/default/40px.png +%%CACTIDIR%%/include/themes/classic/default/index.php +%%CACTIDIR%%/include/themes/classic/default/style.css +%%CACTIDIR%%/include/themes/classic/default/style.min.css +%%CACTIDIR%%/include/themes/classic/default/throbber.gif +%%CACTIDIR%%/include/themes/classic/images/bar-alpha.png +%%CACTIDIR%%/include/themes/classic/images/bar-opacity.png +%%CACTIDIR%%/include/themes/classic/images/bar-pointer.png +%%CACTIDIR%%/include/themes/classic/images/bar.png +%%CACTIDIR%%/include/themes/classic/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/classic/images/index.php +%%CACTIDIR%%/include/themes/classic/images/map-opacity.png +%%CACTIDIR%%/include/themes/classic/images/map-pointer.png +%%CACTIDIR%%/include/themes/classic/images/map.png +%%CACTIDIR%%/include/themes/classic/images/preview-opacity.png +%%CACTIDIR%%/include/themes/classic/images/tab_list.gif +%%CACTIDIR%%/include/themes/classic/images/tab_preview.gif +%%CACTIDIR%%/include/themes/classic/images/tab_tree.gif +%%CACTIDIR%%/include/themes/classic/images/ui-bg_diagonals-thick_18_b81900_40x40.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_diagonals-thick_20_666666_40x40.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_flat_10_000000_40x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_100_f6f6f6_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_100_fdf5ce_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_55_fcf0ba_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_65_ffffff_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_gloss-wave_100_ece8da_500x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_gloss-wave_35_f6a828_500x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_100_fafaf4_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_15_459e00_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_95_cccccc_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_25_67b021_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_95_ffedad_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_inset-soft_15_2b2922_1x100.png +%%CACTIDIR%%/include/themes/classic/images/ui-colorpicker.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_222222_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_228ef1_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_808080_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_847e71_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_8DC262_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_cd0a0a_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_eeeeee_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_ef8c08_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_ffd27a_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_ffffff_256x240.png +%%CACTIDIR%%/include/themes/classic/index.php +%%CACTIDIR%%/include/themes/classic/jquery-ui.css +%%CACTIDIR%%/include/themes/classic/jquery.colorpicker.css +%%CACTIDIR%%/include/themes/classic/jquery.multiselect.css +%%CACTIDIR%%/include/themes/classic/jquery.timepicker.css +%%CACTIDIR%%/include/themes/classic/jquery.zoom.css +%%CACTIDIR%%/include/themes/classic/main.css +%%CACTIDIR%%/include/themes/classic/main.js +%%CACTIDIR%%/include/themes/classic/pace.css +%%CACTIDIR%%/include/themes/classic/rrdtheme.php +%%CACTIDIR%%/include/themes/dark/c3.css +%%CACTIDIR%%/include/themes/dark/default/32px.png +%%CACTIDIR%%/include/themes/dark/default/40px.png +%%CACTIDIR%%/include/themes/dark/default/index.php +%%CACTIDIR%%/include/themes/dark/default/style.css +%%CACTIDIR%%/include/themes/dark/default/throbber.gif +%%CACTIDIR%%/include/themes/dark/images/bar-alpha.png +%%CACTIDIR%%/include/themes/dark/images/bar-opacity.png +%%CACTIDIR%%/include/themes/dark/images/bar-pointer.png +%%CACTIDIR%%/include/themes/dark/images/bar.png +%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_backdrop.gif +%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_backdrop2.gif +%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/dark/images/index.php +%%CACTIDIR%%/include/themes/dark/images/map-opacity.png +%%CACTIDIR%%/include/themes/dark/images/map-pointer.png +%%CACTIDIR%%/include/themes/dark/images/map.png +%%CACTIDIR%%/include/themes/dark/images/preview-opacity.png +%%CACTIDIR%%/include/themes/dark/images/tab_list.gif +%%CACTIDIR%%/include/themes/dark/images/tab_preview.gif +%%CACTIDIR%%/include/themes/dark/images/tab_tree.gif +%%CACTIDIR%%/include/themes/dark/images/ui-bg_flat_30_cccccc_40x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_flat_50_5c5c5c_40x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_glass_40_ffc73d_1x400.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-hard_20_31442b_1x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_33_155413_1x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_35_222222_1x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_44_444444_1x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +%%CACTIDIR%%/include/themes/dark/images/ui-bg_loop_25_000000_21x21.png +%%CACTIDIR%%/include/themes/dark/images/ui-colorpicker.png +%%CACTIDIR%%/include/themes/dark/images/ui-icons_222222_256x240.png +%%CACTIDIR%%/include/themes/dark/images/ui-icons_4b8e0b_256x240.png +%%CACTIDIR%%/include/themes/dark/images/ui-icons_a83300_256x240.png +%%CACTIDIR%%/include/themes/dark/images/ui-icons_cccccc_256x240.png +%%CACTIDIR%%/include/themes/dark/images/ui-icons_ffffff_256x240.png +%%CACTIDIR%%/include/themes/dark/index.php +%%CACTIDIR%%/include/themes/dark/jquery-ui.css +%%CACTIDIR%%/include/themes/dark/jquery.colorpicker.css +%%CACTIDIR%%/include/themes/dark/jquery.multiselect.css +%%CACTIDIR%%/include/themes/dark/jquery.timepicker.css +%%CACTIDIR%%/include/themes/dark/jquery.zoom.css +%%CACTIDIR%%/include/themes/dark/main.css +%%CACTIDIR%%/include/themes/dark/main.js +%%CACTIDIR%%/include/themes/dark/pace.css +%%CACTIDIR%%/include/themes/dark/rrdtheme.php +%%CACTIDIR%%/include/themes/index.php +%%CACTIDIR%%/include/themes/modern/c3.css +%%CACTIDIR%%/include/themes/modern/default/32px.png +%%CACTIDIR%%/include/themes/modern/default/40px.png +%%CACTIDIR%%/include/themes/modern/default/index.php +%%CACTIDIR%%/include/themes/modern/default/style.css +%%CACTIDIR%%/include/themes/modern/default/style.min.css +%%CACTIDIR%%/include/themes/modern/default/throbber.gif +%%CACTIDIR%%/include/themes/modern/images/bar-alpha.png +%%CACTIDIR%%/include/themes/modern/images/bar-opacity.png +%%CACTIDIR%%/include/themes/modern/images/bar-pointer.png +%%CACTIDIR%%/include/themes/modern/images/bar.png +%%CACTIDIR%%/include/themes/modern/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/modern/images/index.php +%%CACTIDIR%%/include/themes/modern/images/map-opacity.png +%%CACTIDIR%%/include/themes/modern/images/map-pointer.png +%%CACTIDIR%%/include/themes/modern/images/map.png +%%CACTIDIR%%/include/themes/modern/images/preview-opacity.png +%%CACTIDIR%%/include/themes/modern/images/tab_list.gif +%%CACTIDIR%%/include/themes/modern/images/tab_preview.gif +%%CACTIDIR%%/include/themes/modern/images/tab_tree.gif +%%CACTIDIR%%/include/themes/modern/images/ui-bg_flat_0_aaaaaa_40x100.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_flat_75_ffffff_40x100.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png +%%CACTIDIR%%/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png +%%CACTIDIR%%/include/themes/modern/images/ui-colorpicker.png +%%CACTIDIR%%/include/themes/modern/images/ui-icons_222222_256x240.png +%%CACTIDIR%%/include/themes/modern/images/ui-icons_2e83ff_256x240.png +%%CACTIDIR%%/include/themes/modern/images/ui-icons_454545_256x240.png +%%CACTIDIR%%/include/themes/modern/images/ui-icons_888888_256x240.png +%%CACTIDIR%%/include/themes/modern/images/ui-icons_cd0a0a_256x240.png +%%CACTIDIR%%/include/themes/modern/index.php +%%CACTIDIR%%/include/themes/modern/jquery-ui.css +%%CACTIDIR%%/include/themes/modern/jquery.colorpicker.css +%%CACTIDIR%%/include/themes/modern/jquery.multiselect.css +%%CACTIDIR%%/include/themes/modern/jquery.timepicker.css +%%CACTIDIR%%/include/themes/modern/jquery.zoom.css +%%CACTIDIR%%/include/themes/modern/main.css +%%CACTIDIR%%/include/themes/modern/main.js +%%CACTIDIR%%/include/themes/modern/pace.css +%%CACTIDIR%%/include/themes/modern/rrdtheme.php +%%CACTIDIR%%/include/themes/paw/c3.css +%%CACTIDIR%%/include/themes/paw/default/32px.png +%%CACTIDIR%%/include/themes/paw/default/40px.png +%%CACTIDIR%%/include/themes/paw/default/index.php +%%CACTIDIR%%/include/themes/paw/default/style.css +%%CACTIDIR%%/include/themes/paw/default/style.min.css +%%CACTIDIR%%/include/themes/paw/default/throbber.gif +%%CACTIDIR%%/include/themes/paw/images/bar-alpha.png +%%CACTIDIR%%/include/themes/paw/images/bar-opacity.png +%%CACTIDIR%%/include/themes/paw/images/bar-pointer.png +%%CACTIDIR%%/include/themes/paw/images/bar.png +%%CACTIDIR%%/include/themes/paw/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/paw/images/index.php +%%CACTIDIR%%/include/themes/paw/images/map-opacity.png +%%CACTIDIR%%/include/themes/paw/images/map-pointer.png +%%CACTIDIR%%/include/themes/paw/images/map.png +%%CACTIDIR%%/include/themes/paw/images/preview-opacity.png +%%CACTIDIR%%/include/themes/paw/images/tab_list.gif +%%CACTIDIR%%/include/themes/paw/images/tab_preview.gif +%%CACTIDIR%%/include/themes/paw/images/tab_tree.gif +%%CACTIDIR%%/include/themes/paw/images/ui-bg_flat_0_aaaaaa_40x100.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_flat_75_ffffff_40x100.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_55_fbf9ee_1x400.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_65_ffffff_1x400.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_75_dadada_1x400.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_75_e6e6e6_1x400.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_95_fef1ec_1x400.png +%%CACTIDIR%%/include/themes/paw/images/ui-bg_highlight-soft_75_cccccc_1x100.png +%%CACTIDIR%%/include/themes/paw/images/ui-colorpicker.png +%%CACTIDIR%%/include/themes/paw/images/ui-icons_222222_256x240.png +%%CACTIDIR%%/include/themes/paw/images/ui-icons_2e83ff_256x240.png +%%CACTIDIR%%/include/themes/paw/images/ui-icons_454545_256x240.png +%%CACTIDIR%%/include/themes/paw/images/ui-icons_888888_256x240.png +%%CACTIDIR%%/include/themes/paw/images/ui-icons_cd0a0a_256x240.png +%%CACTIDIR%%/include/themes/paw/index.php +%%CACTIDIR%%/include/themes/paw/jquery-ui.css +%%CACTIDIR%%/include/themes/paw/jquery-ui.org.css +%%CACTIDIR%%/include/themes/paw/jquery.colorpicker.css +%%CACTIDIR%%/include/themes/paw/jquery.multiselect.css +%%CACTIDIR%%/include/themes/paw/jquery.timepicker.css +%%CACTIDIR%%/include/themes/paw/jquery.zoom.css +%%CACTIDIR%%/include/themes/paw/main.css +%%CACTIDIR%%/include/themes/paw/main.js +%%CACTIDIR%%/include/themes/paw/pace.css +%%CACTIDIR%%/include/themes/paw/rrdtheme.php +%%CACTIDIR%%/include/top_general_header.php %%CACTIDIR%%/include/top_graph_header.php %%CACTIDIR%%/include/top_header.php %%CACTIDIR%%/index.php @@ -349,97 +975,21 @@ %%CACTIDIR%%/install/0_8_8e_to_0_8_8f.php %%CACTIDIR%%/install/0_8_8f_to_0_8_8g.php %%CACTIDIR%%/install/0_8_8g_to_0_8_8h.php +%%CACTIDIR%%/install/0_8_8h_to_1_0_0.php %%CACTIDIR%%/install/0_8_to_0_8_1.php +%%CACTIDIR%%/install/1_0_0_to_1_0_1.php +%%CACTIDIR%%/install/colors.csv +%%CACTIDIR%%/install/functions.php +%%CACTIDIR%%/install/import_colors.php %%CACTIDIR%%/install/index.php -%%CACTIDIR%%/install/install_finish.gif -%%CACTIDIR%%/install/install_next.gif -%%CACTIDIR%%/lib/adodb/adodb-csvlib.inc.php -%%CACTIDIR%%/lib/adodb/adodb-datadict.inc.php -%%CACTIDIR%%/lib/adodb/adodb-error.inc.php -%%CACTIDIR%%/lib/adodb/adodb-errorhandler.inc.php -%%CACTIDIR%%/lib/adodb/adodb-errorpear.inc.php -%%CACTIDIR%%/lib/adodb/adodb-exceptions.inc.php -%%CACTIDIR%%/lib/adodb/adodb-iterator.inc.php -%%CACTIDIR%%/lib/adodb/adodb-lib.inc.php -%%CACTIDIR%%/lib/adodb/adodb-pear.inc.php -%%CACTIDIR%%/lib/adodb/adodb-perf.inc.php -%%CACTIDIR%%/lib/adodb/adodb-php4.inc.php -%%CACTIDIR%%/lib/adodb/adodb-time.inc.php -%%CACTIDIR%%/lib/adodb/adodb-xmlschema.inc.php -%%CACTIDIR%%/lib/adodb/adodb.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-access.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-db2.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-firebird.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-generic.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-ibase.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-informix.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-mssql.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-mysql.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-oci8.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-postgres.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-sapdb.inc.php -%%CACTIDIR%%/lib/adodb/datadict/datadict-sybase.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-access.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-ado.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-ado5.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-ado_access.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-ado_mssql.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-borland_ibase.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-csv.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-db2.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-fbsql.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-firebird.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-ibase.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-informix.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-informix72.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-ldap.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-mssql.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-mssqlpo.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-mysql.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-mysqli.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-mysqlt.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-netezza.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-oci8.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-oci805.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-oci8po.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-odbc.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-odbc_mssql.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-odbc_oracle.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-odbtp.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-odbtp_unicode.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-oracle.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-pdo.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-postgres.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-postgres64.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-postgres7.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-proxy.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-sapdb.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-sqlanywhere.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-sqlite.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-sqlitepo.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-sybase.inc.php -%%CACTIDIR%%/lib/adodb/drivers/adodb-vfp.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-ar.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-bg.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-bgutf8.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-ca.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-cn.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-cz.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-de.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-en.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-es.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-fr.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-hu.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-it.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-nl.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-pl.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-pt-br.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-ro.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-ru1251.inc.php -%%CACTIDIR%%/lib/adodb/lang/adodb-sv.inc.php -%%CACTIDIR%%/lib/adodb/license.txt -%%CACTIDIR%%/lib/adodb/toexport.inc.php -%%CACTIDIR%%/lib/adodb/tohtml.inc.php +%%CACTIDIR%%/install/templates/Cisco_Router.xml.gz +%%CACTIDIR%%/install/templates/Generic_SNMP_Device.xml.gz +%%CACTIDIR%%/install/templates/Local_Linux_Machine.xml.gz +%%CACTIDIR%%/install/templates/NetSNMP_Device.xml.gz +%%CACTIDIR%%/install/templates/Windows_Device.xml.gz +%%CACTIDIR%%/lib/aggregate.php +%%CACTIDIR%%/lib/api_aggregate.php +%%CACTIDIR%%/lib/api_automation.php %%CACTIDIR%%/lib/api_automation_tools.php %%CACTIDIR%%/lib/api_data_source.php %%CACTIDIR%%/lib/api_device.php @@ -447,57 +997,97 @@ %%CACTIDIR%%/lib/api_poller.php %%CACTIDIR%%/lib/api_tree.php %%CACTIDIR%%/lib/auth.php +%%CACTIDIR%%/lib/boost.php %%CACTIDIR%%/lib/cdef.php +%%CACTIDIR%%/lib/clog_webapi.php %%CACTIDIR%%/lib/data_query.php %%CACTIDIR%%/lib/database.php +%%CACTIDIR%%/lib/dsstats.php %%CACTIDIR%%/lib/export.php %%CACTIDIR%%/lib/functions.php -%%CACTIDIR%%/lib/graph_export.php %%CACTIDIR%%/lib/graph_variables.php %%CACTIDIR%%/lib/html.php %%CACTIDIR%%/lib/html_form.php %%CACTIDIR%%/lib/html_form_template.php +%%CACTIDIR%%/lib/html_graph.php +%%CACTIDIR%%/lib/html_reports.php %%CACTIDIR%%/lib/html_tree.php %%CACTIDIR%%/lib/html_utility.php %%CACTIDIR%%/lib/html_validate.php %%CACTIDIR%%/lib/import.php +%%CACTIDIR%%/lib/index.php %%CACTIDIR%%/lib/ldap.php +%%CACTIDIR%%/lib/mib_cache.php +%%CACTIDIR%%/lib/mib_parser.php %%CACTIDIR%%/lib/ping.php %%CACTIDIR%%/lib/plugins.php %%CACTIDIR%%/lib/poller.php +%%CACTIDIR%%/lib/reports.php %%CACTIDIR%%/lib/rrd.php %%CACTIDIR%%/lib/snmp.php +%%CACTIDIR%%/lib/snmpagent.php %%CACTIDIR%%/lib/sort.php %%CACTIDIR%%/lib/template.php %%CACTIDIR%%/lib/time.php %%CACTIDIR%%/lib/timespan_settings.php -%%CACTIDIR%%/lib/tree.php %%CACTIDIR%%/lib/utility.php %%CACTIDIR%%/lib/variables.php +%%CACTIDIR%%/lib/vdef.php %%CACTIDIR%%/lib/xml.php +%%CACTIDIR%%/link.php +%%CACTIDIR%%/links.php +%%CACTIDIR%%/locales/LC_MESSAGES/bulgarian_bulgaria.mo +%%CACTIDIR%%/locales/LC_MESSAGES/chinese_china_simplified.mo +%%CACTIDIR%%/locales/LC_MESSAGES/french_france.mo +%%CACTIDIR%%/locales/LC_MESSAGES/german_germany.mo +%%CACTIDIR%%/locales/LC_MESSAGES/japanese_japan.mo +%%CACTIDIR%%/locales/LC_MESSAGES/russian_russia.mo +%%CACTIDIR%%/locales/LC_MESSAGES/spanish_spain.mo +%%CACTIDIR%%/locales/LC_MESSAGES/swedish_sweden.mo +%%CACTIDIR%%/locales/po/%%CACTIUSER%%.pot %%CACTIDIR%%/logout.php +%%CACTIDIR%%/managers.php +%%CACTIDIR%%/mibs/CACTI-BOOST-MIB +%%CACTIDIR%%/mibs/CACTI-MIB +%%CACTIDIR%%/mibs/CACTI-SNMPAGENT-MIB +%%CACTIDIR%%/mibs/index.php +%%CACTIDIR%%/permission_denied.php %%CACTIDIR%%/plugins.php %%CACTIDIR%%/plugins/index.php %%CACTIDIR%%/poller.php +%%CACTIDIR%%/poller_automation.php +%%CACTIDIR%%/poller_boost.php %%CACTIDIR%%/poller_commands.php +%%CACTIDIR%%/poller_dsstats.php %%CACTIDIR%%/poller_export.php +%%CACTIDIR%%/poller_maintenance.php +%%CACTIDIR%%/poller_realtime.php +%%CACTIDIR%%/poller_recovery.php +%%CACTIDIR%%/poller_reports.php +%%CACTIDIR%%/poller_spikekill.php +%%CACTIDIR%%/pollers.php +%%CACTIDIR%%/remote_agent.php +%%CACTIDIR%%/reports_admin.php +%%CACTIDIR%%/reports_user.php +%%CACTIDIR%%/resource/index.php %%CACTIDIR%%/resource/script_queries/host_cpu.xml %%CACTIDIR%%/resource/script_queries/host_disk.xml +%%CACTIDIR%%/resource/script_queries/index.php %%CACTIDIR%%/resource/script_queries/unix_disk.xml %%CACTIDIR%%/resource/script_server/host_cpu.xml %%CACTIDIR%%/resource/script_server/host_disk.xml +%%CACTIDIR%%/resource/script_server/index.php %%CACTIDIR%%/resource/snmp_queries/host_disk.xml +%%CACTIDIR%%/resource/snmp_queries/index.php %%CACTIDIR%%/resource/snmp_queries/interface.xml -%%CACTIDIR%%/resource/snmp_queries/kbridge.xml +%%CACTIDIR%%/resource/snmp_queries/net-snmp_devio.xml %%CACTIDIR%%/resource/snmp_queries/net-snmp_disk.xml -%%CACTIDIR%%/resource/snmp_queries/netware_cpu.xml -%%CACTIDIR%%/resource/snmp_queries/netware_disk.xml -%%CACTIDIR%%/rra.php +%%CACTIDIR%%/rrdcleaner.php %%CACTIDIR%%/script_server.php -%%CACTIDIR%%/script_server.pl %%CACTIDIR%%/scripts/3com_cable_modem.pl %%CACTIDIR%%/scripts/diskfree.pl %%CACTIDIR%%/scripts/diskfree.sh +%%CACTIDIR%%/scripts/index.php %%CACTIDIR%%/scripts/linux_memory.pl %%CACTIDIR%%/scripts/loadavg.pl %%CACTIDIR%%/scripts/loadavg_multi.pl @@ -506,9 +1096,12 @@ %%CACTIDIR%%/scripts/query_host_partitions.php %%CACTIDIR%%/scripts/query_unix_partitions.pl %%CACTIDIR%%/scripts/sql.php +%%CACTIDIR%%/scripts/ss_count_oids.php %%CACTIDIR%%/scripts/ss_fping.php %%CACTIDIR%%/scripts/ss_host_cpu.php %%CACTIDIR%%/scripts/ss_host_disk.php +%%CACTIDIR%%/scripts/ss_net_snmp_disk_bytes.php +%%CACTIDIR%%/scripts/ss_net_snmp_disk_io.php %%CACTIDIR%%/scripts/ss_sql.php %%CACTIDIR%%/scripts/unix_processes.pl %%CACTIDIR%%/scripts/unix_tcp_connections.pl @@ -516,11 +1109,19 @@ %%CACTIDIR%%/scripts/weatherbug.pl %%CACTIDIR%%/scripts/webhits.pl %%CACTIDIR%%/settings.php +%%CACTIDIR%%/sites.php +%%CACTIDIR%%/snmpagent_mibcache.php +%%CACTIDIR%%/snmpagent_mibcachechild.php +%%CACTIDIR%%/snmpagent_persist.php +%%CACTIDIR%%/spikekill.php %%CACTIDIR%%/templates_export.php %%CACTIDIR%%/templates_import.php %%CACTIDIR%%/tree.php %%CACTIDIR%%/user_admin.php +%%CACTIDIR%%/user_domains.php +%%CACTIDIR%%/user_group_admin.php %%CACTIDIR%%/utilities.php +%%CACTIDIR%%/vdef.php @comment @comment Manage the new Cacti dirs from their prior default location. @comment |