Re: data structure for Template Toolkit

2018-10-31 Thread Rick T
Linux > On Oct 31, 2018, at 6:21 AM, Mike Flannigan wrote: > > > Are you on Linux or using Strawberry Perl? > I used Activestate for 15+ years and I was surprised > by how easy it was to move to Strawberry Perl about > 3 years ago. It's pretty darn easy to install modules > with Strawberry

Re: data structure for Template Toolkit

2018-10-31 Thread Mike Flannigan
Are you on Linux or using Strawberry Perl? I used Activestate for 15+ years and I was surprised by how easy it was to move to Strawberry Perl about 3 years ago.  It's pretty darn easy to install modules with Strawberry Perl and seems to work every time. Mike Uri, thanks for the boatload of us

Re: data structure for Template Toolkit

2018-10-30 Thread perl
Thanks, Brandon! I’m hosted at FutureQuest.net , which has Linux servers. So, nothing oddball or demanding about the environment. But my familiarty with Unix/Linux programming is almost nil, so I sweat over stuff that would seem clear to most programmers. — Rick > On O

Re: data structure for Template Toolkit

2018-10-30 Thread Brandon McCaig
Sorry for the noise. This reply was intended for on-list, but apparently I'm a bit rusty and hit the wrong key. On Tue, Oct 30, 2018 at 02:41:46PM -0400, Brandon McCaig wrote: > On Tue, Oct 30, 2018 at 07:34:11AM -0500, Rick T wrote: > > Still, if anyone can point me to a “beginners guide” to usin

Re: data structure for Template Toolkit

2018-10-30 Thread perl
Looks like a good place to start. When I get the courage, I’ll plunge in! — Rick > On Oct 30, 2018, at 12:40 PM, Shlomi Fish wrote: > > Hi Rick, > > On Tue, 30 Oct 2018 07:34:11 -0500 > Rick T mailto:p...@reason.net>> wrote: > >> Uri, thanks for the boatload of useful suggestions! I will am b

Re: data structure for Template Toolkit

2018-10-30 Thread Rick T
Uri, thanks for the boatload of useful suggestions! I will am busying myself with understanding and applying them. Regarding Template::Simple, this module isn’t among the many that my host has installed, and I have not had success trying to learn how to install stuff from CPAN. Fortunately I’m

Re: data structure for Template Toolkit

2018-10-29 Thread Uri Guttman
On 10/28/18 4:45 PM, Rick T wrote: As a novice in perl I realize that it’s a bit presumptuous for me to attempt references and complex data structures. But I had a need and gave it a shot — a failing shot. I’ve been fiddling with my failure, almost mindlessly, all weekend; now I need some help.

Re: data structure for Template Toolkit

2018-10-29 Thread perl
Many thanks to Andrew and Mike — your suggestions worked and gave me a lot to think about as well! That’s what love about this mailing list: I always learn a lot! Rick Triplett > I hope somebody has replied already. > If not, in general you are reading data from DATA, > creating an array and

Re: data structure for Template Toolkit

2018-10-29 Thread Mike Flannigan
I hope somebody has replied already. If not, in general you are reading data from DATA, creating an array and a hash, and then creating an html file using the Template Toolkit. I think much of it looks good, but I see no use Template::Toolkit or anything similar. Do you have that?  I suspect you

Re: data structure for Template Toolkit

2018-10-28 Thread Andrew Solomon
Hi Rick, The bug is that you're calling my %list = (list => \@courses); when you should be calling my %list = (courses => \@courses); If only there were 'strict' and 'warnings' for Template! :-) Andrew On Sun, Oct 28, 2018 at 8:52 PM Rick T wrote: > As a novice in perl I realize that it’s