netcomics-cvs Mailing List for Netcomics
Brought to you by:
elliotglaysher,
hochstrb
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(38) |
Jun
(51) |
Jul
(7) |
Aug
(41) |
Sep
(15) |
Oct
(9) |
Nov
(2) |
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
(10) |
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(23) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
| 2005 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
(2) |
Jun
(3) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
| 2006 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(6) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
|
Dec
(6) |
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(17) |
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(8) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(7) |
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Sven H. <ha...@us...> - 2011-01-12 02:06:24
|
Update of /cvsroot/netcomics/netcomics/lib In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv2720 Modified Files: unitedmedia Log Message: Extract type from previous regexp. Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- unitedmedia 12 Jan 2011 01:59:13 -0000 1.36 +++ unitedmedia 12 Jan 2011 02:06:17 -0000 1.37 @@ -54,7 +54,7 @@ if (m%(http://[.\d\w]*/dyn/str_strip/\d+[.\d\w]*\.full\.(gif|jpg|png))%) { my $tmp = $1; $tmp =~ s/full/zoom/; - my $type = $1 if ($tmp =~ m%\.(\w+)$%); + my $type = $2; push @relurls, { 'pagebase' => "", 'page' => $tmp, @@ -64,7 +64,7 @@ }; } elsif (m%(/dyn/str_strip/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+[.\d\w]*\.strip(\.sunday|\.zoom)?\.(gif|jpg|png))%) { my $tmp = $1; - my $type = $1 if ($tmp =~ m%\.(\w+)$%); + my $type = $3; push @relurls, { 'page' => $tmp, 'comic' => $tmp, |
|
From: Sven H. <ha...@us...> - 2011-01-12 01:59:22
|
Update of /cvsroot/netcomics/netcomics/lib In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv954 Modified Files: unitedmedia Log Message: Fix zoomed image for Dilbert (hopefully w/o side effects). Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- unitedmedia 14 Nov 2009 00:51:42 -0000 1.35 +++ unitedmedia 12 Jan 2011 01:59:13 -0000 1.36 @@ -62,7 +62,7 @@ 'type' => $type, 'func' => undef, }; - } elsif (m%(/dyn/str_strip/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+[.\d\w]*\.strip(\.sunday)?\.(gif|jpg|png))%) { + } elsif (m%(/dyn/str_strip/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+[.\d\w]*\.strip(\.sunday|\.zoom)?\.(gif|jpg|png))%) { my $tmp = $1; my $type = $1 if ($tmp =~ m%\.(\w+)$%); push @relurls, { |
|
From: Sven H. <ha...@us...> - 2010-05-28 16:21:37
|
Update of /cvsroot/netcomics/netcomics/lib In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17939 Modified Files: real Log Message: Fix Real Life. Yearly archive pages broken on server. Index: real =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/real,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- real 5 May 2006 07:12:12 -0000 1.3 +++ real 28 May 2010 16:21:28 -0000 1.4 @@ -33,9 +33,8 @@ 'base' => $base, 'main' => $base . '/', 'archives' => $base . $arc, - 'page' => $arc, - 'exprs' => ["href=\"(/archive/$date.html)\"", - "src=\"(/comics/$year/${full}_\\d+\\.png)\""], + 'page' => "/archive/$date.html", + 'exprs' => ["src=\"(/comics/$year/${full}_\\d+\\.png)\""], }; return $rec; |
|
From: Sven H. <ha...@us...> - 2010-05-28 16:06:56
|
Update of /cvsroot/netcomics/netcomics/lib In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13887 Modified Files: cad Log Message: Fix Ctrl-Alt-Del. Index: cad =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/cad,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- cad 18 Nov 2008 04:53:39 -0000 1.3 +++ cad 28 May 2010 16:06:45 -0000 1.4 @@ -10,7 +10,7 @@ return undef unless $date > 20021022; - my $base = 'http://www.ctrlaltdel-online.com/'; + my $base = 'http://www.cad-comic.com/'; my $rec = { 'title' => 'Ctrl-Alt-Del', @@ -18,9 +18,9 @@ 'type' => 'jpg', 'main' => $base, 'base' => $base, - 'archives' => $base . 'archives.php', - 'page' => "comic.php?d=$date", - 'exprs' => ["/(comics/$date\.jpg)"], + 'archives' => $base . 'cad/archive', + 'page' => "cad/$date", + 'exprs' => ["/(comics/cad/$date\.jpg)"], }; return $rec; } |
|
From: Sven H. <ha...@us...> - 2009-11-14 00:51:52
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5100 Modified Files: unitedmedia Log Message: Fix dilbert, SF#2897401 Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- unitedmedia 10 Nov 2009 16:55:05 -0000 1.34 +++ unitedmedia 14 Nov 2009 00:51:42 -0000 1.35 @@ -62,7 +62,17 @@ 'type' => $type, 'func' => undef, }; - } + } elsif (m%(/dyn/str_strip/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+/\d+[.\d\w]*\.strip(\.sunday)?\.(gif|jpg|png))%) { + my $tmp = $1; + my $type = $1 if ($tmp =~ m%\.(\w+)$%); + push @relurls, { + 'page' => $tmp, + 'comic' => $tmp, + 'type' => $type, + 'func' => undef, + }; + + } return @relurls; }, @@ -276,8 +286,7 @@ $rec->{'base'} = $baseurl; $rec->{'pagebase'} = undef; $rec->{'exprbase'} = undef; - $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.strip(\\.sunday)?\\.(gif|jpg|png))"], - $rec->{'page'} = strftime("/strips/comic/%Y-%m-%d/",@ltime), + $rec->{'page'} = strftime("/strips/comic/%Y-%m-%d/",@ltime); return $rec; } |
|
From: Sven H. <ha...@us...> - 2009-11-10 23:14:32
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17316/lib Added Files: oots_rss Log Message: New oots_rss module from Clint Olson <clintcompute %&% olsonnetwork.com> which parses the RSS feed. Thank you very much! This module is able to download and display the comic only on days it is released. Drawback: it is _not_ able to download from earlier days than the current day (option -n <number>). This is a limitation of the OotS-RSS-feed, which only provides a lastBuildDate for the whole feed but no timestamps for the seperate items. --- NEW FILE: oots_rss --- #-*-Perl-*- #Add the name of the subroutines to the hash of functions #with the number of days from today the comic is available $hof{"oots_rss"} = 0; #Order of The Stick http://www.giantitp.com sub oots_rss { my $time = shift; my @ltime = gmtime($time); my @monthconv = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); my @dayconv = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"); my $monthname = $monthconv[$ltime[4]]; my $dayname = $dayconv[$ltime[6]]; my $paddate = sprintf("%02d", $ltime[3]); my $datestring = $dayname . ", $paddate $monthname " . ($ltime[5] + 1900); my $rec = { 'title' => "Order of The Stick", 'author' => "Rich Burlew", 'type' => 'gif', 'main' => "http://www.giantitp.com", 'archives' => "http://www.giantitp.com/comics/oots.html", 'base' => "http://www.giantitp.com/", 'page' => "comics/oots.rss", 'referer' => "", 'exprs' => ['<lastBuildDate>' . $datestring . '[^<]*<\/lastBuildDate>.*?<link>http:\/\/www\.[Gg]iant[Ii][Tt][Pp]\.com\/([^<]*)', "(comics\/images\/[0-9a-zA-Z()_]+.[a-z][a-z][a-z])"], }; return $rec; } 1; |
|
From: Sven H. <ha...@us...> - 2009-11-10 23:14:32
|
Update of /cvsroot/netcomics/netcomics In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17316 Modified Files: MANIFEST Log Message: New oots_rss module from Clint Olson <clintcompute %&% olsonnetwork.com> which parses the RSS feed. Thank you very much! This module is able to download and display the comic only on days it is released. Drawback: it is _not_ able to download from earlier days than the current day (option -n <number>). This is a limitation of the OotS-RSS-feed, which only provides a lastBuildDate for the whole feed but no timestamps for the seperate items. Index: MANIFEST =================================================================== RCS file: /cvsroot/netcomics/netcomics/MANIFEST,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- MANIFEST 18 Nov 2008 06:01:40 -0000 1.30 +++ MANIFEST 10 Nov 2009 23:14:23 -0000 1.31 @@ -121,6 +121,8 @@ lib/newshounds lib/norm lib/offthemark +lib/oots +lib/oots_rss lib/penny_arcade lib/pvp lib/real |
|
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; |
|
From: Sven H. <ha...@us...> - 2009-11-10 16:55:13
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3570 Modified Files: unitedmedia Log Message: Remove debug output. Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- unitedmedia 10 Nov 2009 16:52:34 -0000 1.33 +++ unitedmedia 10 Nov 2009 16:55:05 -0000 1.34 @@ -62,7 +62,6 @@ 'type' => $type, 'func' => undef, }; - print "$tmp, $type\n"; } return @relurls; }, |
|
From: Sven H. <ha...@us...> - 2009-11-10 16:52:56
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3264 Modified Files: unitedmedia Log Message: UnitedMedia now back with Zoom instead of Full. Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- unitedmedia 10 Nov 2009 16:15:29 -0000 1.32 +++ unitedmedia 10 Nov 2009 16:52:34 -0000 1.33 @@ -32,17 +32,42 @@ my $baseurl = "http://www.comics.com"; + #Design: + # + #First use a function to determine if the specified date exists, + #then have it return just a hash to update the rli with the correct info. + + my $rec = { 'title' => $title, 'author' => $author, - 'type' => 'gif', 'main' => "$baseurl/$fp/", 'archives' => "$baseurl/$fp/", 'base' => $baseurl, 'pagebase' => $baseurl, - 'exprbase' => "", - 'exprs' => ["(http://[.\\d\\w]*/dyn/str_strip/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], +# 'exprbase' => "", +# 'exprs' => ["(http://[.\\d\\w]*/dyn/str_strip/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], 'page' => strftime("/$fp/%Y-%m-%d/",@ltime), + 'func' => sub { + $_ = shift; + my @relurls = (); + if (m%(http://[.\d\w]*/dyn/str_strip/\d+[.\d\w]*\.full\.(gif|jpg|png))%) { + my $tmp = $1; + $tmp =~ s/full/zoom/; + my $type = $1 if ($tmp =~ m%\.(\w+)$%); + push @relurls, { + 'pagebase' => "", + 'page' => $tmp, + 'comic' => $tmp, + 'type' => $type, + 'func' => undef, + }; + print "$tmp, $type\n"; + } + return @relurls; + }, + + 'size' => $size, }; |
|
From: Sven H. <ha...@us...> - 2009-11-10 16:15:41
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31972/lib Modified Files: unitedmedia Log Message: United Media changed URL scheme again. Adapting. No zoomed images yet. Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- unitedmedia 27 Jun 2009 00:24:44 -0000 1.31 +++ unitedmedia 10 Nov 2009 16:15:29 -0000 1.32 @@ -40,8 +40,8 @@ 'archives' => "$baseurl/$fp/", 'base' => $baseurl, 'pagebase' => $baseurl, - 'exprbase' => "http://assets.comics.com", - 'exprs' => ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.zoom\\.(gif|jpg|png))"], + 'exprbase' => "", + 'exprs' => ["(http://[.\\d\\w]*/dyn/str_strip/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], 'page' => strftime("/$fp/%Y-%m-%d/",@ltime), 'size' => $size, }; |
|
From: Sven H. <ha...@us...> - 2009-08-06 16:19:21
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20558/lib Modified Files: keenspot Log Message: Add "Menage a 3" to Keenspot. Index: keenspot =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/keenspot,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- keenspot 27 Jun 2009 00:54:11 -0000 1.43 +++ keenspot 6 Aug 2009 16:19:12 -0000 1.44 @@ -2,7 +2,7 @@ foreach (qw(avalon ashfield alice banditb boxjam crfh cotc menagerie ccs elf evjake exploit funny gpf greystone helpdesk walky joeav krazyl lwibh - lostfound bayside rad greytown mp mcs newshounds nukees ozy pentasmal rpg + lostfound bayside rad greytown mp mcs mena3 newshounds nukees ozy pentasmal rpg rwaffles ssdd schlock sheldon soap suburban sp twolumps wander wendy cutewendy youdamn chopping fatjc kpanic)) { $hof{"$_"} = 0; @@ -1462,6 +1462,32 @@ return keenspot($title,$author,$date,$url,$index); } +#Menage a 3 +sub mena3 { + my $time = shift; + my @ltime = gmtime($time); + my @ltime2 = gmtime(time); + my $date = strftime("%Y%m%d", @ltime); + my $date2 = strftime("%Y%m%d", @ltime2); + + my @missing = (); + my @extra = (); + + #T-T-Sat + return undef if + (($date < 20080517) || #first comic on May 17, 2008 + (($date >= 20080517 && $date <= $date2) && + ($ltime[6] !~ /[246]/)) || + grep(/$date/,@missing)); + + my $title = "Menage a 3"; + my $author = "Gisele Lagace"; + my $url = "http://www.menagea3.net"; + my $index = undef; + + return keenspot($title,$author,$date,$url,$index); +} + #News Hounds sub newshounds { my $time = shift; |
|
From: Sven H. <ha...@us...> - 2009-06-27 03:11:48
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25938/lib Modified Files: keenspot Added Files: sinf Log Message: New sinfest module. Remove from keenspot. Adapt Makefile.PL --- NEW FILE: sinf --- #-*-Perl-*- $hof{"sinf"} = 0; # Sinfest # http://www.sinfest.net/comikaze/comics/2009-06-15.gif sub sinf { my $time = shift(@_); my @ltime = gmtime($time); #first comic on January 17, 2000 my $date = strftime("%Y%m%d",@ltime); return undef unless $date > 20000117; my $rec = { 'title' => "Sinfest", 'author' => "Tatsuya Ishida", 'type' => 'gif', 'main' => "http://www.sinfest.net", 'archives' => "http://www.sinfest.net/archive.php", 'base' => "http://www.sinfest.net/comikaze/comics/", 'page' => strftime("%Y-%m-%d.gif", @ltime), # 'size' => [703,276], }; return $rec; } 1; Index: keenspot =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/keenspot,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- keenspot 24 Nov 2008 02:51:12 -0000 1.42 +++ keenspot 27 Jun 2009 00:54:11 -0000 1.43 @@ -3,7 +3,7 @@ foreach (qw(avalon ashfield alice banditb boxjam crfh cotc menagerie ccs elf evjake exploit funny gpf greystone helpdesk walky joeav krazyl lwibh lostfound bayside rad greytown mp mcs newshounds nukees ozy pentasmal rpg - rwaffles ssdd schlock sheldon sinf soap suburban sp twolumps wander wendy + rwaffles ssdd schlock sheldon soap suburban sp twolumps wander wendy cutewendy youdamn chopping fatjc kpanic)) { $hof{"$_"} = 0; } @@ -1850,33 +1850,33 @@ return keenspot($title,$author,$date,$url,$index); } -#Sinfest -sub sinf { - my $time = shift; - my @ltime = gmtime($time); - my @ltime2 = gmtime(time); - my $date = strftime("%Y%m%d", @ltime); - my $date2 = strftime("%Y%m%d", @ltime2); - - # Last updated July 5, 2001 - my @missing = (20000131,20000222,20000223,20000224,20000225,20000226, - 20000227,20000228,20000229); - my @extra = (); - - #Everyday until present - return undef if - (($date < 20000117) || #first comic on January 17, 2000 - (($date >= 20000117 && $date <= $date2) && - ($ltime[6] !~ /[0123456]/)) || - grep(/$date/,@missing)); - - my $title = "Sinfest"; - my $author = "Tatsuya Ishida"; - my $url = "http://www.sinfest.net"; - my $index = undef; - - return keenspot($title,$author,$date,$url,$index); -} +##Sinfest +#sub sinf { +# my $time = shift; +# my @ltime = gmtime($time); +# my @ltime2 = gmtime(time); +# my $date = strftime("%Y%m%d", @ltime); +# my $date2 = strftime("%Y%m%d", @ltime2); +# +# # Last updated July 5, 2001 +# my @missing = (20000131,20000222,20000223,20000224,20000225,20000226, +# 20000227,20000228,20000229); +# my @extra = (); +# +# #Everyday until present +# return undef if +# (($date < 20000117) || #first comic on January 17, 2000 +# (($date >= 20000117 && $date <= $date2) && +# ($ltime[6] !~ /[0123456]/)) || +# grep(/$date/,@missing)); +# +# my $title = "Sinfest"; +# my $author = "Tatsuya Ishida"; +# my $url = "http://www.sinfest.net"; +# my $index = undef; +# +# return keenspot($title,$author,$date,$url,$index); +#} #Soap on a Rope sub soap { |
|
From: Sven H. <ha...@us...> - 2009-06-27 03:11:46
|
Update of /cvsroot/netcomics/netcomics In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25938 Modified Files: Makefile.PL Log Message: New sinfest module. Remove from keenspot. Adapt Makefile.PL Index: Makefile.PL =================================================================== RCS file: /cvsroot/netcomics/netcomics/Makefile.PL,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- Makefile.PL 18 Nov 2008 06:01:40 -0000 1.41 +++ Makefile.PL 27 Jun 2009 00:54:11 -0000 1.42 @@ -145,6 +145,7 @@ sourcewars shermans_lagoon shoe +sinf sjungle slowwave sluggy_freelance |
|
From: Sven H. <ha...@us...> - 2009-06-27 03:11:45
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23453 Modified Files: unitedmedia Log Message: Fix dilbert sunday strip. Thanks to Neil Muller. Fixes 2812960 Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- unitedmedia 22 Jun 2009 10:37:49 -0000 1.30 +++ unitedmedia 27 Jun 2009 00:24:44 -0000 1.31 @@ -252,7 +252,7 @@ $rec->{'base'} = $baseurl; $rec->{'pagebase'} = undef; $rec->{'exprbase'} = undef; - $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.strip\\.(gif|jpg|png))"], + $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.strip(\\.sunday)?\\.(gif|jpg|png))"], $rec->{'page'} = strftime("/strips/comic/%Y-%m-%d/",@ltime), return $rec; |
|
From: Sven H. <ha...@us...> - 2009-06-22 10:45:28
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23222 Modified Files: shermans_lagoon Log Message: Fix slagoon, new regexp and new website. Closes: 2654362 Index: shermans_lagoon =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/shermans_lagoon,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- shermans_lagoon 31 Aug 1999 14:39:39 -0000 1.1.1.1 +++ shermans_lagoon 22 Jun 2009 10:45:19 -0000 1.2 @@ -10,10 +10,10 @@ 'title' => "Shermans Lagoon", 'author' => "Jim Toomey", 'type' => 'gif', - 'main' => "http://cgi.dnai.com/~fillmore/cgi-bin/sviewer.pl", - 'archives' => "http://cgi.dnai.com/~fillmore/cgi-bin/sviewer.pl", + 'main' => "http://www.slagoon.com/cgi-bin/sviewer.pl", + 'archives' => "http://www.slagoon.com/cgi-bin/sviewer.pl", 'base' => "http://www.slagoon.com/", - 'page' => strftime("dailies/SL%y.%m.%d.gif",@ltime), + 'page' => strftime("dailies/SL%y%m%d.gif",@ltime), 'size' => ($ltime[6] == 0 ? [650,350] : [576,234]) }; return $rec; |
|
From: Sven H. <ha...@us...> - 2009-06-22 10:37:52
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22424 Modified Files: unitedmedia Log Message: corrected unitedmedia/dilbert Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- unitedmedia 22 Jun 2009 10:10:02 -0000 1.29 +++ unitedmedia 22 Jun 2009 10:37:49 -0000 1.30 @@ -252,7 +252,7 @@ $rec->{'base'} = $baseurl; $rec->{'pagebase'} = undef; $rec->{'exprbase'} = undef; - $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.zoom\\.(gif|jpg|png))"], + $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.strip\\.(gif|jpg|png))"], $rec->{'page'} = strftime("/strips/comic/%Y-%m-%d/",@ltime), return $rec; |
|
From: Sven H. <ha...@us...> - 2009-06-22 10:10:05
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19604 Modified Files: unitedmedia Log Message: Use zoomed image instead of full image for unitedmedia/dilbert Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- unitedmedia 22 Jun 2009 10:07:25 -0000 1.28 +++ unitedmedia 22 Jun 2009 10:10:02 -0000 1.29 @@ -252,7 +252,7 @@ $rec->{'base'} = $baseurl; $rec->{'pagebase'} = undef; $rec->{'exprbase'} = undef; - $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], + $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.zoom\\.(gif|jpg|png))"], $rec->{'page'} = strftime("/strips/comic/%Y-%m-%d/",@ltime), return $rec; |
|
From: Sven H. <ha...@us...> - 2009-06-22 10:07:30
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19376 Modified Files: unitedmedia Log Message: Use zoomed image instead of full image for unitedmedia Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- unitedmedia 22 Jun 2009 10:01:51 -0000 1.27 +++ unitedmedia 22 Jun 2009 10:07:25 -0000 1.28 @@ -41,7 +41,7 @@ 'base' => $baseurl, 'pagebase' => $baseurl, 'exprbase' => "http://assets.comics.com", - 'exprs' => ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], + 'exprs' => ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.zoom\\.(gif|jpg|png))"], 'page' => strftime("/$fp/%Y-%m-%d/",@ltime), 'size' => $size, }; |
|
From: Sven H. <ha...@us...> - 2009-06-22 10:01:56
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18451 Modified Files: unitedmedia Log Message: Fix unitedmedia regexp. Closes: 2809565 Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- unitedmedia 27 Nov 2008 02:55:15 -0000 1.26 +++ unitedmedia 22 Jun 2009 10:01:51 -0000 1.27 @@ -41,7 +41,7 @@ 'base' => $baseurl, 'pagebase' => $baseurl, 'exprbase' => "http://assets.comics.com", - 'exprs' => ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.(gif|jpg|png))"], + 'exprs' => ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], 'page' => strftime("/$fp/%Y-%m-%d/",@ltime), 'size' => $size, }; @@ -252,7 +252,7 @@ $rec->{'base'} = $baseurl; $rec->{'pagebase'} = undef; $rec->{'exprbase'} = undef; - $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.(gif|jpg|png))"], + $rec->{'exprs'} = ["(/dyn/str_strip/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+/\\d+[.\\d\\w]*\\.full\\.(gif|jpg|png))"], $rec->{'page'} = strftime("/strips/comic/%Y-%m-%d/",@ltime), return $rec; |
|
From: Sven H. <ha...@us...> - 2008-11-27 02:55:25
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19105/lib Modified Files: unitedmedia Log Message: Commit fix for SF#2336531 from Jim Henderson. Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- unitedmedia 24 Nov 2008 02:17:01 -0000 1.25 +++ unitedmedia 27 Nov 2008 02:55:15 -0000 1.26 @@ -331,7 +331,7 @@ #Arlo and Janis sub aj { return unitedmedia(shift(@_),"Arlo and Janis","Jimmy Johnson","comics", - "arlonjanis",[725,523],[600,202],"aj"); + "arlo&janis",[725,523],[600,202],"aj"); } #Betty |
|
From: Sven H. <ha...@us...> - 2008-11-24 02:51:19
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14342 Modified Files: keenspot Log Message: whoops, use correct new backreference (way to many () inside this regexp) Index: keenspot =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/keenspot,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- keenspot 24 Nov 2008 02:38:48 -0000 1.41 +++ keenspot 24 Nov 2008 02:51:12 -0000 1.42 @@ -45,7 +45,7 @@ while (1) { if ($text =~ s/src=".*?(\/(comics|strips|\d+)\/.*?$date:??[a-zA-Z_0-9\-\+]*\.((:?jpg)|(:?gif)|(:?png)|(:?swf)))"//i) { my $file = $1; - my $type = $4; + my $type = $3; push(@relurls,$file) unless grep(/$file/, @relurls); $rec->{'type'} = $type; } else { |
|
From: Sven H. <ha...@us...> - 2008-11-24 02:39:01
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13909 Modified Files: keenspot Log Message: fixed crfh Index: keenspot =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/keenspot,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- keenspot 24 Nov 2008 02:17:38 -0000 1.40 +++ keenspot 24 Nov 2008 02:38:48 -0000 1.41 @@ -43,9 +43,9 @@ my @relurls = (); #repeatedly match and replace. while (1) { - if ($text =~ s/src=".*?(\/((comics)|(strips))\/.*?$date:??[a-zA-Z_0-9\-\+]*\.((:?jpg)|(:?gif)|(:?png)|(:?swf)))"//i) { + if ($text =~ s/src=".*?(\/(comics|strips|\d+)\/.*?$date:??[a-zA-Z_0-9\-\+]*\.((:?jpg)|(:?gif)|(:?png)|(:?swf)))"//i) { my $file = $1; - my $type = $5; + my $type = $4; push(@relurls,$file) unless grep(/$file/, @relurls); $rec->{'type'} = $type; } else { |
|
From: Sven H. <ha...@us...> - 2008-11-24 02:17:42
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13008 Modified Files: keenspot Log Message: Argh, correct unintentional keenspot commit Index: keenspot =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/keenspot,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- keenspot 24 Nov 2008 02:17:01 -0000 1.39 +++ keenspot 24 Nov 2008 02:17:38 -0000 1.40 @@ -20,7 +20,7 @@ if (!defined($index)) {$index = "index.html";} my @ltime2 = gmtime(time); - my $page = "/D/$date.html"; + my $page = "/d/$date.html"; if ($index =~ /wander/) { $page = "/D/$date.html"; $index = "index.html"; |
|
From: Sven H. <ha...@us...> - 2008-11-24 02:17:06
|
Update of /cvsroot/netcomics/netcomics/lib In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12956 Modified Files: keenspot unitedmedia Log Message: Umm, correctly merge fbofw Index: unitedmedia =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/unitedmedia,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- unitedmedia 24 Nov 2008 02:05:00 -0000 1.24 +++ unitedmedia 24 Nov 2008 02:17:01 -0000 1.25 @@ -9,7 +9,7 @@ $hof{$_} = 0; } -foreach (qw(ao aj betty bl com dr fbofw geech grizz herman js knc mar +foreach (qw(ao aj betty bl com dr geech grizz herman js knc mar meg nancy pearls monty rose jworld)) { $hof{$_} = 0; } @@ -358,12 +358,6 @@ [725,504],[600,200],"dr"); } -#For Better or For Worser -sub fbofw { - return unitedmedia(shift(@_),"For Better or For Worse","Lynn Johnston", - "comics","forbetter",[725,535],[600,222],"fbofw"); -} - #Geech sub geech { return unitedmedia(shift(@_),"Geech","Jerry Bittle","comics","geech", Index: keenspot =================================================================== RCS file: /cvsroot/netcomics/netcomics/lib/keenspot,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- keenspot 16 Nov 2005 21:51:40 -0000 1.38 +++ keenspot 24 Nov 2008 02:17:01 -0000 1.39 @@ -20,7 +20,7 @@ if (!defined($index)) {$index = "index.html";} my @ltime2 = gmtime(time); - my $page = "/d/$date.html"; + my $page = "/D/$date.html"; if ($index =~ /wander/) { $page = "/D/$date.html"; $index = "index.html"; |