Skip Menu |

This queue is for tickets about the Template-Declare CPAN distribution.

Report information
The Basics
Id: 37630
Status: resolved
Priority: 0/
Queue: Template-Declare

People
Owner: Nobody in particular
Requestors: dwheeler [...] cpan.org
Cc:
AdminCc:

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



Subject: Don't Load CGI.pm
Date: Fri, 11 Jul 2008 19:33:46 -0700
To: bug-template-declare [...] rt.cpan.org
From: "David E. Wheeler" <dwheeler [...] cpan.org>
Why load all of CGI.pm just to get a list of tags? Patch attached. Best, David

Message body is not shown because sender requested not to inline it.

Resolved in r5644. Thanks again, Theory.
Subject: Re: [rt.cpan.org #37630] Don't Load CGI.pm
Date: Fri, 1 Aug 2008 14:38:43 -0700
To: bug-Template-Declare [...] rt.cpan.org
From: "David E. Wheeler" <dwheeler [...] cpan.org>
On Aug 1, 2008, at 14:07, Shawn M Moore via RT wrote: Show quoted text
> <URL: http://rt.cpan.org/Ticket/Display.html?id=37630 > > > Resolved in r5644. Thanks again, Theory.
No problem. I just realized that the q tag won't work, because it looks like the q operator. I think you need an alias for it: Index: HTML.pm =================================================================== --- HTML.pm (revision 5650) +++ HTML.pm (working copy) @@ -9,6 +9,7 @@ tr => 'row', td => 'cell', base => 'html_base', + q => 'quote', ); sub get_alternate_spelling { Best, David
Ping! David On Fri Aug 01 17:39:09 2008, DWHEELER wrote: Show quoted text
> On Aug 1, 2008, at 14:07, Shawn M Moore via RT wrote: >
> > <URL: http://rt.cpan.org/Ticket/Display.html?id=37630 > > > > > Resolved in r5644. Thanks again, Theory.
> > No problem. > > I just realized that the q tag won't work, because it looks like the q > operator. I think you need an alias for it: > > Index: HTML.pm > =================================================================== > --- HTML.pm (revision 5650) > +++ HTML.pm (working copy) > @@ -9,6 +9,7 @@ > tr => 'row', > td => 'cell', > base => 'html_base', > + q => 'quote', > ); > > sub get_alternate_spelling { > > Best, > > David
On Fri Aug 01 17:39:09 2008, DWHEELER wrote: Show quoted text
> I just realized that the q tag won't work, because it looks like the q > operator. I think you need an alias for it:
Applied, belatedly, as r6340. Thanks, and apologies for the delay! - Alex