Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(42) |
Jul
(80) |
Aug
(77) |
Sep
(97) |
Oct
(65) |
Nov
(80) |
Dec
(39) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(63) |
Feb
(47) |
Mar
(45) |
Apr
(63) |
May
(67) |
Jun
(51) |
Jul
(78) |
Aug
(37) |
Sep
(45) |
Oct
(59) |
Nov
(50) |
Dec
(70) |
2004 |
Jan
(23) |
Feb
(90) |
Mar
(37) |
Apr
(53) |
May
(111) |
Jun
(71) |
Jul
(35) |
Aug
(58) |
Sep
(35) |
Oct
(35) |
Nov
(35) |
Dec
(20) |
2005 |
Jan
(51) |
Feb
(19) |
Mar
(20) |
Apr
(8) |
May
(26) |
Jun
(14) |
Jul
(49) |
Aug
(24) |
Sep
(20) |
Oct
(49) |
Nov
(17) |
Dec
(53) |
2006 |
Jan
(12) |
Feb
(26) |
Mar
(45) |
Apr
(19) |
May
(19) |
Jun
(13) |
Jul
(11) |
Aug
(9) |
Sep
(10) |
Oct
(16) |
Nov
(17) |
Dec
(13) |
2007 |
Jan
(9) |
Feb
(12) |
Mar
(28) |
Apr
(33) |
May
(12) |
Jun
(12) |
Jul
(19) |
Aug
(4) |
Sep
(4) |
Oct
(5) |
Nov
(5) |
Dec
(13) |
2008 |
Jan
(6) |
Feb
(7) |
Mar
(14) |
Apr
(16) |
May
(3) |
Jun
(1) |
Jul
(12) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(9) |
2009 |
Jan
(9) |
Feb
|
Mar
(10) |
Apr
(1) |
May
|
Jun
(6) |
Jul
(5) |
Aug
(3) |
Sep
(7) |
Oct
(1) |
Nov
(15) |
Dec
(1) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
|
Jun
|
Jul
(5) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
(3) |
Mar
|
Apr
(28) |
May
|
Jun
|
Jul
(3) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
(8) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2016 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
|
2
|
3
|
4
(1) |
5
|
6
(6) |
7
(16) |
8
(3) |
9
|
10
(3) |
11
(1) |
12
|
13
(3) |
14
|
15
(2) |
16
(3) |
17
|
18
|
19
|
20
|
21
(5) |
22
|
23
(1) |
24
(1) |
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
From: Tom Heady <tom-html-template@pu...> - 2006-03-16 06:53:25
|
Attached are patches/tests for the following bugs: * when specifying a default_escape, you can't turn it off I have fixed ESCAPE=0 and added ESCAPE=NONE to turn off escaping altogether for a TMPL_VAR. The pod was also updated to reflect this change. Usage: <TMPL_VAR foo ESCAPE=NONE> <TMPL_VAR foo ESCAPE=0> * ESCAPE='JS' did not work I fixed a regex so that single quotes around JS now works. I have also added a new test file: 04default_escape.t Tom |
From: Tom Heady <tom-html-template@pu...> - 2006-03-16 04:38:30
|
Mark Stosberg wrote: > On 2006-03-15, Tom Heady <tom-html-template@...> wrote: > >>Hello, >> >>What would be the most appropriate way to contribute bug >>fixes/patches/tests? >> ... > > Tom, > > I believe using the bug tracking system is the preferred route. I know > Sam has mentioned that in the past. It's also a visible place for other > users to find the contribution in case they want to use it before an > official release happens. > > Mark > Uh, but which one? Sourceforge: http://sourceforge.net/tracker/?atid=101075&group_id=1075&func=browse or cpan: http://rt.cpan.org/Public/Dist/Display.html?Name=HTML-Template Tom |
From: Mark Stosberg <mark@su...> - 2006-03-16 04:13:15
|
On 2006-03-15, Tom Heady <tom-html-template@...> wrote: > Hello, > > What would be the most appropriate way to contribute bug > fixes/patches/tests? > > I have a patch and tests that will fix the following: > > ------------------------------------ > use HTML::Template; > > my $text = q{<TMPL_VAR foo ESCAPE=0>}; > my $template = HTML::Template->new( > scalarref => \$text, > default_escape => "HTML" ); > $template->param(foo => '<b>this is bold\n'); > print $template->output; > > __DATA__ > <b>this is bold\n > > ------------------------------------ Tom, I believe using the bug tracking system is the preferred route. I know Sam has mentioned that in the past. It's also a visible place for other users to find the contribution in case they want to use it before an official release happens. Mark -- http://mark.stosberg.com/ |