[Netcomics-cvs] netcomics/lib oots,1.1,1.2
Brought to you by:
elliotglaysher,
hochstrb
|
From: Sven H. <ha...@us...> - 2009-11-10 18:16:36
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13348 Modified Files: oots Log Message: OOTS needs a referer. Also: comment restriction to m-w-f. Will download latest comic on days where no new comic is available. No resolution to this problem yet. Index: oots =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/oots,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- oots 20 Dec 2006 04:14:49 -0000 1.1 +++ oots 10 Nov 2009 18:16:25 -0000 1.2 @@ -7,7 +7,7 @@ sub oots { my $time = shift; my @ltime = gmtime($time); - return if (($ltime[6] != 1) && ($ltime[6] != 3) && ($ltime[6] != 5)); +# return if (($ltime[6] != 1) && ($ltime[6] != 3) && ($ltime[6] != 5)); my $rec = { 'title' => "Order of the Stick", @@ -17,6 +17,7 @@ 'archives' => "http://www.giantitp.com/comics/oots.html", 'base' => "http://www.giantitp.com/", 'page' => "/index.html", + 'referer' => "http://www.giantitp.com/comics/oots.html", 'exprs' => ["(comics/oots[0-9]+.html)", "(comics\/images\/[a-zA-Z0-9-]+.[a-z][a-z][a-z])"] }; return $rec; |