diff options
-rw-r--r-- | net-mgmt/cacti/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/cacti/distinfo | 6 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-include__global.php | 4 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-include__global_settings.php | 11 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-install__functions.php | 12 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-lib__clog_webapi.php | 17 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-lib__functions.php | 20 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-lib_installer.php | 11 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-poller_maintenance.php | 10 | ||||
-rw-r--r-- | net-mgmt/cacti/files/patch-scripts__diskfree.pl | 9 | ||||
-rw-r--r-- | net-mgmt/cacti/pkg-plist | 1701 |
11 files changed, 1200 insertions, 603 deletions
diff --git a/net-mgmt/cacti/Makefile b/net-mgmt/cacti/Makefile index 68611175c76a..d26613c4c146 100644 --- a/net-mgmt/cacti/Makefile +++ b/net-mgmt/cacti/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cacti -PORTVERSION= 1.1.38 +PORTVERSION= 1.2.0 CATEGORIES= net-mgmt www MASTER_SITES= http://www.cacti.net/downloads/ \ ftp://ftpmirror.uk/freebsd-ports/cacti/ diff --git a/net-mgmt/cacti/distinfo b/net-mgmt/cacti/distinfo index f28777b0560c..f96022f70b1f 100644 --- a/net-mgmt/cacti/distinfo +++ b/net-mgmt/cacti/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1541866898 -SHA256 (cacti-1.1.38.tar.gz) = b6c69056e6b2697ada52cb0498b7c29162ead776e7fa4fbf8156cdcb4769899d -SIZE (cacti-1.1.38.tar.gz) = 9081347 +TIMESTAMP = 1546745499 +SHA256 (cacti-1.2.0.tar.gz) = 89955877f4d2c2f025f11b5f0bbbd658b89a6f8fb3da94525460c11d787dfdad +SIZE (cacti-1.2.0.tar.gz) = 23258730 diff --git a/net-mgmt/cacti/files/patch-include__global.php b/net-mgmt/cacti/files/patch-include__global.php index 9359b85e2555..1f3b18d8de97 100644 --- a/net-mgmt/cacti/files/patch-include__global.php +++ b/net-mgmt/cacti/files/patch-include__global.php @@ -1,6 +1,6 @@ ---- include/global.php.orig 2017-08-13 04:06:37 UTC +--- include/global.php.orig 2019-01-03 02:14:26 UTC +++ include/global.php -@@ -139,7 +139,7 @@ if ($config['cacti_server_os'] == 'win32') { +@@ -173,7 +173,7 @@ if ($config['cacti_server_os'] == 'win32') { $config['library_path'] = preg_replace("/(.*[\/])include/", "\\1lib", dirname(__FILE__)); } $config['include_path'] = dirname(__FILE__); diff --git a/net-mgmt/cacti/files/patch-include__global_settings.php b/net-mgmt/cacti/files/patch-include__global_settings.php index 61f26937a64d..c4bc62a1835e 100644 --- a/net-mgmt/cacti/files/patch-include__global_settings.php +++ b/net-mgmt/cacti/files/patch-include__global_settings.php @@ -1,14 +1,15 @@ ---- include/global_settings.php.orig 2018-02-26 01:12:03 UTC +--- include/global_settings.php.orig 2019-01-03 02:14:26 UTC +++ include/global_settings.php -@@ -143,9 +143,9 @@ $settings = array( +@@ -160,10 +160,10 @@ $settings = array( ), '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', + 'file_type' => 'ascii', - 'default' => $config['base_path'] . '/log/cacti.log', -+ 'default' => '/var/log/cacti/log', - 'max_length' => '255' ++ 'default' => /var/log/cacti/log', + 'max_length' => '255', + 'install_check' => 'writable' ), - 'logrotate_enabled' => array( diff --git a/net-mgmt/cacti/files/patch-install__functions.php b/net-mgmt/cacti/files/patch-install__functions.php index b8503f30b529..59a76dbe1494 100644 --- a/net-mgmt/cacti/files/patch-install__functions.php +++ b/net-mgmt/cacti/files/patch-install__functions.php @@ -1,11 +1,11 @@ ---- install/functions.php.orig 2017-08-13 04:06:37 UTC +--- install/functions.php.orig 2019-01-03 02:14:26 UTC +++ install/functions.php -@@ -432,7 +432,7 @@ function install_file_paths () { - if (config_value_exists('path_cactilog')) { - $input['path_cactilog']['default'] = read_config_option('path_cactilog'); - } else { +@@ -528,7 +528,7 @@ function install_file_paths() { + /* log file path */ + $input['path_cactilog'] = $settings['path']['path_cactilog']; + if (empty($input['path_cactilog']['default'])) { - $input['path_cactilog']['default'] = $config['base_path'] . '/log/cacti.log'; + $input['path_cactilog']['default'] = '/var/log/cacti/log'; } - /* Theme */ + /* stderr log file path */ diff --git a/net-mgmt/cacti/files/patch-lib__clog_webapi.php b/net-mgmt/cacti/files/patch-lib__clog_webapi.php index 3020b29772cd..c44373e46bde 100644 --- a/net-mgmt/cacti/files/patch-lib__clog_webapi.php +++ b/net-mgmt/cacti/files/patch-lib__clog_webapi.php @@ -1,20 +1,11 @@ ---- lib/clog_webapi.php.orig 2017-08-13 04:06:37 UTC +--- lib/clog_webapi.php.orig 2019-01-03 02:14:26 UTC +++ lib/clog_webapi.php -@@ -42,7 +42,7 @@ function clog_purge_logfile() { - $logfile = read_config_option('path_cactilog'); +@@ -56,7 +56,7 @@ function clog_validate_filename(&$file, &$filepath, &$ + $logbase = basename($logfile); if ($logfile == '') { - $logfile = $config['base_path'] . '/log/cacti.log'; + $logfile = '/var/log/cacti/log'; } - $purgefile = dirname($logfile) . '/' . get_nfilter_request_var('filename'); -@@ -85,7 +85,7 @@ function clog_view_logfile() { - $logfile = $requestedFile; - } - } elseif ($logfile == '') { -- $logfile = $config['base_path'] . '/log/cacti.log'; -+ $logfile = '/var/log/cacti/log'; - } - - /* ================= input validation and session storage ================= */ + $errfile = read_config_option('path_stderrlog'); diff --git a/net-mgmt/cacti/files/patch-lib__functions.php b/net-mgmt/cacti/files/patch-lib__functions.php index d4c5acaa47e2..8b0cbfb61bef 100644 --- a/net-mgmt/cacti/files/patch-lib__functions.php +++ b/net-mgmt/cacti/files/patch-lib__functions.php @@ -1,11 +1,11 @@ ---- lib/functions.php.orig 2017-08-13 04:06:37 UTC +--- lib/functions.php.orig 2019-01-03 02:14:26 UTC +++ lib/functions.php -@@ -615,7 +615,7 @@ function cacti_log($string, $output = false, $environ - /* 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'; - } - - /* echo the data to the log (append) */ +@@ -818,7 +818,7 @@ function cacti_log_file() { + global $config; + $logfile = read_config_option('path_cactilog'); + if ($logfile == '') { +- $logfile = $config['base_path'] . '/log/cacti.log'; ++ $logfile = '/var/log/cacti/log'; + } + $config['log_path'] = $logfile; + return $logfile; diff --git a/net-mgmt/cacti/files/patch-lib_installer.php b/net-mgmt/cacti/files/patch-lib_installer.php new file mode 100644 index 000000000000..612b8c5f077d --- /dev/null +++ b/net-mgmt/cacti/files/patch-lib_installer.php @@ -0,0 +1,11 @@ +--- lib/installer.php.orig 2019-01-06 07:22:22 UTC ++++ lib/installer.php +@@ -3222,7 +3222,7 @@ class Installer implements JsonSerializable { + + public static function getInstallLog() { + global $config; +- $logcontents = tail_file($config['base_path'] . '/log/cacti.log', 100, -1, ' INSTALL:' , 1, $total_rows); ++ $logcontents = tail_file('/var/log/cacti/log', 100, -1, ' INSTALL:' , 1, $total_rows); + + $output_log = ''; + foreach ($logcontents as $logline) { diff --git a/net-mgmt/cacti/files/patch-poller_maintenance.php b/net-mgmt/cacti/files/patch-poller_maintenance.php index a52b73363c1e..a166749a5017 100644 --- a/net-mgmt/cacti/files/patch-poller_maintenance.php +++ b/net-mgmt/cacti/files/patch-poller_maintenance.php @@ -1,11 +1,11 @@ ---- poller_maintenance.php.orig 2018-02-26 01:12:04 UTC +--- poller_maintenance.php.orig 2019-01-03 02:14:26 UTC +++ poller_maintenance.php -@@ -223,7 +223,7 @@ function logrotate_rotatenow () { - +@@ -227,7 +227,7 @@ function logrotate_rotatenow() { + $logs = array(); $log = read_config_option('path_cactilog'); - if ($log == '') { + if (empty($log)) { - $log = $config['base_path'] . '/log/cacti.log'; + $log = '/var/log/cacti/log'; } + $logs['Cacti'] = $log; - $run_time = time(); diff --git a/net-mgmt/cacti/files/patch-scripts__diskfree.pl b/net-mgmt/cacti/files/patch-scripts__diskfree.pl deleted file mode 100644 index ff923d580503..000000000000 --- a/net-mgmt/cacti/files/patch-scripts__diskfree.pl +++ /dev/null @@ -1,9 +0,0 @@ ---- scripts/diskfree.pl.orig 2017-04-26 00:30:09 UTC -+++ scripts/diskfree.pl -@@ -1,5 +1,5 @@ - #!/usr/bin/perl --open(PROCESS,"df --block-size=1024 -P $ARGV[0] | grep -v Filesystem |"); -+open(PROCESS,"df -k $ARGV[0] | grep -v Filesystem |"); - foreach (<PROCESS>) { - if ($_ =~ /($ARGV[0])(.* )(.*[0-9])(.* )(.*[0-9])(.* )(.*[0-9])(.* )(.*[0-9])%(.* )/) { - print "megabytes:$7 percent:$9"; diff --git a/net-mgmt/cacti/pkg-plist b/net-mgmt/cacti/pkg-plist index cd960c851771..2b24be2e72dd 100644 --- a/net-mgmt/cacti/pkg-plist +++ b/net-mgmt/cacti/pkg-plist @@ -1,3 +1,4 @@ +%%CACTIDIR%%/CHANGELOG %%CACTIDIR%%/LICENSE %%CACTIDIR%%/README.md %%CACTIDIR%%/about.php @@ -23,11 +24,12 @@ %%CACTIDIR%%/cache/realtime/index.php %%CACTIDIR%%/cache/spikekill/.htaccess %%CACTIDIR%%/cache/spikekill/index.php -%%CACTIDIR%%/%%CACTIUSER%%.sql +%%CACTIDIR%%/cacti.sql %%CACTIDIR%%/cdef.php %%CACTIDIR%%/cli/.htaccess %%CACTIDIR%%/cli/index.php %%CACTIDIR%%/cli/add_data_query.php +%%CACTIDIR%%/cli/add_datasource.php %%CACTIDIR%%/cli/add_device.php %%CACTIDIR%%/cli/add_graph_template.php %%CACTIDIR%%/cli/add_graphs.php @@ -35,23 +37,28 @@ %%CACTIDIR%%/cli/add_tree.php %%CACTIDIR%%/cli/analyze_database.php %%CACTIDIR%%/cli/audit_database.php -%%CACTIDIR%%/cli/convert_innodb.php +%%CACTIDIR%%/cli/convert_tables.php %%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/input_whitelist.php +%%CACTIDIR%%/cli/install_cacti.php %%CACTIDIR%%/cli/md5sum.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/poller_replicate.php %%CACTIDIR%%/cli/rebuild_poller_cache.php %%CACTIDIR%%/cli/remove_device.php +%%CACTIDIR%%/cli/remove_graphs.php %%CACTIDIR%%/cli/removespikes.php %%CACTIDIR%%/cli/reorder_data_query.php %%CACTIDIR%%/cli/repair_database.php +%%CACTIDIR%%/cli/repair_graphs.php %%CACTIDIR%%/cli/repair_templates.php +%%CACTIDIR%%/cli/splice_rra.php %%CACTIDIR%%/cli/sqltable_to_php.php %%CACTIDIR%%/cli/structure_rra_paths.php %%CACTIDIR%%/cli/upgrade_database.php @@ -62,116 +69,394 @@ %%CACTIDIR%%/color.php %%CACTIDIR%%/color_templates.php %%CACTIDIR%%/color_templates_items.php +%%CACTIDIR%%/data_debug.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/html/LICENSE.html -%%CACTIDIR%%/docs/html/advanced-topics.html -%%CACTIDIR%%/docs/html/basics.html -%%CACTIDIR%%/docs/html/batch-copy-users.html -%%CACTIDIR%%/docs/html/bsd-ports.html -%%CACTIDIR%%/docs/html/%%CACTIUSER%%-help.html -%%CACTIDIR%%/docs/html/cdefs.html -%%CACTIDIR%%/docs/html/check-%%CACTIUSER%%-poller.html -%%CACTIDIR%%/docs/html/check-data-gathering.html -%%CACTIDIR%%/docs/html/check-mysql-updating.html -%%CACTIDIR%%/docs/html/check-rrd-graph.html -%%CACTIDIR%%/docs/html/check-rrd-numbers.html -%%CACTIDIR%%/docs/html/check-rrd-owner.html -%%CACTIDIR%%/docs/html/check-rrd-updating.html -%%CACTIDIR%%/docs/html/check-zero-values.html -%%CACTIDIR%%/docs/html/cli-add-data-query.html -%%CACTIDIR%%/docs/html/cli-add-device.html -%%CACTIDIR%%/docs/html/cli-add-graph-template.html -%%CACTIDIR%%/docs/html/cli-add-graphs.html -%%CACTIDIR%%/docs/html/cli-add-perms.html -%%CACTIDIR%%/docs/html/cli-add-tree.html -%%CACTIDIR%%/docs/html/cli-copy-user.html -%%CACTIDIR%%/docs/html/cli-poller-graphs-reapply-names.html -%%CACTIDIR%%/docs/html/cli-poller-output-empty.html -%%CACTIDIR%%/docs/html/cli-poller-reindex-hosts.html -%%CACTIDIR%%/docs/html/copying-user.html -%%CACTIDIR%%/docs/html/create-new-user.html -%%CACTIDIR%%/docs/html/data-input-methods.html -%%CACTIDIR%%/docs/html/data-presentation.html -%%CACTIDIR%%/docs/html/data-queries.html -%%CACTIDIR%%/docs/html/data-storage.html -%%CACTIDIR%%/docs/html/debug-miscellaneous.html -%%CACTIDIR%%/docs/html/debug-rpm-installation.html -%%CACTIDIR%%/docs/html/debugging.html -%%CACTIDIR%%/docs/html/delete-users.html -%%CACTIDIR%%/docs/html/enable-disable-users.html -%%CACTIDIR%%/docs/html/faq.html -%%CACTIDIR%%/docs/html/graph-howto.html -%%CACTIDIR%%/docs/html/graph-overview.html -%%CACTIDIR%%/docs/html/graph-snmp-oid.html -%%CACTIDIR%%/docs/html/graph-templates.html -%%CACTIDIR%%/docs/html/graph-viewing.html -%%CACTIDIR%%/docs/html/guest-access.html -%%CACTIDIR%%/docs/html/host-templates.html -%%CACTIDIR%%/docs/html/host-variables.html -%%CACTIDIR%%/docs/html/how-to.html -%%CACTIDIR%%/docs/html/images/data_source_title_example1.png -%%CACTIDIR%%/docs/html/images/data_source_title_example2.png -%%CACTIDIR%%/docs/html/images/data_source_title_template.png -%%CACTIDIR%%/docs/html/images/data_template.png -%%CACTIDIR%%/docs/html/images/export_template.png -%%CACTIDIR%%/docs/html/images/graph_template.png -%%CACTIDIR%%/docs/html/images/graph_tree.png -%%CACTIDIR%%/docs/html/images/host_template.png -%%CACTIDIR%%/docs/html/images/import_template.png -%%CACTIDIR%%/docs/html/images/new_device.png -%%CACTIDIR%%/docs/html/images/new_graphs.png -%%CACTIDIR%%/docs/html/images/principles_of_operation.png -%%CACTIDIR%%/docs/html/images/user_management_batch_copy_1.png -%%CACTIDIR%%/docs/html/images/user_management_batch_copy_2.png -%%CACTIDIR%%/docs/html/images/user_management_copy_1.png -%%CACTIDIR%%/docs/html/images/user_management_copy_2.png -%%CACTIDIR%%/docs/html/images/user_management_delete_1.png -%%CACTIDIR%%/docs/html/images/user_management_delete_2.png -%%CACTIDIR%%/docs/html/images/user_management_edit.png -%%CACTIDIR%%/docs/html/images/user_management_enable_disable_1.png -%%CACTIDIR%%/docs/html/images/user_management_enable_disable_2.png -%%CACTIDIR%%/docs/html/images/user_management_list.png -%%CACTIDIR%%/docs/html/images/user_management_new.png -%%CACTIDIR%%/docs/html/index.html -%%CACTIDIR%%/docs/html/install-unix.html -%%CACTIDIR%%/docs/html/install-windows.html -%%CACTIDIR%%/docs/html/installation.html -%%CACTIDIR%%/docs/html/making-scripts-work-with-%%CACTIUSER%%.html -%%CACTIDIR%%/docs/html/migration-php-scripts-to-script-server.html -%%CACTIDIR%%/docs/html/new-graphs.html -%%CACTIDIR%%/docs/html/operating-principles.html -%%CACTIDIR%%/docs/html/php-script-server.html -%%CACTIDIR%%/docs/html/reference.html -%%CACTIDIR%%/docs/html/requirements.html -%%CACTIDIR%%/docs/html/rrdtool-features.html -%%CACTIDIR%%/docs/html/script-query-xml.html -%%CACTIDIR%%/docs/html/scripts.html -%%CACTIDIR%%/docs/html/snmp-query-xml.html -%%CACTIDIR%%/docs/html/template-export.html -%%CACTIDIR%%/docs/html/template-import.html -%%CACTIDIR%%/docs/html/templates.html -%%CACTIDIR%%/docs/html/testing-script-in-script-server.html -%%CACTIDIR%%/docs/html/unix-configure-%%CACTIUSER%%.html -%%CACTIDIR%%/docs/html/unix-configure-httpd.html -%%CACTIDIR%%/docs/html/unix-configure-mysql.html -%%CACTIDIR%%/docs/html/unix-configure-php.html -%%CACTIDIR%%/docs/html/unix-configure-spine.html -%%CACTIDIR%%/docs/html/upgrade-using-hostmib-data-queries.html -%%CACTIDIR%%/docs/html/upgrade.html -%%CACTIDIR%%/docs/html/user-management.html -%%CACTIDIR%%/docs/html/using-spine.html -%%CACTIDIR%%/docs/html/variables.html +%%CACTIDIR%%/docs/Aggregate-Templates.html +%%CACTIDIR%%/docs/Aggregates.html +%%CACTIDIR%%/docs/Automation-Networks.html +%%CACTIDIR%%/docs/CDEFs.html +%%CACTIDIR%%/docs/Cacti-Github.css +%%CACTIDIR%%/docs/Color-Templates.html +%%CACTIDIR%%/docs/Colors.html +%%CACTIDIR%%/docs/Command-Line-Scripts.html +%%CACTIDIR%%/docs/Contributing-Translations.html +%%CACTIDIR%%/docs/Contributing.html +%%CACTIDIR%%/docs/Data-Collectors.html +%%CACTIDIR%%/docs/Data-Debug.html +%%CACTIDIR%%/docs/Data-Input-Methods.html +%%CACTIDIR%%/docs/Data-Profiles.html +%%CACTIDIR%%/docs/Data-Queries.html +%%CACTIDIR%%/docs/Data-Source-Templates.html +%%CACTIDIR%%/docs/Data-Sources.html +%%CACTIDIR%%/docs/Debugging.html +%%CACTIDIR%%/docs/Device-Rules.html +%%CACTIDIR%%/docs/Device-Templates.html +%%CACTIDIR%%/docs/Devices.html +%%CACTIDIR%%/docs/Discovered-Devices.html +%%CACTIDIR%%/docs/Export-Template.html +%%CACTIDIR%%/docs/External-Links.html +%%CACTIDIR%%/docs/Frequently-Asked-Questions.html +%%CACTIDIR%%/docs/GPRINTs.html +%%CACTIDIR%%/docs/General-Installing-Instructions.html +%%CACTIDIR%%/docs/Graph-Overview.html +%%CACTIDIR%%/docs/Graph-Rules.html +%%CACTIDIR%%/docs/Graph-Templates.html +%%CACTIDIR%%/docs/Graph-a-Single-SNMP-OID.html +%%CACTIDIR%%/docs/Graphs.html +%%CACTIDIR%%/docs/How-To-Data-Query-Templates.html +%%CACTIDIR%%/docs/How-To-Determine-Template-Version.html +%%CACTIDIR%%/docs/How-To-SSH-Tunnels.html +%%CACTIDIR%%/docs/How-to-Graph-Your-Network.html +%%CACTIDIR%%/docs/How-to-Graph-a-Custom-Collection-Script.html +%%CACTIDIR%%/docs/Import-Template.html +%%CACTIDIR%%/docs/Install-Under-CentOS_LAMP.html +%%CACTIDIR%%/docs/Install-Under-CentOS_LEMP.html +%%CACTIDIR%%/docs/Installing-Under-Windows.html +%%CACTIDIR%%/docs/Navigating-The-User-Interface.html +%%CACTIDIR%%/docs/PHP-Script-Server.html +%%CACTIDIR%%/docs/Plugin-Creating-Plugins.html +%%CACTIDIR%%/docs/Plugin-Development.html +%%CACTIDIR%%/docs/Plugin-Guidelines.html +%%CACTIDIR%%/docs/Plugin-Hook-API-Ref.html +%%CACTIDIR%%/docs/Plugin-Reference.html +%%CACTIDIR%%/docs/Plugins.html +%%CACTIDIR%%/docs/Principles-of-Operation.html +%%CACTIDIR%%/docs/RRDTool-Specific-Features.html +%%CACTIDIR%%/docs/Requirements.html +%%CACTIDIR%%/docs/SNMP-Data-Queries-Walkthrough.html +%%CACTIDIR%%/docs/SNMP-New-Data-Query-Walkthrough.html +%%CACTIDIR%%/docs/SNMP-Options.html +%%CACTIDIR%%/docs/Script-Data-Query-Walkthrough.html +%%CACTIDIR%%/docs/Sites.html +%%CACTIDIR%%/docs/Spine.html +%%CACTIDIR%%/docs/Standards-Code-Formatting.html +%%CACTIDIR%%/docs/Standards-Documentation.html +%%CACTIDIR%%/docs/Standards-FileSystem-Layout.html +%%CACTIDIR%%/docs/Standards-PHP-Spec-Constructs.html +%%CACTIDIR%%/docs/Standards-Patch-Creation.html +%%CACTIDIR%%/docs/Standards-SQL.html +%%CACTIDIR%%/docs/Standards-Security.html +%%CACTIDIR%%/docs/System-Utilities.html +%%CACTIDIR%%/docs/Table-of-Contents.html +%%CACTIDIR%%/docs/Templates.html +%%CACTIDIR%%/docs/Tree-Rules.html +%%CACTIDIR%%/docs/Trees.html +%%CACTIDIR%%/docs/Upgrading-Cacti-Under-Windows.html +%%CACTIDIR%%/docs/Upgrading-Cacti.html +%%CACTIDIR%%/docs/User-Domains.html +%%CACTIDIR%%/docs/User-Group-Management.html +%%CACTIDIR%%/docs/User-Management.html +%%CACTIDIR%%/docs/VDEFs.html +%%CACTIDIR%%/docs/Variables.html +%%CACTIDIR%%/docs/Version-Specific-Release-Notes.html +%%CACTIDIR%%/docs/Viewing-Graphs.html +%%CACTIDIR%%/docs/images/aggregate-templates-edit1.png +%%CACTIDIR%%/docs/images/aggregate-templates-edit2.png +%%CACTIDIR%%/docs/images/aggregate-templates-edit3.png +%%CACTIDIR%%/docs/images/aggregate-templates-edit4.png +%%CACTIDIR%%/docs/images/aggregate-templates-edit5.png +%%CACTIDIR%%/docs/images/aggregate-templates-edit6.png +%%CACTIDIR%%/docs/images/aggregate-templates-edit7.png +%%CACTIDIR%%/docs/images/aggregate-templates.png +%%CACTIDIR%%/docs/images/automation-device-templates-edit1.png +%%CACTIDIR%%/docs/images/automation-device-templates.png +%%CACTIDIR%%/docs/images/automation-devices.png +%%CACTIDIR%%/docs/images/automation-graph-rules-edit1.png +%%CACTIDIR%%/docs/images/automation-graph-rules-edit2.png +%%CACTIDIR%%/docs/images/automation-graph-rules-edit3.png +%%CACTIDIR%%/docs/images/automation-graph-rules-edit4.png +%%CACTIDIR%%/docs/images/automation-graph-rules-edit5.png +%%CACTIDIR%%/docs/images/automation-graph-rules.png +%%CACTIDIR%%/docs/images/automation-networks-edit1.png +%%CACTIDIR%%/docs/images/automation-networks-edit2.png +%%CACTIDIR%%/docs/images/automation-networks.png +%%CACTIDIR%%/docs/images/automation-snmp-options-edit1.png +%%CACTIDIR%%/docs/images/automation-snmp-options-edit2.png +%%CACTIDIR%%/docs/images/automation-snmp-options-edit3.png +%%CACTIDIR%%/docs/images/automation-snmp-options.png +%%CACTIDIR%%/docs/images/automation-tree-rules-edit1.png +%%CACTIDIR%%/docs/images/automation-tree-rules-edit2.png +%%CACTIDIR%%/docs/images/automation-tree-rules-edit3.png +%%CACTIDIR%%/docs/images/automation-tree-rules-edit4.png +%%CACTIDIR%%/docs/images/automation-tree-rules.png +%%CACTIDIR%%/docs/images/cacti-page-layout.png +%%CACTIDIR%%/docs/images/cacti-tree-view-page.png +%%CACTIDIR%%/docs/images/cdef-01.preview.png +%%CACTIDIR%%/docs/images/cdefs-edit1.png +%%CACTIDIR%%/docs/images/cdefs-edit2.png +%%CACTIDIR%%/docs/images/cdefs-edit3.png +%%CACTIDIR%%/docs/images/cdefs.png +%%CACTIDIR%%/docs/images/color-templates-edit1.png +%%CACTIDIR%%/docs/images/color-templates-edit2.png +%%CACTIDIR%%/docs/images/color-templates.png +%%CACTIDIR%%/docs/images/colors-edit1.png +%%CACTIDIR%%/docs/images/colors-edit2.png +%%CACTIDIR%%/docs/images/colors.png +%%CACTIDIR%%/docs/images/data-collectors-edit-main.png +%%CACTIDIR%%/docs/images/data-collectors-edit-remote1.png +%%CACTIDIR%%/docs/images/data-collectors-edit-remote2.png +%%CACTIDIR%%/docs/images/data-collectors.png +%%CACTIDIR%%/docs/images/data-debug.png +%%CACTIDIR%%/docs/images/data-debug1.png +%%CACTIDIR%%/docs/images/data-debug2.PNG +%%CACTIDIR%%/docs/images/data-debug3.png +%%CACTIDIR%%/docs/images/data-debug4.png +%%CACTIDIR%%/docs/images/data-input-method-and-query.png +%%CACTIDIR%%/docs/images/data-input-methods-edit1.png +%%CACTIDIR%%/docs/images/data-input-methods-edit2.png +%%CACTIDIR%%/docs/images/data-input-methods-edit3.png +%%CACTIDIR%%/docs/images/data-input-methods.png +%%CACTIDIR%%/docs/images/data-queries-edit1.png +%%CACTIDIR%%/docs/images/data-queries-edit2.png +%%CACTIDIR%%/docs/images/data-queries.png +%%CACTIDIR%%/docs/images/data-source-profiles-edit1.png +%%CACTIDIR%%/docs/images/data-source-profiles-edit2.png +%%CACTIDIR%%/docs/images/data-source-profiles.png +%%CACTIDIR%%/docs/images/data-source-title-example1.png +%%CACTIDIR%%/docs/images/data-source-title-example2.png +%%CACTIDIR%%/docs/images/data-source-title-template.png +%%CACTIDIR%%/docs/images/data-template.png +%%CACTIDIR%%/docs/images/data-templates-copy.png +%%CACTIDIR%%/docs/images/data-templates-new.png +%%CACTIDIR%%/docs/images/data-templates-new1.png +%%CACTIDIR%%/docs/images/data-templates-new2.png +%%CACTIDIR%%/docs/images/data-templates-view-edit1.png +%%CACTIDIR%%/docs/images/data-templates-view-edit2.png +%%CACTIDIR%%/docs/images/data-templates-view.png +%%CACTIDIR%%/docs/images/data-templates.png +%%CACTIDIR%%/docs/images/dc-01.preview.png +%%CACTIDIR%%/docs/images/dev-01.preview.png +%%CACTIDIR%%/docs/images/dev-02.preview.png +%%CACTIDIR%%/docs/images/dev-03.preview.png +%%CACTIDIR%%/docs/images/dev-10.preview.png +%%CACTIDIR%%/docs/images/dev-11.preview.png +%%CACTIDIR%%/docs/images/dev-12.preview.png +%%CACTIDIR%%/docs/images/dev-13.preview.png +%%CACTIDIR%%/docs/images/dev-20.preview.png +%%CACTIDIR%%/docs/images/dev-21.preview.png +%%CACTIDIR%%/docs/images/dev-30.png +%%CACTIDIR%%/docs/images/dev-31.preview.png +%%CACTIDIR%%/docs/images/dev-dev-10.preview.png +%%CACTIDIR%%/docs/images/dev-dev-11_0.preview.png +%%CACTIDIR%%/docs/images/dev-dev-12.preview.png +%%CACTIDIR%%/docs/images/dev-dev-13.png +%%CACTIDIR%%/docs/images/dev-dev-14.png +%%CACTIDIR%%/docs/images/dev-dq-01.preview.png +%%CACTIDIR%%/docs/images/dev-dq-02.preview.png +%%CACTIDIR%%/docs/images/dev-dq-03.preview.png +%%CACTIDIR%%/docs/images/dev-dq-20.preview.png +%%CACTIDIR%%/docs/images/dev-dq-21.preview.png +%%CACTIDIR%%/docs/images/dev-dq-22.preview.png +%%CACTIDIR%%/docs/images/dev-dq-23.png +%%CACTIDIR%%/docs/images/dev-dq-24.preview.png +%%CACTIDIR%%/docs/images/dev-dq-25.preview.png +%%CACTIDIR%%/docs/images/dev-dq-26.preview.png +%%CACTIDIR%%/docs/images/dev-dt-01.preview.png +%%CACTIDIR%%/docs/images/dev-dt-02.preview.png +%%CACTIDIR%%/docs/images/dev-dt-03.png +%%CACTIDIR%%/docs/images/dev-dt-04.preview.png +%%CACTIDIR%%/docs/images/dev-dt-05.png +%%CACTIDIR%%/docs/images/dev-gt-01.preview.png +%%CACTIDIR%%/docs/images/dev-gt-02.png +%%CACTIDIR%%/docs/images/dev-gt-04_0.preview.png +%%CACTIDIR%%/docs/images/dev-gt-05.preview.png +%%CACTIDIR%%/docs/images/dev-gt-06.preview.png +%%CACTIDIR%%/docs/images/dev-gt-07.png +%%CACTIDIR%%/docs/images/dev-gt-08.png +%%CACTIDIR%%/docs/images/dev-gt-09.preview.png +%%CACTIDIR%%/docs/images/dev-gt-10.preview.png +%%CACTIDIR%%/docs/images/dev-gt-11.preview.png +%%CACTIDIR%%/docs/images/dev-gt-12.png +%%CACTIDIR%%/docs/images/dev-gt-13.png +%%CACTIDIR%%/docs/images/dev-gt-14.preview.png +%%CACTIDIR%%/docs/images/device-template-add.png +%%CACTIDIR%%/docs/images/device-template-new-dqs.png +%%CACTIDIR%%/docs/images/device-template-new-gt.png +%%CACTIDIR%%/docs/images/device-template-new-gts.png +%%CACTIDIR%%/docs/images/device-template-new.png +%%CACTIDIR%%/docs/images/device-template.png +%%CACTIDIR%%/docs/images/device-templates-edit.png +%%CACTIDIR%%/docs/images/device-templates-ssh-add-device.png +%%CACTIDIR%%/docs/images/device-templates-ssh-tunnel.png +%%CACTIDIR%%/docs/images/device-templates.png +%%CACTIDIR%%/docs/images/dim-add01.preview.png +%%CACTIDIR%%/docs/images/dim-add02.preview.png +%%CACTIDIR%%/docs/images/dim-add03.preview.png +%%CACTIDIR%%/docs/images/dim-add04.png +%%CACTIDIR%%/docs/images/dim-add05.png +%%CACTIDIR%%/docs/images/dim-add06.preview.png +%%CACTIDIR%%/docs/images/dim-add07.png +%%CACTIDIR%%/docs/images/dim-add08.preview.png +%%CACTIDIR%%/docs/images/dim-add09.preview.png +%%CACTIDIR%%/docs/images/dim-add10.preview.png +%%CACTIDIR%%/docs/images/dim-add11.preview.png +%%CACTIDIR%%/docs/images/dim-add12.preview.png +%%CACTIDIR%%/docs/images/dim-add13.preview.png +%%CACTIDIR%%/docs/images/dim-add14.preview.png +%%CACTIDIR%%/docs/images/dim-add15.preview.png +%%CACTIDIR%%/docs/images/dim-add16.preview.png +%%CACTIDIR%%/docs/images/dq-01.preview.png +%%CACTIDIR%%/docs/images/dq-02.preview.png +%%CACTIDIR%%/docs/images/dq-03.preview.png +%%CACTIDIR%%/docs/images/dq-10.preview.png +%%CACTIDIR%%/docs/images/dq-12.preview.png +%%CACTIDIR%%/docs/images/dq-13.png +%%CACTIDIR%%/docs/images/dq-14.png +%%CACTIDIR%%/docs/images/dq-15.preview.png +%%CACTIDIR%%/docs/images/dq-add-01.preview.png +%%CACTIDIR%%/docs/images/dq-add-02.preview.png +%%CACTIDIR%%/docs/images/dq-add-03.preview.png +%%CACTIDIR%%/docs/images/ds-01.preview.png +%%CACTIDIR%%/docs/images/dt-01.preview.png +%%CACTIDIR%%/docs/images/dt-02.preview.png +%%CACTIDIR%%/docs/images/dt-03.preview.png +%%CACTIDIR%%/docs/images/dt-04.preview.png +%%CACTIDIR%%/docs/images/dt-05.preview.png +%%CACTIDIR%%/docs/images/export-template.png +%%CACTIDIR%%/docs/images/external-links-edit1.png +%%CACTIDIR%%/docs/images/external-links-example1.png +%%CACTIDIR%%/docs/images/external-links.png +%%CACTIDIR%%/docs/images/gm-01.preview.png +%%CACTIDIR%%/docs/images/gprint-presets-edit.png +%%CACTIDIR%%/docs/images/gprint-presets.png +%%CACTIDIR%%/docs/images/graph-01.png +%%CACTIDIR%%/docs/images/graph-10.png +%%CACTIDIR%%/docs/images/graph-template.png +%%CACTIDIR%%/docs/images/graph-templates-edit1.png +%%CACTIDIR%%/docs/images/graph-templates-edit2.png +%%CACTIDIR%%/docs/images/graph-templates-edit3.png +%%CACTIDIR%%/docs/images/graph-templates-edit4.png +%%CACTIDIR%%/docs/images/graph-templates-edit5.png +%%CACTIDIR%%/docs/images/graph-templates-edit6.png +%%CACTIDIR%%/docs/images/graph-templates-item1.png +%%CACTIDIR%%/docs/images/graph-templates-item1s.png +%%CACTIDIR%%/docs/images/graph-templates-item2.png +%%CACTIDIR%%/docs/images/graph-templates-item2s.png +%%CACTIDIR%%/docs/images/graph-templates-item3.png +%%CACTIDIR%%/docs/images/graph-templates-item3s.png +%%CACTIDIR%%/docs/images/graph-templates-item4.png +%%CACTIDIR%%/docs/images/graph-templates-item4s.png +%%CACTIDIR%%/docs/images/graph-templates-new1.png +%%CACTIDIR%%/docs/images/graph-templates-new2.png +%%CACTIDIR%%/docs/images/graph-templates-new3.png +%%CACTIDIR%%/docs/images/graph-templates.png +%%CACTIDIR%%/docs/images/graph-templates1.png +%%CACTIDIR%%/docs/images/graph-tree.png +%%CACTIDIR%%/docs/images/gt-01.preview.png +%%CACTIDIR%%/docs/images/gt-02.preview.png +%%CACTIDIR%%/docs/images/gt-03.preview.png +%%CACTIDIR%%/docs/images/gt-04.preview.png +%%CACTIDIR%%/docs/images/gt-05.preview.png +%%CACTIDIR%%/docs/images/gt-06.preview.png +%%CACTIDIR%%/docs/images/gt-10.preview.png +%%CACTIDIR%%/docs/images/gt-11.preview.png +%%CACTIDIR%%/docs/images/import-template.png +%%CACTIDIR%%/docs/images/logo.png +%%CACTIDIR%%/docs/images/new_device.png +%%CACTIDIR%%/docs/images/new_graphs.png +%%CACTIDIR%%/docs/images/patch_creation_branch.png +%%CACTIDIR%%/docs/images/patch_creation_clone.png +%%CACTIDIR%%/docs/images/patch_creation_pull_request_1.png +%%CACTIDIR%%/docs/images/patch_creation_pull_request_2.png +%%CACTIDIR%%/docs/images/patch_creation_pull_request_3.png +%%CACTIDIR%%/docs/images/plugins-dependencies.png +%%CACTIDIR%%/docs/images/plugins-uninstall.png +%%CACTIDIR%%/docs/images/plugins.png +%%CACTIDIR%%/docs/images/principles_of_operation.png +%%CACTIDIR%%/docs/images/r-dev1.png +%%CACTIDIR%%/docs/images/r-dev2.png +%%CACTIDIR%%/docs/images/r-dev3.png +%%CACTIDIR%%/docs/images/r-dev4.png +%%CACTIDIR%%/docs/images/r-dim1_0.png +%%CACTIDIR%%/docs/images/r-dim2.png +%%CACTIDIR%%/docs/images/r-dim3.png +%%CACTIDIR%%/docs/images/r-dim4.png +%%CACTIDIR%%/docs/images/r-dim5.png +%%CACTIDIR%%/docs/images/r-dim6_0.png +%%CACTIDIR%%/docs/images/r-dq-1.png +%%CACTIDIR%%/docs/images/r-dq-dev1_0.png +%%CACTIDIR%%/docs/images/r-dq-dev2.png +%%CACTIDIR%%/docs/images/r-dq-dev3.png +%%CACTIDIR%%/docs/images/r-dq-dt1.png +%%CACTIDIR%%/docs/images/r-dq-dt2.png +%%CACTIDIR%%/docs/images/r-dq-dt3.png +%%CACTIDIR%%/docs/images/r-dq1_0.png +%%CACTIDIR%%/docs/images/r-dq2.png +%%CACTIDIR%%/docs/images/r-dq3.png +%%CACTIDIR%%/docs/images/r-dq3_0.png +%%CACTIDIR%%/docs/images/r-dq4.png +%%CACTIDIR%%/docs/images/r-dq5.png +%%CACTIDIR%%/docs/images/r-dq6.png +%%CACTIDIR%%/docs/images/r-dq7.png +%%CACTIDIR%%/docs/images/r-dt1.png +%%CACTIDIR%%/docs/images/r-dt2.png +%%CACTIDIR%%/docs/images/r-dt3.png +%%CACTIDIR%%/docs/images/r-gt1.png +%%CACTIDIR%%/docs/images/r-gt2.png +%%CACTIDIR%%/docs/images/r-gt3.png +%%CACTIDIR%%/docs/images/r-gt4.png +%%CACTIDIR%%/docs/images/r-gt5.png +%%CACTIDIR%%/docs/images/r-gt6.png +%%CACTIDIR%%/docs/images/router_ping_graph.png +%%CACTIDIR%%/docs/images/snmp_dqw_table1.png +%%CACTIDIR%%/docs/images/snmp_dqw_table2.png +%%CACTIDIR%%/docs/images/snmp_dqw_table3.png +%%CACTIDIR%%/docs/images/system-utilities-boost1.png +%%CACTIDIR%%/docs/images/system-utilities-boost2.png +%%CACTIDIR%%/docs/images/system-utilities-main1.png +%%CACTIDIR%%/docs/images/system-utilities-main2.png +%%CACTIDIR%%/docs/images/system-utilities-main3.png +%%CACTIDIR%%/docs/images/system-utilities-main4.png +%%CACTIDIR%%/docs/images/system-utilities-rrdcleaner.png +%%CACTIDIR%%/docs/images/system-utilities-viewagentcache.png +%%CACTIDIR%%/docs/images/system-utilities-viewagentlog.png +%%CACTIDIR%%/docs/images/system-utilities-viewagentmanagers.png +%%CACTIDIR%%/docs/images/system-utilities-viewclog.png +%%CACTIDIR%%/docs/images/system-utilities-viewdqcache.png +%%CACTIDIR%%/docs/images/system-utilities-viewpcache.png +%%CACTIDIR%%/docs/images/system-utilities-viewulog.png +%%CACTIDIR%%/docs/images/user-domains-edit1.png +%%CACTIDIR%%/docs/images/user-domains-edit2.png +%%CACTIDIR%%/docs/images/user-domains.png +%%CACTIDIR%%/docs/images/user-groups-edit-general.png +%%CACTIDIR%%/docs/images/user-groups-edit-graph-permissions.png +%%CACTIDIR%%/docs/images/user-groups-edit-members.png +%%CACTIDIR%%/docs/images/user-groups-edit-permissions.png +%%CACTIDIR%%/docs/images/user-groups.png +%%CACTIDIR%%/docs/images/users-batch-copy1.png +%%CACTIDIR%%/docs/images/users-batch-copy2.png +%%CACTIDIR%%/docs/images/users-copy1.png +%%CACTIDIR%%/docs/images/users-copy2.png +%%CACTIDIR%%/docs/images/users-delete1.png +%%CACTIDIR%%/docs/images/users-delete2.png +%%CACTIDIR%%/docs/images/users-edit.png +%%CACTIDIR%%/docs/images/users-enable-disable1.png +%%CACTIDIR%%/docs/images/users-enable-disable2.png +%%CACTIDIR%%/docs/images/users-list.png +%%CACTIDIR%%/docs/images/users-new.png +%%CACTIDIR%%/docs/images/users-permissions-device.png +%%CACTIDIR%%/docs/images/users-permissions-graph-policy1.png +%%CACTIDIR%%/docs/images/users-permissions-graph-policy2.png +%%CACTIDIR%%/docs/images/users-permissions-graph.png +%%CACTIDIR%%/docs/images/users-permissions-templates.png +%%CACTIDIR%%/docs/images/users-permissions.png +%%CACTIDIR%%/docs/images/users-settings.png +%%CACTIDIR%%/docs/images/users-settings1.png +%%CACTIDIR%%/docs/images/users-settings2.png +%%CACTIDIR%%/docs/images/users-settings3.png +%%CACTIDIR%%/docs/images/vdefs-edit1.png +%%CACTIDIR%%/docs/images/vdefs-edit2.png +%%CACTIDIR%%/docs/images/vdefs-edit3.png +%%CACTIDIR%%/docs/images/vdefs-edit4.png +%%CACTIDIR%%/docs/images/vdefs.png %%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/cacti_group.format +%%CACTIDIR%%/formats/cacti_group_dark.format +%%CACTIDIR%%/formats/cacti_monitor.format %%CACTIDIR%%/formats/default.format %%CACTIDIR%%/formats/index.php %%CACTIDIR%%/formats/lotus_notes.format @@ -196,12 +481,13 @@ %%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%%_error_image.png -%%CACTIDIR%%/images/%%CACTIUSER%%_logo.gif -%%CACTIDIR%%/images/%%CACTIUSER%%_logo_new.gif +%%CACTIDIR%%/images/cacti_about_logo.gif +%%CACTIDIR%%/images/cacti_backdrop.gif +%%CACTIDIR%%/images/cacti_backdrop2.gif +%%CACTIDIR%%/images/cacti_error_image.png +%%CACTIDIR%%/images/cacti_logo.gif +%%CACTIDIR%%/images/cacti_logo_new.gif +%%CACTIDIR%%/images/cacti_logo.svg %%CACTIDIR%%/images/calendar.gif %%CACTIDIR%%/images/chart_curve_go.png %%CACTIDIR%%/images/cog.png @@ -222,6 +508,7 @@ %%CACTIDIR%%/images/index.php %%CACTIDIR%%/images/install_icon.png %%CACTIDIR%%/images/install_icon_disabled.png +%%CACTIDIR%%/images/location.png %%CACTIDIR%%/images/menuarrow.gif %%CACTIDIR%%/images/move_down.gif %%CACTIDIR%%/images/move_left.gif @@ -233,6 +520,8 @@ %%CACTIDIR%%/images/server_chart.png %%CACTIDIR%%/images/server_chart_curve.png %%CACTIDIR%%/images/server_dataquery.png +%%CACTIDIR%%/images/server_device_template.png +%%CACTIDIR%%/images/server_edit.png %%CACTIDIR%%/images/server_graph_template.png %%CACTIDIR%%/images/server_table.png %%CACTIDIR%%/images/shadow.gif @@ -240,7 +529,7 @@ %%CACTIDIR%%/images/site.png %%CACTIDIR%%/images/spikekill.gif %%CACTIDIR%%/images/stop.png -%%CACTIDIR%%/images/tab_%%CACTIUSER%%.gif +%%CACTIDIR%%/images/tab_cacti.gif %%CACTIDIR%%/images/tab_clog.png %%CACTIDIR%%/images/tab_clog_down.png %%CACTIDIR%%/images/tab_console.gif @@ -273,31 +562,67 @@ %%CACTIDIR%%/images/view_page.png %%CACTIDIR%%/include/auth.php %%CACTIDIR%%/include/bottom_footer.php -%%CACTIDIR%%/include/%%CACTIUSER%%_version +%%CACTIDIR%%/include/cacti_version +%%CACTIDIR%%/include/cli_check.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.css.map -%%CACTIDIR%%/include/fa/css/font-awesome.min.css +%%CACTIDIR%%/include/fa/css/fontawesome.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/fa/less/_animated.less +%%CACTIDIR%%/include/fa/less/_bordered-pulled.less +%%CACTIDIR%%/include/fa/less/_core.less +%%CACTIDIR%%/include/fa/less/_fixed-width.less +%%CACTIDIR%%/include/fa/less/_icons.less +%%CACTIDIR%%/include/fa/less/_larger.less +%%CACTIDIR%%/include/fa/less/_list.less +%%CACTIDIR%%/include/fa/less/_mixins.less +%%CACTIDIR%%/include/fa/less/_rotated-flipped.less +%%CACTIDIR%%/include/fa/less/_screen-reader.less +%%CACTIDIR%%/include/fa/less/_stacked.less +%%CACTIDIR%%/include/fa/less/_variables.less +%%CACTIDIR%%/include/fa/less/fa-brands.less +%%CACTIDIR%%/include/fa/less/fa-regular.less +%%CACTIDIR%%/include/fa/less/fa-solid.less +%%CACTIDIR%%/include/fa/less/fontawesome.less +%%CACTIDIR%%/include/fa/less/index.php +%%CACTIDIR%%/include/fa/scss/_animated.scss +%%CACTIDIR%%/include/fa/scss/_bordered-pulled.scss +%%CACTIDIR%%/include/fa/scss/_core.scss +%%CACTIDIR%%/include/fa/scss/_fixed-width.scss +%%CACTIDIR%%/include/fa/scss/_icons.scss +%%CACTIDIR%%/include/fa/scss/_larger.scss +%%CACTIDIR%%/include/fa/scss/_list.scss +%%CACTIDIR%%/include/fa/scss/_mixins.scss +%%CACTIDIR%%/include/fa/scss/_rotated-flipped.scss +%%CACTIDIR%%/include/fa/scss/_screen-reader.scss +%%CACTIDIR%%/include/fa/scss/_stacked.scss +%%CACTIDIR%%/include/fa/scss/_variables.scss +%%CACTIDIR%%/include/fa/scss/fa-brands.scss +%%CACTIDIR%%/include/fa/scss/fa-regular.scss +%%CACTIDIR%%/include/fa/scss/fa-solid.scss +%%CACTIDIR%%/include/fa/scss/fontawesome.scss +%%CACTIDIR%%/include/fa/scss/index.php +%%CACTIDIR%%/include/fa/webfonts/fa-brands-400.eot +%%CACTIDIR%%/include/fa/webfonts/fa-brands-400.svg +%%CACTIDIR%%/include/fa/webfonts/fa-brands-400.ttf +%%CACTIDIR%%/include/fa/webfonts/fa-brands-400.woff +%%CACTIDIR%%/include/fa/webfonts/fa-brands-400.woff2 +%%CACTIDIR%%/include/fa/webfonts/fa-regular-400.eot +%%CACTIDIR%%/include/fa/webfonts/fa-regular-400.svg +%%CACTIDIR%%/include/fa/webfonts/fa-regular-400.ttf +%%CACTIDIR%%/include/fa/webfonts/fa-regular-400.woff +%%CACTIDIR%%/include/fa/webfonts/fa-regular-400.woff2 +%%CACTIDIR%%/include/fa/webfonts/fa-solid-900.eot +%%CACTIDIR%%/include/fa/webfonts/fa-solid-900.svg +%%CACTIDIR%%/include/fa/webfonts/fa-solid-900.ttf +%%CACTIDIR%%/include/fa/webfonts/fa-solid-900.woff +%%CACTIDIR%%/include/fa/webfonts/fa-solid-900.woff2 +%%CACTIDIR%%/include/fa/webfonts/index.php %%CACTIDIR%%/include/fonts/DejaVuSans-Bold.ttf %%CACTIDIR%%/include/fonts/DejaVuSansCondensed-Bold.ttf %%CACTIDIR%%/include/global.php @@ -350,6 +675,8 @@ %%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-portuguese_brazil.js +%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-portuguese_portugal.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 @@ -429,375 +756,12 @@ %%CACTIDIR%%/include/js/jquery.timepicker.js %%CACTIDIR%%/include/js/jquery.ui.touch.punch.js %%CACTIDIR%%/include/js/jquery.zoom.js -%%CACTIDIR%%/include/js/jquery-migrate.js %%CACTIDIR%%/include/js/jquery-ui.js %%CACTIDIR%%/include/js/js.storage.js %%CACTIDIR%%/include/js/jstree.js %%CACTIDIR%%/include/js/pace.js %%CACTIDIR%%/include/js/screenfull.js %%CACTIDIR%%/include/layout.js -%%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-ba.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-rs.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-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 @@ -812,8 +776,8 @@ %%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.gif -%%CACTIDIR%%/include/themes/classic/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/classic/images/cacti_logo.gif +%%CACTIDIR%%/include/themes/classic/images/cacti_logo.svg %%CACTIDIR%%/include/themes/classic/images/favicon.ico %%CACTIDIR%%/include/themes/classic/images/index.php %%CACTIDIR%%/include/themes/classic/images/map-opacity.png @@ -823,35 +787,18 @@ %%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_55_fbf9ee_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-bg_glass_75_dadada_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_75_e6e6e6_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_95_fef1ec_1x400.png +%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_75_cccccc_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_2e83ff_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_454545_256x240.png +%%CACTIDIR%%/include/themes/classic/images/ui-icons_888888_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 @@ -872,10 +819,10 @@ %%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.gif -%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/dark/images/cacti_backdrop.gif +%%CACTIDIR%%/include/themes/dark/images/cacti_backdrop2.gif +%%CACTIDIR%%/include/themes/dark/images/cacti_logo.gif +%%CACTIDIR%%/include/themes/dark/images/cacti_logo.svg %%CACTIDIR%%/include/themes/dark/images/favicon.ico %%CACTIDIR%%/include/themes/dark/images/index.php %%CACTIDIR%%/include/themes/dark/images/map-opacity.png @@ -885,8 +832,6 @@ %%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 @@ -922,8 +867,8 @@ %%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.gif -%%CACTIDIR%%/include/themes/modern/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/modern/images/cacti_logo.gif +%%CACTIDIR%%/include/themes/modern/images/cacti_logo.svg %%CACTIDIR%%/include/themes/modern/images/favicon.ico %%CACTIDIR%%/include/themes/modern/images/index.php %%CACTIDIR%%/include/themes/modern/images/map-opacity.png @@ -933,8 +878,6 @@ %%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 @@ -968,8 +911,8 @@ %%CACTIDIR%%/include/themes/paper-plane/images/bar-opacity.png %%CACTIDIR%%/include/themes/paper-plane/images/bar-pointer.png %%CACTIDIR%%/include/themes/paper-plane/images/bar.png -%%CACTIDIR%%/include/themes/paper-plane/images/%%CACTIUSER%%_logo.gif -%%CACTIDIR%%/include/themes/paper-plane/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/paper-plane/images/cacti_logo.gif +%%CACTIDIR%%/include/themes/paper-plane/images/cacti_logo.svg %%CACTIDIR%%/include/themes/paper-plane/images/favicon.ico %%CACTIDIR%%/include/themes/paper-plane/images/index.php %%CACTIDIR%%/include/themes/paper-plane/images/map-opacity.png @@ -979,8 +922,6 @@ %%CACTIDIR%%/include/themes/paper-plane/images/tab_list.gif %%CACTIDIR%%/include/themes/paper-plane/images/tab_preview.gif %%CACTIDIR%%/include/themes/paper-plane/images/tab_tree.gif -%%CACTIDIR%%/include/themes/paper-plane/images/ui-bg_flat_0_aaaaaa_40x100.png -%%CACTIDIR%%/include/themes/paper-plane/images/ui-bg_flat_75_ffffff_40x100.png %%CACTIDIR%%/include/themes/paper-plane/images/ui-bg_glass_55_fbf9ee_1x400.png %%CACTIDIR%%/include/themes/paper-plane/images/ui-bg_glass_65_ffffff_1x400.png %%CACTIDIR%%/include/themes/paper-plane/images/ui-bg_glass_75_dadada_1x400.png @@ -995,7 +936,6 @@ %%CACTIDIR%%/include/themes/paper-plane/images/ui-icons_cd0a0a_256x240.png %%CACTIDIR%%/include/themes/paper-plane/index.php %%CACTIDIR%%/include/themes/paper-plane/jquery-ui.css -%%CACTIDIR%%/include/themes/paper-plane/jquery-ui.org.css %%CACTIDIR%%/include/themes/paper-plane/jquery.colorpicker.css %%CACTIDIR%%/include/themes/paper-plane/jquery.multiselect.css %%CACTIDIR%%/include/themes/paper-plane/jquery.timepicker.css @@ -1015,8 +955,8 @@ %%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.gif -%%CACTIDIR%%/include/themes/paw/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/paw/images/cacti_logo.gif +%%CACTIDIR%%/include/themes/paw/images/cacti_logo.svg %%CACTIDIR%%/include/themes/paw/images/favicon.ico %%CACTIDIR%%/include/themes/paw/images/index.php %%CACTIDIR%%/include/themes/paw/images/map-opacity.png @@ -1026,8 +966,6 @@ %%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 @@ -1042,7 +980,6 @@ %%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 @@ -1058,13 +995,12 @@ %%CACTIDIR%%/include/themes/sunrise/default/style.css %%CACTIDIR%%/include/themes/sunrise/default/style.min.css %%CACTIDIR%%/include/themes/sunrise/default/throbber.gif -%%CACTIDIR%%/include/themes/sunrise/global_session.php %%CACTIDIR%%/include/themes/sunrise/images/bar-alpha.png %%CACTIDIR%%/include/themes/sunrise/images/bar-opacity.png %%CACTIDIR%%/include/themes/sunrise/images/bar-pointer.png %%CACTIDIR%%/include/themes/sunrise/images/bar.png -%%CACTIDIR%%/include/themes/sunrise/images/%%CACTIUSER%%_logo.gif -%%CACTIDIR%%/include/themes/sunrise/images/%%CACTIUSER%%_logo.svg +%%CACTIDIR%%/include/themes/sunrise/images/cacti_logo.gif +%%CACTIDIR%%/include/themes/sunrise/images/cacti_logo.svg %%CACTIDIR%%/include/themes/sunrise/images/favicon.ico %%CACTIDIR%%/include/themes/sunrise/images/index.php %%CACTIDIR%%/include/themes/sunrise/images/map-opacity.png @@ -1074,8 +1010,6 @@ %%CACTIDIR%%/include/themes/sunrise/images/tab_list.gif %%CACTIDIR%%/include/themes/sunrise/images/tab_preview.gif %%CACTIDIR%%/include/themes/sunrise/images/tab_tree.gif -%%CACTIDIR%%/include/themes/sunrise/images/ui-bg_flat_0_aaaaaa_40x100.png -%%CACTIDIR%%/include/themes/sunrise/images/ui-bg_flat_75_ffffff_40x100.png %%CACTIDIR%%/include/themes/sunrise/images/ui-bg_glass_55_fbf9ee_1x400.png %%CACTIDIR%%/include/themes/sunrise/images/ui-bg_glass_65_ffffff_1x400.png %%CACTIDIR%%/include/themes/sunrise/images/ui-bg_glass_75_dadada_1x400.png @@ -1090,7 +1024,6 @@ %%CACTIDIR%%/include/themes/sunrise/images/ui-icons_cd0a0a_256x240.png %%CACTIDIR%%/include/themes/sunrise/index.php %%CACTIDIR%%/include/themes/sunrise/jquery-ui.css -%%CACTIDIR%%/include/themes/sunrise/jquery-ui.org.css %%CACTIDIR%%/include/themes/sunrise/jquery.colorpicker.css %%CACTIDIR%%/include/themes/sunrise/jquery.multiselect.css %%CACTIDIR%%/include/themes/sunrise/jquery.timepicker.css @@ -1102,11 +1035,653 @@ %%CACTIDIR%%/include/top_general_header.php %%CACTIDIR%%/include/top_graph_header.php %%CACTIDIR%%/include/top_header.php +%%CACTIDIR%%/include/vendor/csrf/LICENSE +%%CACTIDIR%%/include/vendor/csrf/NEWS +%%CACTIDIR%%/include/vendor/csrf/README +%%CACTIDIR%%/include/vendor/csrf/csrf-magic.js +%%CACTIDIR%%/include/vendor/csrf/csrf-magic.php +%%CACTIDIR%%/include/vendor/csrf/index.php +%%CACTIDIR%%/include/vendor/flag-icon-css/Gruntfile.coffee +%%CACTIDIR%%/include/vendor/flag-icon-css/LICENSE +%%CACTIDIR%%/include/vendor/flag-icon-css/README.md +%%CACTIDIR%%/include/vendor/flag-icon-css/assets/docs.css +%%CACTIDIR%%/include/vendor/flag-icon-css/assets/docs.js +%%CACTIDIR%%/include/vendor/flag-icon-css/assets/docs.less +%%CACTIDIR%%/include/vendor/flag-icon-css/bower.json +%%CACTIDIR%%/include/vendor/flag-icon-css/composer.json +%%CACTIDIR%%/include/vendor/flag-icon-css/css/flag-icon.css +%%CACTIDIR%%/include/vendor/flag-icon-css/css/flag-icon.min.css +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ad.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ae.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/af.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ag.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ai.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/al.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/am.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ao.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/aq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ar.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/as.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/at.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/au.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/aw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ax.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/az.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ba.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/be.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/br.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bs.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/by.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/bz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ca.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ch.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ci.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ck.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/co.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cx.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/cz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/de.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/dj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/dk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/dm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/do.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/dz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ec.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ee.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/eg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/eh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/er.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/es-ct.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/es.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/et.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/eu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/fi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/fj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/fk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/fm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/fo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/fr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ga.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gb-eng.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gb-nir.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gb-sct.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gb-wls.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ge.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gs.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/gy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/hk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/hm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/hn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/hr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ht.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/hu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/id.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ie.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/il.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/im.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/in.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/io.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/iq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ir.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/is.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/it.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/je.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/jm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/jo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/jp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ke.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ki.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/km.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ky.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/kz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/la.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/li.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ls.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/lv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ly.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ma.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/md.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/me.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ml.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ms.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mx.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/my.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/mz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/na.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/nc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ne.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/nf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ng.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ni.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/nl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/no.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/np.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/nr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/nu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/nz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/om.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pa.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pe.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ph.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ps.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/pw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/py.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/qa.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/re.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ro.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/rs.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ru.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/rw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sa.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/se.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/si.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/so.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ss.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/st.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sx.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/sz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/td.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/th.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/to.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/tz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ua.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ug.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/um.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/un.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/us.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/uy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/uz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/va.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/vc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ve.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/vg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/vi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/vn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/vu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/wf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ws.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/ye.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/yt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/za.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/zm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/1x1/zw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ad.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ae.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/af.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ag.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ai.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/al.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/am.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ao.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/aq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ar.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/as.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/at.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/au.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/aw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ax.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/az.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ba.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/be.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/br.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bs.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/by.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/bz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ca.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ch.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ci.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ck.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/co.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cx.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/cz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/de.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/dj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/dk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/dm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/do.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/dz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ec.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ee.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/eg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/eh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/er.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/es-ct.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/es.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/et.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/eu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/fi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/fj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/fk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/fm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/fo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/fr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ga.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gb-eng.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gb-nir.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gb-sct.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gb-wls.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ge.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gs.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/gy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/hk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/hm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/hn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/hr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ht.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/hu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/id.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ie.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/il.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/im.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/in.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/io.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/iq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ir.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/is.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/it.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/je.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/jm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/jo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/jp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ke.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ki.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/km.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ky.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/kz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/la.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/li.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ls.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/lv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ly.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ma.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/md.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/me.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ml.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mo.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mp.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mq.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ms.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mx.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/my.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/mz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/na.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/nc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ne.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/nf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ng.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ni.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/nl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/no.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/np.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/nr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/nu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/nz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/om.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pa.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pe.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ph.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ps.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/pw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/py.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/qa.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/re.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ro.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/rs.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ru.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/rw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sa.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sb.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sd.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/se.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sh.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/si.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/so.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ss.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/st.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sx.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/sz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/td.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/th.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tj.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tk.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tl.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/to.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tr.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tv.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/tz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ua.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ug.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/um.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/un.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/us.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/uy.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/uz.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/va.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/vc.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ve.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/vg.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/vi.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/vn.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/vu.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/wf.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ws.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/ye.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/yt.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/za.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/zm.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/flags/4x3/zw.svg +%%CACTIDIR%%/include/vendor/flag-icon-css/index.html +%%CACTIDIR%%/include/vendor/flag-icon-css/less/flag-icon-base.less +%%CACTIDIR%%/include/vendor/flag-icon-css/less/flag-icon-list.less +%%CACTIDIR%%/include/vendor/flag-icon-css/less/flag-icon-more.less +%%CACTIDIR%%/include/vendor/flag-icon-css/less/flag-icon.less +%%CACTIDIR%%/include/vendor/flag-icon-css/less/variables.less +%%CACTIDIR%%/include/vendor/flag-icon-css/package.json +%%CACTIDIR%%/include/vendor/flag-icon-css/sass/_flag-icon-base.scss +%%CACTIDIR%%/include/vendor/flag-icon-css/sass/_flag-icon-list.scss +%%CACTIDIR%%/include/vendor/flag-icon-css/sass/_flag-icon-more.scss +%%CACTIDIR%%/include/vendor/flag-icon-css/sass/_variables.scss +%%CACTIDIR%%/include/vendor/flag-icon-css/sass/flag-icon.scss +%%CACTIDIR%%/include/vendor/flag-icon-css/svgo.yaml +%%CACTIDIR%%/include/vendor/flag-icon-css/yarn.lock +%%CACTIDIR%%/include/vendor/index.php +%%CACTIDIR%%/include/vendor/phpgettext/gettext.php +%%CACTIDIR%%/include/vendor/phpgettext/streams.php +%%CACTIDIR%%/include/vendor/phpmailer/LICENSE +%%CACTIDIR%%/include/vendor/phpmailer/README.md +%%CACTIDIR%%/include/vendor/phpmailer/SECURITY.md +%%CACTIDIR%%/include/vendor/phpmailer/VERSION +%%CACTIDIR%%/include/vendor/phpmailer/index.php +%%CACTIDIR%%/include/vendor/phpmailer/language/index.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-am.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ar.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-az.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ba.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-be.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-bg.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ca.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ch.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-cs.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-da.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-de.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-el.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-eo.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-es.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-et.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-fa.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-fi.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-fo.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-fr.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-gl.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-he.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-hi.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-hr.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-hu.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-id.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-it.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ja.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ka.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ko.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-lt.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-lv.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-mg.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ms.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-nb.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-nl.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-pl.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-pt.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-pt_br.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ro.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-ru.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-sk.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-sl.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-sr.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-sv.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-tl.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-tr.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-uk.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-vi.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-zh.php +%%CACTIDIR%%/include/vendor/phpmailer/language/phpmailer.lang-zh_cn.php +%%CACTIDIR%%/include/vendor/phpmailer/src/Exception.php +%%CACTIDIR%%/include/vendor/phpmailer/src/OAuth.php +%%CACTIDIR%%/include/vendor/phpmailer/src/PHPMailer.php +%%CACTIDIR%%/include/vendor/phpmailer/src/POP3.php +%%CACTIDIR%%/include/vendor/phpmailer/src/SMTP.php +%%CACTIDIR%%/include/vendor/phpmailer/src/index.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/AES.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/Base.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/Blowfish.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/DES.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/Hash.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/RC2.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/RC4.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/RSA.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/Random.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/Rijndael.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/TripleDES.php +%%CACTIDIR%%/include/vendor/phpseclib/Crypt/Twofish.php +%%CACTIDIR%%/include/vendor/phpseclib/File/ANSI.php +%%CACTIDIR%%/include/vendor/phpseclib/File/ASN1.php +%%CACTIDIR%%/include/vendor/phpseclib/File/ASN1/Element.php +%%CACTIDIR%%/include/vendor/phpseclib/File/X509.php +%%CACTIDIR%%/include/vendor/phpseclib/Math/BigInteger.php +%%CACTIDIR%%/include/vendor/phpseclib/Net/SCP.php +%%CACTIDIR%%/include/vendor/phpseclib/Net/SFTP.php +%%CACTIDIR%%/include/vendor/phpseclib/Net/SFTP/Stream.php +%%CACTIDIR%%/include/vendor/phpseclib/Net/SSH1.php +%%CACTIDIR%%/include/vendor/phpseclib/Net/SSH2.php +%%CACTIDIR%%/include/vendor/phpseclib/System/SSH/Agent.php +%%CACTIDIR%%/include/vendor/phpseclib/System/SSH/Agent/Identity.php +%%CACTIDIR%%/include/vendor/phpseclib/System/SSH_Agent.php +%%CACTIDIR%%/include/vendor/phpseclib/bootstrap.php +%%CACTIDIR%%/include/vendor/phpseclib/openssl.cnf +%%CACTIDIR%%/include/vendor/phpsnmp/classSNMP.php +%%CACTIDIR%%/include/vendor/phpsnmp/mib_parser.php %%CACTIDIR%%/index.php +%%CACTIDIR%%/install/background.php +%%CACTIDIR%%/install/cli_test.php %%CACTIDIR%%/install/colors.csv %%CACTIDIR%%/install/functions.php %%CACTIDIR%%/install/index.php %%CACTIDIR%%/install/templates/Cisco_Router.xml.gz +%%CACTIDIR%%/install/install.css +%%CACTIDIR%%/install/install.js +%%CACTIDIR%%/install/install.php +%%CACTIDIR%%/install/step_json.php %%CACTIDIR%%/install/templates/Generic_SNMP_Device.xml.gz %%CACTIDIR%%/install/templates/Local_Linux_Machine.xml.gz %%CACTIDIR%%/install/templates/NetSNMP_Device.xml.gz @@ -1149,6 +1724,7 @@ %%CACTIDIR%%/install/upgrades/1_1_35.php %%CACTIDIR%%/install/upgrades/1_1_36.php %%CACTIDIR%%/install/upgrades/1_1_37.php +%%CACTIDIR%%/install/upgrades/1_2_0.php %%CACTIDIR%%/install/upgrades/index.php %%CACTIDIR%%/lib/aggregate.php %%CACTIDIR%%/lib/api_aggregate.php @@ -1165,6 +1741,7 @@ %%CACTIDIR%%/lib/clog_webapi.php %%CACTIDIR%%/lib/data_query.php %%CACTIDIR%%/lib/database.php +%%CACTIDIR%%/lib/dsdebug.php %%CACTIDIR%%/lib/dsstats.php %%CACTIDIR%%/lib/export.php %%CACTIDIR%%/lib/functions.php @@ -1180,9 +1757,9 @@ %%CACTIDIR%%/lib/html_validate.php %%CACTIDIR%%/lib/import.php %%CACTIDIR%%/lib/index.php +%%CACTIDIR%%/lib/installer.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 @@ -1191,6 +1768,7 @@ %%CACTIDIR%%/lib/snmp.php %%CACTIDIR%%/lib/snmpagent.php %%CACTIDIR%%/lib/sort.php +%%CACTIDIR%%/lib/spikekill.php %%CACTIDIR%%/lib/template.php %%CACTIDIR%%/lib/time.php %%CACTIDIR%%/lib/timespan_settings.php @@ -1200,25 +1778,50 @@ %%CACTIDIR%%/lib/xml.php %%CACTIDIR%%/link.php %%CACTIDIR%%/links.php +%%CACTIDIR%%/locales/LC_MESSAGES/arabic_saudi_arabia.mo %%CACTIDIR%%/locales/LC_MESSAGES/bulgarian_bulgaria.mo %%CACTIDIR%%/locales/LC_MESSAGES/chinese_china_simplified.mo +%%CACTIDIR%%/locales/LC_MESSAGES/chinese_taiwan.mo %%CACTIDIR%%/locales/LC_MESSAGES/dutch_netherlands.mo %%CACTIDIR%%/locales/LC_MESSAGES/french_france.mo %%CACTIDIR%%/locales/LC_MESSAGES/german_germany.mo +%%CACTIDIR%%/locales/LC_MESSAGES/greek_greece.mo +%%CACTIDIR%%/locales/LC_MESSAGES/hebrew_israel.mo +%%CACTIDIR%%/locales/LC_MESSAGES/hindi_india.mo +%%CACTIDIR%%/locales/LC_MESSAGES/italian_italy.mo %%CACTIDIR%%/locales/LC_MESSAGES/japanese_japan.mo +%%CACTIDIR%%/locales/LC_MESSAGES/korean_korea.mo +%%CACTIDIR%%/locales/LC_MESSAGES/polish_poland.mo +%%CACTIDIR%%/locales/LC_MESSAGES/portuguese_brazil.mo +%%CACTIDIR%%/locales/LC_MESSAGES/portuguese_portugal.mo %%CACTIDIR%%/locales/LC_MESSAGES/russian_russia.mo %%CACTIDIR%%/locales/LC_MESSAGES/spanish_spain.mo %%CACTIDIR%%/locales/LC_MESSAGES/swedish_sweden.mo +%%CACTIDIR%%/locales/LC_MESSAGES/turkish_turkey.mo +%%CACTIDIR%%/locales/LC_MESSAGES/vietnamese_vietnam.mo +%%CACTIDIR%%/locales/build_mo.sh +%%CACTIDIR%%/locales/po/arabic_saudi_arabia.po %%CACTIDIR%%/locales/po/bulgarian_bulgaria.po -%%CACTIDIR%%/locales/po/%%CACTIUSER%%.pot +%%CACTIDIR%%/locales/po/cacti.pot %%CACTIDIR%%/locales/po/chinese_china_simplified.po +%%CACTIDIR%%/locales/po/chinese_taiwan.po %%CACTIDIR%%/locales/po/dutch_netherlands.po %%CACTIDIR%%/locales/po/french_france.po %%CACTIDIR%%/locales/po/german_germany.po +%%CACTIDIR%%/locales/po/greek_greece.po +%%CACTIDIR%%/locales/po/hebrew_israel.po +%%CACTIDIR%%/locales/po/hindi_india.po +%%CACTIDIR%%/locales/po/italian_italy.po %%CACTIDIR%%/locales/po/japanese_japan.po +%%CACTIDIR%%/locales/po/korean_korea.po +%%CACTIDIR%%/locales/po/polish_poland.po +%%CACTIDIR%%/locales/po/portuguese_brazil.po +%%CACTIDIR%%/locales/po/portuguese_portugal.po %%CACTIDIR%%/locales/po/russian_russia.po %%CACTIDIR%%/locales/po/spanish_spain.po %%CACTIDIR%%/locales/po/swedish_sweden.po +%%CACTIDIR%%/locales/po/turkish_turkey.po +%%CACTIDIR%%/locales/po/vietnamese_vietnam.po %%CACTIDIR%%/logout.php %%CACTIDIR%%/managers.php %%CACTIDIR%%/mibs/CACTI-BOOST-MIB |