mirror of
https://github.com/videolan/vlc.git
synced 2024-11-29 12:57:17 +08:00
3e22bc680c
. updated the TODO list and wrote a small todo.pl parser to make it easier to see which items remain to be done . `make snapshot' now creates vlc-*.tar.gz and vlc-*-nocss.tar.gz
26 lines
318 B
Perl
Executable File
26 lines
318 B
Perl
Executable File
#! /usr/bin/perl
|
|
|
|
$buffer = "";
|
|
$description = "";
|
|
|
|
open FILE, "TODO";
|
|
|
|
while (<FILE>) {
|
|
$buffer .= $_;
|
|
if (/^Status:/) {
|
|
if(/Todo/) {
|
|
print $buffer;
|
|
} else {
|
|
print "\n".$description;
|
|
print $_;
|
|
}
|
|
$buffer = "";
|
|
$description = "";
|
|
} elsif (/^Description/) {
|
|
$description = $_;
|
|
}
|
|
}
|
|
|
|
close FILE;
|
|
|