NAME
     Template::Plugin::RoundRobin - Server data in a round robin manner.

SYNOPSIS
       # Alternative backgrounds

       [% USE RoundRobin %]
       [% SET rr = RoundRobin.new("blue","red","green") %]
       [% FOR row = rows %]
       <tr style="color:[% rr.next %]">...</tr>
       [% END %]

DESCRIPTION
   This plugin solves this one simple problem that sometime people want
   alternative style on adjency objects for it's easier to read text on it.

   This plugin provide works exactly the same way as Data::RoundRobin. You
   should create a new instance whenever you want a new set of data. It has
   two methods, "new()" and "next()". "new()" is the constructor of this
   class, a list of data is required, and "next()" return the next element
   of that list.

INSTALLATION

   The way to install this module is just like all other CPAN modules:

   perl Makefile.PL
   make
   sudo make install

SEE ALSO
   Data::RoundRobin

COPYRIGHT
   Copyright 2006 by Kang-min Liu <[email protected]>.

   This program is free software; you can redistribute it and/or modify it
   under the same terms as Perl itself.

   See <http://www.perl.com/perl/misc/Artistic.html>