| version 1.16, 2010/01/10 22:49:53 |
version 1.19, 2010/01/11 19:52:06 |
|
|
| package Text::Todo::Entry; |
package Text::Todo::Entry; |
| |
|
| # $RedRiver: Entry.pm,v 1.15 2010/01/10 01:45:52 andrew Exp $ |
# $AFresh1: Entry.pm,v 1.18 2010/01/11 01:30:24 andrew Exp $ |
| |
|
| use warnings; |
use warnings; |
| use strict; |
use strict; |
|
|
| # XXX Should the completion (x) be case sensitive? |
# XXX Should the completion (x) be case sensitive? |
| my $priority_completion_regex = qr{ |
my $priority_completion_regex = qr{ |
| ^ \s* |
^ \s* |
| (?i: (x) \s*)? |
(?i:(x \s* [\d-]* ) \s*)? |
| (?i:\( ([A-Z]) \) \s*)? |
(?i:\( ([A-Z]) \) \s*)? |
| }xms; |
}xms; |
| |
|
| sub new { |
sub new { |
|
|
| $tags_of{$ident}{$tag} = { map { $_ => q{} } |
$tags_of{$ident}{$tag} = { map { $_ => q{} } |
| $text =~ / (?:^|\s) $symbol (\S*)/gxms }; |
$text =~ / (?:^|\s) $symbol (\S*)/gxms }; |
| } |
} |
| ( $completion_status_of{$ident}, $priority_of{$ident} ) |
my ( $completed, $priority ) |
| = $text =~ / $priority_completion_regex /xms; |
= $text =~ / $priority_completion_regex /xms; |
| |
|
| |
$completion_status_of{$ident} = _clean_completed($completed); |
| |
$priority_of{$ident} = $priority; |
| |
|
| return 1; |
return 1; |
| } |
} |
| |
|
| |
sub _clean_completed { |
| |
my ($completed) = @_; |
| |
|
| |
$completed ||= q{}; |
| |
$completed =~ s/^\s+|\s+$//gxms; |
| |
|
| |
if ( !$completed ) { |
| |
return; |
| |
} |
| |
|
| |
if ( $completed =~ s/(x)\s*//ixms ) { |
| |
my $status = $1; |
| |
if ($completed) { |
| |
return $completed; |
| |
} |
| |
else { |
| |
return $status; |
| |
} |
| |
} |
| |
|
| |
return; |
| |
} |
| |
|
| sub _tags { |
sub _tags { |
| my ( $self, $tag ) = @_; |
my ( $self, $tag ) = @_; |
| my $ident = ident($self); |
my $ident = ident($self); |
|
|
| $new =~ s/$priority_completion_regex//xms; |
$new =~ s/$priority_completion_regex//xms; |
| |
|
| if ( $self->done ) { |
if ( $self->done ) { |
| |
if ($self->done !~ /^x/ixms) { |
| |
push @new, 'x'; |
| |
} |
| push @new, $self->done; |
push @new, $self->done; |
| } |
} |
| |
|
|
|
| return 1; |
return 1; |
| } |
} |
| |
|
| $completion_status_of{$ident} = 'x'; |
$completion_status_of{$ident} = sprintf "%04d-%02d-%02d", |
| |
( (localtime)[5] + 1900 ), |
| |
( (localtime)[4] + 1 ), |
| |
( (localtime)[3] ); |
| |
|
| return $self->prepend(); |
return $self->prepend(); |
| } |
} |
|
|
| |
|
| $entry->do; |
$entry->do; |
| |
|
| Does this by prepending an 'x' to the beginning of the entry. |
Does this by prepending "x `date '%Y-%m-%d'`" to the beginning of the entry. |
| |
|
| =head2 done |
=head2 done |
| |
|
| Returns true if an entry is marked complete and false if not. |
Returns true if an entry is marked complete and false if not. |
| |
|
| if (!$entry->done) { |
if (!my $status = $entry->done) { |
| # remind me to do it |
# remind me to do it |
| } |
} |
| |
|
| |
If the entry starts as 'x date', for example 'x 2010-01-01', $status is now |
| |
'2010-01-01'. |
| |
If the entry just starts with 'x', then $status will be 'x'. |
| |
|
| =head1 DIAGNOSTICS |
=head1 DIAGNOSTICS |
| |
|