http://www.perlmonks.org?node_id=1019575


in reply to Re: Best Perl Module for creating multiple web pages with different information in them?
in thread Best Perl Module for creating multiple web pages with different information in them?

Seriously, suggesting a word processor over some scripting for this task? IMHO this advice isn't ideal, what if they have to make a change, for example add/edit/remove something, your suggestion would mean editing the files again. This is a maintenance nightmare, and a very time consuming, boring repetitive task, you know, the stuff computers are much better than humans at doing?

Update: fixed typo.

  • Comment on Re^2: Best Perl Module for creating multiple web pages with different information in them?

Replies are listed 'Best First'.
Re^3: Best Perl Module for creating multiple web pages with different information in them?
by tobyink (Canon) on Feb 19, 2013 at 17:05 UTC

    Heard of "mail merge"?

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

      I take your point, but I'm a firm believer in using the right tool for the job. Some simple CGI scripting could replicate the functionality demonstrated in the example site. IMHO doing it right the first time would be easier than messing around with a word processor should.