Skip to content

Commit

Permalink
Version 1.07
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcj committed Feb 21, 2005
1 parent c48001c commit 890960f
Show file tree
Hide file tree
Showing 36 changed files with 276 additions and 161 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Expand Up @@ -134,3 +134,11 @@ Release 1.06 - 13th February 2000
- Bless appropriate objects into Gedcom::Event.
- Add an experimental write_xml().
- Add tutorial section to documentation.

Release 1.07 - 14th March 2000
- Add functions to:
Item.pm:
item()
full_value()
- Get parse_grammar working again.
- Add a test for parse_grammar.
16 changes: 8 additions & 8 deletions Gedcom.pm
Expand Up @@ -3,7 +3,7 @@
# This software is free. It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.transeda.com/pjcj
# http://www.pjcj.fsnet.co.uk

# documentation at __END__

Expand All @@ -22,7 +22,7 @@ use vars qw($VERSION $Tags);

BEGIN
{
$VERSION = "1.06";
$VERSION = "1.07";

$Tags =
{
Expand Down Expand Up @@ -158,10 +158,10 @@ BEGIN
};
}

use Gedcom::Grammar 1.06;
use Gedcom::Individual 1.06;
use Gedcom::Family 1.06;
use Gedcom::Event 1.06;
use Gedcom::Grammar 1.07;
use Gedcom::Individual 1.07;
use Gedcom::Family 1.07;
use Gedcom::Event 1.07;

sub new
{
Expand Down Expand Up @@ -479,7 +479,7 @@ __END__
Gedcom - a module to manipulate Gedcom genealogy files
Version 1.06 - 13th February 2000
Version 1.07 - 14th March 2000
=head1 SYNOPSIS
Expand Down Expand Up @@ -512,7 +512,7 @@ Copyright 1998-2000, Paul Johnson (pjcj@cpan.org)
This software is free. It is licensed under the same terms as Perl itself.
The latest version of this software should be available from my homepage:
http://www.transeda.com/pjcj
http://www.pjcj.fsnet.co.uk
This module provides for manipulation of Gedcom files. Gedcom is a
format for storing genealogical information designed by The Church of
Expand Down
8 changes: 4 additions & 4 deletions Gedcom/Event.pm
Expand Up @@ -3,7 +3,7 @@
# This software is free. It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.transeda.com/pjcj
# http://www.pjcj.fsnet.co.uk

# documentation at __END__

Expand All @@ -13,10 +13,10 @@ require 5.005;

package Gedcom::Event;

use Gedcom::Record 1.06;
use Gedcom::Record 1.07;

use vars qw($VERSION @ISA);
$VERSION = "1.06";
$VERSION = "1.07";
@ISA = qw( Gedcom::Record );

# sub type
Expand Down Expand Up @@ -45,7 +45,7 @@ __END__
Gedcom::Event - a module to manipulate Gedcom events
Version 1.06 - 13th February 2000
Version 1.07 - 14th March 2000
=head1 SYNOPSIS
Expand Down
8 changes: 4 additions & 4 deletions Gedcom/Family.pm
Expand Up @@ -3,7 +3,7 @@
# This software is free. It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.transeda.com/pjcj
# http://www.pjcj.fsnet.co.uk

# documentation at __END__

Expand All @@ -13,10 +13,10 @@ require 5.005;

package Gedcom::Family;

use Gedcom::Record 1.06;
use Gedcom::Record 1.07;

use vars qw($VERSION @ISA);
$VERSION = "1.06";
$VERSION = "1.07";
@ISA = qw( Gedcom::Record );

sub husband
Expand Down Expand Up @@ -82,7 +82,7 @@ __END__
Gedcom::Family - a module to manipulate Gedcom families
Version 1.06 - 13th February 2000
Version 1.07 - 14th March 2000
=head1 SYNOPSIS
Expand Down
8 changes: 4 additions & 4 deletions Gedcom/Grammar.pm
Expand Up @@ -3,7 +3,7 @@
# This software is free. It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.transeda.com/pjcj
# http://www.pjcj.fsnet.co.uk

# documentation at __END__

Expand All @@ -15,10 +15,10 @@ package Gedcom::Grammar;

use Data::Dumper;

use Gedcom::Item 1.06;
use Gedcom::Item 1.07;

use vars qw($VERSION @ISA);
$VERSION = "1.06";
$VERSION = "1.07";
@ISA = qw( Gedcom::Item );

sub structure
Expand Down Expand Up @@ -116,7 +116,7 @@ __END__
Gedcom::Grammar - a module to manipulate Gedcom grammars
Version 1.06 - 13th February 2000
Version 1.07 - 14th March 2000
=head1 SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions Gedcom/Grammar_5_5.pm
Expand Up @@ -3,7 +3,7 @@
# This software is free. It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.transeda.com/pjcj
# http://www.pjcj.fsnet.co.uk

# This file was automatically generated from gedcom-5.5.grammar
# by Paul Johnson
Expand All @@ -14,7 +14,7 @@
# Edit parse_grammar or Makefile.PL to increase the legibility of this file.
# (Removal of the leading spaces nearly halves the size of the file.)

# Version 1.06 - 13th February 2000
# Version 1.07 - 14th March 2000

use strict;

Expand All @@ -23,7 +23,7 @@ require 5.005;
package Gedcom::Grammar_5_5;

use vars qw($VERSION $grammar);
$VERSION = "1.06";
$VERSION = "1.07";

$grammar = bless( {
level => -1,
Expand Down
8 changes: 4 additions & 4 deletions Gedcom/Individual.pm
Expand Up @@ -3,7 +3,7 @@
# This software is free. It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# http://www.transeda.com/pjcj
# http://www.pjcj.fsnet.co.uk

# documentation at __END__

Expand All @@ -13,10 +13,10 @@ require 5.005;

package Gedcom::Individual;

use Gedcom::Record 1.06;
use Gedcom::Record 1.07;

use vars qw($VERSION @ISA);
$VERSION = "1.06";
$VERSION = "1.07";
@ISA = qw( Gedcom::Record );

sub name
Expand Down Expand Up @@ -293,7 +293,7 @@ __END__
Gedcom::Individual - a module to manipulate Gedcom individuals
Version 1.06 - 13th February 2000
Version 1.07 - 14th March 2000
=head1 SYNOPSIS
Expand Down

0 comments on commit 890960f

Please sign in to comment.