[vhffs-dev] [804] renaming Vhffs::Robots::Postgres to Vhffs::Robots::Pgsql (part one) |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 804
Author: gradator
Date: 2007-08-29 23:31:51 +0000 (Wed, 29 Aug 2007)
Log Message:
-----------
renaming Vhffs::Robots::Postgres to Vhffs::Robots::Pgsql (part one)
Modified Paths:
--------------
trunk/vhffs-api/src/Vhffs/Robots/Postgres.pm
trunk/vhffs-robots/src/create_pgsql.pl
trunk/vhffs-robots/src/delete_pgsql.pl
trunk/vhffs-robots/src/modify_pgsql.pl
Modified: trunk/vhffs-api/src/Vhffs/Robots/Postgres.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Robots/Postgres.pm 2007-08-29 23:30:27 UTC (rev 803)
+++ trunk/vhffs-api/src/Vhffs/Robots/Postgres.pm 2007-08-29 23:31:51 UTC (rev 804)
@@ -30,7 +30,7 @@
# POSSIBILITY OF SUCH DAMAGE.
-package Vhffs::Robots::Postgres;
+package Vhffs::Robots::Pgsql;
use Vhffs::Services::Pgsql;
use Vhffs::Constants;
Modified: trunk/vhffs-robots/src/create_pgsql.pl
===================================================================
--- trunk/vhffs-robots/src/create_pgsql.pl 2007-08-29 23:30:27 UTC (rev 803)
+++ trunk/vhffs-robots/src/create_pgsql.pl 2007-08-29 23:31:51 UTC (rev 804)
@@ -31,7 +31,7 @@
use lib '%VHFFS_LIB_DIR%';
-use Vhffs::Robots::Postgres;
+use Vhffs::Robots::Pgsql;
use Vhffs::Main;
use Vhffs::Robots;
@@ -45,7 +45,7 @@
foreach $db ( @{$dbs} )
{
- if( Vhffs::Robots::Postgres::create_db( $vhffs , $db ) < 0 )
+ if( Vhffs::Robots::Pgsql::create_db( $vhffs , $db ) < 0 )
{
Vhffs::Robots::vhffs_log( sprintf("Cannot create PostgreSQL database %s",$db->get_dbname) , $vhffs);
}
Modified: trunk/vhffs-robots/src/delete_pgsql.pl
===================================================================
--- trunk/vhffs-robots/src/delete_pgsql.pl 2007-08-29 23:30:27 UTC (rev 803)
+++ trunk/vhffs-robots/src/delete_pgsql.pl 2007-08-29 23:31:51 UTC (rev 804)
@@ -32,7 +32,7 @@
use lib '%VHFFS_LIB_DIR%';
use Vhffs::Robots;
use Vhffs::Services::Pgsql;
-use Vhffs::Robots::Postgres;
+use Vhffs::Robots::Pgsql;
use Vhffs::Main;
my $vhffs = init Vhffs::Main;
@@ -45,7 +45,7 @@
foreach $db ( @{$dbs} )
{
- if( Vhffs::Robots::Postgres::delete_db( $vhffs , $db ) < 0 )
+ if( Vhffs::Robots::Pgsql::delete_db( $vhffs , $db ) < 0 )
{
Vhffs::Robots::vhffs_log( sprintf( "Cannot delete PostgreSQL database %s" , $db->get_dbname ), $vhffs);
}
Modified: trunk/vhffs-robots/src/modify_pgsql.pl
===================================================================
--- trunk/vhffs-robots/src/modify_pgsql.pl 2007-08-29 23:30:27 UTC (rev 803)
+++ trunk/vhffs-robots/src/modify_pgsql.pl 2007-08-29 23:31:51 UTC (rev 804)
@@ -33,7 +33,7 @@
use lib '%VHFFS_LIB_DIR%';
use Vhffs::Robots;
use Vhffs::Services::Pgsql;
-use Vhffs::Robots::Postgres;
+use Vhffs::Robots::Pgsql;
use Vhffs::Main;
@@ -46,7 +46,7 @@
foreach $db ( @{$dbs} )
{
- Vhffs::Robots::Postgres::update_db( $vhffs , $db );
+ Vhffs::Robots::Pgsql::update_db( $vhffs , $db );
}
Vhffs::Robots::unlock( $vhffs , "pgsql" );