Web Form Spell Checker

2004-09-28 Thread Bill Stephenson
Hi All, I've been trying to find a web form spelling checker written in perl but have yet to come across a good working example. It would seem to me that this has probably already been done, but I just can't seem to find one. I found some stuff that uses "aspell" and "ispell", but I doubt that

RE: HTML::Template is choking

2004-09-28 Thread Hanson, Rob
> The nested quotes in my attempt to put TMPL_VARs > into the value field make me suspicious that I > am misusing HTML::Template It may look odd, but the nested quotes are fine. If I had to guess I would say it is because there is a newline within the tag (as it seems to be in your example). I

HTML::Template is choking

2004-09-28 Thread Rick Triplett
HTML::Template is choking with the complaint ... HTML::Template->new() : Syntax error in tag at /XXX[here I'm ommiting the path]/data/templates/student_info.tmpl : 13. at /usr/local/lib/perl5/site_perl/5.005/HTML/Template.pm line 2243. This is a typical line from my template ...

Re: Sorting a hash

2004-09-28 Thread Paul Archer
11:57am, Octavian Rasnita wrote: > Hi all, > > I have a hash that have multiple sub hashes and I want to sort it by a sub > key. > > For example, I have: > > $comp{$code}{$year}{profit}. > > And I want to sort the $code values after the value of the "profit" key. > > Is this possible directly, or

Re: Sorting a hash

2004-09-28 Thread Gunnar Hjalmarsson
Aben Siatris wrote: DÅa Tuesday 28 September 2004 11:42 Gunnar Hjalmarsson napÃsal: Octavian Rasnita wrote: I have a hash that have multiple sub hashes and I want to sort it by a sub key. For example, I have: $comp{$code}{$year}{profit}. And I want to sort the $code values after the value of the "p

Re: Sorting a hash

2004-09-28 Thread Aben Siatris
DÅa Tuesday 28 September 2004 11:42 Gunnar Hjalmarsson napÃsal: > Octavian Rasnita wrote: > > I have a hash that have multiple sub hashes and I want to sort it > > by a sub key. > > > > For example, I have: > > > > $comp{$code}{$year}{profit}. > > > > And I want to sort the $code values after th

Re: Sorting a hash

2004-09-28 Thread Gunnar Hjalmarsson
Octavian Rasnita wrote: I have a hash that have multiple sub hashes and I want to sort it by a sub key. For example, I have: $comp{$code}{$year}{profit}. And I want to sort the $code values after the value of the "profit" key. Is this possible directly, or I will need to create another hash for doi

Sorting a hash

2004-09-28 Thread Octavian Rasnita
Hi all, I have a hash that have multiple sub hashes and I want to sort it by a sub key. For example, I have: $comp{$code}{$year}{profit}. And I want to sort the $code values after the value of the "profit" key. Is this possible directly, or I will need to create another hash for doing this typ