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

Collapse All | Expand All

(-)Makefile (-26 / +45 lines)
Lines 2-55 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	bacula-web
4
PORTNAME=	bacula-web
5
DISTVERSION=	1.38.9
5
DISTVERSION=	6.0.1
6
PORTREVISION=	1
7
CATEGORIES=	www
8
MASTER_SITES=	SF/bacula/OldFiles
9
DISTNAME=	bacula-gui-${DISTVERSION}
10
6
7
CATEGORIES=	sysutils www
8
MASTER_SITES=	http://www.bacula-web.org/files/bacula-web.org/downloads/
9
EXTRACT_SUFX=	.tgz
10
11
MAINTAINER=	dan@langille.org
11
MAINTAINER=	dan@langille.org
12
COMMENT=	Bacula-web provides a summarized output of Bacula jobs
12
COMMENT=	Bacula-web provides a summarized output of Bacula jobs
13
13
14
RUN_DEPENDS=	${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
14
LICENSE=	GPLv2
15
15
16
NO_BUILD=	yes
16
NO_BUILD=	yes
17
USE_PHP=	gd
17
USE_PHP=	gd gettext session
18
WANT_PHP_WEB=	yes
18
WANT_PHP_WEB=	yes
19
19
20
OPTIONS_DEFINE=		PGSQL
20
OPTIONS_DEFINE=		MYSQL PGSQL SQLITE
21
OPTIONS_DEFAULT=	PGSQL
21
OPTIONS_DEFAULT=	PGSQL
22
22
23
SUB_FILES=	pkg-message
23
SUB_FILES=	pkg-message
24
BACULAWEB_HOME?=	${PREFIX}/www/bacula-web
24
25
25
.include <bsd.port.options.mk>
26
.include <bsd.port.options.mk>
26
27
28
.if ${PORT_OPTIONS:MMYSQL}
29
CONFIGURE_ARGS+=	--with-mysql=yes
30
USE_MYSQL=		yes
31
SUB_LIST+=		REQ_MYSQL=mysql
32
USE_PHP+=		pdo_mysql
33
.endif
34
27
.if ${PORT_OPTIONS:MPGSQL}
35
.if ${PORT_OPTIONS:MPGSQL}
28
USE_PGSQL=		yes
36
USE_PGSQL=		yes
29
CONFIGURE_ARGS+=	--with-postgresql=yes
37
CONFIGURE_ARGS+=	--with-postgresql=yes
30
SUB_LIST+=		REQ_PGSQL=postgresql
38
SUB_LIST+=		REQ_PGSQL=postgresql
31
USE_PHP+=		pgsql
39
USE_PHP+=		pdo_pgsql
32
.else
33
CONFIGURE_ARGS+=	--with-mysql=yes
34
USE_MYSQL=		yes
35
SUB_LIST+=		REQ_MYSQL=mysql
36
USE_PHP+=		mysql
37
.endif
40
.endif
38
41
42
.if ${PORT_OPTIONS:MSQLITE}
43
USE_PGSQL=		yes
44
CONFIGURE_ARGS+=	--with-sqlite=yes
45
SUB_LIST+=		REQ_PGSQL=sqlite
46
USE_PHP+=		pdo_sqlite
47
.endif
48
49
do-extract:
50
# the vendor file does contain a top level directory.  Make one, and extract into it.
51
	@${MKDIR} ${WRKDIR}/${DISTNAME}
52
	@for file in ${EXTRACT_ONLY}; do \
53
		if ! (cd ${WRKDIR}/${DISTNAME} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\
54
		then \
55
			exit 1; \
56
		fi; \
57
	done
58
39
do-install:
59
do-install:
40
	@${ECHO} "Installing in ${PREFIX}/www/bacula-web"
60
	@${ECHO} "Installing in ${BACULAWEB_HOME}"
41
	${MKDIR} ${STAGEDIR}${PREFIX}/www/bacula-web
61
	${MKDIR} ${STAGEDIR}${BACULAWEB_HOME}
42
	${CP} -R ${WRKSRC}/bacula-web/* ${STAGEDIR}${PREFIX}/www/bacula-web
62
	${CP} -R ${WRKSRC}/* ${STAGEDIR}${BACULAWEB_HOME}
43
	${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${PREFIX}/www/bacula-web
44
	${MV} ${STAGEDIR}${PREFIX}/www/bacula-web/configs/bacula.conf ${STAGEDIR}${PREFIX}/etc/bacula-web.conf.sample; \
45
	${RM} -rf ${STAGEDIR}${PREFIX}/www/bacula-web/configs; \
46
63
47
	if [ ! -f /var/bacula-web/templates_c ]; then \
48
		${MKDIR} ${STAGEDIR}/var/bacula-web/templates_c; \
49
		${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}/var/bacula-web/templates_c; \
50
	fi
51
52
post-install:
64
post-install:
53
	@${CAT} ${PKGMESSAGE}
65
	${ECHO_CMD} '@owner www' > ${TMPPLIST}
66
	${ECHO_CMD} '@group www' >> ${TMPPLIST}
67
	@${FIND} -s ${STAGEDIR}${BACULAWEB_HOME} -not -type d | ${SORT} | \
68
	${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
69
	@${FIND} ${STAGEDIR}${BACULAWEB_HOME} -type d | ${SORT} -r | \
70
	${SED} -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
71
	${ECHO_CMD} '@owner' >> ${TMPPLIST}
72
	${ECHO_CMD} '@group' >> ${TMPPLIST}
54
73
55
.include <bsd.port.mk>
74
.include <bsd.port.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (bacula-gui-1.38.9.tar.gz) = 6f7d9d4830f03a32c023d3d1f1a83f519f9d05370dd404640b5bd65159264a7c
1
SHA256 (bacula-web-6.0.1.tgz) = c5139098c02f52995f4f741be2a35104177d6f3104edf813ee6ddc409eaca500
2
SIZE (bacula-gui-1.38.9.tar.gz) = 487098
2
SIZE (bacula-web-6.0.1.tgz) = 396435
(-)files/patch-bacula-web-classes.inc (-13 lines)
Lines 1-13 Link Here
1
--- bacula-web/classes.inc.orig	Sat Nov  5 17:11:16 2005
2
+++ bacula-web/classes.inc	Sat Apr 29 16:34:44 2006
3
@@ -15,8 +15,8 @@
4
 +-------------------------------------------------------------------------+
5
 */
6
 // Last Err: 11
7
-define('CONFIG_DIR', "configs");
8
-define('CONFIG_FILE', "bacula.conf");
9
+define('CONFIG_DIR', "/usr/local/etc");
10
+define('CONFIG_FILE', "bacula-web.conf");
11
 define('BACULA_TYPE_BYTES_FILES', 1);
12
 define('BACULA_TYPE_FILES_JOBID', 2);
13
 define('BACULA_TYPE_BYTES_ENDTIME_ALLJOBS', 69);
(-)files/patch-bacula-web-index.php (-29 lines)
Lines 1-29 Link Here
1
--- bacula-web/index.php.orig	Thu Oct  6 10:45:48 2005
2
+++ bacula-web/index.php	Sat Apr 29 16:35:59 2006
3
@@ -26,9 +26,9 @@
4
 //$smarty->compile_check = true;
5
 //$smarty->debugging = true;
6
 $smarty->template_dir = "./templates";
7
-$smarty->compile_dir = "./templates_c";
8
-$smarty->config_dir     = "./configs";
9
-$smarty->config_load("bacula.conf");                                                                                    // Load config file
10
+$smarty->compile_dir = "/var/bacula-web/templates_c";
11
+$smarty->config_dir     = "/usr/local/etc";
12
+$smarty->config_load("bacula-web.conf");                                                                                    // Load config file
13
 $mode = $smarty->get_config_vars("mode");                                                                               // Lite o Extend?
14
15
 require("lang.php");
16
@@ -75,8 +75,11 @@
17
18
 $client->free();
19
 $totalfiles->free();
20
-$last24bytes->free();
21
-
22
+if ( $dbSql->driver == "mysql" ) {
23
+  $last24bytes->free();
24
+} else {
25
+#  $last24bytes->freeResult();
26
+}
27
28
 // report_select.tpl & last_run_report.tpl
29
 $res = $dbSql->link->query("select Name from Job group by Name");
(-)files/patch-bacula-web-report.php (-15 lines)
Lines 1-15 Link Here
1
--- bacula-web/report.php.orig	Thu Oct  6 10:45:48 2005
2
+++ bacula-web/report.php	Sat Apr 29 16:36:01 2006
3
@@ -25,9 +25,9 @@
4
 //$smarty->debugging = true;
5
6
 $smarty->template_dir   = "./templates";
7
-$smarty->compile_dir    = "./templates_c";
8
-$smarty->config_dir     = "./configs";
9
-$smarty->config_load("bacula.conf");
10
+$smarty->compile_dir    = "/var/bacula-web/templates_c";
11
+$smarty->config_dir     = "/usr/local/etc";
12
+$smarty->config_load("bacula-web.conf");
13
 require("lang.php");
14
15
 $dbSql = new Bweb();
(-)files/patch-bacula-web-templates-full_popup.tpl (-8 lines)
Lines 1-8 Link Here
1
--- bacula-web/templates/full_popup.tpl.orig	Wed Jun 15 10:59:27 2005
2
+++ bacula-web/templates/full_popup.tpl	Sat Apr 29 16:36:02 2006
3
@@ -1,4 +1,4 @@
4
-{config_load file=bacula.conf}
5
+{config_load file=bacula-web.conf}
6
 <html>
7
 <head>
8
 {include file=css.tpl}
(-)files/patch-bacula-web-templates-index.tpl (-10 lines)
Lines 1-10 Link Here
1
--- bacula-web/templates/index.tpl.orig	Sun Jun 19 04:52:45 2005
2
+++ bacula-web/templates/index.tpl	Sat Apr 29 16:36:03 2006
3
@@ -1,6 +1,6 @@
4
 {* BACULA main page*}
5
6
-{config_load file=bacula.conf}
7
+{config_load file=bacula-web.conf}
8
9
 {include file=css.tpl}
10
(-)files/patch-bacula-web-templates-report.tpl (-9 lines)
Lines 1-9 Link Here
1
--- bacula-web/templates/report.tpl.orig	Mon Sep 19 11:33:10 2005
2
+++ bacula-web/templates/report.tpl	Sat Apr 29 16:36:04 2006
3
@@ -1,5 +1,5 @@
4
 {* Página principal BACULA *}
5
-{config_load  file=bacula.conf}
6
+{config_load  file=bacula-web.conf}
7
 {popup_init src="js/overlib.js"}
8
 <html>
9
 <head>
(-)files/patch-bacula-web-templates-volumes.tpl (-13 lines)
Lines 1-13 Link Here
1
--- bacula-web/templates/volumes.tpl.orig	Sun Jun 19 06:17:22 2005
2
+++ bacula-web/templates/volumes.tpl	Sat Apr 29 16:29:36 2006
3
@@ -31,8 +31,8 @@
4
                                         <td>{$current3.0}</td>
5
                                         <td>{$current3.1|fsize_format|default:0}</td>
6
                                         <td>{$current3.4}</td>
7
-                                        <td {popup text="$current3.6}">{if $current3.6|date_format:"%Y" <= "1979"}--{else}{$current3.6|date_format:"%Y/%m/%d"}{/if}</td>
8
-                                        <td {popup text="$current3.5}">{if $current3.5 == "0000-00-00 00:00:00"}--{else}{$current3.5|date_format:"%Y/%m/%d"}{/if}</td>
9
+                                        <td>{if $current3.6|date_format:"%Y" <= "1979"}--{else}{$current3.6|date_format:"%Y/%m/%d"}{/if}</td>
10
+                                        <td>{if $current3.5 == "0000-00-00 00:00:00"}--{else}{$current3.5|date_format:"%Y/%m/%d"}{/if}</td>
11
                                         <td>
12
                                                 <font color=
13
                                                 {if $current3.2 == "Error"}
(-)files/pkg-message.in (-3 / +2 lines)
Lines 5-13 Link Here
5
5
6
Please note that everything has been installed in %%PREFIX%%/www/bacula-web.
6
Please note that everything has been installed in %%PREFIX%%/www/bacula-web.
7
7
8
Read %%PREFIX%%/www/bacula-web/README but keep in mind local changes for
8
You need to copy %%PREFIX%%/www/bacula-web/application/config/config.php.sample to 
9
FreeBSD: you need to copy %%PREFIX%%/etc/bacula-web.conf.sample to 
9
%%PREFIX%%/www/bacula-web/application/config/config.php and modify with your preferences.
10
%%PREFIX%%/etc/bacula-web.conf.sample and modify with your preferences.
11
10
12
You will probably want to add an alias to your httpd.conf file, something
11
You will probably want to add an alias to your httpd.conf file, something
13
like this:
12
like this:
(-)pkg-descr (-1 / +1 lines)
Lines 14-17 Link Here
14
The documentation for bacula-web can be found in a separate bacula-web
14
The documentation for bacula-web can be found in a separate bacula-web
15
document in the bacula-docs release.
15
document in the bacula-docs release.
16
16
17
WWW: http://www.bacula.org/
17
WWW: http://www.bacula-web.org/
(-)pkg-plist (-225 / +4 lines)
Lines 1-225 Link Here
1
@sample etc/bacula-web.conf.sample
1
@owner www
2
www/bacula-web/CONTACT
2
@group www
3
www/bacula-web/COPYING
3
@owner
4
www/bacula-web/ChangeLog
4
@group
5
www/bacula-web/README
6
www/bacula-web/TODO
7
www/bacula-web/array_fill.func.php
8
www/bacula-web/classes.inc
9
www/bacula-web/classes.inc.orig
10
www/bacula-web/external_packages/phplot/ChangeLog
11
www/bacula-web/external_packages/phplot/LICENSE.GPL
12
www/bacula-web/external_packages/phplot/LICENSE.PHP_3_0
13
www/bacula-web/external_packages/phplot/README
14
www/bacula-web/external_packages/phplot/doc/imgs/graph1.png
15
www/bacula-web/external_packages/phplot/doc/imgs/graph2.png
16
www/bacula-web/external_packages/phplot/doc/imgs/graph3.png
17
www/bacula-web/external_packages/phplot/doc/imgs/phplot-dia.png
18
www/bacula-web/external_packages/phplot/doc/imgs/qstart_fig1.png
19
www/bacula-web/external_packages/phplot/doc/imgs/qstart_fig2.png
20
www/bacula-web/external_packages/phplot/doc/imgs/qstart_fig3.png
21
www/bacula-web/external_packages/phplot/doc/imgs/qstart_fig4.png
22
www/bacula-web/external_packages/phplot/doc/index.php
23
www/bacula-web/external_packages/phplot/doc/internal_functions.html
24
www/bacula-web/external_packages/phplot/doc/quickstart.html
25
www/bacula-web/external_packages/phplot/doc/schema.html
26
www/bacula-web/external_packages/phplot/doc/style.css
27
www/bacula-web/external_packages/phplot/doc/user_functions.html
28
www/bacula-web/external_packages/phplot/doc/user_internal_functions.html
29
www/bacula-web/external_packages/phplot/examples/benjamingothic.ttf
30
www/bacula-web/external_packages/phplot/examples/create_chart.php
31
www/bacula-web/external_packages/phplot/examples/data.php
32
www/bacula-web/external_packages/phplot/examples/data_date.php
33
www/bacula-web/external_packages/phplot/examples/data_date2.php
34
www/bacula-web/external_packages/phplot/examples/data_sample1.php
35
www/bacula-web/external_packages/phplot/examples/data_sample2.php
36
www/bacula-web/external_packages/phplot/examples/data_sample3.php
37
www/bacula-web/external_packages/phplot/examples/data_sample4.php
38
www/bacula-web/external_packages/phplot/examples/data_sample5.php
39
www/bacula-web/external_packages/phplot/examples/example1.php
40
www/bacula-web/external_packages/phplot/examples/example2.php
41
www/bacula-web/external_packages/phplot/examples/example3.php
42
www/bacula-web/external_packages/phplot/examples/example4.php
43
www/bacula-web/external_packages/phplot/examples/example6.php
44
www/bacula-web/external_packages/phplot/examples/example7.php
45
www/bacula-web/external_packages/phplot/examples/example8.php
46
www/bacula-web/external_packages/phplot/examples/example9.php
47
www/bacula-web/external_packages/phplot/examples/format_chart.php
48
www/bacula-web/external_packages/phplot/examples/inline_image.php
49
www/bacula-web/external_packages/phplot/examples/test_setup.php
50
www/bacula-web/external_packages/phplot/phplot.php
51
www/bacula-web/external_packages/phplot/phplot_data.php
52
www/bacula-web/external_packages/phplot/rgb.inc.php
53
www/bacula-web/external_packages/smarty/COPYING.lib
54
www/bacula-web/external_packages/smarty/Config_File.class.php
55
www/bacula-web/external_packages/smarty/Smarty.class.php
56
www/bacula-web/external_packages/smarty/Smarty_Compiler.class.php
57
www/bacula-web/external_packages/smarty/debug.tpl
58
www/bacula-web/external_packages/smarty/internals/core.assemble_plugin_filepath.php
59
www/bacula-web/external_packages/smarty/internals/core.assign_smarty_interface.php
60
www/bacula-web/external_packages/smarty/internals/core.create_dir_structure.php
61
www/bacula-web/external_packages/smarty/internals/core.display_debug_console.php
62
www/bacula-web/external_packages/smarty/internals/core.get_include_path.php
63
www/bacula-web/external_packages/smarty/internals/core.get_microtime.php
64
www/bacula-web/external_packages/smarty/internals/core.get_php_resource.php
65
www/bacula-web/external_packages/smarty/internals/core.is_secure.php
66
www/bacula-web/external_packages/smarty/internals/core.is_trusted.php
67
www/bacula-web/external_packages/smarty/internals/core.load_plugins.php
68
www/bacula-web/external_packages/smarty/internals/core.load_resource_plugin.php
69
www/bacula-web/external_packages/smarty/internals/core.process_cached_inserts.php
70
www/bacula-web/external_packages/smarty/internals/core.process_compiled_include.php
71
www/bacula-web/external_packages/smarty/internals/core.read_cache_file.php
72
www/bacula-web/external_packages/smarty/internals/core.rm_auto.php
73
www/bacula-web/external_packages/smarty/internals/core.rmdir.php
74
www/bacula-web/external_packages/smarty/internals/core.run_insert_handler.php
75
www/bacula-web/external_packages/smarty/internals/core.smarty_include_php.php
76
www/bacula-web/external_packages/smarty/internals/core.write_cache_file.php
77
www/bacula-web/external_packages/smarty/internals/core.write_compiled_include.php
78
www/bacula-web/external_packages/smarty/internals/core.write_compiled_resource.php
79
www/bacula-web/external_packages/smarty/internals/core.write_file.php
80
www/bacula-web/external_packages/smarty/plugins/block.textformat.php
81
www/bacula-web/external_packages/smarty/plugins/compiler.assign.php
82
www/bacula-web/external_packages/smarty/plugins/function.assign_debug_info.php
83
www/bacula-web/external_packages/smarty/plugins/function.config_load.php
84
www/bacula-web/external_packages/smarty/plugins/function.counter.php
85
www/bacula-web/external_packages/smarty/plugins/function.cycle.php
86
www/bacula-web/external_packages/smarty/plugins/function.debug.php
87
www/bacula-web/external_packages/smarty/plugins/function.eval.php
88
www/bacula-web/external_packages/smarty/plugins/function.fetch.php
89
www/bacula-web/external_packages/smarty/plugins/function.html_checkboxes.php
90
www/bacula-web/external_packages/smarty/plugins/function.html_image.php
91
www/bacula-web/external_packages/smarty/plugins/function.html_options.php
92
www/bacula-web/external_packages/smarty/plugins/function.html_radios.php
93
www/bacula-web/external_packages/smarty/plugins/function.html_select_date.php
94
www/bacula-web/external_packages/smarty/plugins/function.html_select_time.php
95
www/bacula-web/external_packages/smarty/plugins/function.html_table.php
96
www/bacula-web/external_packages/smarty/plugins/function.mailto.php
97
www/bacula-web/external_packages/smarty/plugins/function.math.php
98
www/bacula-web/external_packages/smarty/plugins/function.popup.php
99
www/bacula-web/external_packages/smarty/plugins/function.popup_init.php
100
www/bacula-web/external_packages/smarty/plugins/modifier.capitalize.php
101
www/bacula-web/external_packages/smarty/plugins/modifier.cat.php
102
www/bacula-web/external_packages/smarty/plugins/modifier.count_characters.php
103
www/bacula-web/external_packages/smarty/plugins/modifier.count_paragraphs.php
104
www/bacula-web/external_packages/smarty/plugins/modifier.count_sentences.php
105
www/bacula-web/external_packages/smarty/plugins/modifier.count_words.php
106
www/bacula-web/external_packages/smarty/plugins/modifier.date_format.php
107
www/bacula-web/external_packages/smarty/plugins/modifier.debug_print_var.php
108
www/bacula-web/external_packages/smarty/plugins/modifier.default.php
109
www/bacula-web/external_packages/smarty/plugins/modifier.escape.php
110
www/bacula-web/external_packages/smarty/plugins/modifier.fsize_format.php
111
www/bacula-web/external_packages/smarty/plugins/modifier.indent.php
112
www/bacula-web/external_packages/smarty/plugins/modifier.lower.php
113
www/bacula-web/external_packages/smarty/plugins/modifier.nl2br.php
114
www/bacula-web/external_packages/smarty/plugins/modifier.regex_replace.php
115
www/bacula-web/external_packages/smarty/plugins/modifier.replace.php
116
www/bacula-web/external_packages/smarty/plugins/modifier.spacify.php
117
www/bacula-web/external_packages/smarty/plugins/modifier.string_format.php
118
www/bacula-web/external_packages/smarty/plugins/modifier.strip.php
119
www/bacula-web/external_packages/smarty/plugins/modifier.strip_tags.php
120
www/bacula-web/external_packages/smarty/plugins/modifier.truncate.php
121
www/bacula-web/external_packages/smarty/plugins/modifier.upper.php
122
www/bacula-web/external_packages/smarty/plugins/modifier.wordwrap.php
123
www/bacula-web/external_packages/smarty/plugins/outputfilter.trimwhitespace.php
124
www/bacula-web/external_packages/smarty/plugins/shared.escape_special_chars.php
125
www/bacula-web/external_packages/smarty/plugins/shared.make_timestamp.php
126
www/bacula-web/external_packages/smarty_gettext-0.9/COPYING
127
www/bacula-web/external_packages/smarty_gettext-0.9/ChangeLog
128
www/bacula-web/external_packages/smarty_gettext-0.9/README
129
www/bacula-web/external_packages/smarty_gettext-0.9/smarty_gettext.php
130
www/bacula-web/external_packages/smarty_gettext-0.9/tsmarty2c.php
131
www/bacula-web/images/backlast.gif
132
www/bacula-web/images/backlastred.gif
133
www/bacula-web/images/bg1.png
134
www/bacula-web/images/bg2.png
135
www/bacula-web/images/bg3.png
136
www/bacula-web/images/bg4.png
137
www/bacula-web/images/bg5.png
138
www/bacula-web/images/bg6.png
139
www/bacula-web/images/bg7.gif
140
www/bacula-web/images/bg8.png
141
www/bacula-web/images/empty.png
142
www/bacula-web/images/end2.png
143
www/bacula-web/images/end4.png
144
www/bacula-web/images/refresh.gif
145
www/bacula-web/images/s_error.gif
146
www/bacula-web/images/s_ok.gif
147
www/bacula-web/index.php
148
www/bacula-web/index.php.orig
149
www/bacula-web/js/mini/overlib_anchor_mini.js
150
www/bacula-web/js/mini/overlib_crossframe_mini.js
151
www/bacula-web/js/mini/overlib_cssstyle_mini.js
152
www/bacula-web/js/mini/overlib_exclusive_mini.js
153
www/bacula-web/js/mini/overlib_followscroll_mini.js
154
www/bacula-web/js/mini/overlib_hideform_mini.js
155
www/bacula-web/js/mini/overlib_mini.js
156
www/bacula-web/js/mini/overlib_shadow_mini.js
157
www/bacula-web/js/overlib.js
158
www/bacula-web/js/overlib_anchor.js
159
www/bacula-web/js/overlib_crossframe.js
160
www/bacula-web/js/overlib_cssstyle.js
161
www/bacula-web/js/overlib_exclusive.js
162
www/bacula-web/js/overlib_followscroll.js
163
www/bacula-web/js/overlib_hideform.js
164
www/bacula-web/js/overlib_shadow.js
165
www/bacula-web/lang.php
166
www/bacula-web/locale/de/LC_MESSAGES/messages.mo
167
www/bacula-web/locale/de/LC_MESSAGES/messages_de.po
168
www/bacula-web/locale/en/LC_MESSAGES/messages.mo
169
www/bacula-web/locale/en/LC_MESSAGES/messages.po
170
www/bacula-web/locale/es/LC_MESSAGES/messages.mo
171
www/bacula-web/locale/es/LC_MESSAGES/messages.po
172
www/bacula-web/locale/fr/LC_MESSAGES/messages.mo
173
www/bacula-web/locale/fr/LC_MESSAGES/messages.po.fr
174
www/bacula-web/locale/it/LC_MESSAGES/messages.mo
175
www/bacula-web/locale/it/LC_MESSAGES/messages_it.po
176
www/bacula-web/messages.po
177
www/bacula-web/paths.php
178
www/bacula-web/report.php
179
www/bacula-web/report.php.orig
180
www/bacula-web/stats.php
181
www/bacula-web/templates/css.tpl
182
www/bacula-web/templates/footer.tpl
183
www/bacula-web/templates/full_popup.tpl
184
www/bacula-web/templates/full_popup.tpl.orig
185
www/bacula-web/templates/generaldata.tpl
186
www/bacula-web/templates/header.tpl
187
www/bacula-web/templates/index.tpl
188
www/bacula-web/templates/index.tpl.orig
189
www/bacula-web/templates/last_run_report.tpl
190
www/bacula-web/templates/report.tpl
191
www/bacula-web/templates/report.tpl.orig
192
www/bacula-web/templates/report_select.tpl
193
www/bacula-web/templates/volumes.tpl
194
www/bacula-web/templates/volumes.tpl.orig
195
www/bacula-web/templates_c/blank
196
www/bacula-web/test.php
197
www/bacula-web/tsmarty2c.php
198
@dirrm www/bacula-web/templates_c
199
@dirrm www/bacula-web/templates
200
@dirrm www/bacula-web/locale/it/LC_MESSAGES
201
@dirrm www/bacula-web/locale/it
202
@dirrm www/bacula-web/locale/fr/LC_MESSAGES
203
@dirrm www/bacula-web/locale/fr
204
@dirrm www/bacula-web/locale/es/LC_MESSAGES
205
@dirrm www/bacula-web/locale/es
206
@dirrm www/bacula-web/locale/en/LC_MESSAGES
207
@dirrm www/bacula-web/locale/en
208
@dirrm www/bacula-web/locale/de/LC_MESSAGES
209
@dirrm www/bacula-web/locale/de
210
@dirrm www/bacula-web/locale
211
@dirrm www/bacula-web/js/mini
212
@dirrm www/bacula-web/js
213
@dirrm www/bacula-web/images
214
@dirrm www/bacula-web/external_packages/smarty_gettext-0.9
215
@dirrm www/bacula-web/external_packages/smarty/plugins
216
@dirrm www/bacula-web/external_packages/smarty/internals
217
@dirrm www/bacula-web/external_packages/smarty
218
@dirrm www/bacula-web/external_packages/phplot/examples
219
@dirrm www/bacula-web/external_packages/phplot/doc/imgs
220
@dirrm www/bacula-web/external_packages/phplot/doc
221
@dirrm www/bacula-web/external_packages/phplot
222
@dirrm www/bacula-web/external_packages
223
@dirrm www/bacula-web
224
@unexec rmdir "/var/bacula-web/templates_c" >/dev/null 2>&1 || :
225
@unexec rmdir "/var/bacula-web" >/dev/null 2>&1 || :

Return to bug 191583