=================================================================== RCS file: /cvs/todotxt/Text-Todo/lib/Text/Todo/Entry.pm,v retrieving revision 1.23 retrieving revision 1.27 diff -u -r1.23 -r1.27 --- todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/01/18 03:04:48 1.23 +++ todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/02/13 23:06:34 1.27 @@ -1,15 +1,14 @@ package Text::Todo::Entry; -# $AFresh1: Entry.pm,v 1.22 2010/01/18 02:46:48 andrew Exp $ +# $AFresh1: Entry.pm,v 1.26 2010/01/22 01:30:45 andrew Exp $ use warnings; use strict; use Carp; use Class::Std::Utils; -use List::Util qw/ first /; -use version; our $VERSION = qv('0.0.1'); +use version; our $VERSION = qv('0.1.1'); { @@ -124,6 +123,11 @@ return; } + sub known_tags { + my ( $self ) = @_; + return $known_tags_of{ ident($self) }; + } + sub _tags { my ( $self, $tag ) = @_; my $ident = ident($self); @@ -134,7 +138,10 @@ sub _is_in { my ( $self, $tags, $item ) = @_; - return defined first { $_ eq $item } $self->$tags; + foreach ($self->$tags) { + return 1 if $_ eq $item; + } + return 0; } sub text { @@ -217,9 +224,7 @@ sub done { my ($self) = @_; - my $ident = ident($self); - - return $completion_status_of{$ident}; + return $completion_status_of{ ident($self) }; } sub DESTROY { @@ -243,7 +248,7 @@ Since the $VERSION can't be automatically included, here is the RCS Id instead, you'll have to look up $VERSION. - $Id: Entry.pm,v 1.23 2010/01/18 03:04:48 andrew Exp $ + $Id: Entry.pm,v 1.27 2010/02/13 23:06:34 andrew Exp $ =head1 SYNOPSIS @@ -315,7 +320,7 @@ Each tag type generates two accessor functions {tag}s and in_{tag}. -Current tags are context (@) and project (+). +Default tags are context (@) and project (+). When creating a new object you can pass in new tags to recognize. @@ -326,7 +331,7 @@ my @due_dates = $entry->due_dates; -then @due_dates eq ( '2011-01-01' ); +then @due_dates is ( '2011-01-01' ); and you could also: @@ -336,6 +341,16 @@ =over + +=item known_tags + + $known_tags = $entry->known_tags; + +$known_tags by default would be: + + { context => '@', + project => '+', + } =item {tag}s