[vhffs] Ideas about perl modules handling |
[ Thread Index |
Date Index
| More vhffs.org/vhffs Archives
]
Hi there,
I've finaly a Gentoo's ebuild running for installing VHFFS. I still have
some work to make it fully functional (more testin needed).
While working on this project, I've see some strange stuff, specificaly
perl path related.
Why not add a
use lib "/usr/share/vhffs/api";
at the start of perl file who need the vhffs libs ?
In fact, I relly dislike the idea to softlinking modules in perl's
system modules include.
Installed Perl modules are the only modules allowed to reside in default
@INC, and should only be installed by package system.
In fact, I've a patch that add a %%LIBDIR%% include attached to this
mail. Then you only need to update this subst string with this shell
command :
find PATH_OF_IMAGE -name "*.pl" -exec sed -i 's/%%LIBDIR%%/\/usr\/share
\/vhffs\/api\//' {} \;
find PATH_OF_IMAGE/usr/bin -name "vhffs-*" -exec sed -i 's/%%LIBDIR%
%/\/usr\/share\/vhffs\/api\//' {} \;
Also, pay attention that you have to install your api modules in
/usr/share/vhfss/api/Vhffs/*
because the way you call it (Vhffs::module)
Feel free to comment this suggestion, to keep distributions's package
mainteners happy :)
--Alexandre
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
ESVN_REPO_URI="svn://svn.tuxfamily.org/svnroot/vhffs4/vhffs/trunk/"
inherit eutils flag-o-matic subversion depend.apache
DESCRIPTION="OpenGroupware, the leading open source groupware server"
HOMEPAGE="http://www.vhffs.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
DEPEND="dev-lang/perl
apache2? ( ${APACHE2_DEPEND} )
dev-perl/HTML-Template
dev-perl/Locale-gettext
dev-perl/config-general
dev-perl/DBI
dev-perl/Email-Valid
dev-perl/Crypt-PasswdMD5
dev-perl/XML-RSS
dev-perl/GD
dev-perl/CGI-Session
dev-perl/LockFile-Simple
dev-perl/GDTextUtil
dev-perl/MIME-Lite
dev-perl/Time-modules
dev-perl/DBD-Pg"
pkg_setup() {
export QUOTA_T="${TMP}/quota_test.pl"
cat > "${QUOTA_T}" << EOF
if( eval "require Quota;" == 0 ) {
exit ( -1 ); \
};
EOF
eval perl ${QUOTA_T} || quota_ok="no"
if [ "${quota_ok}" == "no" ]; then
einfo 'Perl Quota module is missing. please use g-cpan to install it !'
die
fi
}
src_unpack() {
subversion_src_unpack
epatch ${FILESDIR}/vhffs-libdir.patch
}
src_compile() {
einfo "Compile ---"
gcc -Wall -pedantic -o tuxshell vhffs-shells/tuxshell.c || die
}
src_install() {
einfo "Prepare installation"
# shell
dobin tuxshell
# tools
dobin vhffs-tools/src/vhffs-*
# Documentation
dodoc AUTHORS Changelog COPYING README Releases.notes TODO
cd ${S}/vhffs-doc/
dodoc Architecture-fr CONVENTION-fr Files-fr HOWTO* INSTALL LICENSE README*
docinto api
dodoc api/*
mkdir -p ${D}/usr/share/doc/${PF}/
cp -r config ${D}/usr/share/doc/${PF}/
doman ${S}/vhffs-tools/mans/*.1
cd ${S}
# backend files
insinto /usr/share/vhffs/backend/pgsql
doins vhffs-backend/src/pgsql/*.sql
insinto /usr/share/vhffs/mails
doins -r vhffs-backend/mails/
# api
insinto /usr/share/vhffs/api/Vhffs
doins vhffs-api/src/Vhffs/*.pm
insinto /usr/share/vhffs/api/Vhffs/Listengine
doins vhffs-api/src/Vhffs/Listengine/*.pm
insinto /usr/share/vhffs/api/Vhffs/Misc
doins vhffs-api/src/Vhffs/Misc/*.pm
insinto /usr/share/vhffs/api/Vhffs/Panel
doins vhffs-api/src/Vhffs/Panel/*.pm
insinto /usr/share/vhffs/api/Vhffs/Robots
doins vhffs-api/src/Vhffs/Robots/*.pm
insinto /usr/share/vhffs/api/Vhffs/Services
doins vhffs-api/src/Vhffs/Services/*.pm
# bots
exeinto /usr/lib/vhffs/bots
doexe vhffs-robots/src/*.pl
insinto /usr/lib/vhffs/bots/misc
doins vhffs-robots/misc/*
# translations
insinto /usr/share/vhffs/intl/fr_FR/LC_MESSAGES
doins vhffs-intl/result/fr_FR/vhffs.mo
insinto /usr/share/vhffs/intl/es_ES/LC_MESSAGES
doins vhffs-intl/result/es_ES/vhffs.mo
# list engine
exeinto /usr/share/vhffs/listengine/archives
doexe vhffs-listengine/src/archives/*.pl
insinto /usr/share/vhffs/listengine/templates
doins vhffs-listengine/src/archives/templates/*.tmpl
insinto /usr/share/vhffs/listengine/misc
doins vhffs-listengine/misc/*
exeinto /usr/lib/vhffs/listengine
doexe vhffs-listengine/src/listengine.pl
dosym /usr/share/vhffs/panel/themes /usr/share/vhffs/listengine/archives/themes
# jabber
exeinto /usr/share/vhffs/jabber
doexe vhffs-jabber/*.pl
# templates
cd vhffs-panel/templates
for i in `find * -maxdepth 1 -type d ! -regex '\(.*/\.svn.*\)\|\(admin\)'`
do
dodir /usr/share/vhffs/templates/${i}
insinto /usr/share/vhffs/templates/${i}
doins $i/*.tmpl
done
cd ${S}
# pannel
exeinto /usr/share/vhffs/panel
insinto /usr/share/vhffs/panel
doins vhffs-panel/*.js
doins vhffs-panel/*.ico
doexe vhffs-panel/*.pl
cd vhffs-panel
for i in `find * -maxdepth 1 -type d ! -regex '\(.*/\.svn\)\|\(templates.*\)\|\(themes.*\)\|\(debian\)'`
do
dodir /usr/share/vhffs/panel/${i}
exeinto /usr/share/vhffs/panel/${i}
if [ $i = "help" ]; then
doexe $i/*.html
else
doexe $i/*.pl
fi
done
insinto /usr/share/vhffs/panel/themes/vhffs
doins themes/vhffs/*.css
insinto /usr/share/vhffs/panel/themes/vhffs/images
doins themes/vhffs/images/*.png
cd ${S}
# configuration file
insinto /etc/vhffs/
doins vhffs-backend/conf/vhffs.conf
# now process all perl file to define correct libdir path
find ${D} -name "*.pl" -exec sed -i 's/%%LIBDIR%%/\/usr\/share\/vhffs\/api\//' {} \;
find ${D}/usr/bin -name "vhffs-*" -exec sed -i 's/%%LIBDIR%%/\/usr\/share\/vhffs\/api\//' {} \;
}
pkg_postinst() {
einfo "vhffs is now installed on your computer !"
einfo "In order to have the limited tuxshell ready to use"
einfo "you should add this shell to authorized shell :"
einfo "echo \"/usr/bin/tuxshell\" >> /etc/shells"
}
diff -ru vhffs-org/vhffs-api/src/examples/add_acl_dns.pl vhffs-alex/vhffs-api/src/examples/add_acl_dns.pl
--- vhffs-org/vhffs-api/src/examples/add_acl_dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/add_acl_dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/add_acl.pl vhffs-alex/vhffs-api/src/examples/add_acl.pl
--- vhffs-org/vhffs-api/src/examples/add_acl.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/add_acl.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_box.pl vhffs-alex/vhffs-api/src/examples/create_box.pl
--- vhffs-org/vhffs-api/src/examples/create_box.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_box.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_cvs_panel.pl vhffs-alex/vhffs-api/src/examples/create_cvs_panel.pl
--- vhffs-org/vhffs-api/src/examples/create_cvs_panel.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_cvs_panel.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_cvs.pl vhffs-alex/vhffs-api/src/examples/create_cvs.pl
--- vhffs-org/vhffs-api/src/examples/create_cvs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_cvs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_dir.pl vhffs-alex/vhffs-api/src/examples/create_dir.pl
--- vhffs-org/vhffs-api/src/examples/create_dir.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_dir.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Functions;
print Vhffs::Functions::create_dir( "/data/prout/zozoo/pezojfzpje" );
diff -ru vhffs-org/vhffs-api/src/examples/create_dns.pl vhffs-alex/vhffs-api/src/examples/create_dns.pl
--- vhffs-org/vhffs-api/src/examples/create_dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_forward.pl vhffs-alex/vhffs-api/src/examples/create_forward.pl
--- vhffs-org/vhffs-api/src/examples/create_forward.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_forward.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_group_by_panel.pl vhffs-alex/vhffs-api/src/examples/create_group_by_panel.pl
--- vhffs-org/vhffs-api/src/examples/create_group_by_panel.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_group_by_panel.pl 2007-02-02 13:55:53.000000000 +0100
@@ -3,6 +3,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_group.pl vhffs-alex/vhffs-api/src/examples/create_group.pl
--- vhffs-org/vhffs-api/src/examples/create_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -3,6 +3,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_list.pl vhffs-alex/vhffs-api/src/examples/create_list.pl
--- vhffs-org/vhffs-api/src/examples/create_list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_list.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_mail.pl vhffs-alex/vhffs-api/src/examples/create_mail.pl
--- vhffs-org/vhffs-api/src/examples/create_mail.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_mail.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_mysql_panel.pl vhffs-alex/vhffs-api/src/examples/create_mysql_panel.pl
--- vhffs-org/vhffs-api/src/examples/create_mysql_panel.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_mysql_panel.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_mysql.pl vhffs-alex/vhffs-api/src/examples/create_mysql.pl
--- vhffs-org/vhffs-api/src/examples/create_mysql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_mysql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_panel_mail.pl vhffs-alex/vhffs-api/src/examples/create_panel_mail.pl
--- vhffs-org/vhffs-api/src/examples/create_panel_mail.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_panel_mail.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_postgres.pl vhffs-alex/vhffs-api/src/examples/create_postgres.pl
--- vhffs-org/vhffs-api/src/examples/create_postgres.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_postgres.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_repository.pl vhffs-alex/vhffs-api/src/examples/create_repository.pl
--- vhffs-org/vhffs-api/src/examples/create_repository.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_repository.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_user.pl vhffs-alex/vhffs-api/src/examples/create_user.pl
--- vhffs-org/vhffs-api/src/examples/create_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -3,6 +3,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_web_panel.pl vhffs-alex/vhffs-api/src/examples/create_web_panel.pl
--- vhffs-org/vhffs-api/src/examples/create_web_panel.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_web_panel.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/create_web.pl vhffs-alex/vhffs-api/src/examples/create_web.pl
--- vhffs-org/vhffs-api/src/examples/create_web.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/create_web.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/delbox.pl vhffs-alex/vhffs-api/src/examples/delbox.pl
--- vhffs-org/vhffs-api/src/examples/delbox.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/delbox.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/delete_acl.pl vhffs-alex/vhffs-api/src/examples/delete_acl.pl
--- vhffs-org/vhffs-api/src/examples/delete_acl.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/delete_acl.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/generate_password.pl vhffs-alex/vhffs-api/src/examples/generate_password.pl
--- vhffs-org/vhffs-api/src/examples/generate_password.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/generate_password.pl 2007-02-02 13:55:53.000000000 +0100
@@ -3,6 +3,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/get_list.pl vhffs-alex/vhffs-api/src/examples/get_list.pl
--- vhffs-org/vhffs-api/src/examples/get_list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/get_list.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/hashdomain.pl vhffs-alex/vhffs-api/src/examples/hashdomain.pl
--- vhffs-org/vhffs-api/src/examples/hashdomain.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/hashdomain.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Functions;
print Vhffs::Functions::hash_mxdomain("tuxfamily.org");
diff -ru vhffs-org/vhffs-api/src/examples/hashhome_example.pl vhffs-alex/vhffs-api/src/examples/hashhome_example.pl
--- vhffs-org/vhffs-api/src/examples/hashhome_example.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/hashhome_example.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Functions;
use Vhffs::Main;
use Data::Dumper;
diff -ru vhffs-org/vhffs-api/src/examples/hashpopuser.pl vhffs-alex/vhffs-api/src/examples/hashpopuser.pl
--- vhffs-org/vhffs-api/src/examples/hashpopuser.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/hashpopuser.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Functions;
print Vhffs::Functions::hash_popuser("soda");
diff -ru vhffs-org/vhffs-api/src/examples/hash_webdir.pl vhffs-alex/vhffs-api/src/examples/hash_webdir.pl
--- vhffs-org/vhffs-api/src/examples/hash_webdir.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/hash_webdir.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Functions;
print Vhffs::Functions::hash_webdir( "zozo.tata.com" );
diff -ru vhffs-org/vhffs-api/src/examples/join_group.pl vhffs-alex/vhffs-api/src/examples/join_group.pl
--- vhffs-org/vhffs-api/src/examples/join_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/join_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -3,6 +3,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/list_themes.pl vhffs-alex/vhffs-api/src/examples/list_themes.pl
--- vhffs-org/vhffs-api/src/examples/list_themes.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/list_themes.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Panel::Main;
use Vhffs::Main;
use Data::Dumper;
diff -ru vhffs-org/vhffs-api/src/examples/mailuser_add_box.pl vhffs-alex/vhffs-api/src/examples/mailuser_add_box.pl
--- vhffs-org/vhffs-api/src/examples/mailuser_add_box.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/mailuser_add_box.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/mailuser.pl vhffs-alex/vhffs-api/src/examples/mailuser.pl
--- vhffs-org/vhffs-api/src/examples/mailuser.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/mailuser.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/modify_acl.pl vhffs-alex/vhffs-api/src/examples/modify_acl.pl
--- vhffs-org/vhffs-api/src/examples/modify_acl.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/modify_acl.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/modify_user.pl vhffs-alex/vhffs-api/src/examples/modify_user.pl
--- vhffs-org/vhffs-api/src/examples/modify_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/modify_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -3,6 +3,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/perm_for_user.pl vhffs-alex/vhffs-api/src/examples/perm_for_user.pl
--- vhffs-org/vhffs-api/src/examples/perm_for_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/perm_for_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,6 +1,7 @@
#!/usr/bin/perl
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/print_domain.pl vhffs-alex/vhffs-api/src/examples/print_domain.pl
--- vhffs-org/vhffs-api/src/examples/print_domain.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/print_domain.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_acl_per_object.pl vhffs-alex/vhffs-api/src/examples/show_acl_per_object.pl
--- vhffs-org/vhffs-api/src/examples/show_acl_per_object.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_acl_per_object.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_dns_per_group.pl vhffs-alex/vhffs-api/src/examples/show_dns_per_group.pl
--- vhffs-org/vhffs-api/src/examples/show_dns_per_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_dns_per_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_dns_per_user.pl vhffs-alex/vhffs-api/src/examples/show_dns_per_user.pl
--- vhffs-org/vhffs-api/src/examples/show_dns_per_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_dns_per_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_dumper_cvs.pl vhffs-alex/vhffs-api/src/examples/show_dumper_cvs.pl
--- vhffs-org/vhffs-api/src/examples/show_dumper_cvs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_dumper_cvs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_dumper_group.pl vhffs-alex/vhffs-api/src/examples/show_dumper_group.pl
--- vhffs-org/vhffs-api/src/examples/show_dumper_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_dumper_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_dumper_object.pl vhffs-alex/vhffs-api/src/examples/show_dumper_object.pl
--- vhffs-org/vhffs-api/src/examples/show_dumper_object.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_dumper_object.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_dumper_user.pl vhffs-alex/vhffs-api/src/examples/show_dumper_user.pl
--- vhffs-org/vhffs-api/src/examples/show_dumper_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_dumper_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_groups_per_user.pl vhffs-alex/vhffs-api/src/examples/show_groups_per_user.pl
--- vhffs-org/vhffs-api/src/examples/show_groups_per_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_groups_per_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_last_users.pl vhffs-alex/vhffs-api/src/examples/show_last_users.pl
--- vhffs-org/vhffs-api/src/examples/show_last_users.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_last_users.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_mail_conf.pl vhffs-alex/vhffs-api/src/examples/show_mail_conf.pl
--- vhffs-org/vhffs-api/src/examples/show_mail_conf.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_mail_conf.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl -w -I/vhffs/vhffs-api/src/
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_mail_per_group.pl vhffs-alex/vhffs-api/src/examples/show_mail_per_group.pl
--- vhffs-org/vhffs-api/src/examples/show_mail_per_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_mail_per_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/show_members_from_list.pl vhffs-alex/vhffs-api/src/examples/show_members_from_list.pl
--- vhffs-org/vhffs-api/src/examples/show_members_from_list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/show_members_from_list.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/stats.pl vhffs-alex/vhffs-api/src/examples/stats.pl
--- vhffs-org/vhffs-api/src/examples/stats.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/stats.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Stats;
diff -ru vhffs-org/vhffs-api/src/examples/test2.pl vhffs-alex/vhffs-api/src/examples/test2.pl
--- vhffs-org/vhffs-api/src/examples/test2.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test2.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Constants;
my $lol="ACL_VIEW";
diff -ru vhffs-org/vhffs-api/src/examples/test_conf.pl vhffs-alex/vhffs-api/src/examples/test_conf.pl
--- vhffs-org/vhffs-api/src/examples/test_conf.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_conf.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/test_constants.pl vhffs-alex/vhffs-api/src/examples/test_constants.pl
--- vhffs-org/vhffs-api/src/examples/test_constants.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_constants.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Constants;
use strict;
print "constante :";
diff -ru vhffs-org/vhffs-api/src/examples/test_delete.pl vhffs-alex/vhffs-api/src/examples/test_delete.pl
--- vhffs-org/vhffs-api/src/examples/test_delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_delete.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/test_dns.pl vhffs-alex/vhffs-api/src/examples/test_dns.pl
--- vhffs-org/vhffs-api/src/examples/test_dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/test_fetch_info.pl vhffs-alex/vhffs-api/src/examples/test_fetch_info.pl
--- vhffs-org/vhffs-api/src/examples/test_fetch_info.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_fetch_info.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/test_httpd.pl vhffs-alex/vhffs-api/src/examples/test_httpd.pl
--- vhffs-org/vhffs-api/src/examples/test_httpd.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_httpd.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/test_obj.pl vhffs-alex/vhffs-api/src/examples/test_obj.pl
--- vhffs-org/vhffs-api/src/examples/test_obj.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_obj.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Object;
use Vhffs::Conf;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-api/src/examples/test.pl vhffs-alex/vhffs-api/src/examples/test.pl
--- vhffs-org/vhffs-api/src/examples/test.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-api/src/examples/test_user.pl vhffs-alex/vhffs-api/src/examples/test_user.pl
--- vhffs-org/vhffs-api/src/examples/test_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-api/src/examples/test_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::Conf;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-irc/modobot.pl vhffs-alex/vhffs-irc/modobot.pl
--- vhffs-org/vhffs-irc/modobot.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-irc/modobot.pl 2007-02-02 13:55:53.000000000 +0100
@@ -11,6 +11,7 @@
use Locale::gettext;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-jabber/vhffspipe.pl vhffs-alex/vhffs-jabber/vhffspipe.pl
--- vhffs-org/vhffs-jabber/vhffspipe.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-jabber/vhffspipe.pl 2007-02-02 13:55:53.000000000 +0100
@@ -1,6 +1,7 @@
#!/usr/bin/perl -w
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-listengine/src/archives/archives.pl vhffs-alex/vhffs-listengine/src/archives/archives.pl
--- vhffs-org/vhffs-listengine/src/archives/archives.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-listengine/src/archives/archives.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use HTML::Template;
use CGI;
use CGI::Session;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Panel::Main;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-listengine/src/archives/show_msg.pl vhffs-alex/vhffs-listengine/src/archives/show_msg.pl
--- vhffs-org/vhffs-listengine/src/archives/show_msg.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-listengine/src/archives/show_msg.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use HTML::Template;
use CGI;
use CGI::Session;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Functions;
use Vhffs::Services::Mailing;
diff -ru vhffs-org/vhffs-listengine/src/listengine.pl vhffs-alex/vhffs-listengine/src/listengine.pl
--- vhffs-org/vhffs-listengine/src/listengine.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-listengine/src/listengine.pl 2007-02-02 13:55:53.000000000 +0100
@@ -37,6 +37,7 @@
use locale;
use Locale::gettext;
use Mail::Internet;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Services::Mailing;
use Vhffs::Listengine::Intl;
diff -ru vhffs-org/vhffs-panel/acl/add_acl_group.pl vhffs-alex/vhffs-panel/acl/add_acl_group.pl
--- vhffs-org/vhffs-panel/acl/add_acl_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/acl/add_acl_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/acl/add_acl_user.pl vhffs-alex/vhffs-panel/acl/add_acl_user.pl
--- vhffs-org/vhffs-panel/acl/add_acl_user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/acl/add_acl_user.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/acl/submit.pl vhffs-alex/vhffs-panel/acl/submit.pl
--- vhffs-org/vhffs-panel/acl/submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/acl/submit.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/acl/view.pl vhffs-alex/vhffs-panel/acl/view.pl
--- vhffs-org/vhffs-panel/acl/view.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/acl/view.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/broadcast_delete.pl vhffs-alex/vhffs-panel/admin/broadcast_delete.pl
--- vhffs-org/vhffs-panel/admin/broadcast_delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/broadcast_delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/broadcast_list.pl vhffs-alex/vhffs-panel/admin/broadcast_list.pl
--- vhffs-org/vhffs-panel/admin/broadcast_list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/broadcast_list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/broadcast.pl vhffs-alex/vhffs-panel/admin/broadcast.pl
--- vhffs-org/vhffs-panel/admin/broadcast.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/broadcast.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/broadcast_submit.pl vhffs-alex/vhffs-panel/admin/broadcast_submit.pl
--- vhffs-org/vhffs-panel/admin/broadcast_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/broadcast_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/broadcast_view.pl vhffs-alex/vhffs-panel/admin/broadcast_view.pl
--- vhffs-org/vhffs-panel/admin/broadcast_view.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/broadcast_view.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/cvs/edit.pl vhffs-alex/vhffs-panel/admin/cvs/edit.pl
--- vhffs-org/vhffs-panel/admin/cvs/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/cvs/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/cvs/edit_submit.pl vhffs-alex/vhffs-panel/admin/cvs/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/cvs/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/cvs/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/cvs/list.pl vhffs-alex/vhffs-panel/admin/cvs/list.pl
--- vhffs-org/vhffs-panel/admin/cvs/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/cvs/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/cvs/search.pl vhffs-alex/vhffs-panel/admin/cvs/search.pl
--- vhffs-org/vhffs-panel/admin/cvs/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/cvs/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/cvs/show.pl vhffs-alex/vhffs-panel/admin/cvs/show.pl
--- vhffs-org/vhffs-panel/admin/cvs/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/cvs/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/dns/list.pl vhffs-alex/vhffs-panel/admin/dns/list.pl
--- vhffs-org/vhffs-panel/admin/dns/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/dns/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/dns/search.pl vhffs-alex/vhffs-panel/admin/dns/search.pl
--- vhffs-org/vhffs-panel/admin/dns/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/dns/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/group/edit.pl vhffs-alex/vhffs-panel/admin/group/edit.pl
--- vhffs-org/vhffs-panel/admin/group/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/group/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/group/edit_submit.pl vhffs-alex/vhffs-panel/admin/group/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/group/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/group/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/group/list.pl vhffs-alex/vhffs-panel/admin/group/list.pl
--- vhffs-org/vhffs-panel/admin/group/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/group/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/group/search.pl vhffs-alex/vhffs-panel/admin/group/search.pl
--- vhffs-org/vhffs-panel/admin/group/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/group/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/group/show.pl vhffs-alex/vhffs-panel/admin/group/show.pl
--- vhffs-org/vhffs-panel/admin/group/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/group/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/largefile/list.pl vhffs-alex/vhffs-panel/admin/largefile/list.pl
--- vhffs-org/vhffs-panel/admin/largefile/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/largefile/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/largefile/search.pl vhffs-alex/vhffs-panel/admin/largefile/search.pl
--- vhffs-org/vhffs-panel/admin/largefile/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/largefile/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/change_forward.pl vhffs-alex/vhffs-panel/admin/mail/change_forward.pl
--- vhffs-org/vhffs-panel/admin/mail/change_forward.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/change_forward.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/delete_box.pl vhffs-alex/vhffs-panel/admin/mail/delete_box.pl
--- vhffs-org/vhffs-panel/admin/mail/delete_box.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/delete_box.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/delete_forward.pl vhffs-alex/vhffs-panel/admin/mail/delete_forward.pl
--- vhffs-org/vhffs-panel/admin/mail/delete_forward.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/delete_forward.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/edit.pl vhffs-alex/vhffs-panel/admin/mail/edit.pl
--- vhffs-org/vhffs-panel/admin/mail/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/list.pl vhffs-alex/vhffs-panel/admin/mail/list.pl
--- vhffs-org/vhffs-panel/admin/mail/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/password_box.pl vhffs-alex/vhffs-panel/admin/mail/password_box.pl
--- vhffs-org/vhffs-panel/admin/mail/password_box.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/password_box.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/search.pl vhffs-alex/vhffs-panel/admin/mail/search.pl
--- vhffs-org/vhffs-panel/admin/mail/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mail/show.pl vhffs-alex/vhffs-panel/admin/mail/show.pl
--- vhffs-org/vhffs-panel/admin/mail/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mail/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mailing/list.pl vhffs-alex/vhffs-panel/admin/mailing/list.pl
--- vhffs-org/vhffs-panel/admin/mailing/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mailing/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mailing/mailing_submit.pl vhffs-alex/vhffs-panel/admin/mailing/mailing_submit.pl
--- vhffs-org/vhffs-panel/admin/mailing/mailing_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mailing/mailing_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mailing/search.pl vhffs-alex/vhffs-panel/admin/mailing/search.pl
--- vhffs-org/vhffs-panel/admin/mailing/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mailing/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/moderation.pl vhffs-alex/vhffs-panel/admin/moderation.pl
--- vhffs-org/vhffs-panel/admin/moderation.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/moderation.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/moderation_submit.pl vhffs-alex/vhffs-panel/admin/moderation_submit.pl
--- vhffs-org/vhffs-panel/admin/moderation_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/moderation_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mysql/edit.pl vhffs-alex/vhffs-panel/admin/mysql/edit.pl
--- vhffs-org/vhffs-panel/admin/mysql/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mysql/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mysql/edit_submit.pl vhffs-alex/vhffs-panel/admin/mysql/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/mysql/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mysql/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mysql/list.pl vhffs-alex/vhffs-panel/admin/mysql/list.pl
--- vhffs-org/vhffs-panel/admin/mysql/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mysql/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mysql/search.pl vhffs-alex/vhffs-panel/admin/mysql/search.pl
--- vhffs-org/vhffs-panel/admin/mysql/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mysql/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/mysql/show.pl vhffs-alex/vhffs-panel/admin/mysql/show.pl
--- vhffs-org/vhffs-panel/admin/mysql/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/mysql/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/object/delete_avatar.pl vhffs-alex/vhffs-panel/admin/object/delete_avatar.pl
--- vhffs-org/vhffs-panel/admin/object/delete_avatar.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/object/delete_avatar.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/object/edit.pl vhffs-alex/vhffs-panel/admin/object/edit.pl
--- vhffs-org/vhffs-panel/admin/object/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/object/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/object/edit_submit.pl vhffs-alex/vhffs-panel/admin/object/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/object/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/object/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/object/list.pl vhffs-alex/vhffs-panel/admin/object/list.pl
--- vhffs-org/vhffs-panel/admin/object/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/object/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/object/search.pl vhffs-alex/vhffs-panel/admin/object/search.pl
--- vhffs-org/vhffs-panel/admin/object/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/object/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/pgsql/edit.pl vhffs-alex/vhffs-panel/admin/pgsql/edit.pl
--- vhffs-org/vhffs-panel/admin/pgsql/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/pgsql/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/pgsql/edit_submit.pl vhffs-alex/vhffs-panel/admin/pgsql/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/pgsql/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/pgsql/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/pgsql/list.pl vhffs-alex/vhffs-panel/admin/pgsql/list.pl
--- vhffs-org/vhffs-panel/admin/pgsql/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/pgsql/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/pgsql/search.pl vhffs-alex/vhffs-panel/admin/pgsql/search.pl
--- vhffs-org/vhffs-panel/admin/pgsql/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/pgsql/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/pgsql/show.pl vhffs-alex/vhffs-panel/admin/pgsql/show.pl
--- vhffs-org/vhffs-panel/admin/pgsql/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/pgsql/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/repository/edit.pl vhffs-alex/vhffs-panel/admin/repository/edit.pl
--- vhffs-org/vhffs-panel/admin/repository/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/repository/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/repository/edit_submit.pl vhffs-alex/vhffs-panel/admin/repository/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/repository/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/repository/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/repository/list.pl vhffs-alex/vhffs-panel/admin/repository/list.pl
--- vhffs-org/vhffs-panel/admin/repository/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/repository/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/repository/search.pl vhffs-alex/vhffs-panel/admin/repository/search.pl
--- vhffs-org/vhffs-panel/admin/repository/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/repository/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/repository/show.pl vhffs-alex/vhffs-panel/admin/repository/show.pl
--- vhffs-org/vhffs-panel/admin/repository/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/repository/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/stats.pl vhffs-alex/vhffs-panel/admin/stats.pl
--- vhffs-org/vhffs-panel/admin/stats.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/stats.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/su.pl vhffs-alex/vhffs-panel/admin/su.pl
--- vhffs-org/vhffs-panel/admin/su.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/su.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/svn/list.pl vhffs-alex/vhffs-panel/admin/svn/list.pl
--- vhffs-org/vhffs-panel/admin/svn/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/svn/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/svn/search.pl vhffs-alex/vhffs-panel/admin/svn/search.pl
--- vhffs-org/vhffs-panel/admin/svn/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/svn/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/user/edit_note.pl vhffs-alex/vhffs-panel/admin/user/edit_note.pl
--- vhffs-org/vhffs-panel/admin/user/edit_note.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/user/edit_note.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/user/edit.pl vhffs-alex/vhffs-panel/admin/user/edit.pl
--- vhffs-org/vhffs-panel/admin/user/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/user/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/user/edit_submit.pl vhffs-alex/vhffs-panel/admin/user/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/user/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/user/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/user/list.pl vhffs-alex/vhffs-panel/admin/user/list.pl
--- vhffs-org/vhffs-panel/admin/user/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/user/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/user/search.pl vhffs-alex/vhffs-panel/admin/user/search.pl
--- vhffs-org/vhffs-panel/admin/user/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/user/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/user/show.pl vhffs-alex/vhffs-panel/admin/user/show.pl
--- vhffs-org/vhffs-panel/admin/user/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/user/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/web/edit.pl vhffs-alex/vhffs-panel/admin/web/edit.pl
--- vhffs-org/vhffs-panel/admin/web/edit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/web/edit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/web/edit_submit.pl vhffs-alex/vhffs-panel/admin/web/edit_submit.pl
--- vhffs-org/vhffs-panel/admin/web/edit_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/web/edit_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/web/list.pl vhffs-alex/vhffs-panel/admin/web/list.pl
--- vhffs-org/vhffs-panel/admin/web/list.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/web/list.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/web/search.pl vhffs-alex/vhffs-panel/admin/web/search.pl
--- vhffs-org/vhffs-panel/admin/web/search.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/web/search.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/admin/web/show.pl vhffs-alex/vhffs-panel/admin/web/show.pl
--- vhffs-org/vhffs-panel/admin/web/show.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/admin/web/show.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/alert.pl vhffs-alex/vhffs-panel/alert.pl
--- vhffs-org/vhffs-panel/alert.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/alert.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/alert_submit.pl vhffs-alex/vhffs-panel/alert_submit.pl
--- vhffs-org/vhffs-panel/alert_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/alert_submit.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/auth.pl vhffs-alex/vhffs-panel/auth.pl
--- vhffs-org/vhffs-panel/auth.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/auth.pl 2007-02-02 13:55:53.000000000 +0100
@@ -37,6 +37,7 @@
use Locale::gettext;
use HTML::Template;
use CGI;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Panel::Main;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-panel/cvs/create.pl vhffs-alex/vhffs-panel/cvs/create.pl
--- vhffs-org/vhffs-panel/cvs/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/cvs/create.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/cvs/cvs_submit.pl vhffs-alex/vhffs-panel/cvs/cvs_submit.pl
--- vhffs-org/vhffs-panel/cvs/cvs_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/cvs/cvs_submit.pl 2007-02-02 13:55:53.000000000 +0100
@@ -43,6 +43,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/cvs/delete.pl vhffs-alex/vhffs-panel/cvs/delete.pl
--- vhffs-org/vhffs-panel/cvs/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/cvs/delete.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/cvs/prefs.pl vhffs-alex/vhffs-panel/cvs/prefs.pl
--- vhffs-org/vhffs-panel/cvs/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/cvs/prefs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/cvs/prefs_save.pl vhffs-alex/vhffs-panel/cvs/prefs_save.pl
--- vhffs-org/vhffs-panel/cvs/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/cvs/prefs_save.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/dns/add_a.pl vhffs-alex/vhffs-panel/dns/add_a.pl
--- vhffs-org/vhffs-panel/dns/add_a.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/add_a.pl 2007-02-02 13:55:53.000000000 +0100
@@ -43,6 +43,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/add_cname.pl vhffs-alex/vhffs-panel/dns/add_cname.pl
--- vhffs-org/vhffs-panel/dns/add_cname.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/add_cname.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/add_mx.pl vhffs-alex/vhffs-panel/dns/add_mx.pl
--- vhffs-org/vhffs-panel/dns/add_mx.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/add_mx.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/add_ns.pl vhffs-alex/vhffs-panel/dns/add_ns.pl
--- vhffs-org/vhffs-panel/dns/add_ns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/add_ns.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/create.pl vhffs-alex/vhffs-panel/dns/create.pl
--- vhffs-org/vhffs-panel/dns/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -9,6 +9,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/dns/delete_a.pl vhffs-alex/vhffs-panel/dns/delete_a.pl
--- vhffs-org/vhffs-panel/dns/delete_a.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/delete_a.pl 2007-02-02 13:55:53.000000000 +0100
@@ -9,6 +9,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/delete_cname.pl vhffs-alex/vhffs-panel/dns/delete_cname.pl
--- vhffs-org/vhffs-panel/dns/delete_cname.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/delete_cname.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/delete_mx.pl vhffs-alex/vhffs-panel/dns/delete_mx.pl
--- vhffs-org/vhffs-panel/dns/delete_mx.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/delete_mx.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/delete_ns.pl vhffs-alex/vhffs-panel/dns/delete_ns.pl
--- vhffs-org/vhffs-panel/dns/delete_ns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/delete_ns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/delete.pl vhffs-alex/vhffs-panel/dns/delete.pl
--- vhffs-org/vhffs-panel/dns/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/delete.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/dns_submit.pl vhffs-alex/vhffs-panel/dns/dns_submit.pl
--- vhffs-org/vhffs-panel/dns/dns_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/dns_submit.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/dns_type_submit.pl vhffs-alex/vhffs-panel/dns/dns_type_submit.pl
--- vhffs-org/vhffs-panel/dns/dns_type_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/dns_type_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/modif_a.pl vhffs-alex/vhffs-panel/dns/modif_a.pl
--- vhffs-org/vhffs-panel/dns/modif_a.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/modif_a.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/modif_cname.pl vhffs-alex/vhffs-panel/dns/modif_cname.pl
--- vhffs-org/vhffs-panel/dns/modif_cname.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/modif_cname.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/modif_mx.pl vhffs-alex/vhffs-panel/dns/modif_mx.pl
--- vhffs-org/vhffs-panel/dns/modif_mx.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/modif_mx.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/dns/prefs.pl vhffs-alex/vhffs-panel/dns/prefs.pl
--- vhffs-org/vhffs-panel/dns/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/dns/prefs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/getavatar.pl vhffs-alex/vhffs-panel/getavatar.pl
--- vhffs-org/vhffs-panel/getavatar.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/getavatar.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use CGI;
use GD;
use GD::Text::Wrap;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Object;
use Vhffs::Panel::Avatar;
diff -ru vhffs-org/vhffs-panel/group/create.pl vhffs-alex/vhffs-panel/group/create.pl
--- vhffs-org/vhffs-panel/group/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/group/delete.pl vhffs-alex/vhffs-panel/group/delete.pl
--- vhffs-org/vhffs-panel/group/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/group/join_group.pl vhffs-alex/vhffs-panel/group/join_group.pl
--- vhffs-org/vhffs-panel/group/join_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/join_group.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/group/prefs.pl vhffs-alex/vhffs-panel/group/prefs.pl
--- vhffs-org/vhffs-panel/group/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/group/prefs_save.pl vhffs-alex/vhffs-panel/group/prefs_save.pl
--- vhffs-org/vhffs-panel/group/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/group/project_submit.pl vhffs-alex/vhffs-panel/group/project_submit.pl
--- vhffs-org/vhffs-panel/group/project_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/project_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/group/quota_used.pl vhffs-alex/vhffs-panel/group/quota_used.pl
--- vhffs-org/vhffs-panel/group/quota_used.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/quota_used.pl 2007-02-02 13:55:54.000000000 +0100
@@ -42,6 +42,7 @@
use GD::Text::Wrap;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/group/remove_user_from_group.pl vhffs-alex/vhffs-panel/group/remove_user_from_group.pl
--- vhffs-org/vhffs-panel/group/remove_user_from_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/group/remove_user_from_group.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/history.pl vhffs-alex/vhffs-panel/history.pl
--- vhffs-org/vhffs-panel/history.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/history.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/largefile/complete.pl vhffs-alex/vhffs-panel/largefile/complete.pl
--- vhffs-org/vhffs-panel/largefile/complete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/largefile/complete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/largefile/create.pl vhffs-alex/vhffs-panel/largefile/create.pl
--- vhffs-org/vhffs-panel/largefile/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/largefile/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/largefile/delete.pl vhffs-alex/vhffs-panel/largefile/delete.pl
--- vhffs-org/vhffs-panel/largefile/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/largefile/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/largefile/infos.pl vhffs-alex/vhffs-panel/largefile/infos.pl
--- vhffs-org/vhffs-panel/largefile/infos.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/largefile/infos.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/largefile/prefs.pl vhffs-alex/vhffs-panel/largefile/prefs.pl
--- vhffs-org/vhffs-panel/largefile/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/largefile/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/largefile/submit.pl vhffs-alex/vhffs-panel/largefile/submit.pl
--- vhffs-org/vhffs-panel/largefile/submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/largefile/submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/login.pl vhffs-alex/vhffs-panel/login.pl
--- vhffs-org/vhffs-panel/login.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/login.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
use Crypt::PasswdMD5;
+use lib "%%LIBDIR%%";
use Vhffs::Misc::Salt;
use Vhffs::User;
diff -ru vhffs-org/vhffs-panel/logout.pl vhffs-alex/vhffs-panel/logout.pl
--- vhffs-org/vhffs-panel/logout.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/logout.pl 2007-02-02 13:55:53.000000000 +0100
@@ -37,6 +37,7 @@
use CGI;
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Panel::Main;
# Init the Vhffs Main System
diff -ru vhffs-org/vhffs-panel/lost_ack.pl vhffs-alex/vhffs-panel/lost_ack.pl
--- vhffs-org/vhffs-panel/lost_ack.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/lost_ack.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/lost.pl vhffs-alex/vhffs-panel/lost.pl
--- vhffs-org/vhffs-panel/lost.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/lost.pl 2007-02-02 13:55:53.000000000 +0100
@@ -37,6 +37,7 @@
use Locale::gettext;
use HTML::Template;
use CGI;
+use lib "%%LIBDIR%%";
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/mail/add_account.pl vhffs-alex/vhffs-panel/mail/add_account.pl
--- vhffs-org/vhffs-panel/mail/add_account.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/add_account.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/add_forward.pl vhffs-alex/vhffs-panel/mail/add_forward.pl
--- vhffs-org/vhffs-panel/mail/add_forward.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/add_forward.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/change_forward.pl vhffs-alex/vhffs-panel/mail/change_forward.pl
--- vhffs-org/vhffs-panel/mail/change_forward.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/change_forward.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/create.pl vhffs-alex/vhffs-panel/mail/create.pl
--- vhffs-org/vhffs-panel/mail/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/mail/delete_box.pl vhffs-alex/vhffs-panel/mail/delete_box.pl
--- vhffs-org/vhffs-panel/mail/delete_box.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/delete_box.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/delete_forward.pl vhffs-alex/vhffs-panel/mail/delete_forward.pl
--- vhffs-org/vhffs-panel/mail/delete_forward.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/delete_forward.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/delete.pl vhffs-alex/vhffs-panel/mail/delete.pl
--- vhffs-org/vhffs-panel/mail/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/password_box.pl vhffs-alex/vhffs-panel/mail/password_box.pl
--- vhffs-org/vhffs-panel/mail/password_box.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/password_box.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/prefs.pl vhffs-alex/vhffs-panel/mail/prefs.pl
--- vhffs-org/vhffs-panel/mail/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/save_catchall.pl vhffs-alex/vhffs-panel/mail/save_catchall.pl
--- vhffs-org/vhffs-panel/mail/save_catchall.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/save_catchall.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/spambox.pl vhffs-alex/vhffs-panel/mail/spambox.pl
--- vhffs-org/vhffs-panel/mail/spambox.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/spambox.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/spamvirus.pl vhffs-alex/vhffs-panel/mail/spamvirus.pl
--- vhffs-org/vhffs-panel/mail/spamvirus.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/spamvirus.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mail/submit.pl vhffs-alex/vhffs-panel/mail/submit.pl
--- vhffs-org/vhffs-panel/mail/submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mail/submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/add_sub.pl vhffs-alex/vhffs-panel/mailinglist/add_sub.pl
--- vhffs-org/vhffs-panel/mailinglist/add_sub.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/add_sub.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/change_right.pl vhffs-alex/vhffs-panel/mailinglist/change_right.pl
--- vhffs-org/vhffs-panel/mailinglist/change_right.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/change_right.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/create.pl vhffs-alex/vhffs-panel/mailinglist/create.pl
--- vhffs-org/vhffs-panel/mailinglist/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/delete.pl vhffs-alex/vhffs-panel/mailinglist/delete.pl
--- vhffs-org/vhffs-panel/mailinglist/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/del_member.pl vhffs-alex/vhffs-panel/mailinglist/del_member.pl
--- vhffs-org/vhffs-panel/mailinglist/del_member.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/del_member.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/prefs.pl vhffs-alex/vhffs-panel/mailinglist/prefs.pl
--- vhffs-org/vhffs-panel/mailinglist/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/save_options.pl vhffs-alex/vhffs-panel/mailinglist/save_options.pl
--- vhffs-org/vhffs-panel/mailinglist/save_options.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/save_options.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mailinglist/submit.pl vhffs-alex/vhffs-panel/mailinglist/submit.pl
--- vhffs-org/vhffs-panel/mailinglist/submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mailinglist/submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mysql/create.pl vhffs-alex/vhffs-panel/mysql/create.pl
--- vhffs-org/vhffs-panel/mysql/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mysql/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/mysql/delete.pl vhffs-alex/vhffs-panel/mysql/delete.pl
--- vhffs-org/vhffs-panel/mysql/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mysql/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/mysql/prefs.pl vhffs-alex/vhffs-panel/mysql/prefs.pl
--- vhffs-org/vhffs-panel/mysql/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mysql/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/mysql/prefs_save.pl vhffs-alex/vhffs-panel/mysql/prefs_save.pl
--- vhffs-org/vhffs-panel/mysql/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mysql/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/mysql/submit.pl vhffs-alex/vhffs-panel/mysql/submit.pl
--- vhffs-org/vhffs-panel/mysql/submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/mysql/submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/object/upavatar.pl vhffs-alex/vhffs-panel/object/upavatar.pl
--- vhffs-org/vhffs-panel/object/upavatar.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/object/upavatar.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Object;
use Vhffs::User;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/panel.pl vhffs-alex/vhffs-panel/panel.pl
--- vhffs-org/vhffs-panel/panel.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/panel.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/pgsql/create.pl vhffs-alex/vhffs-panel/pgsql/create.pl
--- vhffs-org/vhffs-panel/pgsql/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/pgsql/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/pgsql/delete.pl vhffs-alex/vhffs-panel/pgsql/delete.pl
--- vhffs-org/vhffs-panel/pgsql/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/pgsql/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/pgsql/pgsql_submit.pl vhffs-alex/vhffs-panel/pgsql/pgsql_submit.pl
--- vhffs-org/vhffs-panel/pgsql/pgsql_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/pgsql/pgsql_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/pgsql/prefs.pl vhffs-alex/vhffs-panel/pgsql/prefs.pl
--- vhffs-org/vhffs-panel/pgsql/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/pgsql/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/pgsql/prefs_save.pl vhffs-alex/vhffs-panel/pgsql/prefs_save.pl
--- vhffs-org/vhffs-panel/pgsql/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/pgsql/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/public/allgroups.pl vhffs-alex/vhffs-panel/public/allgroups.pl
--- vhffs-org/vhffs-panel/public/allgroups.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/allgroups.pl 2007-02-02 13:55:54.000000000 +0100
@@ -36,6 +36,7 @@
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/allwebsites.pl vhffs-alex/vhffs-panel/public/allwebsites.pl
--- vhffs-org/vhffs-panel/public/allwebsites.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/allwebsites.pl 2007-02-02 13:55:54.000000000 +0100
@@ -37,6 +37,7 @@
use strict;
use CGI;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/group.pl vhffs-alex/vhffs-panel/public/group.pl
--- vhffs-org/vhffs-panel/public/group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/group.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/index.pl vhffs-alex/vhffs-panel/public/index.pl
--- vhffs-org/vhffs-panel/public/index.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/index.pl 2007-02-02 13:55:54.000000000 +0100
@@ -37,6 +37,7 @@
use strict;
use CGI;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/largefile.pl vhffs-alex/vhffs-panel/public/largefile.pl
--- vhffs-org/vhffs-panel/public/largefile.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/largefile.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/lastgroups.pl vhffs-alex/vhffs-panel/public/lastgroups.pl
--- vhffs-org/vhffs-panel/public/lastgroups.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/lastgroups.pl 2007-02-02 13:55:54.000000000 +0100
@@ -36,6 +36,7 @@
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/lastusers.pl vhffs-alex/vhffs-panel/public/lastusers.pl
--- vhffs-org/vhffs-panel/public/lastusers.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/lastusers.pl 2007-02-02 13:55:54.000000000 +0100
@@ -37,6 +37,7 @@
use strict;
use CGI;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/rss/lastgroups.pl vhffs-alex/vhffs-panel/public/rss/lastgroups.pl
--- vhffs-org/vhffs-panel/public/rss/lastgroups.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/rss/lastgroups.pl 2007-02-02 13:55:54.000000000 +0100
@@ -31,6 +31,7 @@
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
diff -ru vhffs-org/vhffs-panel/public/rss/lastusers.pl vhffs-alex/vhffs-panel/public/rss/lastusers.pl
--- vhffs-org/vhffs-panel/public/rss/lastusers.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/rss/lastusers.pl 2007-02-02 13:55:54.000000000 +0100
@@ -31,6 +31,7 @@
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
diff -ru vhffs-org/vhffs-panel/public/user.pl vhffs-alex/vhffs-panel/public/user.pl
--- vhffs-org/vhffs-panel/public/user.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/user.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/public/websearch.pl vhffs-alex/vhffs-panel/public/websearch.pl
--- vhffs-org/vhffs-panel/public/websearch.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/public/websearch.pl 2007-02-02 13:55:54.000000000 +0100
@@ -37,6 +37,7 @@
use strict;
use CGI;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/repository/create.pl vhffs-alex/vhffs-panel/repository/create.pl
--- vhffs-org/vhffs-panel/repository/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/repository/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/repository/delete.pl vhffs-alex/vhffs-panel/repository/delete.pl
--- vhffs-org/vhffs-panel/repository/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/repository/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/repository/prefs.pl vhffs-alex/vhffs-panel/repository/prefs.pl
--- vhffs-org/vhffs-panel/repository/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/repository/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/repository/prefs_save.pl vhffs-alex/vhffs-panel/repository/prefs_save.pl
--- vhffs-org/vhffs-panel/repository/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/repository/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/repository/quota_used.pl vhffs-alex/vhffs-panel/repository/quota_used.pl
--- vhffs-org/vhffs-panel/repository/quota_used.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/repository/quota_used.pl 2007-02-02 13:55:54.000000000 +0100
@@ -42,6 +42,7 @@
use GD::Text::Wrap;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/repository/repository_submit.pl vhffs-alex/vhffs-panel/repository/repository_submit.pl
--- vhffs-org/vhffs-panel/repository/repository_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/repository/repository_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -43,6 +43,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/show_code.pl vhffs-alex/vhffs-panel/show_code.pl
--- vhffs-org/vhffs-panel/show_code.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/show_code.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use CGI;
use GD;
use GD::Text::Wrap;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Panel::Confirmation;
diff -ru vhffs-org/vhffs-panel/subscribe.pl vhffs-alex/vhffs-panel/subscribe.pl
--- vhffs-org/vhffs-panel/subscribe.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/subscribe.pl 2007-02-02 13:55:53.000000000 +0100
@@ -43,6 +43,7 @@
use Locale::gettext;
use HTML::Template;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-panel/svn/create.pl vhffs-alex/vhffs-panel/svn/create.pl
--- vhffs-org/vhffs-panel/svn/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/svn/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/svn/delete.pl vhffs-alex/vhffs-panel/svn/delete.pl
--- vhffs-org/vhffs-panel/svn/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/svn/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/svn/prefs.pl vhffs-alex/vhffs-panel/svn/prefs.pl
--- vhffs-org/vhffs-panel/svn/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/svn/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/svn/prefs_save.pl vhffs-alex/vhffs-panel/svn/prefs_save.pl
--- vhffs-org/vhffs-panel/svn/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/svn/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -39,6 +39,7 @@
use strict;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/svn/svn_submit.pl vhffs-alex/vhffs-panel/svn/svn_submit.pl
--- vhffs-org/vhffs-panel/svn/svn_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/svn/svn_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/user/delete.pl vhffs-alex/vhffs-panel/user/delete.pl
--- vhffs-org/vhffs-panel/user/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/user/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/user/prefs.pl vhffs-alex/vhffs-panel/user/prefs.pl
--- vhffs-org/vhffs-panel/user/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/user/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/user/prefs_save.pl vhffs-alex/vhffs-panel/user/prefs_save.pl
--- vhffs-org/vhffs-panel/user/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/user/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/web/create.pl vhffs-alex/vhffs-panel/web/create.pl
--- vhffs-org/vhffs-panel/web/create.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/web/create.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Panel::Main;
diff -ru vhffs-org/vhffs-panel/web/delete.pl vhffs-alex/vhffs-panel/web/delete.pl
--- vhffs-org/vhffs-panel/web/delete.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/web/delete.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/web/prefs.pl vhffs-alex/vhffs-panel/web/prefs.pl
--- vhffs-org/vhffs-panel/web/prefs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/web/prefs.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-panel/web/prefs_save.pl vhffs-alex/vhffs-panel/web/prefs_save.pl
--- vhffs-org/vhffs-panel/web/prefs_save.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/web/prefs_save.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-panel/web/web_submit.pl vhffs-alex/vhffs-panel/web/web_submit.pl
--- vhffs-org/vhffs-panel/web/web_submit.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-panel/web/web_submit.pl 2007-02-02 13:55:54.000000000 +0100
@@ -38,6 +38,7 @@
use CGI::Session;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/create_cvs.pl vhffs-alex/vhffs-robots/src/create_cvs.pl
--- vhffs-org/vhffs-robots/src/create_cvs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_cvs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -32,6 +32,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Cvs;
use Vhffs::Robots;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/create_dns.pl vhffs-alex/vhffs-robots/src/create_dns.pl
--- vhffs-org/vhffs-robots/src/create_dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -31,6 +31,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::DNS;
use Vhffs::Robots;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/create_groups.pl vhffs-alex/vhffs-robots/src/create_groups.pl
--- vhffs-org/vhffs-robots/src/create_groups.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_groups.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Group;
use Vhffs::Robots;
diff -ru vhffs-org/vhffs-robots/src/create_homes.pl vhffs-alex/vhffs-robots/src/create_homes.pl
--- vhffs-org/vhffs-robots/src/create_homes.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_homes.pl 2007-02-02 13:55:53.000000000 +0100
@@ -31,6 +31,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::User;
use Vhffs::Robots;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/create_largefile.pl vhffs-alex/vhffs-robots/src/create_largefile.pl
--- vhffs-org/vhffs-robots/src/create_largefile.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_largefile.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Services::LargeFile;
use Vhffs::Robots;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/create_mail.pl vhffs-alex/vhffs-robots/src/create_mail.pl
--- vhffs-org/vhffs-robots/src/create_mail.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_mail.pl 2007-02-02 13:55:53.000000000 +0100
@@ -32,6 +32,7 @@
#This robot create mail domain
#It actives it
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Mail;
use Vhffs::Robots;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/create_ml.pl vhffs-alex/vhffs-robots/src/create_ml.pl
--- vhffs-org/vhffs-robots/src/create_ml.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_ml.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-robots/src/create_mysql.pl vhffs-alex/vhffs-robots/src/create_mysql.pl
--- vhffs-org/vhffs-robots/src/create_mysql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_mysql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -32,6 +32,7 @@
use strict;
use POSIX;
use locale;
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Services::Mysql;
use Vhffs::Robots::Mysql;
diff -ru vhffs-org/vhffs-robots/src/create_pgsql.pl vhffs-alex/vhffs-robots/src/create_pgsql.pl
--- vhffs-org/vhffs-robots/src/create_pgsql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_pgsql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Postgres;
use Vhffs::Main;
use Vhffs::Robots;
diff -ru vhffs-org/vhffs-robots/src/create_repository.pl vhffs-alex/vhffs-robots/src/create_repository.pl
--- vhffs-org/vhffs-robots/src/create_repository.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_repository.pl 2007-02-02 13:55:53.000000000 +0100
@@ -32,6 +32,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Repository;
use Vhffs::Robots;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/create_svn.pl vhffs-alex/vhffs-robots/src/create_svn.pl
--- vhffs-org/vhffs-robots/src/create_svn.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_svn.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Robots::Svn;
diff -ru vhffs-org/vhffs-robots/src/create_viewvcconf.pl vhffs-alex/vhffs-robots/src/create_viewvcconf.pl
--- vhffs-org/vhffs-robots/src/create_viewvcconf.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_viewvcconf.pl 2007-02-02 13:55:53.000000000 +0100
@@ -31,6 +31,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Constants;
use Vhffs::Services::Cvs;
diff -ru vhffs-org/vhffs-robots/src/create_web.pl vhffs-alex/vhffs-robots/src/create_web.pl
--- vhffs-org/vhffs-robots/src/create_web.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/create_web.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Web;
use Vhffs::Services::Httpd;
use Vhffs::Robots;
diff -ru vhffs-org/vhffs-robots/src/cvs_fixperms.pl vhffs-alex/vhffs-robots/src/cvs_fixperms.pl
--- vhffs-org/vhffs-robots/src/cvs_fixperms.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/cvs_fixperms.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/delete_cvs.pl vhffs-alex/vhffs-robots/src/delete_cvs.pl
--- vhffs-org/vhffs-robots/src/delete_cvs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_cvs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Cvs;
use Vhffs::Services::Cvs;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-robots/src/delete_dns.pl vhffs-alex/vhffs-robots/src/delete_dns.pl
--- vhffs-org/vhffs-robots/src/delete_dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Robots::DNS;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-robots/src/delete_group.pl vhffs-alex/vhffs-robots/src/delete_group.pl
--- vhffs-org/vhffs-robots/src/delete_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Group;
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/delete_largefile.pl vhffs-alex/vhffs-robots/src/delete_largefile.pl
--- vhffs-org/vhffs-robots/src/delete_largefile.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_largefile.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Services::LargeFile;
use Vhffs::Robots;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/delete_mail.pl vhffs-alex/vhffs-robots/src/delete_mail.pl
--- vhffs-org/vhffs-robots/src/delete_mail.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_mail.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Mail;
use Vhffs::Services::Mail;
use Vhffs::Services::Mailing;
diff -ru vhffs-org/vhffs-robots/src/delete_ml.pl vhffs-alex/vhffs-robots/src/delete_ml.pl
--- vhffs-org/vhffs-robots/src/delete_ml.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_ml.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Constants;
use Vhffs::Robots;
diff -ru vhffs-org/vhffs-robots/src/delete_mysql.pl vhffs-alex/vhffs-robots/src/delete_mysql.pl
--- vhffs-org/vhffs-robots/src/delete_mysql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_mysql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Robots::Mysql;
use Vhffs::Services::Mysql;
diff -ru vhffs-org/vhffs-robots/src/delete_pgsql.pl vhffs-alex/vhffs-robots/src/delete_pgsql.pl
--- vhffs-org/vhffs-robots/src/delete_pgsql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_pgsql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Services::Postgres;
use Vhffs::Robots::Postgres;
diff -ru vhffs-org/vhffs-robots/src/delete_repository.pl vhffs-alex/vhffs-robots/src/delete_repository.pl
--- vhffs-org/vhffs-robots/src/delete_repository.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_repository.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Repository;
use Vhffs::Services::Repository;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-robots/src/delete_svn.pl vhffs-alex/vhffs-robots/src/delete_svn.pl
--- vhffs-org/vhffs-robots/src/delete_svn.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_svn.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Robots::Svn;
diff -ru vhffs-org/vhffs-robots/src/delete_users.pl vhffs-alex/vhffs-robots/src/delete_users.pl
--- vhffs-org/vhffs-robots/src/delete_users.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_users.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots qw( lock unlock vhffs_log );
use Vhffs::Robots::User;
use Vhffs::User;
diff -ru vhffs-org/vhffs-robots/src/delete_web.pl vhffs-alex/vhffs-robots/src/delete_web.pl
--- vhffs-org/vhffs-robots/src/delete_web.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/delete_web.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Robots::Web;
use Vhffs::Services::Httpd;
diff -ru vhffs-org/vhffs-robots/src/dump_mysql.pl vhffs-alex/vhffs-robots/src/dump_mysql.pl
--- vhffs-org/vhffs-robots/src/dump_mysql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/dump_mysql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -34,6 +34,7 @@
# and put it on each group directory
#
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
diff -ru vhffs-org/vhffs-robots/src/fix_quota.pl vhffs-alex/vhffs-robots/src/fix_quota.pl
--- vhffs-org/vhffs-robots/src/fix_quota.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/fix_quota.pl 2007-02-02 13:55:53.000000000 +0100
@@ -35,6 +35,7 @@
use locale;
use Locale::gettext;
use Quota;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/fix_quota_repository.pl vhffs-alex/vhffs-robots/src/fix_quota_repository.pl
--- vhffs-org/vhffs-robots/src/fix_quota_repository.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/fix_quota_repository.pl 2007-02-02 13:55:53.000000000 +0100
@@ -34,6 +34,7 @@
use POSIX;
use locale;
use Locale::gettext;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/generate_webstats.pl vhffs-alex/vhffs-robots/src/generate_webstats.pl
--- vhffs-org/vhffs-robots/src/generate_webstats.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/generate_webstats.pl 2007-02-02 13:55:53.000000000 +0100
@@ -36,6 +36,7 @@
#CustomLog /var/log/apache2/vhffs.log vhffs
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Conf;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/listengine_publicarchives.pl vhffs-alex/vhffs-robots/src/listengine_publicarchives.pl
--- vhffs-org/vhffs-robots/src/listengine_publicarchives.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/listengine_publicarchives.pl 2007-02-02 13:55:53.000000000 +0100
@@ -2,6 +2,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Group;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/mailing.pl vhffs-alex/vhffs-robots/src/mailing.pl
--- vhffs-org/vhffs-robots/src/mailing.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/mailing.pl 2007-02-02 13:55:53.000000000 +0100
@@ -42,6 +42,7 @@
use strict;
use Encode;
use utf8;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/modify_mysql.pl vhffs-alex/vhffs-robots/src/modify_mysql.pl
--- vhffs-org/vhffs-robots/src/modify_mysql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/modify_mysql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Robots::Mysql;
use Vhffs::Services::Mysql;
diff -ru vhffs-org/vhffs-robots/src/modify_pgsql.pl vhffs-alex/vhffs-robots/src/modify_pgsql.pl
--- vhffs-org/vhffs-robots/src/modify_pgsql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/modify_pgsql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots;
use Vhffs::Services::Postgres;
use Vhffs::Robots::Postgres;
diff -ru vhffs-org/vhffs-robots/src/move-completed-largefile.pl vhffs-alex/vhffs-robots/src/move-completed-largefile.pl
--- vhffs-org/vhffs-robots/src/move-completed-largefile.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/move-completed-largefile.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Services::LargeFile;
use Vhffs::Robots;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-robots/src/old/cvsanonymous.pl vhffs-alex/vhffs-robots/src/old/cvsanonymous.pl
--- vhffs-org/vhffs-robots/src/old/cvsanonymous.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/old/cvsanonymous.pl 2007-02-02 13:55:53.000000000 +0100
@@ -38,6 +38,7 @@
+use lib "%%LIBDIR%%";
use Vhffs::Robots::Cvs;
use Vhffs::Main;
use Vhffs::User;
diff -ru vhffs-org/vhffs-robots/src/old/dns.pl vhffs-alex/vhffs-robots/src/old/dns.pl
--- vhffs-org/vhffs-robots/src/old/dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/old/dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -30,6 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Robots::DNS;
use Vhffs::Main;
use Data::Dumper;
diff -ru vhffs-org/vhffs-robots/src/old/svn_apache.pl vhffs-alex/vhffs-robots/src/old/svn_apache.pl
--- vhffs-org/vhffs-robots/src/old/svn_apache.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/old/svn_apache.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots::Svn;
use Vhffs::Services::Svn;
diff -ru vhffs-org/vhffs-robots/src/old/svn_users.pl vhffs-alex/vhffs-robots/src/old/svn_users.pl
--- vhffs-org/vhffs-robots/src/old/svn_users.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/old/svn_users.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots::Svn;
use Vhffs::Services::Svn;
diff -ru vhffs-org/vhffs-robots/src/refused_cvs.pl vhffs-alex/vhffs-robots/src/refused_cvs.pl
--- vhffs-org/vhffs-robots/src/refused_cvs.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_cvs.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_dns.pl vhffs-alex/vhffs-robots/src/refused_dns.pl
--- vhffs-org/vhffs-robots/src/refused_dns.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_dns.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Robots;
diff -ru vhffs-org/vhffs-robots/src/refused_groups.pl vhffs-alex/vhffs-robots/src/refused_groups.pl
--- vhffs-org/vhffs-robots/src/refused_groups.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_groups.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_largefile.pl vhffs-alex/vhffs-robots/src/refused_largefile.pl
--- vhffs-org/vhffs-robots/src/refused_largefile.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_largefile.pl 2007-02-02 13:55:53.000000000 +0100
@@ -35,6 +35,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_mail.pl vhffs-alex/vhffs-robots/src/refused_mail.pl
--- vhffs-org/vhffs-robots/src/refused_mail.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_mail.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_ml.pl vhffs-alex/vhffs-robots/src/refused_ml.pl
--- vhffs-org/vhffs-robots/src/refused_ml.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_ml.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::User;
diff -ru vhffs-org/vhffs-robots/src/refused_mysql.pl vhffs-alex/vhffs-robots/src/refused_mysql.pl
--- vhffs-org/vhffs-robots/src/refused_mysql.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_mysql.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use POSIX qw(locale_h);
use locale;
use Locale::gettext;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_postgres.pl vhffs-alex/vhffs-robots/src/refused_postgres.pl
--- vhffs-org/vhffs-robots/src/refused_postgres.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_postgres.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_repository.pl vhffs-alex/vhffs-robots/src/refused_repository.pl
--- vhffs-org/vhffs-robots/src/refused_repository.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_repository.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_svn.pl vhffs-alex/vhffs-robots/src/refused_svn.pl
--- vhffs-org/vhffs-robots/src/refused_svn.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_svn.pl 2007-02-02 13:55:53.000000000 +0100
@@ -4,6 +4,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/refused_web.pl vhffs-alex/vhffs-robots/src/refused_web.pl
--- vhffs-org/vhffs-robots/src/refused_web.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/refused_web.pl 2007-02-02 13:55:53.000000000 +0100
@@ -33,6 +33,7 @@
use locale;
use Locale::gettext;
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/svn_public.pl vhffs-alex/vhffs-robots/src/svn_public.pl
--- vhffs-org/vhffs-robots/src/svn_public.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/svn_public.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Robots::Svn;
diff -ru vhffs-org/vhffs-robots/src/svn_websvn.pl vhffs-alex/vhffs-robots/src/svn_websvn.pl
--- vhffs-org/vhffs-robots/src/svn_websvn.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/svn_websvn.pl 2007-02-02 13:55:53.000000000 +0100
@@ -31,6 +31,7 @@
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Constants;
use Vhffs::Services::Svn;
diff -ru vhffs-org/vhffs-robots/src/update_quota_used.pl vhffs-alex/vhffs-robots/src/update_quota_used.pl
--- vhffs-org/vhffs-robots/src/update_quota_used.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/update_quota_used.pl 2007-02-02 13:55:53.000000000 +0100
@@ -35,6 +35,7 @@
use locale;
use Locale::gettext;
use Quota;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/update_quota_used_repository.pl vhffs-alex/vhffs-robots/src/update_quota_used_repository.pl
--- vhffs-org/vhffs-robots/src/update_quota_used_repository.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/update_quota_used_repository.pl 2007-02-02 13:55:53.000000000 +0100
@@ -34,6 +34,7 @@
use POSIX;
use locale;
use Locale::gettext;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Robots;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-robots/src/user_group.pl vhffs-alex/vhffs-robots/src/user_group.pl
--- vhffs-org/vhffs-robots/src/user_group.pl 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-robots/src/user_group.pl 2007-02-02 13:55:53.000000000 +0100
@@ -29,6 +29,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::User;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-tools/src/vhffs-blankmysql vhffs-alex/vhffs-tools/src/vhffs-blankmysql
--- vhffs-org/vhffs-tools/src/vhffs-blankmysql 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-blankmysql 2007-02-03 16:44:52.000000000 +0100
@@ -6,6 +6,7 @@
# Use as it : blank_mysql
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Constants;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-tools/src/vhffs-checkinstall vhffs-alex/vhffs-tools/src/vhffs-checkinstall
--- vhffs-org/vhffs-tools/src/vhffs-checkinstall 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-checkinstall 2007-02-03 16:45:23.000000000 +0100
@@ -3,6 +3,7 @@
#Wrote by soda <god@xxxxxxxxx>
use strict;
+use lib "%%LIBDIR%%";
my @DEPS = qw(HTML::Template Digest::MD5 CGI Locale::gettext Config::General DBI Email::Valid Crypt::PasswdMD5 GD::Text::Wrap GD MIME::Lite XML::RSS CGI::Session Encode utf8);
my $dep;
diff -ru vhffs-org/vhffs-tools/src/vhffs-dumpmysql vhffs-alex/vhffs-tools/src/vhffs-dumpmysql
--- vhffs-org/vhffs-tools/src/vhffs-dumpmysql 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-dumpmysql 2007-02-03 16:45:34.000000000 +0100
@@ -9,6 +9,7 @@
# Use as it : dump_mysql database_name
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Constants;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-tools/src/vhffs-firstadmin vhffs-alex/vhffs-tools/src/vhffs-firstadmin
--- vhffs-org/vhffs-tools/src/vhffs-firstadmin 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-firstadmin 2007-02-03 16:45:48.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-tools/src/vhffs-groupdel vhffs-alex/vhffs-tools/src/vhffs-groupdel
--- vhffs-org/vhffs-tools/src/vhffs-groupdel 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-groupdel 2007-02-03 16:45:53.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Group;
use Vhffs::Main;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-tools/src/vhffs-groupinfo vhffs-alex/vhffs-tools/src/vhffs-groupinfo
--- vhffs-org/vhffs-tools/src/vhffs-groupinfo 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-groupinfo 2007-02-03 16:45:58.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-tools/src/vhffs-moderate vhffs-alex/vhffs-tools/src/vhffs-moderate
--- vhffs-org/vhffs-tools/src/vhffs-moderate 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-moderate 2007-02-03 16:46:04.000000000 +0100
@@ -6,6 +6,7 @@
use Locale::gettext;
use Data::Dumper;
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Group;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-tools/src/vhffs-passwd vhffs-alex/vhffs-tools/src/vhffs-passwd
--- vhffs-org/vhffs-tools/src/vhffs-passwd 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-passwd 2007-02-03 16:46:09.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
diff -ru vhffs-org/vhffs-tools/src/vhffs-quota vhffs-alex/vhffs-tools/src/vhffs-quota
--- vhffs-org/vhffs-tools/src/vhffs-quota 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-quota 2007-02-03 16:46:16.000000000 +0100
@@ -6,6 +6,7 @@
#Use some VHFFS modules, it can be useful
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Group;
diff -ru vhffs-org/vhffs-tools/src/vhffs-userdel vhffs-alex/vhffs-tools/src/vhffs-userdel
--- vhffs-org/vhffs-tools/src/vhffs-userdel 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-userdel 2007-02-03 16:46:20.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-tools/src/vhffs-userinfo vhffs-alex/vhffs-tools/src/vhffs-userinfo
--- vhffs-org/vhffs-tools/src/vhffs-userinfo 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-userinfo 2007-02-03 16:46:24.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Functions;
diff -ru vhffs-org/vhffs-tools/src/vhffs-usermod vhffs-alex/vhffs-tools/src/vhffs-usermod
--- vhffs-org/vhffs-tools/src/vhffs-usermod 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-usermod 2007-02-03 16:46:29.000000000 +0100
@@ -1,5 +1,6 @@
#!/usr/bin/perl
+use lib "%%LIBDIR%%";
use Vhffs::User;
use Vhffs::Main;
use Vhffs::Constants;
diff -ru vhffs-org/vhffs-tools/src/vhffs-webdir vhffs-alex/vhffs-tools/src/vhffs-webdir
--- vhffs-org/vhffs-tools/src/vhffs-webdir 2007-02-02 13:55:11.000000000 +0100
+++ vhffs-alex/vhffs-tools/src/vhffs-webdir 2007-02-03 16:46:38.000000000 +0100
@@ -6,6 +6,7 @@
# Use as it : webdir toto.tuxfamily.org
use strict;
+use lib "%%LIBDIR%%";
use Vhffs::Main;
use Vhffs::Constants;
use Vhffs::Functions;