ting the gedcom files or something
> else?
> I have submitted to them as a possible bug.
>
>
>
> Rich
>
> -Original Message-
> From: Bill Anderson [mailto:b...@anderson-ent.com]
> Sent: Tuesday, April 27, 2010 9:13 PM
> To: perl-gedcom@perl.org
> Subject: Re
[mailto:b...@anderson-ent.com]
Sent: Tuesday, April 27, 2010 9:13 PM
To: perl-gedcom@perl.org
Subject: Re: Reading Notes field in gedcom files
Here is the script, modified to give the results expected. Notice the
use of resolve_xrefs and ref.
#!/bin/perl -w
use strict;
use Gedcom;
my $ge
M
To: perl-gedcom@perl.org
Subject: Re: Reading Notes field in gedcom files
Here is the script, modified to give the results expected. Notice the
use of resolve_xrefs and ref.
#!/bin/perl -w
use strict;
use Gedcom;
my $ged = Gedcom->new(shift);
$ged->resolve_xrefs;
for my $i ( $
Here is the script, modified to give the results expected. Notice the
use of resolve_xrefs and ref.
#!/bin/perl -w
use strict;
use Gedcom;
my $ged = Gedcom->new(shift);
$ged->resolve_xrefs;
for my $i ( $ged->individuals )
{
for my $n ( $i->note )
{
print "=
I believe your script and the GEDCOM module are working correctly, but
you do not get the results you expect because of the way your GEDCOM
file is constructed.
To illustrate, consider two sample files. The first is at
http://www.ged-gen.com/download/lincoln.ged
If you run your script against thi