Skip Menu |

This queue is for tickets about the HTML-Rainbow CPAN distribution.

Report information
The Basics
Id: 39907
Status: resolved
Priority: 0/
Queue: HTML-Rainbow

People
Owner: dland [...] cpan.org
Requestors: david [...] davidfavor.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: HTML::Rainbow additional example request
Date: Wed, 08 Oct 2008 20:26:20 -0500
To: bug-HTML-Rainbow [...] rt.cpan.org
From: David Favor <david [...] davidfavor.com>
Also please email me the code used to create the example in the CPAN entry for this module. Thanks! -- Love feeling your best ever, all day, every day? Click http://RadicalHealth.com/join for the easy way.
On Wed Oct 08 21:26:45 2008, david@davidfavor.com wrote: Show quoted text
> Also please email me the code used to create the > example in the CPAN entry for this module.
use strict; use HTML::Rainbow; my $r = HTML::Rainbow->new; print $r->rainbow(<<END_TEXT), $/; Perl is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It's also a good language for many system management tasks. The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). END_TEXT __END__ That should do the trick. You will indeed have to use CGI or something to set up the web page, and then push this out at the appropriate place (or fill out a template variable or whatever). Regards, David Landgren