pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

bareos-webui: initial check-in of the web based management console for bareos



Module Name:	pkgsrc-wip
Committed By:	Matthias Petermann <mp%petermann-it.de@localhost>
Pushed By:	mp
Date:		Thu Nov 12 16:50:09 2020 +0100
Changeset:	68ffb933c695e3d48394194139fbce6917f91ea0

Added Files:
	bareos-webui/DESCR
	bareos-webui/INSTALL
	bareos-webui/MESSAGE
	bareos-webui/Makefile
	bareos-webui/PLIST
	bareos-webui/TODO
	bareos-webui/distinfo

Log Message:
bareos-webui: initial check-in of the web based management console for bareos

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=68ffb933c695e3d48394194139fbce6917f91ea0

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 bareos-webui/DESCR    |   18 +
 bareos-webui/INSTALL  |   15 +
 bareos-webui/MESSAGE  |   72 ++
 bareos-webui/Makefile |   52 ++
 bareos-webui/PLIST    | 1928 +++++++++++++++++++++++++++++++++++++++++++++++++
 bareos-webui/TODO     |   12 +
 bareos-webui/distinfo |    6 +
 7 files changed, 2103 insertions(+)

diffs:
diff --git a/bareos-webui/DESCR b/bareos-webui/DESCR
new file mode 100644
index 0000000000..8d92c0b835
--- /dev/null
+++ b/bareos-webui/DESCR
@@ -0,0 +1,18 @@
+Backup Archiving REcovery Open Sourced
+
+Bareos is a set of computer programs that permits the system administrator
+to manage backup, recovery, and verfication of computer data
+across a network of computers of different kinds. Bareos can
+also run entirely upon a single computer and can backup to various types
+of media, including tape and disk.
+
+Bareos is a fork of Bacula 5.2 around 2010.
+
+Features (partial list)
+        LTO hardware encryption support
+        bandwidth limitation
+        encrypted communication
+        distributed data replication across sites
+        cloud storage support (not yet fully part of pkgsrc)
+
+This is the web based UI which allows control of Bareos via the web browser.
diff --git a/bareos-webui/INSTALL b/bareos-webui/INSTALL
new file mode 100644
index 0000000000..69fa4e2bdb
--- /dev/null
+++ b/bareos-webui/INSTALL
@@ -0,0 +1,15 @@
+#!@SH@
+#
+# $NetBSD: $
+
+WWWGRP="@WWWGRP@"
+WWWOWN="@WWWOWN@"
+WEBUI_DIR="@PREFIX@/@WEBUI_DIR@"
+
+case "${STAGE}" in
+POST-INSTALL)
+	cd ${WEBUI_DIR} &&
+		${CHOWN} -R ${WWWOWN} ${WEBUI_DIR} &&
+		${CHGRP} -R ${WWWGRP} ${WEBUI_DIR}
+	;;
+esac
diff --git a/bareos-webui/MESSAGE b/bareos-webui/MESSAGE
new file mode 100644
index 0000000000..402deda55a
--- /dev/null
+++ b/bareos-webui/MESSAGE
@@ -0,0 +1,72 @@
+===========================================================================
+$NetBSD: $
+
+To use Bareos Web UI, you will need to perform the following steps.
+
+1. Install nginx httpd server, for example www/nginx.
+
+2. Install PHP-FPM, PHP FastCGI Process Magager from www/php-fpm.
+
+3. Be sure to have the following lines in ${PREFIX}/etc/nginx/nginx.conf
+   to enable PHP script in http://YOUR_SERVER_NAME/ .
+
+user nginx nginx;
+worker_processes 1;
+
+events {
+    worker_connections 1024;
+}
+
+http {
+    include       /usr/pkg/etc/nginx/mime.types;
+    default_type  application/octet-stream;
+    sendfile      on;
+    keepalive_timeout  65;
+
+    upstream php-handler {
+        server 127.0.0.1:9000;
+    }
+
+    server {
+        listen       80;
+        server_name  localhost;
+
+        charset utf-8;
+
+        root ${PREFIX}/share/bareos-webui;
+        index  index.php;
+
+        location / {
+            try_files $uri $uri/ /index.php?$query_string;
+        }
+
+        error_page  404              /404.html;
+        error_page  500 502 503 504  /50x.html;
+
+        location ~ \.php$ {
+            try_files $uri =404;
+            fastcgi_pass php-handler;
+            fastcgi_index index.php;
+            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+            include fastcgi_params;
+            fastcgi_param APPLICATION_ENV production;
+        }
+    }
+}
+
+4. Adjust newsyslog configuration for nginx and php-fpm
+
+/var/log/nginx/access.log nginx:nginx 640 7 * 24 ZB /var/run/nginx.pid SIGUSR1
+/var/log/nginx/error.log  nginx:nginx 640 7 * 24 ZB /var/run/nginx.pid SIGUSR1
+/var/log/php-fpm.log 640 7 * * BZ /var/run/php-fpm.pid SIGUSR1
+
+5. Start PHP-FPM daemon.
+
+	${RCD_SCRIPTS_DIR}/php_fpm start
+
+6. Start nginx httpd server.
+
+	${RCD_SCRIPTS_DIR}/nginx start
+
+7. Access http://YOUR_SERVER_NAME/
+===========================================================================
diff --git a/bareos-webui/Makefile b/bareos-webui/Makefile
new file mode 100644
index 0000000000..d8616e91ea
--- /dev/null
+++ b/bareos-webui/Makefile
@@ -0,0 +1,52 @@
+# $NetBSD: $
+
+GITHUB_PROJECT=	bareos
+VERSION=	19.2.8
+GITHUB_TAG=	Release/${VERSION}
+
+DISTNAME=	bareos-${VERSION}
+PKGNAME=	${DISTNAME:S/-/-webui-/}
+WRKSRC=		${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG:C/\//-/}
+CATEGORIES=	sysutils
+MASTER_SITES=	${MASTER_SITE_GITHUB:=bareos/}
+
+MAINTAINER=	mp%petermann-it.de@localhost
+HOMEPAGE=	http://www.bareos.org/
+COMMENT=	Backup Archiving REcovery Open Sourced - Web UI
+LICENSE=	gnu-agpl-v3
+
+USE_LANGUAGES=	# none
+
+NO_BUILD=	yes
+
+USE_TOOLS+=	bash:run pax perl:run
+
+WEBUI_DIR=	share/bareos-webui
+
+.include "../../mk/bsd.prefs.mk"
+
+APACHE_USER?=	nginx
+APACHE_GROUP?=	nginx
+PKG_GROUPS=	${APACHE_GROUP}
+PKG_USERS=	${APACHE_USER}:${APACHE_GROUP}
+
+PKG_USERS_VARS=		APACHE_USER
+PKG_GROUPS_VARS=	APACHE_GROUP
+
+BUILD_DEFS+=	APACHE_GROUP APACHE_USER
+FILES_SUBST+=	WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
+		WEBUI_DIR=${WEBUI_DIR}
+
+do-install:	
+	cd ${WRKSRC} && ${FIND} webui -type f \
+		\! -name '.*' \
+		\! -name 'CMakeLists.txt' \
+		\! -path 'webui/debian/*' \
+		\! -path 'webui/cmake/*' \
+		\! -path 'webui/doxygen/*' \
+		-print | \
+		pax -rw -pmp ${DESTDIR}${PREFIX}/share
+	cd ${DESTDIR}${PREFIX}/share && mv webui bareos-webui
+
+.include "../../lang/php/phpversion.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/bareos-webui/PLIST b/bareos-webui/PLIST
new file mode 100644
index 0000000000..f758db4cf2
--- /dev/null
+++ b/bareos-webui/PLIST
@@ -0,0 +1,1928 @@
+@comment $NetBSD$
+share/bareos-webui/LICENSE
+share/bareos-webui/README.md
+share/bareos-webui/composer.json
+share/bareos-webui/config/application.config.php
+share/bareos-webui/config/autoload/README.md
+share/bareos-webui/config/autoload/global.php.in
+share/bareos-webui/doc/README-INSTALLATION.md
+share/bareos-webui/doc/README-TRANSLATION.md
+share/bareos-webui/init_autoloader.php
+share/bareos-webui/install/apache/bareos-webui.conf
+share/bareos-webui/install/bareos/bareos-dir.d/console/admin.conf.example
+share/bareos-webui/install/bareos/bareos-dir.d/profile/webui-admin.conf
+share/bareos-webui/install/bareos/bareos-dir.d/profile/webui-limited.conf.example
+share/bareos-webui/install/bareos/bareos-dir.d/profile/webui-readonly.conf
+share/bareos-webui/install/configuration.ini.in
+share/bareos-webui/install/directors.ini.in
+share/bareos-webui/install/nginx/bareos-webui.conf
+share/bareos-webui/module/Application/Module.php
+share/bareos-webui/module/Application/autoload_classmap.php
+share/bareos-webui/module/Application/config/commands.csv
+share/bareos-webui/module/Application/config/module.commands.php
+share/bareos-webui/module/Application/config/module.config.php
+share/bareos-webui/module/Application/language/cn_CN.mo
+share/bareos-webui/module/Application/language/cn_CN.po
+share/bareos-webui/module/Application/language/cs_CZ.mo
+share/bareos-webui/module/Application/language/cs_CZ.po
+share/bareos-webui/module/Application/language/de_DE.mo
+share/bareos-webui/module/Application/language/de_DE.po
+share/bareos-webui/module/Application/language/en_EN.mo
+share/bareos-webui/module/Application/language/en_EN.po
+share/bareos-webui/module/Application/language/es_ES.mo
+share/bareos-webui/module/Application/language/es_ES.po
+share/bareos-webui/module/Application/language/fr_FR.mo
+share/bareos-webui/module/Application/language/fr_FR.po
+share/bareos-webui/module/Application/language/hu_HU.mo
+share/bareos-webui/module/Application/language/hu_HU.po
+share/bareos-webui/module/Application/language/it_IT.mo
+share/bareos-webui/module/Application/language/it_IT.po
+share/bareos-webui/module/Application/language/nl_BE.mo
+share/bareos-webui/module/Application/language/nl_BE.po
+share/bareos-webui/module/Application/language/pl_PL.mo
+share/bareos-webui/module/Application/language/pl_PL.po
+share/bareos-webui/module/Application/language/pt_BR.mo
+share/bareos-webui/module/Application/language/pt_BR.po
+share/bareos-webui/module/Application/language/ru_RU.mo
+share/bareos-webui/module/Application/language/ru_RU.po
+share/bareos-webui/module/Application/language/sk_SK.mo
+share/bareos-webui/module/Application/language/sk_SK.po
+share/bareos-webui/module/Application/language/tr_TR.mo
+share/bareos-webui/module/Application/language/tr_TR.po
+share/bareos-webui/module/Application/language/webui.pot
+share/bareos-webui/module/Application/src/Application/Controller/IndexController.php
+share/bareos-webui/module/Application/src/Application/Controller/Plugin/CommandACLPlugin.php
+share/bareos-webui/module/Application/src/Application/Controller/Plugin/RequestURIPlugin.php
+share/bareos-webui/module/Application/src/Application/Controller/Plugin/SessionTimeoutPlugin.php
+share/bareos-webui/module/Application/src/Application/View/Helper/ACLAlert.php
+share/bareos-webui/module/Application/src/Application/View/Helper/Example.php
+share/bareos-webui/module/Application/src/Application/View/Helper/UpdateAlert.php
+share/bareos-webui/module/Application/view/application/index/index.phtml
+share/bareos-webui/module/Application/view/error/404.phtml
+share/bareos-webui/module/Application/view/error/index.phtml
+share/bareos-webui/module/Application/view/layout/error.phtml
+share/bareos-webui/module/Application/view/layout/install.phtml
+share/bareos-webui/module/Application/view/layout/json.phtml
+share/bareos-webui/module/Application/view/layout/layout.phtml.in
+share/bareos-webui/module/Application/view/layout/login.phtml.in
+share/bareos-webui/module/Application/view/partial/breadcrumb.phtml
+share/bareos-webui/module/Application/view/partial/paginator.phtml
+share/bareos-webui/module/Auth/Module.php
+share/bareos-webui/module/Auth/autoload_classmap.php
+share/bareos-webui/module/Auth/config/module.config.php
+share/bareos-webui/module/Auth/src/Auth/Controller/AuthController.php
+share/bareos-webui/module/Auth/src/Auth/Form/LoginForm.php
+share/bareos-webui/module/Auth/src/Auth/Model/Auth.php
+share/bareos-webui/module/Auth/view/auth/auth/index.phtml
+share/bareos-webui/module/Auth/view/auth/auth/login.phtml
+share/bareos-webui/module/Auth/view/auth/auth/logout.phtml
+share/bareos-webui/module/Client/Module.php
+share/bareos-webui/module/Client/autoload_classmap.php
+share/bareos-webui/module/Client/config/module.config.php
+share/bareos-webui/module/Client/src/Client/Controller/ClientController.php
+share/bareos-webui/module/Client/src/Client/Model/Client.php
+share/bareos-webui/module/Client/src/Client/Model/ClientModel.php
+share/bareos-webui/module/Client/view/client/client/details.phtml
+share/bareos-webui/module/Client/view/client/client/index.phtml
+share/bareos-webui/module/Client/view/client/client/status.phtml
+share/bareos-webui/module/Console/Module.php
+share/bareos-webui/module/Console/autoload_classmap.php
+share/bareos-webui/module/Console/config/module.config.php
+share/bareos-webui/module/Console/src/Console/Controller/ConsoleController.php
+share/bareos-webui/module/Console/src/Console/Model/Console.php
+share/bareos-webui/module/Console/src/Console/Model/ConsoleModel.php
+share/bareos-webui/module/Console/view/console/console/index.phtml
+share/bareos-webui/module/Dashboard/Module.php
+share/bareos-webui/module/Dashboard/autoload_classmap.php
+share/bareos-webui/module/Dashboard/config/module.config.php
+share/bareos-webui/module/Dashboard/src/Dashboard/Controller/DashboardController.php
+share/bareos-webui/module/Dashboard/src/Dashboard/Model/Dashboard.php
+share/bareos-webui/module/Dashboard/src/Dashboard/Model/DashboardModel.php
+share/bareos-webui/module/Dashboard/view/dashboard/dashboard/index.phtml
+share/bareos-webui/module/Dashboard/view/partial/JobTotals.phtml
+share/bareos-webui/module/Dashboard/view/partial/JobsLastStatus.phtml
+share/bareos-webui/module/Dashboard/view/partial/JobsPast24h.phtml
+share/bareos-webui/module/Dashboard/view/partial/LastDirectorMessages.phtml
+share/bareos-webui/module/Dashboard/view/partial/RunningJobs.phtml
+share/bareos-webui/module/Director/Module.php
+share/bareos-webui/module/Director/autoload_classmap.php
+share/bareos-webui/module/Director/config/module.config.php
+share/bareos-webui/module/Director/src/Director/Controller/DirectorController.php
+share/bareos-webui/module/Director/src/Director/Model/Director.php
+share/bareos-webui/module/Director/src/Director/Model/DirectorModel.php
+share/bareos-webui/module/Director/view/director/director/index.phtml
+share/bareos-webui/module/Director/view/director/director/messages.phtml
+share/bareos-webui/module/Fileset/Module.php
+share/bareos-webui/module/Fileset/autoload_classmap.php
+share/bareos-webui/module/Fileset/config/module.config.php
+share/bareos-webui/module/Fileset/src/Fileset/Controller/FilesetController.php
+share/bareos-webui/module/Fileset/src/Fileset/Model/Fileset.php
+share/bareos-webui/module/Fileset/src/Fileset/Model/FilesetModel.php
+share/bareos-webui/module/Fileset/view/fileset/fileset/details.phtml
+share/bareos-webui/module/Fileset/view/fileset/fileset/index.phtml
+share/bareos-webui/module/Job/Module.php
+share/bareos-webui/module/Job/autoload_classmap.php
+share/bareos-webui/module/Job/config/module.config.php
+share/bareos-webui/module/Job/src/Job/Controller/JobController.php
+share/bareos-webui/module/Job/src/Job/Form/JobForm.php
+share/bareos-webui/module/Job/src/Job/Form/RunJobForm.php
+share/bareos-webui/module/Job/src/Job/Model/Job.php
+share/bareos-webui/module/Job/src/Job/Model/JobModel.php
+share/bareos-webui/module/Job/view/job/job/actions.phtml
+share/bareos-webui/module/Job/view/job/job/cancel.phtml
+share/bareos-webui/module/Job/view/job/job/details.phtml
+share/bareos-webui/module/Job/view/job/job/index.phtml
+share/bareos-webui/module/Job/view/job/job/run.phtml
+share/bareos-webui/module/Media/Module.php
+share/bareos-webui/module/Media/autoload_classmap.php
+share/bareos-webui/module/Media/config/module.config.php
+share/bareos-webui/module/Media/src/Media/Controller/MediaController.php
+share/bareos-webui/module/Media/src/Media/Model/Media.php
+share/bareos-webui/module/Media/src/Media/Model/MediaModel.php
+share/bareos-webui/module/Media/view/media/media/details.phtml
+share/bareos-webui/module/Media/view/media/media/index.phtml
+share/bareos-webui/module/Pool/Module.php
+share/bareos-webui/module/Pool/autoload_classmap.php
+share/bareos-webui/module/Pool/config/module.config.php
+share/bareos-webui/module/Pool/src/Pool/Controller/PoolController.php
+share/bareos-webui/module/Pool/src/Pool/Model/Pool.php
+share/bareos-webui/module/Pool/src/Pool/Model/PoolModel.php
+share/bareos-webui/module/Pool/view/pool/pool/details.phtml
+share/bareos-webui/module/Pool/view/pool/pool/index.phtml
+share/bareos-webui/module/Restore/Module.php
+share/bareos-webui/module/Restore/autoload_classmap.php
+share/bareos-webui/module/Restore/config/module.config.php
+share/bareos-webui/module/Restore/src/Restore/Controller/RestoreController.php
+share/bareos-webui/module/Restore/src/Restore/Form/RestoreForm.php
+share/bareos-webui/module/Restore/src/Restore/Model/Restore.php
+share/bareos-webui/module/Restore/src/Restore/Model/RestoreModel.php
+share/bareos-webui/module/Restore/view/restore/restore/filebrowser.phtml
+share/bareos-webui/module/Restore/view/restore/restore/index.phtml
+share/bareos-webui/module/Restore/view/restore/restore/versions.phtml
+share/bareos-webui/module/Schedule/Module.php
+share/bareos-webui/module/Schedule/autoload_classmap.php
+share/bareos-webui/module/Schedule/config/module.config.php
+share/bareos-webui/module/Schedule/src/Schedule/Controller/ScheduleController.php
+share/bareos-webui/module/Schedule/src/Schedule/Model/Schedule.php
+share/bareos-webui/module/Schedule/src/Schedule/Model/ScheduleModel.php
+share/bareos-webui/module/Schedule/view/schedule/schedule/details.phtml
+share/bareos-webui/module/Schedule/view/schedule/schedule/index.phtml
+share/bareos-webui/module/Schedule/view/schedule/schedule/overview.phtml
+share/bareos-webui/module/Schedule/view/schedule/schedule/status.phtml
+share/bareos-webui/module/Storage/Module.php
+share/bareos-webui/module/Storage/autoload_classmap.php
+share/bareos-webui/module/Storage/config/module.config.php
+share/bareos-webui/module/Storage/src/Storage/Controller/StorageController.php
+share/bareos-webui/module/Storage/src/Storage/Form/StorageForm.php
+share/bareos-webui/module/Storage/src/Storage/Model/Storage.php
+share/bareos-webui/module/Storage/src/Storage/Model/StorageModel.php
+share/bareos-webui/module/Storage/view/storage/storage/details.phtml
+share/bareos-webui/module/Storage/view/storage/storage/index.phtml
+share/bareos-webui/module/Storage/view/storage/storage/status.phtml
+share/bareos-webui/packaging/obs/bareos-webui.dsc
+share/bareos-webui/packaging/obs/bareos-webui.spec
+share/bareos-webui/packaging/obs/debian.debtransform
+share/bareos-webui/phpunit.xml
+share/bareos-webui/public/css/32px.png
+share/bareos-webui/public/css/40px.png
+share/bareos-webui/public/css/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf
+share/bareos-webui/public/css/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff
+share/bareos-webui/public/css/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2
+share/bareos-webui/public/css/bootstrap-datetimepicker.css
+share/bareos-webui/public/css/bootstrap-datetimepicker.min.css
+share/bareos-webui/public/css/bootstrap-select.css
+share/bareos-webui/public/css/bootstrap-select.css.map
+share/bareos-webui/public/css/bootstrap-select.min.css
+share/bareos-webui/public/css/bootstrap-table.css
+share/bareos-webui/public/css/bootstrap-table.min.css
+share/bareos-webui/public/css/bootstrap-theme.css
+share/bareos-webui/public/css/bootstrap-theme.css.map
+share/bareos-webui/public/css/bootstrap-theme.min.css
+share/bareos-webui/public/css/bootstrap.css
+share/bareos-webui/public/css/bootstrap.css.map
+share/bareos-webui/public/css/bootstrap.min.css
+share/bareos-webui/public/css/jstree.css
+share/bareos-webui/public/css/jstree.min.css
+share/bareos-webui/public/css/spinner.gif
+share/bareos-webui/public/css/style.css
+share/bareos-webui/public/css/throbber.gif
+share/bareos-webui/public/fonts/glyphicons-halflings-regular.eot
+share/bareos-webui/public/fonts/glyphicons-halflings-regular.svg
+share/bareos-webui/public/fonts/glyphicons-halflings-regular.ttf
+share/bareos-webui/public/fonts/glyphicons-halflings-regular.woff
+share/bareos-webui/public/fonts/glyphicons-halflings-regular.woff2
+share/bareos-webui/public/img/bareos-logo-small.png
+share/bareos-webui/public/img/bareos-logo.png
+share/bareos-webui/public/img/bareos.png
+share/bareos-webui/public/img/favicon.ico
+share/bareos-webui/public/img/icons/os/centos.png
+share/bareos-webui/public/img/icons/os/debian.png
+share/bareos-webui/public/img/icons/os/fedora.png
+share/bareos-webui/public/img/icons/os/freebsd.png
+share/bareos-webui/public/img/icons/os/macos.png
+share/bareos-webui/public/img/icons/os/redhat.png
+share/bareos-webui/public/img/icons/os/sunsolaris.png
+share/bareos-webui/public/img/icons/os/suse.png
+share/bareos-webui/public/img/icons/os/ubuntu.png
+share/bareos-webui/public/img/icons/os/univention.png
+share/bareos-webui/public/img/icons/os/windows.png
+share/bareos-webui/public/index.php
+share/bareos-webui/public/js/bootstrap-datetimepicker.min.js
+share/bareos-webui/public/js/bootstrap-select.js
+share/bareos-webui/public/js/bootstrap-select.js.map
+share/bareos-webui/public/js/bootstrap-select.min.js
+share/bareos-webui/public/js/bootstrap-table-cookie.js
+share/bareos-webui/public/js/bootstrap-table-cookie.min.js
+share/bareos-webui/public/js/bootstrap-table-locale-all.js
+share/bareos-webui/public/js/bootstrap-table-locale-all.min.js
+share/bareos-webui/public/js/bootstrap-table.js
+share/bareos-webui/public/js/bootstrap-table.min.js
+share/bareos-webui/public/js/bootstrap.js
+share/bareos-webui/public/js/bootstrap.min.js
+share/bareos-webui/public/js/custom-functions.js
+share/bareos-webui/public/js/excanvas.js
+share/bareos-webui/public/js/excanvas.min.js
+share/bareos-webui/public/js/html5shiv.js
+share/bareos-webui/public/js/i_core.js
+share/bareos-webui/public/js/i_core.min.js
+share/bareos-webui/public/js/i_gettext.js
+share/bareos-webui/public/js/i_gettext.min.js
+share/bareos-webui/public/js/jquery.cookie.js
+share/bareos-webui/public/js/jquery.jqplot.js
+share/bareos-webui/public/js/jquery.jqplot.min.js
+share/bareos-webui/public/js/jquery.js
+share/bareos-webui/public/js/jquery.min.js
+share/bareos-webui/public/js/jquery.min.map
+share/bareos-webui/public/js/jstree.js
+share/bareos-webui/public/js/jstree.min.js
+share/bareos-webui/public/js/jstreegrid.js
+share/bareos-webui/public/js/moment-timezone-with-data.js
+share/bareos-webui/public/js/moment-timezone-with-data.min.js
+share/bareos-webui/public/js/moment-with-locales.js
+share/bareos-webui/public/js/moment-with-locales.min.js
+share/bareos-webui/public/js/moment.js
+share/bareos-webui/public/js/moment.min.js
+share/bareos-webui/public/js/partials/i_core.min.js.map
+share/bareos-webui/public/js/partials/i_gettext.min.js.map
+share/bareos-webui/public/js/respond.min.js
+share/bareos-webui/public/js/responsive.bootstrap.js
+share/bareos-webui/public/js/responsive.bootstrap.min.js
+share/bareos-webui/scripts/localization_update.sh
+share/bareos-webui/tests/phpunit/Bootstrap.php
+share/bareos-webui/tests/regress/webui-bsock-connection-test-tls.in
+share/bareos-webui/tests/regress/webui-bsock-connection-test-tls.php.in
+share/bareos-webui/tests/regress/webui-bsock-connection-test.in
+share/bareos-webui/tests/regress/webui-bsock-connection-test.php
+share/bareos-webui/tests/selenium/README.md
+share/bareos-webui/tests/selenium/webui-selenium-test.py
+share/bareos-webui/vendor/Bareos/library/Bareos/BSock/BareosBSock.php
+share/bareos-webui/vendor/Bareos/library/Bareos/BSock/BareosBSockAbstractServiceFactory.php
+share/bareos-webui/vendor/Bareos/library/Bareos/BSock/BareosBSockInterface.php
+share/bareos-webui/vendor/Bareos/library/Bareos/BSock/BareosBSockServiceFactory.php
+share/bareos-webui/vendor/Bareos/library/Bareos/BSock/BareosBase64.php
+share/bareos-webui/vendor/README.md
+share/bareos-webui/vendor/autoload.php
+share/bareos-webui/vendor/composer/ClassLoader.php
+share/bareos-webui/vendor/composer/LICENSE
+share/bareos-webui/vendor/composer/autoload_classmap.php
+share/bareos-webui/vendor/composer/autoload_namespaces.php
+share/bareos-webui/vendor/composer/autoload_psr4.php
+share/bareos-webui/vendor/composer/autoload_real.php
+share/bareos-webui/vendor/composer/autoload_static.php
+share/bareos-webui/vendor/composer/installed.json
+share/bareos-webui/vendor/zendframework/zend-cache/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-cache/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-cache/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-cache/README.md
+share/bareos-webui/vendor/zendframework/zend-cache/composer.json
+share/bareos-webui/vendor/zendframework/zend-cache/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-cache/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/LogicException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/MissingDependencyException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/MissingKeyException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/OutOfSpaceException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/UnexpectedValueException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Exception/UnsupportedMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/AbstractPattern.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/CallbackCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/CaptureCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/ClassCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/ObjectCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/OutputCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/PatternInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Pattern/PatternOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/PatternFactory.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/PatternPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Service/StorageCacheAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Service/StorageCacheFactory.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/AbstractAdapter.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/AbstractZendServer.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/AdapterOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Apc.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/ApcIterator.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/ApcOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/BlackHole.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Dba.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/DbaIterator.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/DbaOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Filesystem.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/FilesystemIterator.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/FilesystemOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/KeyListIterator.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Memcache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MemcacheOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MemcacheResourceManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Memcached.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MemcachedOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MemcachedResourceManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Memory.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MemoryOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MongoDb.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MongoDbOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/MongoDbResourceManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Redis.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/RedisOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/RedisResourceManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/Session.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/SessionOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/WinCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/WinCacheOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/XCache.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/XCacheOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/ZendServerDisk.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Adapter/ZendServerShm.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/AdapterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/AvailableSpaceCapableInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Capabilities.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/ClearByNamespaceInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/ClearByPrefixInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/ClearExpiredInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Event.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/ExceptionEvent.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/FlushableInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/IterableInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/IteratorInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/OptimizableInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/AbstractPlugin.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/ClearExpiredByFactor.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/ExceptionHandler.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/IgnoreUserAbort.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/OptimizeByFactor.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/PluginInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/PluginOptions.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/Plugin/Serializer.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/PluginManager.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/PostEvent.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/StorageInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/TaggableInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/Storage/TotalSpaceCapableInterface.php
+share/bareos-webui/vendor/zendframework/zend-cache/src/StorageFactory.php
+share/bareos-webui/vendor/zendframework/zend-config/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-config/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-config/README.md
+share/bareos-webui/vendor/zendframework/zend-config/composer.json
+share/bareos-webui/vendor/zendframework/zend-config/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-config/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-config/src/AbstractConfigFactory.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Config.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Factory.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Processor/Constant.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Processor/Filter.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Processor/ProcessorInterface.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Processor/Queue.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Processor/Token.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Processor/Translator.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Reader/Ini.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Reader/JavaProperties.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Reader/Json.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Reader/ReaderInterface.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Reader/Xml.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Reader/Yaml.php
+share/bareos-webui/vendor/zendframework/zend-config/src/ReaderPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/AbstractWriter.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/Ini.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/Json.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/PhpArray.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/WriterInterface.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/Xml.php
+share/bareos-webui/vendor/zendframework/zend-config/src/Writer/Yaml.php
+share/bareos-webui/vendor/zendframework/zend-config/src/WriterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-console/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-console/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-console/README.md
+share/bareos-webui/vendor/zendframework/zend-console/composer.json
+share/bareos-webui/vendor/zendframework/zend-console/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-console/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-console/src/Adapter/AbstractAdapter.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Adapter/AdapterInterface.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Adapter/Posix.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Adapter/Virtual.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Adapter/Windows.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Adapter/WindowsAnsicon.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Charset/Ascii.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Charset/AsciiExtended.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Charset/CharsetInterface.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Charset/DECSG.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Charset/Utf8.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Charset/Utf8Heavy.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Color/Xterm256.php
+share/bareos-webui/vendor/zendframework/zend-console/src/ColorInterface.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Console.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Getopt.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/AbstractPrompt.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Char.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Checkbox.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Confirm.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Line.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Number.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Password.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/PromptInterface.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Prompt/Select.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Request.php
+share/bareos-webui/vendor/zendframework/zend-console/src/Response.php
+share/bareos-webui/vendor/zendframework/zend-console/src/RouteMatcher/DefaultRouteMatcher.php
+share/bareos-webui/vendor/zendframework/zend-console/src/RouteMatcher/RouteMatcherInterface.php
+share/bareos-webui/vendor/zendframework/zend-escaper/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-escaper/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-escaper/README.md
+share/bareos-webui/vendor/zendframework/zend-escaper/composer.json
+share/bareos-webui/vendor/zendframework/zend-escaper/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-escaper/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-escaper/src/Escaper.php
+share/bareos-webui/vendor/zendframework/zend-escaper/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-escaper/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-escaper/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-eventmanager/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-eventmanager/README.md
+share/bareos-webui/vendor/zendframework/zend-eventmanager/composer.json
+share/bareos-webui/vendor/zendframework/zend-eventmanager/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-eventmanager/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/AbstractListenerAggregate.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Event.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/EventInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/EventManager.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/EventManagerAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/EventManagerAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/EventManagerInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/EventsCapableInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Exception/InvalidCallbackException.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Filter/FilterInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/Filter/FilterIterator.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/FilterChain.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/GlobalEventManager.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/ListenerAggregateInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/ListenerAggregateTrait.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/ProvidesEvents.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/ResponseCollection.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/SharedEventAggregateAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/SharedEventManager.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/SharedEventManagerAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/SharedEventManagerInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/SharedListenerAggregateInterface.php
+share/bareos-webui/vendor/zendframework/zend-eventmanager/src/StaticEventManager.php
+share/bareos-webui/vendor/zendframework/zend-filter/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-filter/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-filter/README.md
+share/bareos-webui/vendor/zendframework/zend-filter/composer.json
+share/bareos-webui/vendor/zendframework/zend-filter/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-filter/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-filter/src/AbstractDateDropdown.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/AbstractFilter.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/AbstractUnicode.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/BaseName.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Blacklist.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Boolean.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Callback.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/AbstractCompressionAlgorithm.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Bz2.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/CompressionAlgorithmInterface.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Gz.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Lzf.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Rar.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Snappy.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Tar.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Compress/Zip.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/DataUnitFormatter.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/DateSelect.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/DateTimeFormatter.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/DateTimeSelect.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Decompress.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Decrypt.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Digits.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Dir.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Encrypt.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Encrypt/BlockCipher.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Encrypt/EncryptionAlgorithmInterface.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Encrypt/Openssl.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/File/Decrypt.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/File/Encrypt.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/File/LowerCase.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/File/Rename.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/File/RenameUpload.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/File/UpperCase.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/FilterChain.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/FilterInterface.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/FilterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/HtmlEntities.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Inflector.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Int.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/MonthSelect.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Null.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/PregReplace.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/RealPath.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/StaticFilter.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/StringToLower.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/StringToUpper.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/StringTrim.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/StripNewlines.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/StripTags.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/ToInt.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/ToNull.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/UpperCaseWords.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/UriNormalize.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Whitelist.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/AbstractSeparator.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/CamelCaseToDash.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/CamelCaseToSeparator.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/CamelCaseToUnderscore.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/DashToCamelCase.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/DashToSeparator.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/DashToUnderscore.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/SeparatorToCamelCase.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/SeparatorToDash.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/SeparatorToSeparator.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/Service/SeparatorToSeparatorFactory.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/UnderscoreToCamelCase.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/UnderscoreToDash.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/UnderscoreToSeparator.php
+share/bareos-webui/vendor/zendframework/zend-filter/src/Word/UnderscoreToStudlyCase.php
+share/bareos-webui/vendor/zendframework/zend-form/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-form/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-form/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-form/README.md
+share/bareos-webui/vendor/zendframework/zend-form/composer.json
+share/bareos-webui/vendor/zendframework/zend-form/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-form/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/AbstractAnnotationsListener.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/AbstractArrayAnnotation.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/AbstractArrayOrStringAnnotation.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/AbstractStringAnnotation.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/AllowEmpty.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/AnnotationBuilder.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Attributes.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/ComposedObject.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/ContinueIfEmpty.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/ElementAnnotationsListener.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/ErrorMessage.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Exclude.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Filter.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Flags.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/FormAnnotationsListener.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Hydrator.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Input.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/InputFilter.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Instance.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Name.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Object.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Options.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Required.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Type.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/ValidationGroup.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Annotation/Validator.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Button.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Captcha.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Checkbox.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Collection.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Color.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Csrf.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Date.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/DateSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/DateTime.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/DateTimeLocal.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/DateTimeSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Email.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/File.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Hidden.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Image.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Month.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/MonthSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/MultiCheckbox.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Number.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Password.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Radio.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Range.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Select.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Submit.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Text.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Textarea.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Time.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Url.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Element/Week.php
+share/bareos-webui/vendor/zendframework/zend-form/src/ElementAttributeRemovalInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/ElementInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/ElementPrepareAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/InvalidElementException.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Exception/UnexpectedValueException.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Factory.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Fieldset.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FieldsetInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FieldsetPrepareAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/Form.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FormAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FormElementManager.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FormFactoryAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FormFactoryAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-form/src/FormInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/InputFilterProviderFieldset.php
+share/bareos-webui/vendor/zendframework/zend-form/src/LabelAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-form/src/LabelAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/AbstractHelper.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/Captcha/AbstractWord.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/Captcha/Dumb.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/Captcha/Figlet.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/Captcha/Image.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/Captcha/ReCaptcha.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/File/FormFileApcProgress.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/File/FormFileSessionProgress.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/File/FormFileUploadProgress.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/Form.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormButton.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormCaptcha.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormCheckbox.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormCollection.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormColor.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormDate.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormDateSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormDateTime.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormDateTimeLocal.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormDateTimeSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormElement.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormElementErrors.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormEmail.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormFile.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormHidden.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormImage.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormInput.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormLabel.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormMonth.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormMonthSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormMultiCheckbox.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormNumber.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormPassword.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormRadio.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormRange.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormReset.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormRow.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormSearch.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormSelect.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormSubmit.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormTel.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormText.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormTextarea.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormTime.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormUrl.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/Helper/FormWeek.php
+share/bareos-webui/vendor/zendframework/zend-form/src/View/HelperConfig.php
+share/bareos-webui/vendor/zendframework/zend-http/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-http/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-http/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-http/README.md
+share/bareos-webui/vendor/zendframework/zend-http/composer.json
+share/bareos-webui/vendor/zendframework/zend-http/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-http/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-http/src/AbstractMessage.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Curl.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Exception/InitializationException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Exception/OutOfRangeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Exception/TimeoutException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Proxy.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Socket.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/StreamInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Adapter/Test.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Exception/OutOfRangeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Client/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/ClientStatic.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Cookies.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Exception/OutOfRangeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AbstractAccept.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AbstractDate.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AbstractLocation.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Accept.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/AcceptFieldValuePart.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/CharsetFieldValuePart.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/EncodingFieldValuePart.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Accept/FieldValuePart/LanguageFieldValuePart.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AcceptCharset.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AcceptEncoding.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AcceptLanguage.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AcceptRanges.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Age.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Allow.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/AuthenticationInfo.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Authorization.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/CacheControl.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Connection.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentDisposition.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentEncoding.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentLanguage.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentLength.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentLocation.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentMD5.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentRange.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentSecurityPolicy.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentTransferEncoding.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ContentType.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Cookie.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Date.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Etag.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Expect.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Expires.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/From.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/GenericHeader.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/GenericMultiHeader.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/HeaderInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/HeaderValue.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Host.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/IfMatch.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/IfModifiedSince.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/IfNoneMatch.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/IfRange.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/IfUnmodifiedSince.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/KeepAlive.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/LastModified.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Location.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/MaxForwards.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/MultipleHeaderInterface.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Origin.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Pragma.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ProxyAuthenticate.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/ProxyAuthorization.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Range.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Referer.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Refresh.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/RetryAfter.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Server.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/SetCookie.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/TE.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Trailer.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/TransferEncoding.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Upgrade.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/UserAgent.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Vary.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Via.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/WWWAuthenticate.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Header/Warning.php
+share/bareos-webui/vendor/zendframework/zend-http/src/HeaderLoader.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Headers.php
+share/bareos-webui/vendor/zendframework/zend-http/src/PhpEnvironment/RemoteAddress.php
+share/bareos-webui/vendor/zendframework/zend-http/src/PhpEnvironment/Request.php
+share/bareos-webui/vendor/zendframework/zend-http/src/PhpEnvironment/Response.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Request.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Response.php
+share/bareos-webui/vendor/zendframework/zend-http/src/Response/Stream.php
+share/bareos-webui/vendor/zendframework/zend-i18n/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-i18n/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-i18n/README.md
+share/bareos-webui/vendor/zendframework/zend-i18n/composer.json
+share/bareos-webui/vendor/zendframework/zend-i18n/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-i18n/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/OutOfBoundsException.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/ParseException.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/RangeException.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Filter/AbstractLocale.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Filter/Alnum.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Filter/Alpha.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Filter/NumberFormat.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Filter/NumberParse.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/AbstractFileLoader.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/FileLoaderInterface.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/Gettext.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/Ini.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/PhpArray.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/PhpMemoryArray.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Loader/RemoteLoaderInterface.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/LoaderPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Plural/Parser.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Plural/Rule.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Plural/Symbol.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/TextDomain.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/Translator.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/TranslatorAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/TranslatorAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/TranslatorInterface.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Translator/TranslatorServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/Alnum.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/Alpha.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/DateTime.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/Float.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/Int.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/IsFloat.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/IsInt.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AX.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BB.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BJ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BQ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/BZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CV.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CX.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/CZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/DE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/DJ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/DK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/DM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/DO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/DZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/EC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/EE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/EG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/EH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ER.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ES.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ET.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/FI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/FJ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/FK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/FM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/FO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/FR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GB.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GP.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GQ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/GY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/HK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/HN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/HR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/HT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/HU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ID.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IQ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/IT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/JE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/JM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/JO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/JP.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KP.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/KZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LB.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LV.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/LY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ME.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ML.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MP.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MQ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MV.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MX.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/MZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NP.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/NZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/OM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/PY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/QA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SB.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SJ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ST.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SV.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SX.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/SZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TD.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TH.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TJ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TL.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TO.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TR.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TV.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/TZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/UA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/UG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/US.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/UY.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/UZ.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VC.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VG.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VI.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VN.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/VU.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/WF.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/WS.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/XK.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/YE.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/YT.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ZA.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ZM.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/ZW.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/Validator/PostCode.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/AbstractTranslatorHelper.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/CurrencyFormat.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/DateFormat.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/NumberFormat.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/Plural.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/Translate.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/Helper/TranslatePlural.php
+share/bareos-webui/vendor/zendframework/zend-i18n/src/View/HelperConfig.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-inputfilter/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-inputfilter/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-inputfilter/README.md
+share/bareos-webui/vendor/zendframework/zend-inputfilter/composer.json
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/ArrayInput.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/BaseInputFilter.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/CollectionInputFilter.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/EmptyContextInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/Factory.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/FileInput.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/Input.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilter.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilterAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilterAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilterAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilterInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputFilterProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/InputProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/ReplaceableInputInterface.php
+share/bareos-webui/vendor/zendframework/zend-inputfilter/src/UnknownInputsCapableInterface.php
+share/bareos-webui/vendor/zendframework/zend-json/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-json/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-json/README.md
+share/bareos-webui/vendor/zendframework/zend-json/composer.json
+share/bareos-webui/vendor/zendframework/zend-json/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-json/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-json/src/Decoder.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Encoder.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Exception/RecursionException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Expr.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Json.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Cache.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Client.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Error.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Exception/ErrorException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Exception/HttpException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Request.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Request/Http.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Response.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Response/Http.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Server.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Smd.php
+share/bareos-webui/vendor/zendframework/zend-json/src/Server/Smd/Service.php
+share/bareos-webui/vendor/zendframework/zend-loader/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-loader/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-loader/README.md
+share/bareos-webui/vendor/zendframework/zend-loader/composer.json
+share/bareos-webui/vendor/zendframework/zend-loader/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-loader/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-loader/src/AutoloaderFactory.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/ClassMapAutoloader.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/InvalidPathException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/MissingResourceNamespaceException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/PluginLoaderException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/Exception/SecurityException.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/ModuleAutoloader.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/PluginClassLoader.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/PluginClassLocator.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/ShortNameLocator.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/SplAutoloader.php
+share/bareos-webui/vendor/zendframework/zend-loader/src/StandardAutoloader.php
+share/bareos-webui/vendor/zendframework/zend-log/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-log/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-log/README.md
+share/bareos-webui/vendor/zendframework/zend-log/composer.json
+share/bareos-webui/vendor/zendframework/zend-log/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-log/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-log/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/FilterInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/Mock.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/Priority.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/Regex.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/Sample.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/SuppressFilter.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/Timestamp.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Filter/Validator.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/Base.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/ChromePhp.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/Db.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/ErrorHandler.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/ExceptionHandler.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/FirePhp.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/FormatterInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/Simple.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Formatter/Xml.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Logger.php
+share/bareos-webui/vendor/zendframework/zend-log/src/LoggerAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-log/src/LoggerAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/LoggerAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-log/src/LoggerInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/LoggerServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Processor/Backtrace.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Processor/ProcessorInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Processor/ReferenceId.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Processor/RequestId.php
+share/bareos-webui/vendor/zendframework/zend-log/src/ProcessorPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/AbstractWriter.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/ChromePhp.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/ChromePhp/ChromePhpBridge.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/ChromePhp/ChromePhpInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Db.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/FilterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/FingersCrossed.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/FirePhp.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/FirePhp/FirePhpBridge.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/FirePhp/FirePhpInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/FormatterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Mail.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Mock.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/MongoDB.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Noop.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Null.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Stream.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/Syslog.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/WriterInterface.php
+share/bareos-webui/vendor/zendframework/zend-log/src/Writer/ZendMonitor.php
+share/bareos-webui/vendor/zendframework/zend-log/src/WriterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-math/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-math/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-math/README.md
+share/bareos-webui/vendor/zendframework/zend-math/composer.json
+share/bareos-webui/vendor/zendframework/zend-math/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-math/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Adapter/AdapterInterface.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Adapter/Bcmath.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Adapter/Gmp.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/AdapterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/BigInteger.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Exception/DivisionByZeroException.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-math/src/BigInteger/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-math/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-math/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-math/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-math/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-math/src/Rand.php
+share/bareos-webui/vendor/zendframework/zend-math/src/Source/HashTiming.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-modulemanager/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-modulemanager/README.md
+share/bareos-webui/vendor/zendframework/zend-modulemanager/composer.json
+share/bareos-webui/vendor/zendframework/zend-modulemanager/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-modulemanager/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Exception/MissingDependencyModuleException.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/AutoloaderProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/BootstrapListenerInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ConfigProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ConsoleBannerProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ConsoleUsageProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ControllerPluginProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ControllerProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/DependencyIndicatorInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/FilterProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/FormElementProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/HydratorProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/InitProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/InputFilterProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/LocatorRegisteredInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/LogProcessorProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/LogWriterProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/RouteProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/SerializerProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ServiceProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/TranslatorPluginProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ValidatorProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Feature/ViewHelperProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/AbstractListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/AutoloaderListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ConfigListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ConfigMergerInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/DefaultListenerAggregate.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/InitTrigger.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ListenerOptions.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/LocatorRegistrationListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ModuleDependencyCheckerListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ModuleLoaderListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ModuleResolverListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/OnBootstrapListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ServiceListener.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/Listener/ServiceListenerInterface.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/ModuleEvent.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/ModuleManager.php
+share/bareos-webui/vendor/zendframework/zend-modulemanager/src/ModuleManagerInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-mvc/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-mvc/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-mvc/README.md
+share/bareos-webui/vendor/zendframework/zend-mvc/composer.json
+share/bareos-webui/vendor/zendframework/zend-mvc/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-mvc/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Application.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ApplicationInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/AbstractActionController.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/AbstractConsoleController.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/AbstractController.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/AbstractRestfulController.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/ControllerManager.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/AbstractPlugin.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/AcceptableViewModelSelector.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/CreateConsoleNotFoundModel.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/CreateHttpNotFoundModel.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/FilePostRedirectGet.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/FlashMessenger.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Forward.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Identity.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Layout.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Params.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/PluginInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/PostRedirectGet.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Redirect.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Service/ForwardFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Service/IdentityFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/Plugin/Url.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Controller/PluginManager.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/DispatchListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/InvalidControllerException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/InvalidPluginException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/MissingLocatorException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/HttpMethodListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/I18n/DummyTranslator.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/I18n/Translator.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/InjectApplicationEventInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ModuleRouteListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/MvcEvent.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/AbstractResponseSender.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/ConsoleResponseSender.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/HttpResponseSender.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/PhpEnvironmentResponseSender.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/ResponseSenderInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/SendResponseEvent.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/ResponseSender/SimpleStreamResponseSender.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/RouteListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Console/Catchall.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Console/RouteInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Console/RouteMatch.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Console/Simple.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Console/SimpleRouteStack.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Chain.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Hostname.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Literal.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Method.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Part.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Query.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Regex.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/RouteInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/RouteMatch.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Scheme.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Segment.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/TranslatorAwareTreeRouteStack.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/TreeRouteStack.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/Http/Wildcard.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/PriorityList.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/RouteInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/RouteMatch.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/RoutePluginManager.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/RouteStackInterface.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Router/SimpleRouteStack.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/SendResponseListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/AbstractPluginManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ApplicationFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ConfigFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ConsoleAdapterFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ConsoleViewManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ControllerLoaderFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ControllerPluginManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/DiAbstractServiceFactoryFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/DiFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/DiServiceInitializerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/DiStrictAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/DiStrictAbstractServiceFactoryFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/EventManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/FilterManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/FormAnnotationBuilderFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/FormElementManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/HttpMethodListenerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/HttpViewManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/HydratorManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/InjectTemplateListenerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/InputFilterManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/LogProcessorManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/LogWriterManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ModuleManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/PaginatorPluginManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/RequestFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ResponseFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/RoutePluginManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/RouterFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/SerializerAdapterPluginManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ServiceListenerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ServiceManagerConfig.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/TranslatorPluginManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/TranslatorServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ValidatorManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewFeedStrategyFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewHelperManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewJsonStrategyFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewPrefixPathStackResolverFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewResolverFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewTemplateMapResolverFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/Service/ViewTemplatePathStackFactory.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/CreateViewModelListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/DefaultRenderingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/ExceptionStrategy.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/InjectNamedConsoleParamsListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/InjectViewModelListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/RouteNotFoundStrategy.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Console/ViewManager.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/CreateViewModelListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/DefaultRenderingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/ExceptionStrategy.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/InjectRoutematchParamsListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/InjectTemplateListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/InjectViewModelListener.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/RouteNotFoundStrategy.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/Http/ViewManager.php
+share/bareos-webui/vendor/zendframework/zend-mvc/src/View/SendResponseListener.php
+share/bareos-webui/vendor/zendframework/zend-navigation/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-navigation/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-navigation/README.md
+share/bareos-webui/vendor/zendframework/zend-navigation/composer.json
+share/bareos-webui/vendor/zendframework/zend-navigation/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-navigation/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-navigation/src/AbstractContainer.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Exception/OutOfBoundsException.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Navigation.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Page/AbstractPage.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Page/Mvc.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Page/Uri.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Service/AbstractNavigationFactory.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Service/ConstructedNavigationFactory.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Service/DefaultNavigationFactory.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/Service/NavigationAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-navigation/src/View/HelperConfig.php
+share/bareos-webui/vendor/zendframework/zend-serializer/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-serializer/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-serializer/README.md
+share/bareos-webui/vendor/zendframework/zend-serializer/composer.json
+share/bareos-webui/vendor/zendframework/zend-serializer/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-serializer/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/AbstractAdapter.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/AdapterInterface.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/AdapterOptions.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/IgBinary.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/Json.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/JsonOptions.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/MsgPack.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/PhpCode.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/PhpSerialize.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/PythonPickle.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/PythonPickleOptions.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/Wddx.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Adapter/WddxOptions.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/AdapterPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-serializer/src/Serializer.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-servicemanager/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-servicemanager/README.md
+share/bareos-webui/vendor/zendframework/zend-servicemanager/composer.json
+share/bareos-webui/vendor/zendframework/zend-servicemanager/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-servicemanager/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/AbstractFactoryInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Config.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/ConfigInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/DelegatorFactoryInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Di/DiAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Di/DiInstanceManagerProxy.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Di/DiServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Di/DiServiceInitializer.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/CircularDependencyFoundException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/CircularReferenceException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/InvalidServiceNameException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/ServiceLocatorUsageException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/ServiceNotCreatedException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Exception/ServiceNotFoundException.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/FactoryInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/InitializerInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/MutableCreationOptionsInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/MutableCreationOptionsTrait.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Proxy/LazyServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/Proxy/LazyServiceFactoryFactory.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/ServiceLocatorAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/ServiceLocatorAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/ServiceLocatorInterface.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/ServiceManager.php
+share/bareos-webui/vendor/zendframework/zend-servicemanager/src/ServiceManagerAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-session/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-session/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-session/README.md
+share/bareos-webui/vendor/zendframework/zend-session/composer.json
+share/bareos-webui/vendor/zendframework/zend-session/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-session/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-session/src/AbstractContainer.php
+share/bareos-webui/vendor/zendframework/zend-session/src/AbstractManager.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Config/ConfigInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Config/SessionConfig.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Config/StandardConfig.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Container.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-session/src/ManagerInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SaveHandler/Cache.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SaveHandler/DbTableGateway.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SaveHandler/DbTableGatewayOptions.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SaveHandler/MongoDB.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SaveHandler/MongoDBOptions.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SaveHandler/SaveHandlerInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Service/ContainerAbstractServiceFactory.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Service/SessionConfigFactory.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Service/SessionManagerFactory.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Service/StorageFactory.php
+share/bareos-webui/vendor/zendframework/zend-session/src/SessionManager.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/AbstractSessionArrayStorage.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/ArrayStorage.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/Factory.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/SessionArrayStorage.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/SessionStorage.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/StorageInitializationInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Storage/StorageInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Validator/HttpUserAgent.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Validator/RemoteAddr.php
+share/bareos-webui/vendor/zendframework/zend-session/src/Validator/ValidatorInterface.php
+share/bareos-webui/vendor/zendframework/zend-session/src/ValidatorChain.php
+share/bareos-webui/vendor/zendframework/zend-session/src/compatibility/autoload.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-stdlib/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-stdlib/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-stdlib/README.md
+share/bareos-webui/vendor/zendframework/zend-stdlib/composer.json
+share/bareos-webui/vendor/zendframework/zend-stdlib/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-stdlib/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/AbstractOptions.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArraySerializableInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArrayStack.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArrayUtils.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeRemoveKey.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKeyInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/CallbackHandler.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/DateTime.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/DispatchableInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ErrorHandler.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/InvalidCallbackException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/LogicException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Extractor/ExtractionInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Glob.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Guard/AllGuardsTrait.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Guard/ArrayOrTraversableGuardTrait.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Guard/EmptyGuardTrait.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Guard/GuardUtils.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Guard/NullGuardTrait.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/AbstractHydrator.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Aggregate/AggregateHydrator.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Aggregate/ExtractEvent.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Aggregate/HydrateEvent.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Aggregate/HydratorListener.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/ArraySerializable.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/ClassMethods.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/DelegatingHydrator.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/DelegatingHydratorFactory.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/FilterComposite.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/FilterInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/FilterProviderInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/GetFilter.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/HasFilter.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/IsFilter.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/MethodMatchFilter.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/NumberOfParameterFilter.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Filter/OptionalParametersFilter.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/FilterEnabledInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/HydrationInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/HydratorAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/HydratorAwareTrait.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/HydratorInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/HydratorOptionsInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/HydratorPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategy/ArrayMapNamingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategy/CompositeNamingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategy/IdentityNamingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategy/MapNamingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategy/NamingStrategyInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategy/UnderscoreNamingStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/NamingStrategyEnabledInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/ObjectProperty.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Reflection.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/BooleanStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/ClosureStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/DateTimeFormatterStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/DefaultStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/ExplodeStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/SerializableStrategy.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/StrategyChain.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/StrategyInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Hydrator/StrategyEnabledInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/InitializableInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/JsonSerializable.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/JsonSerializable/PhpLegacyCompatibility.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Message.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/MessageInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ParameterObjectInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Parameters.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ParametersInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/PriorityList.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/PriorityQueue.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Request.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/RequestInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/Response.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/ResponseInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/SplPriorityQueue.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/SplQueue.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/SplStack.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringUtils.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringWrapper/Iconv.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringWrapper/Intl.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringWrapper/MbString.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringWrapper/Native.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/StringWrapper/StringWrapperInterface.php
+share/bareos-webui/vendor/zendframework/zend-stdlib/src/compatibility/autoload.php
+share/bareos-webui/vendor/zendframework/zend-uri/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-uri/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-uri/README.md
+share/bareos-webui/vendor/zendframework/zend-uri/composer.json
+share/bareos-webui/vendor/zendframework/zend-uri/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-uri/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-uri/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/Exception/InvalidUriException.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/Exception/InvalidUriPartException.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/File.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/Http.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/Mailto.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/Uri.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/UriFactory.php
+share/bareos-webui/vendor/zendframework/zend-uri/src/UriInterface.php
+share/bareos-webui/vendor/zendframework/zend-validator/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-validator/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-validator/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-validator/README.md
+share/bareos-webui/vendor/zendframework/zend-validator/composer.json
+share/bareos-webui/vendor/zendframework/zend-validator/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-validator/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-validator/src/AbstractValidator.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/AbstractAdapter.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/AdapterInterface.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Codabar.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code128.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code25.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code25interleaved.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code39.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code39ext.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code93.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Code93ext.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean12.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean13.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean14.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean18.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean2.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean5.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Ean8.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Gtin12.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Gtin13.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Gtin14.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Identcode.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Intelligentmail.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Issn.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Itf14.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Leitcode.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Planet.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Postnet.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Royalmail.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Sscc.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Upca.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Barcode/Upce.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Between.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Bitwise.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Callback.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/CreditCard.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Csrf.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Date.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/DateStep.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Db/AbstractDb.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Db/NoRecordExists.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Db/RecordExists.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Digits.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/EmailAddress.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Exception/ExtensionNotLoadedException.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Exception/InvalidMagicMimeFileException.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Explode.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Count.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Crc32.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/ExcludeExtension.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/ExcludeMimeType.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Exists.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Extension.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/FilesSize.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Hash.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/ImageSize.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/IsCompressed.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/IsImage.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Md5.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/MimeType.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/NotExists.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Sha1.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Size.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/Upload.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/UploadFile.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/File/WordCount.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/GreaterThan.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Hex.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Hostname.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Hostname/Biz.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Hostname/Cn.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Hostname/Com.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Hostname/Jp.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Iban.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Identical.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/InArray.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Ip.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/IsInstanceOf.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Isbn.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/LessThan.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/NotEmpty.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Regex.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Sitemap/Changefreq.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Sitemap/Lastmod.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Sitemap/Loc.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Sitemap/Priority.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/StaticValidator.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Step.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/StringLength.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Timezone.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Translator/TranslatorInterface.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/Uri.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/ValidatorChain.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/ValidatorInterface.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/ValidatorPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-validator/src/ValidatorPluginManagerAwareInterface.php
+share/bareos-webui/vendor/zendframework/zend-version/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-version/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-version/README.md
+share/bareos-webui/vendor/zendframework/zend-version/composer.json
+share/bareos-webui/vendor/zendframework/zend-version/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-version/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-version/src/Version.php
+share/bareos-webui/vendor/zendframework/zend-view/CHANGELOG.md
+share/bareos-webui/vendor/zendframework/zend-view/CONTRIBUTING.md
+share/bareos-webui/vendor/zendframework/zend-view/LICENSE.txt
+share/bareos-webui/vendor/zendframework/zend-view/README.md
+share/bareos-webui/vendor/zendframework/zend-view/composer.json
+share/bareos-webui/vendor/zendframework/zend-view/phpunit.xml.dist
+share/bareos-webui/vendor/zendframework/zend-view/phpunit.xml.travis
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/BadMethodCallException.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/DomainException.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/ExceptionInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/InvalidArgumentException.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/InvalidHelperException.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/RuntimeException.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Exception/UnexpectedValueException.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/AbstractHelper.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/AbstractHtmlElement.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/BasePath.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Cycle.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/DeclareVars.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Doctype.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/EscapeCss.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/EscapeHtml.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/EscapeHtmlAttr.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/EscapeJs.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/EscapeUrl.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Escaper/AbstractHelper.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/FlashMessenger.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Gravatar.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HeadLink.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HeadMeta.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HeadScript.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HeadStyle.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HeadTitle.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HelperInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HtmlFlash.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HtmlList.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HtmlObject.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HtmlPage.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HtmlQuicktime.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/HtmlTag.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Identity.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/InlineScript.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Json.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Layout.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/AbstractHelper.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/Breadcrumbs.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/HelperInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/Links.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/Listener/AclListener.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/Menu.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/PluginManager.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Navigation/Sitemap.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/PaginationControl.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Partial.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/PartialLoop.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Placeholder.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Placeholder/Container.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Placeholder/Container/AbstractContainer.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Placeholder/Container/AbstractStandalone.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Placeholder/Registry.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/RenderChildModel.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/RenderToPlaceholder.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/ServerUrl.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Service/FlashMessengerFactory.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Service/IdentityFactory.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/Url.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Helper/ViewModel.php
+share/bareos-webui/vendor/zendframework/zend-view/src/HelperPluginManager.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/ClearableModelInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/ConsoleModel.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/FeedModel.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/JsonModel.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/ModelInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/RetrievableChildrenInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Model/ViewModel.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Renderer/ConsoleRenderer.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Renderer/FeedRenderer.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Renderer/JsonRenderer.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Renderer/PhpRenderer.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Renderer/RendererInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Renderer/TreeRendererInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Resolver/AggregateResolver.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Resolver/PrefixPathStackResolver.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Resolver/RelativeFallbackResolver.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Resolver/ResolverInterface.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Resolver/TemplateMapResolver.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Resolver/TemplatePathStack.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Strategy/FeedStrategy.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Strategy/JsonStrategy.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Strategy/PhpRendererStrategy.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Stream.php
+share/bareos-webui/vendor/zendframework/zend-view/src/Variables.php
+share/bareos-webui/vendor/zendframework/zend-view/src/View.php
+share/bareos-webui/vendor/zendframework/zend-view/src/ViewEvent.php
+share/bareos-webui/version.php.in
diff --git a/bareos-webui/TODO b/bareos-webui/TODO
new file mode 100644
index 0000000000..e74e59f731
--- /dev/null
+++ b/bareos-webui/TODO
@@ -0,0 +1,12 @@
+TODO
+====
+
+This package should provide the Web UI for Bareos. It is currently in 
+work and not yet finished. Parts of it were taken from the Nextcloud 
+package. 
+
+Open items:
+
+- handling of .in-files
+- handling of configuration files
+- testing
diff --git a/bareos-webui/distinfo b/bareos-webui/distinfo
new file mode 100644
index 0000000000..76d94f838b
--- /dev/null
+++ b/bareos-webui/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.32 2020/06/06 00:52:30 ryoon Exp $
+
+SHA1 (bareos-19.2.8.tar.gz) = b26f7db66e108eed1e20b11c36f994456419748e
+RMD160 (bareos-19.2.8.tar.gz) = 221777925946ab05ddc00063ba51daf4555f16d1
+SHA512 (bareos-19.2.8.tar.gz) = 60bbbbd949a63f978cf1ed7d0cfc22c22f117d8c2700eb47531e15b2d91fc700c522519f0b816cd1040283f09b4c81f36910c66c8b6f4bf1ff22180e979bdeb5
+Size (bareos-19.2.8.tar.gz) = 12604929 bytes


Home | Main Index | Thread Index | Old Index