r77252 - in /branches/upstream/libnet-epp-perl/current: ./ lib/Net/ lib/Net/EPP/ lib/Net/EPP/Frame/Command/Check/ lib/Net/EPP/Frame/Command/Create/ lib/Net/EPP/Frame/Command/Delete/ lib/Net/EPP/Frame/Command/Info/ lib/Net/EPP/Frame/Command/Renew/ lib/Net/EPP/Frame/Command/Transfer/ lib/Net/EPP/Frame/Command/Update/

fabreg-guest at users.alioth.debian.org fabreg-guest at users.alioth.debian.org
Fri Jul 8 16:21:02 UTC 2011


Author: fabreg-guest
Date: Fri Jul  8 16:21:00 2011
New Revision: 77252

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77252
Log:
[svn-upgrade] new version libnet-epp-perl (0.18)

Modified:
    branches/upstream/libnet-epp-perl/current/Makefile.PL
    branches/upstream/libnet-epp-perl/current/README
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Contact.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Host.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Contact.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Contact.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Host.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Contact.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Host.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Renew/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Contact.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Contact.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Domain.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Host.pm
    branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Simple.pm

Modified: branches/upstream/libnet-epp-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/Makefile.PL?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/Makefile.PL (original)
+++ branches/upstream/libnet-epp-perl/current/Makefile.PL Fri Jul  8 16:21:00 2011
@@ -10,6 +10,6 @@
 		'IO::Socket::SSL'	=> 0,
 		'XML::LibXML'		=> 0,
 		'Time::HiRes'		=> 0,
-		'Digest::SHA1'		=> 0,
+		'Digest::SHA'		=> 0,
 	},
 );

Modified: branches/upstream/libnet-epp-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/README?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/README (original)
+++ branches/upstream/libnet-epp-perl/current/README Fri Jul  8 16:21:00 2011
@@ -12,7 +12,7 @@
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 
-Copyright (C) 2010 CentralNic Ltd. All rights reserved.
+Copyright (C) 2011 CentralNic Ltd. All rights reserved.
 
 --
 $Id: README,v 1.1.1.1 2005/03/07 11:31:58 gavin Exp $

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP.pm Fri Jul  8 16:21:00 2011
@@ -12,7 +12,7 @@
 use Net::EPP::Simple;
 use strict;
 
-our $VERSION = '0.17';
+our $VERSION = '0.18';
 
 1;
 

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame.pm Fri Jul  8 16:21:00 2011
@@ -17,7 +17,7 @@
 use strict;
 
 our $EPP_URN	= 'urn:ietf:params:xml:ns:epp-1.0';
-our $SCHEMA_URI	= 'http://www.w3.org/2011/XMLSchema-instance';
+our $SCHEMA_URI	= 'http://www.w3.org/2001/XMLSchema-instance';
 
 =pod
 

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Contact.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Contact.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Contact.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Contact.pm Fri Jul  8 16:21:00 2011
@@ -31,7 +31,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Domain.pm Fri Jul  8 16:21:00 2011
@@ -31,7 +31,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Host.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Host.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Host.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Check/Host.pm Fri Jul  8 16:21:00 2011
@@ -31,7 +31,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Contact.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Contact.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Contact.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Contact.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Create/Domain.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Contact.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Contact.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Contact.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Contact.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Domain.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Host.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Host.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Host.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Delete/Host.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Contact.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Contact.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Contact.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Contact.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Domain.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Host.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Host.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Host.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Info/Host.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Renew/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Renew/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Renew/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Renew/Domain.pm Fri Jul  8 16:21:00 2011
@@ -30,7 +30,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Contact.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Contact.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Contact.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Contact.pm Fri Jul  8 16:21:00 2011
@@ -30,7 +30,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Transfer/Domain.pm Fri Jul  8 16:21:00 2011
@@ -31,7 +31,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Contact.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Contact.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Contact.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Contact.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Domain.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Domain.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Domain.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Domain.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Host.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Host.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Host.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Frame/Command/Update/Host.pm Fri Jul  8 16:21:00 2011
@@ -29,7 +29,7 @@
 
 	<?xml version="1.0" encoding="UTF-8"?>
 	<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
-	  xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
+	  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
 	  epp-1.0.xsd">
 	    <command>

Modified: branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Simple.pm?rev=77252&op=diff
==============================================================================
--- branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Simple.pm (original)
+++ branches/upstream/libnet-epp-perl/current/lib/Net/EPP/Simple.pm Fri Jul  8 16:21:00 2011
@@ -5,7 +5,7 @@
 # $Id: Simple.pm,v 1.10 2011/04/08 12:57:11 gavin Exp $
 package Net::EPP::Simple;
 use Carp;
-use Digest::SHA1 qw(sha1_hex);
+use Digest::SHA qw(sha1_hex);
 use Net::EPP::Frame;
 use Net::EPP::ResponseCodes;
 use Time::HiRes qw(time);
@@ -1280,6 +1280,7 @@
 	my ($self, $frame) = @_;
 
 	if ($self->{reconnect} > 0) {
+		$self->debug("reconnect is $self->{reconnect}, pinging");
 		if (!$self->ping) {
 			$self->debug('connection seems dead, trying to reconnect');
 			for (1..$self->{reconnect}) {
@@ -1298,6 +1299,7 @@
 			return undef;
 
 		} else {
+			$self->debug("Connection is up, sending frame");
 			return $self->request($frame);
 
 		}




More information about the Pkg-perl-cvs-commits mailing list