|
|
Subject: Out of Office - msg#00049
List: lang.perl.xml
I will be out of the office starting 23-09-2005 and will not return until
03-10-2005.
I am out of the office, and will deal with your email when I return on
31-05-05.
Alternatively, please contact Igor Ivanov or Ed Van den Brink
_______________________________________________
Perl-XML mailing list
Perl-XML@xxxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
Re: Perl XML project
On Thu, Sep 22, 2005 at 09:45:02AM +0200, Petr Cimprich wrote:
> Steffen Schwigon wrote:
>
> >Just because no one seemed to have mentioned it yet, what about
> >
> >FreePAN? At least it wants to be the "project svn hosting" complement
> >to CPAN, mostly but not neccessarily aimed at Perl.
> >
> >>From what I've read so far, it could match your goals to consolidate
> >the XML projects.
> >
> >http://freepan.org
> >http://wiki.freepan.org/index.cgi?FAQ
> >
> >
>
> Thanks, freepan.org looks pretty good (though making new accounts
> centrally and by hand could be considered a weak point).
>
> But, in the first place, it seems there is no momentum sufficient for
> making relevant decisions and big changes now. Thus, a slow evolution of
> the current perl-xml SF project might be the only possible way forward.
We should be able to get something done; there seems to be enough
interest recently.
-Dom
_______________________________________________
Perl-XML mailing list
Perl-XML@xxxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Next Message by Date:
click to view message preview
Henrik Hovgaard Laursen/dwa/Kglbib is out of the office.
I will be out of the office starting 24-09-2005 and will not return until
27-09-2005.
_______________________________________________
Perl-XML mailing list
Perl-XML@xxxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Previous Message by Thread:
click to view message preview
Re: Out of Office
On Fri, 2 Sep 2005, Dan Brian wrote:
I will be out of the office starting 02-09-2005 and will not return until
12-09-2005.
I am out of the office, and will deal with your email when I return on
31-05-05.
Alternatively, please contact Igor Ivanov or Ed Van den Brink.
Does anybody have Igor's or Ed's email addresses? We really should forward
all the perl-xml mail to them, so Simon doesn't miss anything while gone.
That'd be a real shame.
The real question is how he's going to deal with my email last May when
he's not coming back for another week. If there's an open source project
that allows me to go back in time to read email that hasn't even been sent
yet I really want a copy! :) Tee-hee.
--
</chris>
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
_______________________________________________
Perl-XML mailing list
Perl-XML@xxxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Next Message by Thread:
click to view message preview
is there a way to check if one xml document is contained in another?
Hi,
SemanticDiff works well for testing identity of two xml documents. However,
what if I want to check if source document is contained in destination
document?
For example:
$src = q{
<a>
<b name="B"/>
<b name="C"/>
<b name="D"/>
</a>};
$dst = q{
<a>
<b name="A"/>
<b name="B"/>
<b name="C"/>
<b name="D"/>
</a>};
use XML::SemanticDiff;
my $diff = XML::SemanticDiff->new();
foreach my $change ($diff->compare($src, $dst)) {
print "$change->{message} in context $change->{context}\n";
}
output:
Attribute 'name' has different value in element 'b'. in context /a[1]/b[1]
Attribute 'name' has different value in element 'b'. in context /a[1]/b[2]
Attribute 'name' has different value in element 'b'. in context /a[1]/b[3]
Rogue element 'b' in element '/a[1]'. in context /a[1]
=======
All messages except the last I'd like to disregard programatically. Has
anyone done this? Any ideas?
Thanks in advance, Yishay
_______________________________________________
Perl-XML mailing list
Perl-XML@xxxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
|
|