DragonFly kernel List (threaded) for 2003-07
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
Re: Guidelines for tasks?
Matthew Dillon wrote:
> Well, I agree with the concept. I'm not sure about a visual
> representation but we could create nested dependancies on a web page
> using tables.
dot!
tasks.dot:
digraph tasks
{
task1;
task1a;
task1b;
task1 -> task1a;
task1 -> task1b;
task1b1;
task1b2;
task1b -> task1b1;
task1b -> task1b2;
task1a -> task1b1;
task2;
task2a;
task2 -> task2a;
task2a -> task1b2;
}
dot -Tgif -o tasks.gif tasks.dot
Of course, you'd probably want to generate the dot file from something
more general-purpose. You might even persuade me to volunteer :-)
Cheers,
Ben.
--
http://www.apache-ssl.org/ben.html http://www.thebunker.net/
"There is no limit to what a man can do or how far he can go if he
doesn't mind who gets the credit." - Robert Woodruff
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]