Skip Menu |

This queue is for tickets about the XML-SemanticDiff CPAN distribution.

Report information
The Basics
Id: 46852
Status: rejected
Priority: 0/
Queue: XML-SemanticDiff

People
Owner: Nobody in particular
Requestors: Kumaran.S [...] infineon.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Error while using SemanticDiff.pm V0.99
Date: Thu, 11 Jun 2009 18:24:13 +0800
To: <bug-XML-SemanticDiff [...] rt.cpan.org>
From: <Kumaran.S [...] infineon.com>
Hi, Iam getting the following error while using the perl module SemanticDiff.pm Show quoted text
>perl foo.pl
Pseudo-hashes are deprecated at C:/Program Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157. No such pseudo-hash field "TextChecksum" at C:/Program Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157. Show quoted text
>perl -v
This is perl, v5.8.7 built for MSWin32-x86-multi-thread (with 14 registered patches, see perl -V for more detail) Copyright 1987-2005, Larry Wall Show quoted text
>uname -a
CYGWIN_NT-5.1 blrn79rdh1s 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 Cygwin Any idea, how to solve this problem? Regards, Kumaran.
On Thu Jun 11 06:26:32 2009, Kumaran.S@infineon.com wrote: Show quoted text
> > Hi, > Iam getting the following error while using the perl module > SemanticDiff.pm >
> >perl foo.pl
> Pseudo-hashes are deprecated at C:/Program > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157. > No such pseudo-hash field "TextChecksum" at C:/Program > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157.
It would be useful if you could provide us with the script that is using XML-SemanticDiff and with the version of XML-SemanticDiff. Show quoted text
>
> >perl -v
> This is perl, v5.8.7 built for MSWin32-x86-multi-thread > (with 14 registered patches, see perl -V for more detail) > Copyright 1987-2005, Larry Wall
5.8.7 is very old. Please upgrade to 5.8.9 or 5.10.0. Show quoted text
> >uname -a
> CYGWIN_NT-5.1 blrn79rdh1s 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 Cygwin >
Your cygwin is over 2 years old. Please ugprade. Regards, -- Shlomi Fish Show quoted text
> Any idea, how to solve this problem? > > Regards, > Kumaran.
Subject: RE: [rt.cpan.org #46852] Error while using SemanticDiff.pm V0.99
Date: Thu, 11 Jun 2009 21:35:12 +0800
To: <bug-XML-SemanticDiff [...] rt.cpan.org>
From: <Kumaran.S [...] infineon.com>
Hi, Please find attached perl script and used XML::SemanticDiff modules. Regards, Kumaran. Show quoted text
-----Original Message----- From: Shlomi Fish via RT [mailto:bug-XML-SemanticDiff@rt.cpan.org] Sent: Thursday, June 11, 2009 5:10 PM To: Sundaram Elangkumaran (IFIN WLS MPP MPG PS) Subject: [rt.cpan.org #46852] Error while using SemanticDiff.pm V0.99 <URL: https://rt.cpan.org/Ticket/Display.html?id=46852 > On Thu Jun 11 06:26:32 2009, Kumaran.S@infineon.com wrote:
> > Hi, > Iam getting the following error while using the perl module > SemanticDiff.pm >
> >perl foo.pl
> Pseudo-hashes are deprecated at C:/Program > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157. > No such pseudo-hash field "TextChecksum" at C:/Program > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157.
It would be useful if you could provide us with the script that is using XML-SemanticDiff and with the version of XML-SemanticDiff.
>
> >perl -v
> This is perl, v5.8.7 built for MSWin32-x86-multi-thread (with 14 > registered patches, see perl -V for more detail) Copyright 1987-2005, > Larry Wall
5.8.7 is very old. Please upgrade to 5.8.9 or 5.10.0.
> >uname -a
> CYGWIN_NT-5.1 blrn79rdh1s 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 > Cygwin >
Your cygwin is over 2 years old. Please ugprade. Regards, -- Shlomi Fish
> Any idea, how to solve this problem? > > Regards, > Kumaran.
Download perl_semanticdiff.zip
application/x-zip-compressed 9.3k

Message body not shown because it is not plain text.

On Thu Jun 11 09:35:36 2009, Kumaran.S@infineon.com wrote: Show quoted text
> Hi, > Please find attached perl script and used XML::SemanticDiff modules. >
Hi! You're using XML-SemanticDiff wrong. You need to pass filenames to ->compare - not XML::Simple translations. XML-SemanticDiff neither depend on XML::Simple nor interfaces with it. Here is the corrected script: {{{{{{{{{{ #!/usr/bin/perl # use module use XML::SemanticDiff; my $diff = XML::SemanticDiff->new(); foreach my $change ($diff->compare("file1.xml","file2.xml")) { print "$change->{message} in context $change->{context}\n"; } }}}}}}}}}} Show quoted text
> Regards, > Kumaran. > > > -----Original Message----- > From: Shlomi Fish via RT [mailto:bug-XML-SemanticDiff@rt.cpan.org] > Sent: Thursday, June 11, 2009 5:10 PM > To: Sundaram Elangkumaran (IFIN WLS MPP MPG PS) > Subject: [rt.cpan.org #46852] Error while using SemanticDiff.pm V0.99 > > <URL: https://rt.cpan.org/Ticket/Display.html?id=46852 > > > On Thu Jun 11 06:26:32 2009, Kumaran.S@infineon.com wrote:
> > > > Hi, > > Iam getting the following error while using the perl module > > SemanticDiff.pm > >
> > >perl foo.pl
> > Pseudo-hashes are deprecated at C:/Program > > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157. > > No such pseudo-hash field "TextChecksum" at C:/Program > > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157.
> > It would be useful if you could provide us with the script that is using > XML-SemanticDiff and with the version of XML-SemanticDiff. >
> >
> > >perl -v
> > This is perl, v5.8.7 built for MSWin32-x86-multi-thread (with 14 > > registered patches, see perl -V for more detail) Copyright 1987-2005, > > Larry Wall
> > 5.8.7 is very old. Please upgrade to 5.8.9 or 5.10.0. >
> > >uname -a
> > CYGWIN_NT-5.1 blrn79rdh1s 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 > > Cygwin > >
> > Your cygwin is over 2 years old. Please ugprade. > > Regards, > > -- Shlomi Fish >
> > Any idea, how to solve this problem? > > > > Regards, > > Kumaran.
> > >
Subject: RE: [rt.cpan.org #46852] Error while using SemanticDiff.pm V0.99
Date: Thu, 11 Jun 2009 21:58:38 +0800
To: <bug-XML-SemanticDiff [...] rt.cpan.org>
From: <Kumaran.S [...] infineon.com>
Thanks a lot, I got some result with the changed script. Show quoted text
-----Original Message----- From: Shlomi Fish via RT [mailto:bug-XML-SemanticDiff@rt.cpan.org] Sent: Thursday, June 11, 2009 7:17 PM To: Sundaram Elangkumaran (IFIN WLS MPP MPG PS) Subject: [rt.cpan.org #46852] Error while using SemanticDiff.pm V0.99 <URL: https://rt.cpan.org/Ticket/Display.html?id=46852 > On Thu Jun 11 09:35:36 2009, Kumaran.S@infineon.com wrote:
> Hi, > Please find attached perl script and used XML::SemanticDiff modules. >
Hi! You're using XML-SemanticDiff wrong. You need to pass filenames to ->compare - not XML::Simple translations. XML-SemanticDiff neither depend on XML::Simple nor interfaces with it. Here is the corrected script: {{{{{{{{{{ #!/usr/bin/perl # use module use XML::SemanticDiff; my $diff = XML::SemanticDiff->new(); foreach my $change ($diff->compare("file1.xml","file2.xml")) { print "$change->{message} in context $change->{context}\n"; } }}}}}}}}}}
> Regards, > Kumaran. > > > -----Original Message----- > From: Shlomi Fish via RT [mailto:bug-XML-SemanticDiff@rt.cpan.org] > Sent: Thursday, June 11, 2009 5:10 PM > To: Sundaram Elangkumaran (IFIN WLS MPP MPG PS) > Subject: [rt.cpan.org #46852] Error while using SemanticDiff.pm V0.99 > > <URL: https://rt.cpan.org/Ticket/Display.html?id=46852 > > > On Thu Jun 11 06:26:32 2009, Kumaran.S@infineon.com wrote:
> > > > Hi, > > Iam getting the following error while using the perl module > > SemanticDiff.pm > >
> > >perl foo.pl
> > Pseudo-hashes are deprecated at C:/Program > > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157. > > No such pseudo-hash field "TextChecksum" at C:/Program > > Files/Perl/5_8_EL/lib/XML/SemanticDiff.pm line 157.
> > It would be useful if you could provide us with the script that is > using XML-SemanticDiff and with the version of XML-SemanticDiff. >
> >
> > >perl -v
> > This is perl, v5.8.7 built for MSWin32-x86-multi-thread (with 14 > > registered patches, see perl -V for more detail) Copyright > > 1987-2005, Larry Wall
> > 5.8.7 is very old. Please upgrade to 5.8.9 or 5.10.0. >
> > >uname -a
> > CYGWIN_NT-5.1 blrn79rdh1s 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 > > Cygwin > >
> > Your cygwin is over 2 years old. Please ugprade. > > Regards, > > -- Shlomi Fish >
> > Any idea, how to solve this problem? > > > > Regards, > > Kumaran.
> > >
Resolving as rejected because it's not a bug.