Enlightenment CVS committal Author : sebastid Project : e17 Module : apps/e
Dir : e17/apps/e/data/other Modified Files: parse_todo.pl Log Message: Fix a match. Strip '* '. =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/data/other/parse_todo.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- parse_todo.pl 27 Jun 2005 11:21:41 -0000 1.1 +++ parse_todo.pl 27 Jun 2005 13:45:33 -0000 1.2 @@ -35,9 +35,10 @@ $is_title = 1; } } - } elsif (/$\\* .*/) { + } elsif (/^\* .*/) { if ($in_body ) { $total_item_count++; + $_ =~ s/^\* //; push(@{$todo_hash{$title}}, $item); $item = {}; $item->{'asignee'} = "Unknown"; @@ -65,7 +66,7 @@ print "<h2>" . $title . "</h2>\n"; - print "<table> \n"; + print "<table>\n"; print " <tr><td>Asignee</td><td>Task</td></tr>\n"; for $item ( @{$todo_hash{$title}} ) { my $asignee = $item->{'asignee'}; ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs