Commit 88dee5fd authored by Sam Hocevar's avatar Sam Hocevar

* ./TODO: scrapped the todo-list. I put the unresolved items in Bugzilla

    (http://bugzilla.videolan.org/).
parent b9eb03bf
$Id: README,v 1.11 2002/08/25 23:18:04 sam Exp $ $Id: README,v 1.12 2002/11/26 14:08:01 sam Exp $
README for vlc, the VideoLAN Client README for vlc, the VideoLAN Client
=================================== ===================================
...@@ -16,7 +16,6 @@ INSTALL.win32 - Installation instructions for the Win32 version of vlc. ...@@ -16,7 +16,6 @@ INSTALL.win32 - Installation instructions for the Win32 version of vlc.
MODULES - Short description of all the available modules. MODULES - Short description of all the available modules.
README - This file. README - This file.
README.MacOSX.rtf - Information specific to the MacOS X port. README.MacOSX.rtf - Information specific to the MacOS X port.
TODO - Work needed.
doc/ - miscellaneous documentation. doc/ - miscellaneous documentation.
Resources Resources
......
This diff is collapsed.
AUTHORS AUTHORS
MAINTAINERS
README README
TODO
FAQ FAQ
#! /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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment