[vhffs-dev] [1709] Never rely on someone else to call use... |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 1709
Author: beuss
Date: 2011-05-13 08:17:54 +0200 (Fri, 13 May 2011)
Log Message:
-----------
Never rely on someone else to call use...
Modified Paths:
--------------
trunk/vhffs-panel/bazaar/prefs.pl
trunk/vhffs-panel/cvs/prefs.pl
trunk/vhffs-panel/dns/prefs.pl
trunk/vhffs-panel/git/prefs.pl
trunk/vhffs-panel/mercurial/prefs.pl
trunk/vhffs-panel/mysql/prefs.pl
trunk/vhffs-panel/pgsql/prefs.pl
trunk/vhffs-panel/repository/prefs.pl
trunk/vhffs-panel/svn/prefs.pl
Modified: trunk/vhffs-panel/bazaar/prefs.pl
===================================================================
--- trunk/vhffs-panel/bazaar/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/bazaar/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -46,6 +46,7 @@
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
use Vhffs::Panel::Template;
+use Vhffs::Services::Bazaar;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/cvs/prefs.pl
===================================================================
--- trunk/vhffs-panel/cvs/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/cvs/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -46,6 +46,7 @@
use Vhffs::Panel::Main;
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
+use Vhffs::Services::Cvs;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/dns/prefs.pl
===================================================================
--- trunk/vhffs-panel/dns/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/dns/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -47,6 +47,7 @@
use Vhffs::Panel::Main;
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
+use Vhffs::Services::DNS;
my $panel = new Vhffs::Panel::Main();
Modified: trunk/vhffs-panel/git/prefs.pl
===================================================================
--- trunk/vhffs-panel/git/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/git/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -47,6 +47,7 @@
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
use Vhffs::Panel::Template;
+use Vhffs::Services::Git;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/mercurial/prefs.pl
===================================================================
--- trunk/vhffs-panel/mercurial/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/mercurial/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -46,6 +46,7 @@
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
use Vhffs::Panel::Template;
+use Vhffs::Services::Mercurial;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/mysql/prefs.pl
===================================================================
--- trunk/vhffs-panel/mysql/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/mysql/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -47,6 +47,7 @@
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
use Vhffs::Panel::Template;
+use Vhffs::Services::Mysql;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/pgsql/prefs.pl
===================================================================
--- trunk/vhffs-panel/pgsql/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/pgsql/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -46,6 +46,7 @@
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
use Vhffs::Panel::Template;
+use Vhffs::Services::Pgsql;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/repository/prefs.pl
===================================================================
--- trunk/vhffs-panel/repository/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/repository/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -47,6 +47,7 @@
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
use Vhffs::Panel::Template;
+use Vhffs::Services::Repository;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
Modified: trunk/vhffs-panel/svn/prefs.pl
===================================================================
--- trunk/vhffs-panel/svn/prefs.pl 2011-05-13 06:13:57 UTC (rev 1708)
+++ trunk/vhffs-panel/svn/prefs.pl 2011-05-13 06:17:54 UTC (rev 1709)
@@ -45,6 +45,7 @@
use Vhffs::Panel::Main;
use Vhffs::Panel::Menu;
use Vhffs::Panel::Object;
+use Vhffs::Services::Svn;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;