in reply to Personal Node navigator

This was already implemented by tilly as Perlmonks Navigator - which does allow you to browse PerlMonks in a sequential order.

perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web

Replies are listed 'Best First'.
Re: Re: Personal Node navigator
by artist (Parson) on Jul 06, 2003 at 19:46 UTC
    Thanks Corion. tye's solution looks really handy. The bit we can further add is by having 'next' and 'prev' root nodes, else, we may visit many nodes twice or more in the navigation. Site integration would be required here.