View | Details | Raw Unified | Return to bug 216801 | Differences between
and this patch

Collapse All | Expand All

(-)net-mgmt/cacti/Makefile (-4 / +3 lines)
Lines 1-7 Link Here
1
# $FreeBSD: head/net-mgmt/cacti/Makefile 416066 2016-05-28 20:09:26Z pi $
1
# $FreeBSD: head/net-mgmt/cacti/Makefile 416066 2016-05-28 20:09:26Z pi $
2
2
3
PORTNAME=	cacti
3
PORTNAME=	cacti
4
PORTVERSION=	0.8.8h${PATCHLEVEL}
4
PORTVERSION=	1.0.0
5
CATEGORIES=	net-mgmt www
5
CATEGORIES=	net-mgmt www
6
MASTER_SITES=	http://www.cacti.net/downloads/ \
6
MASTER_SITES=	http://www.cacti.net/downloads/ \
7
		ftp://ftpmirror.uk/freebsd-ports/cacti/
7
		ftp://ftpmirror.uk/freebsd-ports/cacti/
Lines 14-22 Link Here
14
14
15
RUN_DEPENDS=	rrdtool:databases/rrdtool
15
RUN_DEPENDS=	rrdtool:databases/rrdtool
16
16
17
USES=		cpe mysql shebangfix
17
USES=		cpe mysql php:web shebangfix
18
USE_PHP=	mysqli pcre session sockets snmp xml
18
USE_PHP=	ctype filter gd gmp hash json ldap mbstring openssl pcre pdo pdo_mysql posix session simplexml sockets snmp xml zlib
19
WANT_PHP_WEB=	yes
20
NO_ARCH=	yes
19
NO_ARCH=	yes
21
NO_BUILD=	yes
20
NO_BUILD=	yes
22
PKGMESSAGE=	${WRKDIR}/pkg-message
21
PKGMESSAGE=	${WRKDIR}/pkg-message
(-)net-mgmt/cacti/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (cacti-0.8.8h.tar.gz) = 0673bd9513dad381c8bbb9133c721a32bc6422dc91c5a81de16e3cd32e4d0600
1
TIMESTAMP = 1486212628
2
SIZE (cacti-0.8.8h.tar.gz) = 2585226
2
SHA256 (cacti-1.0.0.tar.gz) = 180a23102af0415b961ef4d4181f93f49d40ebed36c5392ac988650d3753e693
3
SIZE (cacti-1.0.0.tar.gz) = 7275783
(-)net-mgmt/cacti/files/patch-include__global.php (-9 / +9 lines)
Lines 1-11 Link Here
1
--- include/global.php.bak	2015-03-12 03:07:05.768314249 -0700
1
--- include/global.php.orig	2017-02-04 14:12:12.747287000 +0000
2
+++ include/global.php	2015-03-12 03:08:04.171320391 -0700
2
+++ include/global.php	2017-02-04 14:12:32.931726000 +0000
3
@@ -113,7 +113,7 @@
3
@@ -126,7 +126,7 @@
4
 	$config["library_path"] = preg_replace("/(.*[\/])include/", "\\1lib", dirname(__FILE__));
4
 	$config['library_path'] = preg_replace("/(.*[\/])include/", "\\1lib", dirname(__FILE__));
5
 }
5
 }
6
 $config["include_path"] = dirname(__FILE__);
6
 $config['include_path'] = dirname(__FILE__);
7
-$config["rra_path"] = $config["base_path"] . '/rra';
7
-$config['rra_path'] = $config['base_path'] . '/rra';
8
+$config["rra_path"] = '/var/db/cacti/rra';
8
+$config['rra_path'] = '/var/db/cacti/rra';
9
 
9
 
10
 /* colors */
10
 /* for multiple pollers, we need to know this location */
11
 $colors["dark_outline"] = "454E53";
11
 if (!isset($scripts_path)) {
(-)net-mgmt/cacti/files/patch-include__global_settings.php (-10 / +13 lines)
Lines 1-11 Link Here
1
--- include/global_settings.php.bak	2015-03-12 03:08:59.333297709 -0700
1
--- include/global_settings.php.orig	2017-02-04 14:13:42.140386000 +0000
2
+++ include/global_settings.php	2015-03-12 03:10:47.532302704 -0700
2
+++ include/global_settings.php	2017-02-04 14:20:35.592474000 +0000
3
@@ -96,7 +96,7 @@
3
@@ -135,9 +135,9 @@
4
 			),
4
 			),
5
 		"path_cactilog" => array(
5
 		'path_cactilog' => array(
6
 			"friendly_name" => "Cacti Log File Path",
6
 			'friendly_name' => __('Cacti Log Path'),
7
-			"description" => "The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)",
7
-			'description' => __('The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)'),
8
+			"description" => "The path to your Cacti log file (if blank, defaults to /var/log/cacti/log)",
8
+			'description' => __('The path to your Cacti log file (if blank, defaults to /var/log/cacti/log)'),
9
 			"method" => "filepath",
9
 			'method' => 'filepath',
10
 			"default" => $config["base_path"] . "/log/cacti.log",
10
-			'default' => $config['base_path'] . '/log/cacti.log',
11
 			"max_length" => "255"
11
+			'default' => '/var/log/cacti/log',
12
 			'max_length' => '255'
13
 			),
14
 		'logrotate_enabled' => array(
(-)net-mgmt/cacti/files/patch-install__functions.php (+11 lines)
Line 0 Link Here
1
--- install/functions.php.orig	2017-02-04 14:21:02.093580000 +0000
2
+++ install/functions.php	2017-02-04 14:21:31.615575000 +0000
3
@@ -365,7 +365,7 @@
4
 	if (config_value_exists('path_cactilog')) {
5
 		$input['path_cactilog']['default'] = read_config_option('path_cactilog');
6
 	} else {
7
-		$input['path_cactilog']['default'] = $config['base_path'] . '/log/cacti.log';
8
+		$input['path_cactilog']['default'] = '/var/log/cacti/log';
9
 	}
10
 
11
 	/* Theme */
(-)net-mgmt/cacti/files/patch-install__index.php (-20 lines)
Lines 1-20 Link Here
1
--- install/index.php.orig	2016-05-28 10:54:08.124059773 +0100
2
+++ install/index.php	2016-05-28 10:54:34.252057818 +0100
3
@@ -63,7 +63,7 @@
4
 }
5
 
6
 function verify_php_extensions() {
7
-	$extensions = array("session", "sockets", "mysql", "xml");
8
+	$extensions = array("session", "sockets", "mysqli", "xml");
9
 	$ok = true;
10
 	$missing_extension = "	<p style='font-family: Verdana, Arial; font-size: 16px; font-weight: bold; color: red;'>Error</p>
11
 							<p style='font-family: Verdana, Arial; font-size: 12px;'>The following PHP extensions are missing:</p><ul>";
12
@@ -267,7 +267,7 @@
13
 if (config_value_exists("path_cactilog")) {
14
 	$input["path_cactilog"]["default"] = read_config_option("path_cactilog");
15
 } else {
16
-	$input["path_cactilog"]["default"] = $config["base_path"] . "/log/cacti.log";
17
+	$input["path_cactilog"]["default"] = "/var/log/cacti/log";
18
 }
19
 
20
 /* SNMP Version */
(-)net-mgmt/cacti/files/patch-lib__clog_webapi.php (+20 lines)
Line 0 Link Here
1
--- lib/clog_webapi.php.orig	2017-02-04 14:22:42.713430000 +0000
2
+++ lib/clog_webapi.php	2017-02-04 14:23:10.949163000 +0000
3
@@ -40,7 +40,7 @@
4
 	$logfile = read_config_option('path_cactilog');
5
 
6
 	if ($logfile == '') {
7
-		$logfile = $config['base_path'] . '/log/cacti.log';
8
+		$logfile = '/var/log/cacti/log';
9
 	}
10
 
11
 	if (file_exists($logfile)) {
12
@@ -64,7 +64,7 @@
13
 	$logfile = read_config_option('path_cactilog');
14
 
15
 	if ($logfile == '') {
16
-		$logfile = './log/cacti.log';
17
+		$logfile = '/var/log/cacti/log';
18
 	}
19
 
20
 	/* helps determine output color */
(-)net-mgmt/cacti/files/patch-lib__functions.php (-14 / +10 lines)
Lines 1-15 Link Here
1
--- lib/functions.php.orig	2016-05-28 10:58:17.522042409 +0100
1
--- lib/functions.php.orig	2017-02-04 14:16:43.886716000 +0000
2
+++ lib/functions.php	2016-05-28 11:00:31.399032747 +0100
2
+++ lib/functions.php	2017-02-04 14:22:18.219392000 +0000
3
@@ -670,8 +670,10 @@
3
@@ -649,7 +649,7 @@
4
 	$issue_log_message   = false;
4
 	/* Log to Logfile */
5
 	$ping_failure_count  = read_config_option("ping_failure_count");
5
 	if ((($logdestination == 1) || ($logdestination == 2)) && (read_config_option('log_verbosity') != POLLER_VERBOSITY_NONE)) {
6
 	$ping_recovery_count = read_config_option("ping_recovery_count");
6
 		if ($logfile == '') {
7
-	$hosts[$host_id]["status_fail_date"] = '0000-00-00 00:00:00';
7
-			$logfile = $config['base_path'] . '/log/cacti.log';
8
-	$hosts[$host_id]["status_rec_date"] = '0000-00-00 00:00:00';
8
+			$logfile = '/var/log/cacti/log';
9
+	if ((!isset($hosts[$host_id]["status_fail_date"])) || ($hosts[$host_id]["status_fail_date"] == ""))
9
 		}
10
+		$hosts[$host_id]["status_fail_date"] = '0000-00-00 00:00:00';
11
+	if ((!isset($hosts[$host_id]["status_rec_date"])) || ($hosts[$host_id]["status_rec_date"] == ""))
12
+		$hosts[$host_id]["status_rec_date"] = '0000-00-00 00:00:00';
13
 
10
 
14
 	if ($status == HOST_DOWN) {
11
 		/* echo the data to the log (append) */
15
 		/* update total polls, failed polls and availability */
(-)net-mgmt/cacti/files/patch-poller_maintenance.php (+15 lines)
Line 0 Link Here
1
--- poller_maintenance.php.orig	2017-02-04 14:23:37.951265000 +0000
2
+++ poller_maintenance.php	2017-02-04 14:24:49.403929000 +0000
3
@@ -172,10 +172,10 @@
4
  */
5
 function logrotate_rotatenow () {
6
 	global $config;
7
-	$log = $config['base_path'] . '/log/cacti.log';
8
+	$log = '/var/log/cacti/log';
9
 	set_config_option('logrotate_lastrun', time());
10
 	clearstatcache();
11
-	if (is_writable($config['base_path'] . '/log/') && is_writable($log)) {
12
+	if (is_writable('/var/log/cacti') && is_writable($log)) {
13
 		$perms = octdec(substr(decoct( fileperms($log) ), 2));
14
 		$owner = fileowner($log);
15
 		$group = filegroup($log);
(-)net-mgmt/cacti/files/patch-scripts__ping.pl (-8 / +18 lines)
Lines 1-11 Link Here
1
--- ./scripts/ping.pl.orig	2014-08-15 15:39:56.000000000 +0200
1
--- scripts/ping.pl.orig	2017-02-04 14:26:20.790739000 +0000
2
+++ ./scripts/ping.pl	2014-08-15 15:40:35.000000000 +0200
2
+++ scripts/ping.pl	2017-02-04 14:34:54.388668000 +0000
3
@@ -6,7 +6,7 @@
3
@@ -18,14 +18,14 @@
4
 
4
 
5
 # old linux version use "icmp_seq"
5
 # old linux version use 'icmp_seq'
6
 # newer use "icmp_req" instead
6
 # newer use 'icmp_req' instead
7
-open(PROCESS, "ping -c 1 $host | grep 'icmp_[s|r]eq' | grep time |");
7
-open(PROCESS, "ping -c 1 $host 2>&1 | grep -E '(icmp_[s|r]eq.*time|unknown host)' 2>/dev/null |");
8
+open(PROCESS, "/sbin/ping -c 1 $host | grep 'icmp_[s|r]eq' | grep time |");
8
+open(PROCESS, "/sbin/ping -c 1 $host 2>&1 | /usr/bin/grep -E '(icmp_[s|r]eq.*time|Unknown host)' 2>/dev/null |");
9
 $ping = <PROCESS>;
9
 $ping = <PROCESS>;
10
 close(PROCESS);
10
 close(PROCESS);
11
 $ping =~ m/(.*time=)(.*) (ms|usec)/;
11
 chomp($ping);
12
 
13
-if ($ping =~ 'unknown host') {
14
-	if (-f '/bin/ping6') {
15
-		open(PROCESS, "/bin/ping6 -c 1 $host 2>&1 | grep 'icmp_[s|r]eq.*time' 2>/dev/null |");
16
+if ($ping =~ 'Unknown host') {
17
+	if (-f '/sbin/ping6') {
18
+		open(PROCESS, "/sbin/ping6 -c 1 $host 2>&1 | /usr/bin/grep 'icmp_[s|r]eq.*time' 2>/dev/null |");
19
 		$ping = <PROCESS>;
20
 		close(PROCESS);
21
 		chomp($ping);
(-)net-mgmt/cacti/files/patch-utilities.php (+20 lines)
Line 0 Link Here
1
--- utilities.php.orig	2017-02-04 14:25:11.346062000 +0000
2
+++ utilities.php	2017-02-04 14:25:39.435371000 +0000
3
@@ -869,7 +869,7 @@
4
 	$logfile = read_config_option('path_cactilog');
5
 
6
 	if ($logfile == '') {
7
-		$logfile = $config['base_path'] . '/log/cacti.log';
8
+		$logfile = '/var/log/cacti/log';
9
 	}
10
 
11
 	/* helps determine output color */
12
@@ -1149,7 +1149,7 @@
13
 	$logfile = read_config_option('path_cactilog');
14
 
15
 	if ($logfile == '') {
16
-		$logfile = './log/cacti.log';
17
+		$logfile = '/var/log/cacti/log';
18
 	}
19
 
20
 	html_start_box(__('Clear Cacti Log'), '100%', '', '3', 'center', '');
(-)net-mgmt/cacti/files/pkg-message.in (-8 / +14 lines)
Lines 1-18 Link Here
1
=======================================================================
1
=======================================================================
2
Cacti is now installed. If you intall it for the first time,
2
Cacti is now installed. If you install it for the first time,
3
you may have to follow this steps to make it work correctly:
3
you may have to follow this steps to make it work correctly:
4
4
5
1. Create the MySQL database, a cacti user, and initialize:
5
1. Create the MySQL database, a cacti user, and initialize:
6
   a) CREATE DATABASE cacti;
6
   a) CREATE DATABASE `cacti`;
7
   b) Create a mysql user/password for cacti:
7
   b) Create a mysql user/password for cacti:
8
      CREATE USER 'cacti'@'localhost' IDENTIFIED BY 'password';
8
      CREATE USER 'cacti'@'localhost' IDENTIFIED BY 'password';
9
      FLUSH PRIVILEGES;
9
      FLUSH PRIVILEGES;
10
   c) Add GRANTS:
10
   c) Add GRANTS:
11
      GRANT ALL ON cacti.* TO 'cacti'@'localhost';
11
      GRANT ALL ON `cacti`.* TO 'cacti'@'localhost';
12
      GRANT SELECT ON `mysql`.`time_zone_name` TO 'cacti'@'localhost';
12
      FLUSH PRIVILEGES;
13
      FLUSH PRIVILEGES;
13
   d) Import the default cacti database:
14
   d) Import the default cacti database:
14
      mysql --database=cacti -ucacti -p < %%PREFIX%%/%%CACTIDIR%%/cacti.sql
15
      mysql --database=cacti -ucacti -p < %%PREFIX%%/%%CACTIDIR%%/cacti.sql
15
16
17
   If you haven't already imported your MySQL timezone data, you need to do this:
18
      mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql
19
16
 NOTE:
20
 NOTE:
17
   * Cacti does not LOCK TABLES.
21
   * Cacti does not LOCK TABLES.
18
22
Lines 29-36 Link Here
29
*/5 * * * * %%LOCALBASE%%/bin/php %%PREFIX%%/%%CACTIDIR%%/poller.php > /dev/null 2>&1
33
*/5 * * * * %%LOCALBASE%%/bin/php %%PREFIX%%/%%CACTIDIR%%/poller.php > /dev/null 2>&1
30
34
31
4. Example Apache 2.4 configuration:
35
4. Example Apache 2.4 configuration:
36
   (This assumes that you have installed a working PHP Apache install, e.g. with mod_php)
32
37
33
   LoadModule php5_module  libexec/apache22/libphp5.so
34
38
35
   <FilesMatch "\.php$">
39
   <FilesMatch "\.php$">
36
       SetHandler application/x-httpd-php
40
       SetHandler application/x-httpd-php
Lines 53-60 Link Here
53
      Allow from all
57
      Allow from all
54
   </Directory>
58
   </Directory>
55
59
56
5. Open a Cacti login page in your web browser and login with
60
5. Open a Cacti login page in your web browser and follow the install instructions.
57
   admin/admin.
61
58
62
59
If you update cacti, open a login page and an updating process will
63
If you update cacti, open a login page and an updating process will
60
start automatically.
64
start automatically.
Lines 82-87 Link Here
82
   /usr/local/bin.
86
   /usr/local/bin.
83
87
84
Other Erratas:
88
Other Erratas:
85
Mount linprocfs in /compat/linux/proc will alow most scripts to work.
89
   1) Mount linprocfs in /compat/linux/proc will allow most scripts to work.
86
90
   2) This package does not install a MySQL server in case you wish to use an
91
      external MySQL server.  Install a package such as mysql57-server if you
92
      require a local server.
87
=======================================================================
93
=======================================================================
(-)net-mgmt/cacti/pkg-plist (-197 / +798 lines)
Lines 1-8 Link Here
1
%%CACTIDIR%%/LICENSE
1
%%CACTIDIR%%/LICENSE
2
%%CACTIDIR%%/README
2
%%CACTIDIR%%/README.md
3
%%CACTIDIR%%/about.php
3
%%CACTIDIR%%/about.php
4
%%CACTIDIR%%/aggregate_graphs.php
5
%%CACTIDIR%%/aggregate_items.php
6
%%CACTIDIR%%/aggregate_templates.php
4
%%CACTIDIR%%/auth_changepassword.php
7
%%CACTIDIR%%/auth_changepassword.php
5
%%CACTIDIR%%/auth_login.php
8
%%CACTIDIR%%/auth_login.php
9
%%CACTIDIR%%/auth_profile.php
10
%%CACTIDIR%%/automation_devices.php
11
%%CACTIDIR%%/automation_graph_rules.php
12
%%CACTIDIR%%/automation_networks.php
13
%%CACTIDIR%%/automation_snmp.php
14
%%CACTIDIR%%/automation_templates.php
15
%%CACTIDIR%%/automation_tree_rules.php
16
%%CACTIDIR%%/boost_rrdupdate.php
17
%%CACTIDIR%%/cache/boost/.htaccess
18
%%CACTIDIR%%/cache/boost/index.php
19
%%CACTIDIR%%/cache/index.php
20
%%CACTIDIR%%/cache/mibcache/.htaccess
21
%%CACTIDIR%%/cache/mibcache/index.php
22
%%CACTIDIR%%/cache/realtime/.htaccess
23
%%CACTIDIR%%/cache/realtime/index.php
24
%%CACTIDIR%%/cache/spikekill/.htaccess
25
%%CACTIDIR%%/cache/spikekill/index.php
6
%%CACTIDIR%%/%%CACTIUSER%%.sql
26
%%CACTIDIR%%/%%CACTIUSER%%.sql
7
%%CACTIDIR%%/cdef.php
27
%%CACTIDIR%%/cdef.php
8
%%CACTIDIR%%/cli/.htaccess
28
%%CACTIDIR%%/cli/.htaccess
Lines 18-43 Link Here
18
%%CACTIDIR%%/cli/copy_user.php
38
%%CACTIDIR%%/cli/copy_user.php
19
%%CACTIDIR%%/cli/data_template_associate_rra.php
39
%%CACTIDIR%%/cli/data_template_associate_rra.php
20
%%CACTIDIR%%/cli/host_update_template.php
40
%%CACTIDIR%%/cli/host_update_template.php
41
%%CACTIDIR%%/cli/import_package.php
21
%%CACTIDIR%%/cli/import_template.php
42
%%CACTIDIR%%/cli/import_template.php
22
%%CACTIDIR%%/cli/poller_data_sources_reapply_names.php
43
%%CACTIDIR%%/cli/poller_data_sources_reapply_names.php
23
%%CACTIDIR%%/cli/poller_graphs_reapply_names.php
44
%%CACTIDIR%%/cli/poller_graphs_reapply_names.php
24
%%CACTIDIR%%/cli/poller_output_empty.php
45
%%CACTIDIR%%/cli/poller_output_empty.php
25
%%CACTIDIR%%/cli/poller_reindex_hosts.php
46
%%CACTIDIR%%/cli/poller_reindex_hosts.php
26
%%CACTIDIR%%/cli/rebuild_poller_cache.php
47
%%CACTIDIR%%/cli/rebuild_poller_cache.php
48
%%CACTIDIR%%/cli/removespikes.php
27
%%CACTIDIR%%/cli/reorder_data_query.php
49
%%CACTIDIR%%/cli/reorder_data_query.php
28
%%CACTIDIR%%/cli/repair_database.php
50
%%CACTIDIR%%/cli/repair_database.php
29
%%CACTIDIR%%/cli/repair_templates.php
51
%%CACTIDIR%%/cli/repair_templates.php
52
%%CACTIDIR%%/cli/sqltable_to_php.php
30
%%CACTIDIR%%/cli/structure_rra_paths.php
53
%%CACTIDIR%%/cli/structure_rra_paths.php
31
%%CACTIDIR%%/cli/upgrade_database.php
54
%%CACTIDIR%%/cli/upgrade_database.php
55
%%CACTIDIR%%/clog.php
56
%%CACTIDIR%%/clog_user.php
32
%%CACTIDIR%%/cmd.php
57
%%CACTIDIR%%/cmd.php
58
%%CACTIDIR%%/cmd_realtime.php
33
%%CACTIDIR%%/color.php
59
%%CACTIDIR%%/color.php
60
%%CACTIDIR%%/color_templates.php
61
%%CACTIDIR%%/color_templates_items.php
34
%%CACTIDIR%%/data_input.php
62
%%CACTIDIR%%/data_input.php
35
%%CACTIDIR%%/data_queries.php
63
%%CACTIDIR%%/data_queries.php
36
%%CACTIDIR%%/data_sources.php
64
%%CACTIDIR%%/data_sources.php
65
%%CACTIDIR%%/data_source_profiles.php
37
%%CACTIDIR%%/data_templates.php
66
%%CACTIDIR%%/data_templates.php
38
%%CACTIDIR%%/docs/CHANGELOG
67
%%CACTIDIR%%/docs/CHANGELOG
39
%%CACTIDIR%%/docs/CONTRIB
40
%%CACTIDIR%%/docs/README
41
%%CACTIDIR%%/docs/html/LICENSE.html
68
%%CACTIDIR%%/docs/html/LICENSE.html
42
%%CACTIDIR%%/docs/html/advanced_topics.html
69
%%CACTIDIR%%/docs/html/advanced_topics.html
43
%%CACTIDIR%%/docs/html/basics.html
70
%%CACTIDIR%%/docs/html/basics.html
Lines 137-147 Link Here
137
%%CACTIDIR%%/docs/html/user_management.html
164
%%CACTIDIR%%/docs/html/user_management.html
138
%%CACTIDIR%%/docs/html/using_spine.html
165
%%CACTIDIR%%/docs/html/using_spine.html
139
%%CACTIDIR%%/docs/html/variables.html
166
%%CACTIDIR%%/docs/html/variables.html
167
%%CACTIDIR%%/docs/index.php
168
%%CACTIDIR%%/docs/pdf/manual.pdf
140
%%CACTIDIR%%/docs/txt/manual.txt
169
%%CACTIDIR%%/docs/txt/manual.txt
170
%%CACTIDIR%%/formats/%%CACTIUSER%%_group.format
171
%%CACTIDIR%%/formats/%%CACTIUSER%%_group_dark.format
172
%%CACTIDIR%%/formats/%%CACTIUSER%%_monitor.format
173
%%CACTIDIR%%/formats/default.format
174
%%CACTIDIR%%/formats/index.php
175
%%CACTIDIR%%/formats/lotus_notes.format
141
%%CACTIDIR%%/gprint_presets.php
176
%%CACTIDIR%%/gprint_presets.php
142
%%CACTIDIR%%/graph.php
177
%%CACTIDIR%%/graph.php
143
%%CACTIDIR%%/graph_image.php
178
%%CACTIDIR%%/graph_image.php
144
%%CACTIDIR%%/graph_settings.php
179
%%CACTIDIR%%/graph_json.php
180
%%CACTIDIR%%/graph_realtime.php
145
%%CACTIDIR%%/graph_templates.php
181
%%CACTIDIR%%/graph_templates.php
146
%%CACTIDIR%%/graph_templates_inputs.php
182
%%CACTIDIR%%/graph_templates_inputs.php
147
%%CACTIDIR%%/graph_templates_items.php
183
%%CACTIDIR%%/graph_templates_items.php
Lines 152-187 Link Here
152
%%CACTIDIR%%/graphs_new.php
188
%%CACTIDIR%%/graphs_new.php
153
%%CACTIDIR%%/host.php
189
%%CACTIDIR%%/host.php
154
%%CACTIDIR%%/host_templates.php
190
%%CACTIDIR%%/host_templates.php
191
%%CACTIDIR%%/images/accept.png
192
%%CACTIDIR%%/images/application_edit.png
155
%%CACTIDIR%%/images/arrow.gif
193
%%CACTIDIR%%/images/arrow.gif
156
%%CACTIDIR%%/images/auth_deny.gif
194
%%CACTIDIR%%/images/auth_background.gif
157
%%CACTIDIR%%/images/auth_login.gif
195
%%CACTIDIR%%/images/bullet_arrow_down.png
158
%%CACTIDIR%%/images/auth_logout.gif
196
%%CACTIDIR%%/images/bullet_arrow_up.png
159
%%CACTIDIR%%/images/button_add.gif
160
%%CACTIDIR%%/images/button_cancel.gif
161
%%CACTIDIR%%/images/button_cancel2.gif
162
%%CACTIDIR%%/images/button_clear.gif
163
%%CACTIDIR%%/images/button_colapse_all.gif
164
%%CACTIDIR%%/images/button_create.gif
165
%%CACTIDIR%%/images/button_default.gif
166
%%CACTIDIR%%/images/button_delete.gif
167
%%CACTIDIR%%/images/button_expand_all.gif
168
%%CACTIDIR%%/images/button_export.gif
169
%%CACTIDIR%%/images/button_go.gif
170
%%CACTIDIR%%/images/button_help.gif
171
%%CACTIDIR%%/images/button_import.gif
172
%%CACTIDIR%%/images/button_no.gif
173
%%CACTIDIR%%/images/button_purge.gif
174
%%CACTIDIR%%/images/button_refresh.gif
175
%%CACTIDIR%%/images/button_save.gif
176
%%CACTIDIR%%/images/button_view.gif
177
%%CACTIDIR%%/images/button_yes.gif
178
%%CACTIDIR%%/images/%%CACTIUSER%%_about_logo.gif
197
%%CACTIDIR%%/images/%%CACTIUSER%%_about_logo.gif
179
%%CACTIDIR%%/images/%%CACTIUSER%%_backdrop.gif
198
%%CACTIDIR%%/images/%%CACTIUSER%%_backdrop.gif
180
%%CACTIDIR%%/images/%%CACTIUSER%%_backdrop2.gif
199
%%CACTIDIR%%/images/%%CACTIUSER%%_backdrop2.gif
181
%%CACTIDIR%%/images/%%CACTIUSER%%_logo.gif
200
%%CACTIDIR%%/images/%%CACTIUSER%%_logo.gif
201
%%CACTIDIR%%/images/%%CACTIUSER%%_logo_new.gif
182
%%CACTIDIR%%/images/calendar.gif
202
%%CACTIDIR%%/images/calendar.gif
203
%%CACTIDIR%%/images/chart_curve_go.png
204
%%CACTIDIR%%/images/cog.png
205
%%CACTIDIR%%/images/cog_add.png
206
%%CACTIDIR%%/images/cog_delete.png
207
%%CACTIDIR%%/images/cog_error.png
183
%%CACTIDIR%%/images/delete_icon.gif
208
%%CACTIDIR%%/images/delete_icon.gif
184
%%CACTIDIR%%/images/delete_icon_large.gif
209
%%CACTIDIR%%/images/delete_icon_large.gif
210
%%CACTIDIR%%/images/device_template.png
185
%%CACTIDIR%%/images/disable_icon.png
211
%%CACTIDIR%%/images/disable_icon.png
186
%%CACTIDIR%%/images/enable_icon.png
212
%%CACTIDIR%%/images/enable_icon.png
187
%%CACTIDIR%%/images/enable_icon_disabled.png
213
%%CACTIDIR%%/images/enable_icon_disabled.png
Lines 190-320 Link Here
190
%%CACTIDIR%%/images/graph_properties.gif
216
%%CACTIDIR%%/images/graph_properties.gif
191
%%CACTIDIR%%/images/graph_query.png
217
%%CACTIDIR%%/images/graph_query.png
192
%%CACTIDIR%%/images/graph_zoom.gif
218
%%CACTIDIR%%/images/graph_zoom.gif
193
%%CACTIDIR%%/images/hide.gif
219
%%CACTIDIR%%/images/index.php
194
%%CACTIDIR%%/images/install_icon.png
220
%%CACTIDIR%%/images/install_icon.png
195
%%CACTIDIR%%/images/install_icon_disabled.png
221
%%CACTIDIR%%/images/install_icon_disabled.png
196
%%CACTIDIR%%/images/left_border.gif
197
%%CACTIDIR%%/images/menu_line.gif
198
%%CACTIDIR%%/images/menuarrow.gif
222
%%CACTIDIR%%/images/menuarrow.gif
199
%%CACTIDIR%%/images/move_down.gif
223
%%CACTIDIR%%/images/move_down.gif
200
%%CACTIDIR%%/images/move_left.gif
224
%%CACTIDIR%%/images/move_left.gif
201
%%CACTIDIR%%/images/move_right.gif
225
%%CACTIDIR%%/images/move_right.gif
202
%%CACTIDIR%%/images/move_up.gif
226
%%CACTIDIR%%/images/move_up.gif
203
%%CACTIDIR%%/images/reload_icon_small.gif
227
%%CACTIDIR%%/images/reload_icon_small.gif
228
%%CACTIDIR%%/images/rrd_not_found.png
204
%%CACTIDIR%%/images/server.png
229
%%CACTIDIR%%/images/server.png
205
%%CACTIDIR%%/images/server_chart.png
230
%%CACTIDIR%%/images/server_chart.png
206
%%CACTIDIR%%/images/server_chart_curve.png
231
%%CACTIDIR%%/images/server_chart_curve.png
207
%%CACTIDIR%%/images/server_dataquery.png
232
%%CACTIDIR%%/images/server_dataquery.png
233
%%CACTIDIR%%/images/server_graph_template.png
234
%%CACTIDIR%%/images/server_table.png
208
%%CACTIDIR%%/images/shadow.gif
235
%%CACTIDIR%%/images/shadow.gif
209
%%CACTIDIR%%/images/shadow_gray.gif
236
%%CACTIDIR%%/images/shadow_gray.gif
210
%%CACTIDIR%%/images/show.gif
237
%%CACTIDIR%%/images/site.png
238
%%CACTIDIR%%/images/spikekill.gif
239
%%CACTIDIR%%/images/stop.png
211
%%CACTIDIR%%/images/tab_%%CACTIUSER%%.gif
240
%%CACTIDIR%%/images/tab_%%CACTIUSER%%.gif
241
%%CACTIDIR%%/images/tab_clog.png
242
%%CACTIDIR%%/images/tab_clog_down.png
212
%%CACTIDIR%%/images/tab_console.gif
243
%%CACTIDIR%%/images/tab_console.gif
213
%%CACTIDIR%%/images/tab_console_down.gif
244
%%CACTIDIR%%/images/tab_console_down.gif
214
%%CACTIDIR%%/images/tab_graphs.gif
245
%%CACTIDIR%%/images/tab_graphs.gif
215
%%CACTIDIR%%/images/tab_graphs_down.gif
246
%%CACTIDIR%%/images/tab_graphs_down.gif
247
%%CACTIDIR%%/images/tab_list.gif
216
%%CACTIDIR%%/images/tab_mode_list.gif
248
%%CACTIDIR%%/images/tab_mode_list.gif
217
%%CACTIDIR%%/images/tab_mode_list_down.gif
249
%%CACTIDIR%%/images/tab_mode_list_down.gif
218
%%CACTIDIR%%/images/tab_mode_preview.gif
250
%%CACTIDIR%%/images/tab_mode_preview.gif
219
%%CACTIDIR%%/images/tab_mode_preview_down.gif
251
%%CACTIDIR%%/images/tab_mode_preview_down.gif
220
%%CACTIDIR%%/images/tab_mode_tree.gif
252
%%CACTIDIR%%/images/tab_mode_tree.gif
221
%%CACTIDIR%%/images/tab_mode_tree_down.gif
253
%%CACTIDIR%%/images/tab_mode_tree_down.gif
254
%%CACTIDIR%%/images/tab_nectar.gif
255
%%CACTIDIR%%/images/tab_nectar_down.gif
256
%%CACTIDIR%%/images/tab_preview.gif
222
%%CACTIDIR%%/images/tab_settings.gif
257
%%CACTIDIR%%/images/tab_settings.gif
223
%%CACTIDIR%%/images/tab_settings_down.gif
258
%%CACTIDIR%%/images/tab_settings_down.gif
259
%%CACTIDIR%%/images/tab_tree.gif
260
%%CACTIDIR%%/images/table.png
261
%%CACTIDIR%%/images/table_go.png
262
%%CACTIDIR%%/images/timeview.png
224
%%CACTIDIR%%/images/transparent_line.gif
263
%%CACTIDIR%%/images/transparent_line.gif
264
%%CACTIDIR%%/images/tree.png
225
%%CACTIDIR%%/images/uninstall_icon.gif
265
%%CACTIDIR%%/images/uninstall_icon.gif
226
%%CACTIDIR%%/images/view_none.gif
266
%%CACTIDIR%%/images/view_none.gif
267
%%CACTIDIR%%/images/view_page.png
227
%%CACTIDIR%%/include/auth.php
268
%%CACTIDIR%%/include/auth.php
228
%%CACTIDIR%%/include/bottom_footer.php
269
%%CACTIDIR%%/include/bottom_footer.php
229
%%CACTIDIR%%/include/config.php.sample
270
%%CACTIDIR%%/include/config.php.sample
271
%%CACTIDIR%%/include/content/README
272
%%CACTIDIR%%/include/content/basic-example.html
273
%%CACTIDIR%%/include/content/iframe-example.html
274
%%CACTIDIR%%/include/content/index.php
275
%%CACTIDIR%%/include/content/php-example.html
276
%%CACTIDIR%%/include/csrf/LICENSE
277
%%CACTIDIR%%/include/csrf/NEWS
278
%%CACTIDIR%%/include/csrf/README
230
%%CACTIDIR%%/include/csrf/csrf-magic.js
279
%%CACTIDIR%%/include/csrf/csrf-magic.js
231
%%CACTIDIR%%/include/csrf/csrf-magic.php
280
%%CACTIDIR%%/include/csrf/csrf-magic.php
232
%%CACTIDIR%%/include/csrf/index.php
281
%%CACTIDIR%%/include/csrf/index.php
282
%%CACTIDIR%%/include/fa/css/font-awesome.css
283
%%CACTIDIR%%/include/fa/css/font-awesome.min.css
284
%%CACTIDIR%%/include/fa/css/index.php
285
%%CACTIDIR%%/include/fa/fonts/FontAwesome.otf
286
%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.eot
287
%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.svg
288
%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.ttf
289
%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.woff
290
%%CACTIDIR%%/include/fa/fonts/fontawesome-webfont.woff2
291
%%CACTIDIR%%/include/fa/fonts/index.php
292
%%CACTIDIR%%/include/fa/index.php
293
%%CACTIDIR%%/include/fonts/DejaVuSans-Bold.ttf
294
%%CACTIDIR%%/include/fonts/DejaVuSansCondensed-Bold.ttf
233
%%CACTIDIR%%/include/global.php
295
%%CACTIDIR%%/include/global.php
234
%%CACTIDIR%%/include/global_arrays.php
296
%%CACTIDIR%%/include/global_arrays.php
235
%%CACTIDIR%%/include/global_constants.php
297
%%CACTIDIR%%/include/global_constants.php
236
%%CACTIDIR%%/include/global_form.php
298
%%CACTIDIR%%/include/global_form.php
299
%%CACTIDIR%%/include/global_languages.php
300
%%CACTIDIR%%/include/global_session.php
237
%%CACTIDIR%%/include/global_settings.php
301
%%CACTIDIR%%/include/global_settings.php
238
%%CACTIDIR%%/include/js/images/ui-bg_diagonals-thick_18_b81900_40x40.png
302
%%CACTIDIR%%/include/index.php
239
%%CACTIDIR%%/include/js/images/ui-bg_diagonals-thick_20_666666_40x40.png
303
%%CACTIDIR%%/include/js/Chart.js
240
%%CACTIDIR%%/include/js/images/ui-bg_flat_10_000000_40x100.png
304
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-af.js
241
%%CACTIDIR%%/include/js/images/ui-bg_glass_100_f6f6f6_1x400.png
305
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-arabic_saudi_arabia.js
242
%%CACTIDIR%%/include/js/images/ui-bg_glass_100_fdf5ce_1x400.png
306
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-az.js
243
%%CACTIDIR%%/include/js/images/ui-bg_glass_65_ffffff_1x400.png
307
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-bs.js
244
%%CACTIDIR%%/include/js/images/ui-bg_gloss-wave_35_f6a828_500x100.png
308
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-bulgarian_bulgaria.js
245
%%CACTIDIR%%/include/js/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
309
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-ca.js
246
%%CACTIDIR%%/include/js/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
310
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-chinese_china_simplified.js
247
%%CACTIDIR%%/include/js/images/ui-icons_222222_256x240.png
311
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-chinese_hong_kong.js
248
%%CACTIDIR%%/include/js/images/ui-icons_228ef1_256x240.png
312
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-chinese_taiwan.js
249
%%CACTIDIR%%/include/js/images/ui-icons_ef8c08_256x240.png
313
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-czech_czech_republic.js
250
%%CACTIDIR%%/include/js/images/ui-icons_ffd27a_256x240.png
314
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-danish_denmark.js
251
%%CACTIDIR%%/include/js/images/ui-icons_ffffff_256x240.png
315
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-de-CH.js
316
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-en-GB.js
317
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-english_usa.js
318
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-eo.js
319
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-estonian_estonia.js
320
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-eu.js
321
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-fa.js
322
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-finnish_finland.js
323
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-fo.js
324
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-fr-CH.js
325
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-french_france.js
326
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-german_germany.js
327
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-greek_greece.js
328
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-he.js
329
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-hr.js
330
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-hungarian_hungary.js
331
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-hy.js
332
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-icelandic_iceland.js
333
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-indonesian_indonesia.js
334
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-italian_italy.js
335
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-japanese_japan.js
336
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-korean_korea.js
337
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-latvian_latvia.js
338
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-lithuanian_lithuania.js
339
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-malay_malaysia.js
340
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-nl-BE.js
341
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-nl.js
342
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-norwegian_norway.js
343
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-polish_poland.js
344
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-pt-BR.js
345
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-romanian_romania.js
346
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-russian_russia.js
347
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-serbian_serbia.js
348
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-slovak_slovakia.js
349
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-slovenian_slovenia.js
350
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-spanish_spain.js
351
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-sq.js
352
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-sr-SR.js
353
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-swedish_sweden.js
354
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-ta.js
355
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-thai_thailand.js
356
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-turkish_turkey.js
357
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-uk.js
358
%%CACTIDIR%%/include/js/LC_MESSAGES/jquery.ui.datepicker-vietnamese_vietnam.js
359
%%CACTIDIR%%/include/js/c3.js
360
%%CACTIDIR%%/include/js/d3.js
361
%%CACTIDIR%%/include/js/dygraph-combined.js
362
%%CACTIDIR%%/include/js/index.php
363
%%CACTIDIR%%/include/js/jquery.colorpicker.js
252
%%CACTIDIR%%/include/js/jquery.cookie.js
364
%%CACTIDIR%%/include/js/jquery.cookie.js
253
%%CACTIDIR%%/include/js/jquery.dropdown.js
365
%%CACTIDIR%%/include/js/jquery.dropdown.js
366
%%CACTIDIR%%/include/js/jquery.hotkeys.js
254
%%CACTIDIR%%/include/js/jquery.js
367
%%CACTIDIR%%/include/js/jquery.js
255
%%CACTIDIR%%/include/js/jquery.zoom.css
368
%%CACTIDIR%%/include/js/jquery.metadata.js
369
%%CACTIDIR%%/include/js/jquery.multiselect.filter.js
370
%%CACTIDIR%%/include/js/jquery.multiselect.js
371
%%CACTIDIR%%/include/js/jquery.sparkline.js
372
%%CACTIDIR%%/include/js/jquery.storageapi.js
373
%%CACTIDIR%%/include/js/jquery.tablednd.js
374
%%CACTIDIR%%/include/js/jquery.tablesorter.js
375
%%CACTIDIR%%/include/js/jquery.timepicker.js
376
%%CACTIDIR%%/include/js/jquery.ui.touch.punch.js
256
%%CACTIDIR%%/include/js/jquery.zoom.js
377
%%CACTIDIR%%/include/js/jquery.zoom.js
257
%%CACTIDIR%%/include/js/jquery-ui.css
378
%%CACTIDIR%%/include/js/jquery-migrate.js
258
%%CACTIDIR%%/include/js/jquery-ui.js
379
%%CACTIDIR%%/include/js/jquery-ui.js
259
%%CACTIDIR%%/include/js/jstree.js
380
%%CACTIDIR%%/include/js/jstree.js
260
%%CACTIDIR%%/include/js/themes/default-dark/32px.png
381
%%CACTIDIR%%/include/js/pace.js
261
%%CACTIDIR%%/include/js/themes/default-dark/40px.png
262
%%CACTIDIR%%/include/js/themes/default-dark/style.css
263
%%CACTIDIR%%/include/js/themes/default-dark/style.min.css
264
%%CACTIDIR%%/include/js/themes/default-dark/throbber.gif
265
%%CACTIDIR%%/include/js/themes/default/32px.png
266
%%CACTIDIR%%/include/js/themes/default/40px.png
267
%%CACTIDIR%%/include/js/themes/default/style.css
268
%%CACTIDIR%%/include/js/themes/default/style.min.css
269
%%CACTIDIR%%/include/js/themes/default/throbber.gif
270
%%CACTIDIR%%/include/jscalendar/calendar-setup.js
271
%%CACTIDIR%%/include/jscalendar/calendar.js
272
%%CACTIDIR%%/include/jscalendar/lang/calendar-af.js
273
%%CACTIDIR%%/include/jscalendar/lang/calendar-al.js
274
%%CACTIDIR%%/include/jscalendar/lang/calendar-bg.js
275
%%CACTIDIR%%/include/jscalendar/lang/calendar-big5-utf8.js
276
%%CACTIDIR%%/include/jscalendar/lang/calendar-big5.js
277
%%CACTIDIR%%/include/jscalendar/lang/calendar-br.js
278
%%CACTIDIR%%/include/jscalendar/lang/calendar-ca.js
279
%%CACTIDIR%%/include/jscalendar/lang/calendar-cs-utf8.js
280
%%CACTIDIR%%/include/jscalendar/lang/calendar-cs-win.js
281
%%CACTIDIR%%/include/jscalendar/lang/calendar-da.js
282
%%CACTIDIR%%/include/jscalendar/lang/calendar-de.js
283
%%CACTIDIR%%/include/jscalendar/lang/calendar-du.js
284
%%CACTIDIR%%/include/jscalendar/lang/calendar-el.js
285
%%CACTIDIR%%/include/jscalendar/lang/calendar-en.js
286
%%CACTIDIR%%/include/jscalendar/lang/calendar-es.js
287
%%CACTIDIR%%/include/jscalendar/lang/calendar-fi.js
288
%%CACTIDIR%%/include/jscalendar/lang/calendar-fr.js
289
%%CACTIDIR%%/include/jscalendar/lang/calendar-he-utf8.js
290
%%CACTIDIR%%/include/jscalendar/lang/calendar-hr-utf8.js
291
%%CACTIDIR%%/include/jscalendar/lang/calendar-hr.js
292
%%CACTIDIR%%/include/jscalendar/lang/calendar-hu.js
293
%%CACTIDIR%%/include/jscalendar/lang/calendar-it.js
294
%%CACTIDIR%%/include/jscalendar/lang/calendar-jp.js
295
%%CACTIDIR%%/include/jscalendar/lang/calendar-ko-utf8.js
296
%%CACTIDIR%%/include/jscalendar/lang/calendar-ko.js
297
%%CACTIDIR%%/include/jscalendar/lang/calendar-lt-utf8.js
298
%%CACTIDIR%%/include/jscalendar/lang/calendar-lt.js
299
%%CACTIDIR%%/include/jscalendar/lang/calendar-lv.js
300
%%CACTIDIR%%/include/jscalendar/lang/calendar-nl.js
301
%%CACTIDIR%%/include/jscalendar/lang/calendar-no.js
302
%%CACTIDIR%%/include/jscalendar/lang/calendar-pl-utf8.js
303
%%CACTIDIR%%/include/jscalendar/lang/calendar-pl.js
304
%%CACTIDIR%%/include/jscalendar/lang/calendar-pt.js
305
%%CACTIDIR%%/include/jscalendar/lang/calendar-ro.js
306
%%CACTIDIR%%/include/jscalendar/lang/calendar-ru.js
307
%%CACTIDIR%%/include/jscalendar/lang/calendar-ru_win_.js
308
%%CACTIDIR%%/include/jscalendar/lang/calendar-si.js
309
%%CACTIDIR%%/include/jscalendar/lang/calendar-sk.js
310
%%CACTIDIR%%/include/jscalendar/lang/calendar-sp.js
311
%%CACTIDIR%%/include/jscalendar/lang/calendar-sv.js
312
%%CACTIDIR%%/include/jscalendar/lang/calendar-tr.js
313
%%CACTIDIR%%/include/jscalendar/lang/calendar-zh.js
314
%%CACTIDIR%%/include/jscalendar/lang/cn_utf8.js
315
%%CACTIDIR%%/include/layout.js
382
%%CACTIDIR%%/include/layout.js
316
%%CACTIDIR%%/include/main.css
383
%%CACTIDIR%%/include/main.css
384
%%CACTIDIR%%/include/phpgettext/gettext.php
385
%%CACTIDIR%%/include/phpgettext/streams.php
386
%%CACTIDIR%%/include/phpmailer/LICENSE
387
%%CACTIDIR%%/include/phpmailer/PHPMailerAutoload.php
388
%%CACTIDIR%%/include/phpmailer/VERSION
389
%%CACTIDIR%%/include/phpmailer/class.phpmailer.php
390
%%CACTIDIR%%/include/phpmailer/class.phpmaileroauth.php
391
%%CACTIDIR%%/include/phpmailer/class.pop3.php
392
%%CACTIDIR%%/include/phpmailer/class.smtp.php
393
%%CACTIDIR%%/include/phpmailer/index.php
394
%%CACTIDIR%%/include/phpmailer/language/index.php
395
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-am.php
396
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ar.php
397
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-az.php
398
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-be.php
399
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-bg.php
400
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ca.php
401
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ch.php
402
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-cs.php
403
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-da.php
404
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-de.php
405
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-el.php
406
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-eo.php
407
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-es.php
408
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-et.php
409
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fa.php
410
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fi.php
411
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fo.php
412
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-fr.php
413
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-gl.php
414
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-he.php
415
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-hr.php
416
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-hu.php
417
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-id.php
418
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-it.php
419
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ja.php
420
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ka.php
421
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ko.php
422
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-lt.php
423
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-lv.php
424
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ms.php
425
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-nb.php
426
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-nl.php
427
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-pl.php
428
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-pt.php
429
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-pt_br.php
430
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ro.php
431
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-ru.php
432
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sk.php
433
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sl.php
434
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sr.php
435
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-sv.php
436
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-tr.php
437
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-uk.php
438
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-vi.php
439
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-zh.php
440
%%CACTIDIR%%/include/phpmailer/language/phpmailer.lang-zh_cn.php
441
%%CACTIDIR%%/include/phpseclib/Crypt/AES.php
442
%%CACTIDIR%%/include/phpseclib/Crypt/Base.php
443
%%CACTIDIR%%/include/phpseclib/Crypt/Blowfish.php
444
%%CACTIDIR%%/include/phpseclib/Crypt/DES.php
445
%%CACTIDIR%%/include/phpseclib/Crypt/Hash.php
446
%%CACTIDIR%%/include/phpseclib/Crypt/RC2.php
447
%%CACTIDIR%%/include/phpseclib/Crypt/RC4.php
448
%%CACTIDIR%%/include/phpseclib/Crypt/RSA.php
449
%%CACTIDIR%%/include/phpseclib/Crypt/Random.php
450
%%CACTIDIR%%/include/phpseclib/Crypt/Rijndael.php
451
%%CACTIDIR%%/include/phpseclib/Crypt/TripleDES.php
452
%%CACTIDIR%%/include/phpseclib/Crypt/Twofish.php
453
%%CACTIDIR%%/include/phpseclib/File/ANSI.php
454
%%CACTIDIR%%/include/phpseclib/File/ASN1.php
455
%%CACTIDIR%%/include/phpseclib/File/ASN1/Element.php
456
%%CACTIDIR%%/include/phpseclib/File/X509.php
457
%%CACTIDIR%%/include/phpseclib/Math/BigInteger.php
458
%%CACTIDIR%%/include/phpseclib/Net/SCP.php
459
%%CACTIDIR%%/include/phpseclib/Net/SFTP.php
460
%%CACTIDIR%%/include/phpseclib/Net/SFTP/Stream.php
461
%%CACTIDIR%%/include/phpseclib/Net/SSH1.php
462
%%CACTIDIR%%/include/phpseclib/Net/SSH2.php
463
%%CACTIDIR%%/include/phpseclib/System/SSH/Agent.php
464
%%CACTIDIR%%/include/phpseclib/System/SSH/Agent/Identity.php
465
%%CACTIDIR%%/include/phpseclib/System/SSH_Agent.php
466
%%CACTIDIR%%/include/phpseclib/bootstrap.php
467
%%CACTIDIR%%/include/phpseclib/openssl.cnf
468
%%CACTIDIR%%/include/phpsnmp/classSNMP.php
469
%%CACTIDIR%%/include/phptwig/Autoloader.php
470
%%CACTIDIR%%/include/phptwig/BaseNodeVisitor.php
471
%%CACTIDIR%%/include/phptwig/CHANGELOG
472
%%CACTIDIR%%/include/phptwig/Cache/Filesystem.php
473
%%CACTIDIR%%/include/phptwig/Cache/Null.php
474
%%CACTIDIR%%/include/phptwig/CacheInterface.php
475
%%CACTIDIR%%/include/phptwig/Compiler.php
476
%%CACTIDIR%%/include/phptwig/CompilerInterface.php
477
%%CACTIDIR%%/include/phptwig/Environment.php
478
%%CACTIDIR%%/include/phptwig/Error.php
479
%%CACTIDIR%%/include/phptwig/Error/Loader.php
480
%%CACTIDIR%%/include/phptwig/Error/Runtime.php
481
%%CACTIDIR%%/include/phptwig/Error/Syntax.php
482
%%CACTIDIR%%/include/phptwig/ExistsLoaderInterface.php
483
%%CACTIDIR%%/include/phptwig/ExpressionParser.php
484
%%CACTIDIR%%/include/phptwig/Extension.php
485
%%CACTIDIR%%/include/phptwig/Extension/Core.php
486
%%CACTIDIR%%/include/phptwig/Extension/Debug.php
487
%%CACTIDIR%%/include/phptwig/Extension/Escaper.php
488
%%CACTIDIR%%/include/phptwig/Extension/GlobalsInterface.php
489
%%CACTIDIR%%/include/phptwig/Extension/InitRuntimeInterface.php
490
%%CACTIDIR%%/include/phptwig/Extension/Optimizer.php
491
%%CACTIDIR%%/include/phptwig/Extension/Profiler.php
492
%%CACTIDIR%%/include/phptwig/Extension/Sandbox.php
493
%%CACTIDIR%%/include/phptwig/Extension/Staging.php
494
%%CACTIDIR%%/include/phptwig/Extension/StringLoader.php
495
%%CACTIDIR%%/include/phptwig/ExtensionInterface.php
496
%%CACTIDIR%%/include/phptwig/FileExtensionEscapingStrategy.php
497
%%CACTIDIR%%/include/phptwig/Filter.php
498
%%CACTIDIR%%/include/phptwig/Filter/Function.php
499
%%CACTIDIR%%/include/phptwig/Filter/Method.php
500
%%CACTIDIR%%/include/phptwig/Filter/Node.php
501
%%CACTIDIR%%/include/phptwig/FilterCallableInterface.php
502
%%CACTIDIR%%/include/phptwig/FilterInterface.php
503
%%CACTIDIR%%/include/phptwig/Function.php
504
%%CACTIDIR%%/include/phptwig/Function/Function.php
505
%%CACTIDIR%%/include/phptwig/Function/Method.php
506
%%CACTIDIR%%/include/phptwig/Function/Node.php
507
%%CACTIDIR%%/include/phptwig/FunctionCallableInterface.php
508
%%CACTIDIR%%/include/phptwig/FunctionInterface.php
509
%%CACTIDIR%%/include/phptwig/LICENSE
510
%%CACTIDIR%%/include/phptwig/Lexer.php
511
%%CACTIDIR%%/include/phptwig/LexerInterface.php
512
%%CACTIDIR%%/include/phptwig/Loader/Array.php
513
%%CACTIDIR%%/include/phptwig/Loader/Chain.php
514
%%CACTIDIR%%/include/phptwig/Loader/Filesystem.php
515
%%CACTIDIR%%/include/phptwig/Loader/String.php
516
%%CACTIDIR%%/include/phptwig/LoaderInterface.php
517
%%CACTIDIR%%/include/phptwig/Markup.php
518
%%CACTIDIR%%/include/phptwig/Node.php
519
%%CACTIDIR%%/include/phptwig/Node/AutoEscape.php
520
%%CACTIDIR%%/include/phptwig/Node/Block.php
521
%%CACTIDIR%%/include/phptwig/Node/BlockReference.php
522
%%CACTIDIR%%/include/phptwig/Node/Body.php
523
%%CACTIDIR%%/include/phptwig/Node/CheckSecurity.php
524
%%CACTIDIR%%/include/phptwig/Node/Do.php
525
%%CACTIDIR%%/include/phptwig/Node/Embed.php
526
%%CACTIDIR%%/include/phptwig/Node/Expression.php
527
%%CACTIDIR%%/include/phptwig/Node/Expression/Array.php
528
%%CACTIDIR%%/include/phptwig/Node/Expression/AssignName.php
529
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary.php
530
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Add.php
531
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/And.php
532
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/BitwiseAnd.php
533
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/BitwiseOr.php
534
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/BitwiseXor.php
535
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Concat.php
536
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Div.php
537
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/EndsWith.php
538
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Equal.php
539
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/FloorDiv.php
540
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Greater.php
541
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/GreaterEqual.php
542
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/In.php
543
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Less.php
544
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/LessEqual.php
545
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Matches.php
546
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Mod.php
547
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Mul.php
548
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/NotEqual.php
549
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/NotIn.php
550
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Or.php
551
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Power.php
552
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Range.php
553
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/StartsWith.php
554
%%CACTIDIR%%/include/phptwig/Node/Expression/Binary/Sub.php
555
%%CACTIDIR%%/include/phptwig/Node/Expression/BlockReference.php
556
%%CACTIDIR%%/include/phptwig/Node/Expression/Call.php
557
%%CACTIDIR%%/include/phptwig/Node/Expression/Conditional.php
558
%%CACTIDIR%%/include/phptwig/Node/Expression/Constant.php
559
%%CACTIDIR%%/include/phptwig/Node/Expression/ExtensionReference.php
560
%%CACTIDIR%%/include/phptwig/Node/Expression/Filter.php
561
%%CACTIDIR%%/include/phptwig/Node/Expression/Filter/Default.php
562
%%CACTIDIR%%/include/phptwig/Node/Expression/Function.php
563
%%CACTIDIR%%/include/phptwig/Node/Expression/GetAttr.php
564
%%CACTIDIR%%/include/phptwig/Node/Expression/MethodCall.php
565
%%CACTIDIR%%/include/phptwig/Node/Expression/Name.php
566
%%CACTIDIR%%/include/phptwig/Node/Expression/NullCoalesce.php
567
%%CACTIDIR%%/include/phptwig/Node/Expression/Parent.php
568
%%CACTIDIR%%/include/phptwig/Node/Expression/TempName.php
569
%%CACTIDIR%%/include/phptwig/Node/Expression/Test.php
570
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Constant.php
571
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Defined.php
572
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Divisibleby.php
573
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Even.php
574
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Null.php
575
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Odd.php
576
%%CACTIDIR%%/include/phptwig/Node/Expression/Test/Sameas.php
577
%%CACTIDIR%%/include/phptwig/Node/Expression/Unary.php
578
%%CACTIDIR%%/include/phptwig/Node/Expression/Unary/Neg.php
579
%%CACTIDIR%%/include/phptwig/Node/Expression/Unary/Not.php
580
%%CACTIDIR%%/include/phptwig/Node/Expression/Unary/Pos.php
581
%%CACTIDIR%%/include/phptwig/Node/Flush.php
582
%%CACTIDIR%%/include/phptwig/Node/For.php
583
%%CACTIDIR%%/include/phptwig/Node/ForLoop.php
584
%%CACTIDIR%%/include/phptwig/Node/If.php
585
%%CACTIDIR%%/include/phptwig/Node/Import.php
586
%%CACTIDIR%%/include/phptwig/Node/Include.php
587
%%CACTIDIR%%/include/phptwig/Node/Macro.php
588
%%CACTIDIR%%/include/phptwig/Node/Module.php
589
%%CACTIDIR%%/include/phptwig/Node/Print.php
590
%%CACTIDIR%%/include/phptwig/Node/Sandbox.php
591
%%CACTIDIR%%/include/phptwig/Node/SandboxedPrint.php
592
%%CACTIDIR%%/include/phptwig/Node/Set.php
593
%%CACTIDIR%%/include/phptwig/Node/SetTemp.php
594
%%CACTIDIR%%/include/phptwig/Node/Spaceless.php
595
%%CACTIDIR%%/include/phptwig/Node/Text.php
596
%%CACTIDIR%%/include/phptwig/NodeInterface.php
597
%%CACTIDIR%%/include/phptwig/NodeOutputInterface.php
598
%%CACTIDIR%%/include/phptwig/NodeTraverser.php
599
%%CACTIDIR%%/include/phptwig/NodeVisitor/Escaper.php
600
%%CACTIDIR%%/include/phptwig/NodeVisitor/Optimizer.php
601
%%CACTIDIR%%/include/phptwig/NodeVisitor/SafeAnalysis.php
602
%%CACTIDIR%%/include/phptwig/NodeVisitor/Sandbox.php
603
%%CACTIDIR%%/include/phptwig/NodeVisitorInterface.php
604
%%CACTIDIR%%/include/phptwig/Parser.php
605
%%CACTIDIR%%/include/phptwig/ParserInterface.php
606
%%CACTIDIR%%/include/phptwig/Profiler/Dumper/Blackfire.php
607
%%CACTIDIR%%/include/phptwig/Profiler/Dumper/Html.php
608
%%CACTIDIR%%/include/phptwig/Profiler/Dumper/Text.php
609
%%CACTIDIR%%/include/phptwig/Profiler/Node/EnterProfile.php
610
%%CACTIDIR%%/include/phptwig/Profiler/Node/LeaveProfile.php
611
%%CACTIDIR%%/include/phptwig/Profiler/NodeVisitor/Profiler.php
612
%%CACTIDIR%%/include/phptwig/Profiler/Profile.php
613
%%CACTIDIR%%/include/phptwig/README.rst
614
%%CACTIDIR%%/include/phptwig/Sandbox/SecurityError.php
615
%%CACTIDIR%%/include/phptwig/Sandbox/SecurityNotAllowedFilterError.php
616
%%CACTIDIR%%/include/phptwig/Sandbox/SecurityNotAllowedFunctionError.php
617
%%CACTIDIR%%/include/phptwig/Sandbox/SecurityNotAllowedTagError.php
618
%%CACTIDIR%%/include/phptwig/Sandbox/SecurityPolicy.php
619
%%CACTIDIR%%/include/phptwig/Sandbox/SecurityPolicyInterface.php
620
%%CACTIDIR%%/include/phptwig/SimpleFilter.php
621
%%CACTIDIR%%/include/phptwig/SimpleFunction.php
622
%%CACTIDIR%%/include/phptwig/SimpleTest.php
623
%%CACTIDIR%%/include/phptwig/Template.php
624
%%CACTIDIR%%/include/phptwig/TemplateInterface.php
625
%%CACTIDIR%%/include/phptwig/Test.php
626
%%CACTIDIR%%/include/phptwig/Test/Function.php
627
%%CACTIDIR%%/include/phptwig/Test/IntegrationTestCase.php
628
%%CACTIDIR%%/include/phptwig/Test/Method.php
629
%%CACTIDIR%%/include/phptwig/Test/Node.php
630
%%CACTIDIR%%/include/phptwig/Test/NodeTestCase.php
631
%%CACTIDIR%%/include/phptwig/TestCallableInterface.php
632
%%CACTIDIR%%/include/phptwig/TestInterface.php
633
%%CACTIDIR%%/include/phptwig/Token.php
634
%%CACTIDIR%%/include/phptwig/TokenParser.php
635
%%CACTIDIR%%/include/phptwig/TokenParser/AutoEscape.php
636
%%CACTIDIR%%/include/phptwig/TokenParser/Block.php
637
%%CACTIDIR%%/include/phptwig/TokenParser/Do.php
638
%%CACTIDIR%%/include/phptwig/TokenParser/Embed.php
639
%%CACTIDIR%%/include/phptwig/TokenParser/Extends.php
640
%%CACTIDIR%%/include/phptwig/TokenParser/Filter.php
641
%%CACTIDIR%%/include/phptwig/TokenParser/Flush.php
642
%%CACTIDIR%%/include/phptwig/TokenParser/For.php
643
%%CACTIDIR%%/include/phptwig/TokenParser/From.php
644
%%CACTIDIR%%/include/phptwig/TokenParser/If.php
645
%%CACTIDIR%%/include/phptwig/TokenParser/Import.php
646
%%CACTIDIR%%/include/phptwig/TokenParser/Include.php
647
%%CACTIDIR%%/include/phptwig/TokenParser/Macro.php
648
%%CACTIDIR%%/include/phptwig/TokenParser/Sandbox.php
649
%%CACTIDIR%%/include/phptwig/TokenParser/Set.php
650
%%CACTIDIR%%/include/phptwig/TokenParser/Spaceless.php
651
%%CACTIDIR%%/include/phptwig/TokenParser/Use.php
652
%%CACTIDIR%%/include/phptwig/TokenParserBroker.php
653
%%CACTIDIR%%/include/phptwig/TokenParserBrokerInterface.php
654
%%CACTIDIR%%/include/phptwig/TokenParserInterface.php
655
%%CACTIDIR%%/include/phptwig/TokenStream.php
656
%%CACTIDIR%%/include/phptwig/Util/DeprecationCollector.php
657
%%CACTIDIR%%/include/phptwig/Util/TemplateDirIterator.php
658
%%CACTIDIR%%/include/phptwig/doc/advanced.rst
659
%%CACTIDIR%%/include/phptwig/doc/advanced_legacy.rst
660
%%CACTIDIR%%/include/phptwig/doc/api.rst
661
%%CACTIDIR%%/include/phptwig/doc/coding_standards.rst
662
%%CACTIDIR%%/include/phptwig/doc/deprecated.rst
663
%%CACTIDIR%%/include/phptwig/doc/filters/abs.rst
664
%%CACTIDIR%%/include/phptwig/doc/filters/batch.rst
665
%%CACTIDIR%%/include/phptwig/doc/filters/capitalize.rst
666
%%CACTIDIR%%/include/phptwig/doc/filters/convert_encoding.rst
667
%%CACTIDIR%%/include/phptwig/doc/filters/date.rst
668
%%CACTIDIR%%/include/phptwig/doc/filters/date_modify.rst
669
%%CACTIDIR%%/include/phptwig/doc/filters/default.rst
670
%%CACTIDIR%%/include/phptwig/doc/filters/escape.rst
671
%%CACTIDIR%%/include/phptwig/doc/filters/first.rst
672
%%CACTIDIR%%/include/phptwig/doc/filters/format.rst
673
%%CACTIDIR%%/include/phptwig/doc/filters/index.rst
674
%%CACTIDIR%%/include/phptwig/doc/filters/join.rst
675
%%CACTIDIR%%/include/phptwig/doc/filters/json_encode.rst
676
%%CACTIDIR%%/include/phptwig/doc/filters/keys.rst
677
%%CACTIDIR%%/include/phptwig/doc/filters/last.rst
678
%%CACTIDIR%%/include/phptwig/doc/filters/length.rst
679
%%CACTIDIR%%/include/phptwig/doc/filters/lower.rst
680
%%CACTIDIR%%/include/phptwig/doc/filters/merge.rst
681
%%CACTIDIR%%/include/phptwig/doc/filters/nl2br.rst
682
%%CACTIDIR%%/include/phptwig/doc/filters/number_format.rst
683
%%CACTIDIR%%/include/phptwig/doc/filters/raw.rst
684
%%CACTIDIR%%/include/phptwig/doc/filters/replace.rst
685
%%CACTIDIR%%/include/phptwig/doc/filters/reverse.rst
686
%%CACTIDIR%%/include/phptwig/doc/filters/round.rst
687
%%CACTIDIR%%/include/phptwig/doc/filters/slice.rst
688
%%CACTIDIR%%/include/phptwig/doc/filters/sort.rst
689
%%CACTIDIR%%/include/phptwig/doc/filters/split.rst
690
%%CACTIDIR%%/include/phptwig/doc/filters/striptags.rst
691
%%CACTIDIR%%/include/phptwig/doc/filters/title.rst
692
%%CACTIDIR%%/include/phptwig/doc/filters/trim.rst
693
%%CACTIDIR%%/include/phptwig/doc/filters/upper.rst
694
%%CACTIDIR%%/include/phptwig/doc/filters/url_encode.rst
695
%%CACTIDIR%%/include/phptwig/doc/functions/attribute.rst
696
%%CACTIDIR%%/include/phptwig/doc/functions/block.rst
697
%%CACTIDIR%%/include/phptwig/doc/functions/constant.rst
698
%%CACTIDIR%%/include/phptwig/doc/functions/cycle.rst
699
%%CACTIDIR%%/include/phptwig/doc/functions/date.rst
700
%%CACTIDIR%%/include/phptwig/doc/functions/dump.rst
701
%%CACTIDIR%%/include/phptwig/doc/functions/include.rst
702
%%CACTIDIR%%/include/phptwig/doc/functions/index.rst
703
%%CACTIDIR%%/include/phptwig/doc/functions/max.rst
704
%%CACTIDIR%%/include/phptwig/doc/functions/min.rst
705
%%CACTIDIR%%/include/phptwig/doc/functions/parent.rst
706
%%CACTIDIR%%/include/phptwig/doc/functions/random.rst
707
%%CACTIDIR%%/include/phptwig/doc/functions/range.rst
708
%%CACTIDIR%%/include/phptwig/doc/functions/source.rst
709
%%CACTIDIR%%/include/phptwig/doc/functions/template_from_string.rst
710
%%CACTIDIR%%/include/phptwig/doc/index.rst
711
%%CACTIDIR%%/include/phptwig/doc/installation.rst
712
%%CACTIDIR%%/include/phptwig/doc/internals.rst
713
%%CACTIDIR%%/include/phptwig/doc/intro.rst
714
%%CACTIDIR%%/include/phptwig/doc/recipes.rst
715
%%CACTIDIR%%/include/phptwig/doc/tags/autoescape.rst
716
%%CACTIDIR%%/include/phptwig/doc/tags/block.rst
717
%%CACTIDIR%%/include/phptwig/doc/tags/do.rst
718
%%CACTIDIR%%/include/phptwig/doc/tags/embed.rst
719
%%CACTIDIR%%/include/phptwig/doc/tags/extends.rst
720
%%CACTIDIR%%/include/phptwig/doc/tags/filter.rst
721
%%CACTIDIR%%/include/phptwig/doc/tags/flush.rst
722
%%CACTIDIR%%/include/phptwig/doc/tags/for.rst
723
%%CACTIDIR%%/include/phptwig/doc/tags/from.rst
724
%%CACTIDIR%%/include/phptwig/doc/tags/if.rst
725
%%CACTIDIR%%/include/phptwig/doc/tags/import.rst
726
%%CACTIDIR%%/include/phptwig/doc/tags/include.rst
727
%%CACTIDIR%%/include/phptwig/doc/tags/index.rst
728
%%CACTIDIR%%/include/phptwig/doc/tags/macro.rst
729
%%CACTIDIR%%/include/phptwig/doc/tags/sandbox.rst
730
%%CACTIDIR%%/include/phptwig/doc/tags/set.rst
731
%%CACTIDIR%%/include/phptwig/doc/tags/spaceless.rst
732
%%CACTIDIR%%/include/phptwig/doc/tags/use.rst
733
%%CACTIDIR%%/include/phptwig/doc/tags/verbatim.rst
734
%%CACTIDIR%%/include/phptwig/doc/templates.rst
735
%%CACTIDIR%%/include/phptwig/doc/tests/constant.rst
736
%%CACTIDIR%%/include/phptwig/doc/tests/defined.rst
737
%%CACTIDIR%%/include/phptwig/doc/tests/divisibleby.rst
738
%%CACTIDIR%%/include/phptwig/doc/tests/empty.rst
739
%%CACTIDIR%%/include/phptwig/doc/tests/even.rst
740
%%CACTIDIR%%/include/phptwig/doc/tests/index.rst
741
%%CACTIDIR%%/include/phptwig/doc/tests/iterable.rst
742
%%CACTIDIR%%/include/phptwig/doc/tests/null.rst
743
%%CACTIDIR%%/include/phptwig/doc/tests/odd.rst
744
%%CACTIDIR%%/include/phptwig/doc/tests/sameas.rst
317
%%CACTIDIR%%/include/plugins.php
745
%%CACTIDIR%%/include/plugins.php
746
%%CACTIDIR%%/include/realtime.js
747
%%CACTIDIR%%/include/session.php
748
%%CACTIDIR%%/include/themes/classic/c3.css
749
%%CACTIDIR%%/include/themes/classic/default/32px.png
750
%%CACTIDIR%%/include/themes/classic/default/40px.png
751
%%CACTIDIR%%/include/themes/classic/default/index.php
752
%%CACTIDIR%%/include/themes/classic/default/style.css
753
%%CACTIDIR%%/include/themes/classic/default/style.min.css
754
%%CACTIDIR%%/include/themes/classic/default/throbber.gif
755
%%CACTIDIR%%/include/themes/classic/images/bar-alpha.png
756
%%CACTIDIR%%/include/themes/classic/images/bar-opacity.png
757
%%CACTIDIR%%/include/themes/classic/images/bar-pointer.png
758
%%CACTIDIR%%/include/themes/classic/images/bar.png
759
%%CACTIDIR%%/include/themes/classic/images/%%CACTIUSER%%_logo.svg
760
%%CACTIDIR%%/include/themes/classic/images/index.php
761
%%CACTIDIR%%/include/themes/classic/images/map-opacity.png
762
%%CACTIDIR%%/include/themes/classic/images/map-pointer.png
763
%%CACTIDIR%%/include/themes/classic/images/map.png
764
%%CACTIDIR%%/include/themes/classic/images/preview-opacity.png
765
%%CACTIDIR%%/include/themes/classic/images/tab_list.gif
766
%%CACTIDIR%%/include/themes/classic/images/tab_preview.gif
767
%%CACTIDIR%%/include/themes/classic/images/tab_tree.gif
768
%%CACTIDIR%%/include/themes/classic/images/ui-bg_diagonals-thick_18_b81900_40x40.png
769
%%CACTIDIR%%/include/themes/classic/images/ui-bg_diagonals-thick_20_666666_40x40.png
770
%%CACTIDIR%%/include/themes/classic/images/ui-bg_flat_10_000000_40x100.png
771
%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_100_f6f6f6_1x400.png
772
%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_100_fdf5ce_1x400.png
773
%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_55_fcf0ba_1x400.png
774
%%CACTIDIR%%/include/themes/classic/images/ui-bg_glass_65_ffffff_1x400.png
775
%%CACTIDIR%%/include/themes/classic/images/ui-bg_gloss-wave_100_ece8da_500x100.png
776
%%CACTIDIR%%/include/themes/classic/images/ui-bg_gloss-wave_35_f6a828_500x100.png
777
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png
778
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_100_fafaf4_1x100.png
779
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_15_459e00_1x100.png
780
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-hard_95_cccccc_1x100.png
781
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
782
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_25_67b021_1x100.png
783
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
784
%%CACTIDIR%%/include/themes/classic/images/ui-bg_highlight-soft_95_ffedad_1x100.png
785
%%CACTIDIR%%/include/themes/classic/images/ui-bg_inset-soft_15_2b2922_1x100.png
786
%%CACTIDIR%%/include/themes/classic/images/ui-colorpicker.png
787
%%CACTIDIR%%/include/themes/classic/images/ui-icons_222222_256x240.png
788
%%CACTIDIR%%/include/themes/classic/images/ui-icons_228ef1_256x240.png
789
%%CACTIDIR%%/include/themes/classic/images/ui-icons_808080_256x240.png
790
%%CACTIDIR%%/include/themes/classic/images/ui-icons_847e71_256x240.png
791
%%CACTIDIR%%/include/themes/classic/images/ui-icons_8DC262_256x240.png
792
%%CACTIDIR%%/include/themes/classic/images/ui-icons_cd0a0a_256x240.png
793
%%CACTIDIR%%/include/themes/classic/images/ui-icons_eeeeee_256x240.png
794
%%CACTIDIR%%/include/themes/classic/images/ui-icons_ef8c08_256x240.png
795
%%CACTIDIR%%/include/themes/classic/images/ui-icons_ffd27a_256x240.png
796
%%CACTIDIR%%/include/themes/classic/images/ui-icons_ffffff_256x240.png
797
%%CACTIDIR%%/include/themes/classic/index.php
798
%%CACTIDIR%%/include/themes/classic/jquery-ui.css
799
%%CACTIDIR%%/include/themes/classic/jquery.colorpicker.css
800
%%CACTIDIR%%/include/themes/classic/jquery.multiselect.css
801
%%CACTIDIR%%/include/themes/classic/jquery.timepicker.css
802
%%CACTIDIR%%/include/themes/classic/jquery.zoom.css
803
%%CACTIDIR%%/include/themes/classic/main.css
804
%%CACTIDIR%%/include/themes/classic/main.js
805
%%CACTIDIR%%/include/themes/classic/pace.css
806
%%CACTIDIR%%/include/themes/classic/rrdtheme.php
807
%%CACTIDIR%%/include/themes/dark/c3.css
808
%%CACTIDIR%%/include/themes/dark/default/32px.png
809
%%CACTIDIR%%/include/themes/dark/default/40px.png
810
%%CACTIDIR%%/include/themes/dark/default/index.php
811
%%CACTIDIR%%/include/themes/dark/default/style.css
812
%%CACTIDIR%%/include/themes/dark/default/throbber.gif
813
%%CACTIDIR%%/include/themes/dark/images/bar-alpha.png
814
%%CACTIDIR%%/include/themes/dark/images/bar-opacity.png
815
%%CACTIDIR%%/include/themes/dark/images/bar-pointer.png
816
%%CACTIDIR%%/include/themes/dark/images/bar.png
817
%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_backdrop.gif
818
%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_backdrop2.gif
819
%%CACTIDIR%%/include/themes/dark/images/%%CACTIUSER%%_logo.svg
820
%%CACTIDIR%%/include/themes/dark/images/index.php
821
%%CACTIDIR%%/include/themes/dark/images/map-opacity.png
822
%%CACTIDIR%%/include/themes/dark/images/map-pointer.png
823
%%CACTIDIR%%/include/themes/dark/images/map.png
824
%%CACTIDIR%%/include/themes/dark/images/preview-opacity.png
825
%%CACTIDIR%%/include/themes/dark/images/tab_list.gif
826
%%CACTIDIR%%/include/themes/dark/images/tab_preview.gif
827
%%CACTIDIR%%/include/themes/dark/images/tab_tree.gif
828
%%CACTIDIR%%/include/themes/dark/images/ui-bg_flat_30_cccccc_40x100.png
829
%%CACTIDIR%%/include/themes/dark/images/ui-bg_flat_50_5c5c5c_40x100.png
830
%%CACTIDIR%%/include/themes/dark/images/ui-bg_glass_40_ffc73d_1x400.png
831
%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-hard_20_31442b_1x100.png
832
%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_33_155413_1x100.png
833
%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_35_222222_1x100.png
834
%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_44_444444_1x100.png
835
%%CACTIDIR%%/include/themes/dark/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
836
%%CACTIDIR%%/include/themes/dark/images/ui-bg_loop_25_000000_21x21.png
837
%%CACTIDIR%%/include/themes/dark/images/ui-colorpicker.png
838
%%CACTIDIR%%/include/themes/dark/images/ui-icons_222222_256x240.png
839
%%CACTIDIR%%/include/themes/dark/images/ui-icons_4b8e0b_256x240.png
840
%%CACTIDIR%%/include/themes/dark/images/ui-icons_a83300_256x240.png
841
%%CACTIDIR%%/include/themes/dark/images/ui-icons_cccccc_256x240.png
842
%%CACTIDIR%%/include/themes/dark/images/ui-icons_ffffff_256x240.png
843
%%CACTIDIR%%/include/themes/dark/index.php
844
%%CACTIDIR%%/include/themes/dark/jquery-ui.css
845
%%CACTIDIR%%/include/themes/dark/jquery.colorpicker.css
846
%%CACTIDIR%%/include/themes/dark/jquery.multiselect.css
847
%%CACTIDIR%%/include/themes/dark/jquery.timepicker.css
848
%%CACTIDIR%%/include/themes/dark/jquery.zoom.css
849
%%CACTIDIR%%/include/themes/dark/main.css
850
%%CACTIDIR%%/include/themes/dark/main.js
851
%%CACTIDIR%%/include/themes/dark/pace.css
852
%%CACTIDIR%%/include/themes/dark/rrdtheme.php
853
%%CACTIDIR%%/include/themes/index.php
854
%%CACTIDIR%%/include/themes/modern/c3.css
855
%%CACTIDIR%%/include/themes/modern/default/32px.png
856
%%CACTIDIR%%/include/themes/modern/default/40px.png
857
%%CACTIDIR%%/include/themes/modern/default/index.php
858
%%CACTIDIR%%/include/themes/modern/default/style.css
859
%%CACTIDIR%%/include/themes/modern/default/style.min.css
860
%%CACTIDIR%%/include/themes/modern/default/throbber.gif
861
%%CACTIDIR%%/include/themes/modern/images/bar-alpha.png
862
%%CACTIDIR%%/include/themes/modern/images/bar-opacity.png
863
%%CACTIDIR%%/include/themes/modern/images/bar-pointer.png
864
%%CACTIDIR%%/include/themes/modern/images/bar.png
865
%%CACTIDIR%%/include/themes/modern/images/%%CACTIUSER%%_logo.svg
866
%%CACTIDIR%%/include/themes/modern/images/index.php
867
%%CACTIDIR%%/include/themes/modern/images/map-opacity.png
868
%%CACTIDIR%%/include/themes/modern/images/map-pointer.png
869
%%CACTIDIR%%/include/themes/modern/images/map.png
870
%%CACTIDIR%%/include/themes/modern/images/preview-opacity.png
871
%%CACTIDIR%%/include/themes/modern/images/tab_list.gif
872
%%CACTIDIR%%/include/themes/modern/images/tab_preview.gif
873
%%CACTIDIR%%/include/themes/modern/images/tab_tree.gif
874
%%CACTIDIR%%/include/themes/modern/images/ui-bg_flat_0_aaaaaa_40x100.png
875
%%CACTIDIR%%/include/themes/modern/images/ui-bg_flat_75_ffffff_40x100.png
876
%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png
877
%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png
878
%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png
879
%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png
880
%%CACTIDIR%%/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png
881
%%CACTIDIR%%/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png
882
%%CACTIDIR%%/include/themes/modern/images/ui-colorpicker.png
883
%%CACTIDIR%%/include/themes/modern/images/ui-icons_222222_256x240.png
884
%%CACTIDIR%%/include/themes/modern/images/ui-icons_2e83ff_256x240.png
885
%%CACTIDIR%%/include/themes/modern/images/ui-icons_454545_256x240.png
886
%%CACTIDIR%%/include/themes/modern/images/ui-icons_888888_256x240.png
887
%%CACTIDIR%%/include/themes/modern/images/ui-icons_cd0a0a_256x240.png
888
%%CACTIDIR%%/include/themes/modern/index.php
889
%%CACTIDIR%%/include/themes/modern/jquery-ui.css
890
%%CACTIDIR%%/include/themes/modern/jquery.colorpicker.css
891
%%CACTIDIR%%/include/themes/modern/jquery.multiselect.css
892
%%CACTIDIR%%/include/themes/modern/jquery.timepicker.css
893
%%CACTIDIR%%/include/themes/modern/jquery.zoom.css
894
%%CACTIDIR%%/include/themes/modern/main.css
895
%%CACTIDIR%%/include/themes/modern/main.js
896
%%CACTIDIR%%/include/themes/modern/pace.css
897
%%CACTIDIR%%/include/themes/modern/rrdtheme.php
898
%%CACTIDIR%%/include/themes/paw/c3.css
899
%%CACTIDIR%%/include/themes/paw/default/32px.png
900
%%CACTIDIR%%/include/themes/paw/default/40px.png
901
%%CACTIDIR%%/include/themes/paw/default/index.php
902
%%CACTIDIR%%/include/themes/paw/default/style.css
903
%%CACTIDIR%%/include/themes/paw/default/style.min.css
904
%%CACTIDIR%%/include/themes/paw/default/throbber.gif
905
%%CACTIDIR%%/include/themes/paw/images/bar-alpha.png
906
%%CACTIDIR%%/include/themes/paw/images/bar-opacity.png
907
%%CACTIDIR%%/include/themes/paw/images/bar-pointer.png
908
%%CACTIDIR%%/include/themes/paw/images/bar.png
909
%%CACTIDIR%%/include/themes/paw/images/%%CACTIUSER%%_logo.svg
910
%%CACTIDIR%%/include/themes/paw/images/index.php
911
%%CACTIDIR%%/include/themes/paw/images/map-opacity.png
912
%%CACTIDIR%%/include/themes/paw/images/map-pointer.png
913
%%CACTIDIR%%/include/themes/paw/images/map.png
914
%%CACTIDIR%%/include/themes/paw/images/preview-opacity.png
915
%%CACTIDIR%%/include/themes/paw/images/tab_list.gif
916
%%CACTIDIR%%/include/themes/paw/images/tab_preview.gif
917
%%CACTIDIR%%/include/themes/paw/images/tab_tree.gif
918
%%CACTIDIR%%/include/themes/paw/images/ui-bg_flat_0_aaaaaa_40x100.png
919
%%CACTIDIR%%/include/themes/paw/images/ui-bg_flat_75_ffffff_40x100.png
920
%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_55_fbf9ee_1x400.png
921
%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_65_ffffff_1x400.png
922
%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_75_dadada_1x400.png
923
%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_75_e6e6e6_1x400.png
924
%%CACTIDIR%%/include/themes/paw/images/ui-bg_glass_95_fef1ec_1x400.png
925
%%CACTIDIR%%/include/themes/paw/images/ui-bg_highlight-soft_75_cccccc_1x100.png
926
%%CACTIDIR%%/include/themes/paw/images/ui-colorpicker.png
927
%%CACTIDIR%%/include/themes/paw/images/ui-icons_222222_256x240.png
928
%%CACTIDIR%%/include/themes/paw/images/ui-icons_2e83ff_256x240.png
929
%%CACTIDIR%%/include/themes/paw/images/ui-icons_454545_256x240.png
930
%%CACTIDIR%%/include/themes/paw/images/ui-icons_888888_256x240.png
931
%%CACTIDIR%%/include/themes/paw/images/ui-icons_cd0a0a_256x240.png
932
%%CACTIDIR%%/include/themes/paw/index.php
933
%%CACTIDIR%%/include/themes/paw/jquery-ui.css
934
%%CACTIDIR%%/include/themes/paw/jquery-ui.org.css
935
%%CACTIDIR%%/include/themes/paw/jquery.colorpicker.css
936
%%CACTIDIR%%/include/themes/paw/jquery.multiselect.css
937
%%CACTIDIR%%/include/themes/paw/jquery.timepicker.css
938
%%CACTIDIR%%/include/themes/paw/jquery.zoom.css
939
%%CACTIDIR%%/include/themes/paw/main.css
940
%%CACTIDIR%%/include/themes/paw/main.js
941
%%CACTIDIR%%/include/themes/paw/pace.css
942
%%CACTIDIR%%/include/themes/paw/rrdtheme.php
943
%%CACTIDIR%%/include/top_general_header.php
318
%%CACTIDIR%%/include/top_graph_header.php
944
%%CACTIDIR%%/include/top_graph_header.php
319
%%CACTIDIR%%/include/top_header.php
945
%%CACTIDIR%%/include/top_header.php
320
%%CACTIDIR%%/index.php
946
%%CACTIDIR%%/index.php
Lines 349-445 Link Here
349
%%CACTIDIR%%/install/0_8_8e_to_0_8_8f.php
975
%%CACTIDIR%%/install/0_8_8e_to_0_8_8f.php
350
%%CACTIDIR%%/install/0_8_8f_to_0_8_8g.php
976
%%CACTIDIR%%/install/0_8_8f_to_0_8_8g.php
351
%%CACTIDIR%%/install/0_8_8g_to_0_8_8h.php
977
%%CACTIDIR%%/install/0_8_8g_to_0_8_8h.php
978
%%CACTIDIR%%/install/0_8_8h_to_1_0_0.php
352
%%CACTIDIR%%/install/0_8_to_0_8_1.php
979
%%CACTIDIR%%/install/0_8_to_0_8_1.php
980
%%CACTIDIR%%/install/colors.csv
981
%%CACTIDIR%%/install/functions.php
982
%%CACTIDIR%%/install/import_colors.php
353
%%CACTIDIR%%/install/index.php
983
%%CACTIDIR%%/install/index.php
354
%%CACTIDIR%%/install/install_finish.gif
984
%%CACTIDIR%%/install/templates/Cisco_Router.xml.gz
355
%%CACTIDIR%%/install/install_next.gif
985
%%CACTIDIR%%/install/templates/Generic_SNMP_Device.xml.gz
356
%%CACTIDIR%%/lib/adodb/adodb-csvlib.inc.php
986
%%CACTIDIR%%/install/templates/Local_Linux_Machine.xml.gz
357
%%CACTIDIR%%/lib/adodb/adodb-datadict.inc.php
987
%%CACTIDIR%%/install/templates/NetSNMP_Device.xml.gz
358
%%CACTIDIR%%/lib/adodb/adodb-error.inc.php
988
%%CACTIDIR%%/install/templates/Windows_Device.xml.gz
359
%%CACTIDIR%%/lib/adodb/adodb-errorhandler.inc.php
989
%%CACTIDIR%%/lib/aggregate.php
360
%%CACTIDIR%%/lib/adodb/adodb-errorpear.inc.php
990
%%CACTIDIR%%/lib/api_aggregate.php
361
%%CACTIDIR%%/lib/adodb/adodb-exceptions.inc.php
991
%%CACTIDIR%%/lib/api_automation.php
362
%%CACTIDIR%%/lib/adodb/adodb-iterator.inc.php
363
%%CACTIDIR%%/lib/adodb/adodb-lib.inc.php
364
%%CACTIDIR%%/lib/adodb/adodb-pear.inc.php
365
%%CACTIDIR%%/lib/adodb/adodb-perf.inc.php
366
%%CACTIDIR%%/lib/adodb/adodb-php4.inc.php
367
%%CACTIDIR%%/lib/adodb/adodb-time.inc.php
368
%%CACTIDIR%%/lib/adodb/adodb-xmlschema.inc.php
369
%%CACTIDIR%%/lib/adodb/adodb.inc.php
370
%%CACTIDIR%%/lib/adodb/datadict/datadict-access.inc.php
371
%%CACTIDIR%%/lib/adodb/datadict/datadict-db2.inc.php
372
%%CACTIDIR%%/lib/adodb/datadict/datadict-firebird.inc.php
373
%%CACTIDIR%%/lib/adodb/datadict/datadict-generic.inc.php
374
%%CACTIDIR%%/lib/adodb/datadict/datadict-ibase.inc.php
375
%%CACTIDIR%%/lib/adodb/datadict/datadict-informix.inc.php
376
%%CACTIDIR%%/lib/adodb/datadict/datadict-mssql.inc.php
377
%%CACTIDIR%%/lib/adodb/datadict/datadict-mysql.inc.php
378
%%CACTIDIR%%/lib/adodb/datadict/datadict-oci8.inc.php
379
%%CACTIDIR%%/lib/adodb/datadict/datadict-postgres.inc.php
380
%%CACTIDIR%%/lib/adodb/datadict/datadict-sapdb.inc.php
381
%%CACTIDIR%%/lib/adodb/datadict/datadict-sybase.inc.php
382
%%CACTIDIR%%/lib/adodb/drivers/adodb-access.inc.php
383
%%CACTIDIR%%/lib/adodb/drivers/adodb-ado.inc.php
384
%%CACTIDIR%%/lib/adodb/drivers/adodb-ado5.inc.php
385
%%CACTIDIR%%/lib/adodb/drivers/adodb-ado_access.inc.php
386
%%CACTIDIR%%/lib/adodb/drivers/adodb-ado_mssql.inc.php
387
%%CACTIDIR%%/lib/adodb/drivers/adodb-borland_ibase.inc.php
388
%%CACTIDIR%%/lib/adodb/drivers/adodb-csv.inc.php
389
%%CACTIDIR%%/lib/adodb/drivers/adodb-db2.inc.php
390
%%CACTIDIR%%/lib/adodb/drivers/adodb-fbsql.inc.php
391
%%CACTIDIR%%/lib/adodb/drivers/adodb-firebird.inc.php
392
%%CACTIDIR%%/lib/adodb/drivers/adodb-ibase.inc.php
393
%%CACTIDIR%%/lib/adodb/drivers/adodb-informix.inc.php
394
%%CACTIDIR%%/lib/adodb/drivers/adodb-informix72.inc.php
395
%%CACTIDIR%%/lib/adodb/drivers/adodb-ldap.inc.php
396
%%CACTIDIR%%/lib/adodb/drivers/adodb-mssql.inc.php
397
%%CACTIDIR%%/lib/adodb/drivers/adodb-mssqlpo.inc.php
398
%%CACTIDIR%%/lib/adodb/drivers/adodb-mysql.inc.php
399
%%CACTIDIR%%/lib/adodb/drivers/adodb-mysqli.inc.php
400
%%CACTIDIR%%/lib/adodb/drivers/adodb-mysqlt.inc.php
401
%%CACTIDIR%%/lib/adodb/drivers/adodb-netezza.inc.php
402
%%CACTIDIR%%/lib/adodb/drivers/adodb-oci8.inc.php
403
%%CACTIDIR%%/lib/adodb/drivers/adodb-oci805.inc.php
404
%%CACTIDIR%%/lib/adodb/drivers/adodb-oci8po.inc.php
405
%%CACTIDIR%%/lib/adodb/drivers/adodb-odbc.inc.php
406
%%CACTIDIR%%/lib/adodb/drivers/adodb-odbc_mssql.inc.php
407
%%CACTIDIR%%/lib/adodb/drivers/adodb-odbc_oracle.inc.php
408
%%CACTIDIR%%/lib/adodb/drivers/adodb-odbtp.inc.php
409
%%CACTIDIR%%/lib/adodb/drivers/adodb-odbtp_unicode.inc.php
410
%%CACTIDIR%%/lib/adodb/drivers/adodb-oracle.inc.php
411
%%CACTIDIR%%/lib/adodb/drivers/adodb-pdo.inc.php
412
%%CACTIDIR%%/lib/adodb/drivers/adodb-postgres.inc.php
413
%%CACTIDIR%%/lib/adodb/drivers/adodb-postgres64.inc.php
414
%%CACTIDIR%%/lib/adodb/drivers/adodb-postgres7.inc.php
415
%%CACTIDIR%%/lib/adodb/drivers/adodb-proxy.inc.php
416
%%CACTIDIR%%/lib/adodb/drivers/adodb-sapdb.inc.php
417
%%CACTIDIR%%/lib/adodb/drivers/adodb-sqlanywhere.inc.php
418
%%CACTIDIR%%/lib/adodb/drivers/adodb-sqlite.inc.php
419
%%CACTIDIR%%/lib/adodb/drivers/adodb-sqlitepo.inc.php
420
%%CACTIDIR%%/lib/adodb/drivers/adodb-sybase.inc.php
421
%%CACTIDIR%%/lib/adodb/drivers/adodb-vfp.inc.php
422
%%CACTIDIR%%/lib/adodb/lang/adodb-ar.inc.php
423
%%CACTIDIR%%/lib/adodb/lang/adodb-bg.inc.php
424
%%CACTIDIR%%/lib/adodb/lang/adodb-bgutf8.inc.php
425
%%CACTIDIR%%/lib/adodb/lang/adodb-ca.inc.php
426
%%CACTIDIR%%/lib/adodb/lang/adodb-cn.inc.php
427
%%CACTIDIR%%/lib/adodb/lang/adodb-cz.inc.php
428
%%CACTIDIR%%/lib/adodb/lang/adodb-de.inc.php
429
%%CACTIDIR%%/lib/adodb/lang/adodb-en.inc.php
430
%%CACTIDIR%%/lib/adodb/lang/adodb-es.inc.php
431
%%CACTIDIR%%/lib/adodb/lang/adodb-fr.inc.php
432
%%CACTIDIR%%/lib/adodb/lang/adodb-hu.inc.php
433
%%CACTIDIR%%/lib/adodb/lang/adodb-it.inc.php
434
%%CACTIDIR%%/lib/adodb/lang/adodb-nl.inc.php
435
%%CACTIDIR%%/lib/adodb/lang/adodb-pl.inc.php
436
%%CACTIDIR%%/lib/adodb/lang/adodb-pt-br.inc.php
437
%%CACTIDIR%%/lib/adodb/lang/adodb-ro.inc.php
438
%%CACTIDIR%%/lib/adodb/lang/adodb-ru1251.inc.php
439
%%CACTIDIR%%/lib/adodb/lang/adodb-sv.inc.php
440
%%CACTIDIR%%/lib/adodb/license.txt
441
%%CACTIDIR%%/lib/adodb/toexport.inc.php
442
%%CACTIDIR%%/lib/adodb/tohtml.inc.php
443
%%CACTIDIR%%/lib/api_automation_tools.php
992
%%CACTIDIR%%/lib/api_automation_tools.php
444
%%CACTIDIR%%/lib/api_data_source.php
993
%%CACTIDIR%%/lib/api_data_source.php
445
%%CACTIDIR%%/lib/api_device.php
994
%%CACTIDIR%%/lib/api_device.php
Lines 447-503 Link Here
447
%%CACTIDIR%%/lib/api_poller.php
996
%%CACTIDIR%%/lib/api_poller.php
448
%%CACTIDIR%%/lib/api_tree.php
997
%%CACTIDIR%%/lib/api_tree.php
449
%%CACTIDIR%%/lib/auth.php
998
%%CACTIDIR%%/lib/auth.php
999
%%CACTIDIR%%/lib/boost.php
450
%%CACTIDIR%%/lib/cdef.php
1000
%%CACTIDIR%%/lib/cdef.php
1001
%%CACTIDIR%%/lib/clog_webapi.php
451
%%CACTIDIR%%/lib/data_query.php
1002
%%CACTIDIR%%/lib/data_query.php
452
%%CACTIDIR%%/lib/database.php
1003
%%CACTIDIR%%/lib/database.php
1004
%%CACTIDIR%%/lib/dsstats.php
453
%%CACTIDIR%%/lib/export.php
1005
%%CACTIDIR%%/lib/export.php
454
%%CACTIDIR%%/lib/functions.php
1006
%%CACTIDIR%%/lib/functions.php
455
%%CACTIDIR%%/lib/graph_export.php
456
%%CACTIDIR%%/lib/graph_variables.php
1007
%%CACTIDIR%%/lib/graph_variables.php
457
%%CACTIDIR%%/lib/html.php
1008
%%CACTIDIR%%/lib/html.php
458
%%CACTIDIR%%/lib/html_form.php
1009
%%CACTIDIR%%/lib/html_form.php
459
%%CACTIDIR%%/lib/html_form_template.php
1010
%%CACTIDIR%%/lib/html_form_template.php
1011
%%CACTIDIR%%/lib/html_graph.php
1012
%%CACTIDIR%%/lib/html_reports.php
460
%%CACTIDIR%%/lib/html_tree.php
1013
%%CACTIDIR%%/lib/html_tree.php
461
%%CACTIDIR%%/lib/html_utility.php
1014
%%CACTIDIR%%/lib/html_utility.php
462
%%CACTIDIR%%/lib/html_validate.php
1015
%%CACTIDIR%%/lib/html_validate.php
463
%%CACTIDIR%%/lib/import.php
1016
%%CACTIDIR%%/lib/import.php
1017
%%CACTIDIR%%/lib/index.php
464
%%CACTIDIR%%/lib/ldap.php
1018
%%CACTIDIR%%/lib/ldap.php
1019
%%CACTIDIR%%/lib/mib_cache.php
1020
%%CACTIDIR%%/lib/mib_parser.php
465
%%CACTIDIR%%/lib/ping.php
1021
%%CACTIDIR%%/lib/ping.php
466
%%CACTIDIR%%/lib/plugins.php
1022
%%CACTIDIR%%/lib/plugins.php
467
%%CACTIDIR%%/lib/poller.php
1023
%%CACTIDIR%%/lib/poller.php
1024
%%CACTIDIR%%/lib/reports.php
468
%%CACTIDIR%%/lib/rrd.php
1025
%%CACTIDIR%%/lib/rrd.php
469
%%CACTIDIR%%/lib/snmp.php
1026
%%CACTIDIR%%/lib/snmp.php
1027
%%CACTIDIR%%/lib/snmpagent.php
470
%%CACTIDIR%%/lib/sort.php
1028
%%CACTIDIR%%/lib/sort.php
471
%%CACTIDIR%%/lib/template.php
1029
%%CACTIDIR%%/lib/template.php
472
%%CACTIDIR%%/lib/time.php
1030
%%CACTIDIR%%/lib/time.php
473
%%CACTIDIR%%/lib/timespan_settings.php
1031
%%CACTIDIR%%/lib/timespan_settings.php
474
%%CACTIDIR%%/lib/tree.php
475
%%CACTIDIR%%/lib/utility.php
1032
%%CACTIDIR%%/lib/utility.php
476
%%CACTIDIR%%/lib/variables.php
1033
%%CACTIDIR%%/lib/variables.php
1034
%%CACTIDIR%%/lib/vdef.php
477
%%CACTIDIR%%/lib/xml.php
1035
%%CACTIDIR%%/lib/xml.php
1036
%%CACTIDIR%%/link.php
1037
%%CACTIDIR%%/links.php
1038
%%CACTIDIR%%/locales/LC_MESSAGES/bulgarian_bulgaria.mo
1039
%%CACTIDIR%%/locales/LC_MESSAGES/chinese_china_simplified.mo
1040
%%CACTIDIR%%/locales/LC_MESSAGES/french_france.mo
1041
%%CACTIDIR%%/locales/LC_MESSAGES/german_germany.mo
1042
%%CACTIDIR%%/locales/LC_MESSAGES/japanese_japan.mo
1043
%%CACTIDIR%%/locales/LC_MESSAGES/russian_russia.mo
1044
%%CACTIDIR%%/locales/LC_MESSAGES/spanish_spain.mo
1045
%%CACTIDIR%%/locales/LC_MESSAGES/swedish_sweden.mo
1046
%%CACTIDIR%%/locales/po/%%CACTIUSER%%.pot
1047
%%CACTIDIR%%/locales/update-pot.sh
478
%%CACTIDIR%%/logout.php
1048
%%CACTIDIR%%/logout.php
1049
%%CACTIDIR%%/managers.php
1050
%%CACTIDIR%%/mibs/CACTI-BOOST-MIB
1051
%%CACTIDIR%%/mibs/CACTI-MIB
1052
%%CACTIDIR%%/mibs/CACTI-SNMPAGENT-MIB
1053
%%CACTIDIR%%/mibs/index.php
1054
%%CACTIDIR%%/permission_denied.php
479
%%CACTIDIR%%/plugins.php
1055
%%CACTIDIR%%/plugins.php
480
%%CACTIDIR%%/plugins/index.php
1056
%%CACTIDIR%%/plugins/index.php
481
%%CACTIDIR%%/poller.php
1057
%%CACTIDIR%%/poller.php
1058
%%CACTIDIR%%/poller_automation.php
1059
%%CACTIDIR%%/poller_boost.php
482
%%CACTIDIR%%/poller_commands.php
1060
%%CACTIDIR%%/poller_commands.php
1061
%%CACTIDIR%%/poller_dsstats.php
483
%%CACTIDIR%%/poller_export.php
1062
%%CACTIDIR%%/poller_export.php
1063
%%CACTIDIR%%/poller_maintenance.php
1064
%%CACTIDIR%%/poller_realtime.php
1065
%%CACTIDIR%%/poller_recovery.php
1066
%%CACTIDIR%%/poller_reports.php
1067
%%CACTIDIR%%/poller_spikekill.php
1068
%%CACTIDIR%%/pollers.php
1069
%%CACTIDIR%%/remote_agent.php
1070
%%CACTIDIR%%/reports_admin.php
1071
%%CACTIDIR%%/reports_user.php
1072
%%CACTIDIR%%/resource/index.php
484
%%CACTIDIR%%/resource/script_queries/host_cpu.xml
1073
%%CACTIDIR%%/resource/script_queries/host_cpu.xml
485
%%CACTIDIR%%/resource/script_queries/host_disk.xml
1074
%%CACTIDIR%%/resource/script_queries/host_disk.xml
1075
%%CACTIDIR%%/resource/script_queries/index.php
486
%%CACTIDIR%%/resource/script_queries/unix_disk.xml
1076
%%CACTIDIR%%/resource/script_queries/unix_disk.xml
487
%%CACTIDIR%%/resource/script_server/host_cpu.xml
1077
%%CACTIDIR%%/resource/script_server/host_cpu.xml
488
%%CACTIDIR%%/resource/script_server/host_disk.xml
1078
%%CACTIDIR%%/resource/script_server/host_disk.xml
1079
%%CACTIDIR%%/resource/script_server/index.php
489
%%CACTIDIR%%/resource/snmp_queries/host_disk.xml
1080
%%CACTIDIR%%/resource/snmp_queries/host_disk.xml
1081
%%CACTIDIR%%/resource/snmp_queries/index.php
490
%%CACTIDIR%%/resource/snmp_queries/interface.xml
1082
%%CACTIDIR%%/resource/snmp_queries/interface.xml
491
%%CACTIDIR%%/resource/snmp_queries/kbridge.xml
1083
%%CACTIDIR%%/resource/snmp_queries/net-snmp_devio.xml
492
%%CACTIDIR%%/resource/snmp_queries/net-snmp_disk.xml
1084
%%CACTIDIR%%/resource/snmp_queries/net-snmp_disk.xml
493
%%CACTIDIR%%/resource/snmp_queries/netware_cpu.xml
1085
%%CACTIDIR%%/rrdcleaner.php
494
%%CACTIDIR%%/resource/snmp_queries/netware_disk.xml
495
%%CACTIDIR%%/rra.php
496
%%CACTIDIR%%/script_server.php
1086
%%CACTIDIR%%/script_server.php
497
%%CACTIDIR%%/script_server.pl
498
%%CACTIDIR%%/scripts/3com_cable_modem.pl
1087
%%CACTIDIR%%/scripts/3com_cable_modem.pl
499
%%CACTIDIR%%/scripts/diskfree.pl
1088
%%CACTIDIR%%/scripts/diskfree.pl
500
%%CACTIDIR%%/scripts/diskfree.sh
1089
%%CACTIDIR%%/scripts/diskfree.sh
1090
%%CACTIDIR%%/scripts/index.php
501
%%CACTIDIR%%/scripts/linux_memory.pl
1091
%%CACTIDIR%%/scripts/linux_memory.pl
502
%%CACTIDIR%%/scripts/loadavg.pl
1092
%%CACTIDIR%%/scripts/loadavg.pl
503
%%CACTIDIR%%/scripts/loadavg_multi.pl
1093
%%CACTIDIR%%/scripts/loadavg_multi.pl
Lines 506-514 Link Here
506
%%CACTIDIR%%/scripts/query_host_partitions.php
1096
%%CACTIDIR%%/scripts/query_host_partitions.php
507
%%CACTIDIR%%/scripts/query_unix_partitions.pl
1097
%%CACTIDIR%%/scripts/query_unix_partitions.pl
508
%%CACTIDIR%%/scripts/sql.php
1098
%%CACTIDIR%%/scripts/sql.php
1099
%%CACTIDIR%%/scripts/ss_count_oids.php
509
%%CACTIDIR%%/scripts/ss_fping.php
1100
%%CACTIDIR%%/scripts/ss_fping.php
510
%%CACTIDIR%%/scripts/ss_host_cpu.php
1101
%%CACTIDIR%%/scripts/ss_host_cpu.php
511
%%CACTIDIR%%/scripts/ss_host_disk.php
1102
%%CACTIDIR%%/scripts/ss_host_disk.php
1103
%%CACTIDIR%%/scripts/ss_net_snmp_disk_bytes.php
1104
%%CACTIDIR%%/scripts/ss_net_snmp_disk_io.php
512
%%CACTIDIR%%/scripts/ss_sql.php
1105
%%CACTIDIR%%/scripts/ss_sql.php
513
%%CACTIDIR%%/scripts/unix_processes.pl
1106
%%CACTIDIR%%/scripts/unix_processes.pl
514
%%CACTIDIR%%/scripts/unix_tcp_connections.pl
1107
%%CACTIDIR%%/scripts/unix_tcp_connections.pl
Lines 516-526 Link Here
516
%%CACTIDIR%%/scripts/weatherbug.pl
1109
%%CACTIDIR%%/scripts/weatherbug.pl
517
%%CACTIDIR%%/scripts/webhits.pl
1110
%%CACTIDIR%%/scripts/webhits.pl
518
%%CACTIDIR%%/settings.php
1111
%%CACTIDIR%%/settings.php
1112
%%CACTIDIR%%/sites.php
1113
%%CACTIDIR%%/snmpagent_mibcache.php
1114
%%CACTIDIR%%/snmpagent_mibcachechild.php
1115
%%CACTIDIR%%/snmpagent_persist.php
1116
%%CACTIDIR%%/spikekill.php
519
%%CACTIDIR%%/templates_export.php
1117
%%CACTIDIR%%/templates_export.php
520
%%CACTIDIR%%/templates_import.php
1118
%%CACTIDIR%%/templates_import.php
521
%%CACTIDIR%%/tree.php
1119
%%CACTIDIR%%/tree.php
522
%%CACTIDIR%%/user_admin.php
1120
%%CACTIDIR%%/user_admin.php
1121
%%CACTIDIR%%/user_domains.php
1122
%%CACTIDIR%%/user_group_admin.php
523
%%CACTIDIR%%/utilities.php
1123
%%CACTIDIR%%/utilities.php
1124
%%CACTIDIR%%/vdef.php
524
@comment
1125
@comment
525
@comment Manage the new Cacti dirs from their prior default location.
1126
@comment Manage the new Cacti dirs from their prior default location.
526
@comment
1127
@comment

Return to bug 216801