--- dailystrips-1.0.28.orig/README.LOCAL +++ dailystrips-1.0.28/README.LOCAL @@ -20,7 +20,7 @@ the downloaded images and output files. Create a cron script like the following and put it in /etc/cron.daily -(call it dailystrips.sh, etc) +(call it dailystrips, for example) #!/bin/sh echo "dailystrips running:" @@ -55,4 +55,4 @@ personal use only, as making the output publicly available on the internet constitutes copyright infringement, without permission from the strips' authors. As far as I know, though, it's within your rights -to use this for personal use. \ No newline at end of file +to use this for personal use. --- dailystrips-1.0.28.orig/dailystrips +++ dailystrips-1.0.28/dailystrips @@ -253,21 +253,31 @@ #Set proxy if ($options{'proxy'}) { - $options{'proxy'} =~ /^(http:\/\/)?(.*?):(.+?)\/?$/i; + $options{'proxy'} =~ /^(https?:\/\/)?(.*?):(.+?)\/?$/i; unless ($2 and $3) { - die "Error: incorrectly formatted proxy server ('http://server:port' expected)\n"; + die "Error: incorrectly formatted proxy server ('http://server:port' expected (or https...))\n"; } - $options{'proxy'} = "http://$2:$3"; + if ( defined($1) ) { + $options{'proxy'} = "$1"; + } else { + $options{'proxy'} = "http://"; + } + $options{'proxy'} .= "$2:$3"; } if (!$options{'noenvproxy'} and !$options{'proxy'} and $ENV{'http_proxy'} ) { - $ENV{'http_proxy'} =~ /(http:\/\/)?(.*?):(.+?)\/?$/i; + $ENV{'http_proxy'} =~ /(https?:\/\/)?(.*?):(.+?)\/?$/i; unless ($2 and $3) { die "Error: incorrectly formatted proxy server environment variable\n('http://server:port' expected)\n"; } - $options{'proxy'} = "http://$2:$3"; + if ( defined($1) ) { + $options{'proxy'} = "$1"; + } else { + $options{'proxy'} = "http://"; + } + $options{'proxy'} .= "$2:$3"; } if ($options{'proxyauth'}) { @@ -557,7 +567,7 @@ } else { if ($options{'local'}) { # local mode - download strips - $img_addr =~ /http:\/\/(.*)\/(.*)\.(.*?)([?&].+)?$/; + $img_addr =~ /https?:\/\/(.*)\/(.*)\.(.*?)([?&].+)?$/; if (defined $3) { $ext = ".$3" } # prepare file names @@ -682,22 +692,7 @@ print IMAGE $image; close(IMAGE); - if (-e $local_name and system("diff \"$local_name\" \"$local_name.tmp\" >/dev/null 2>&1") == 0) { - # already downloaded the same strip earlier today - unlink("$local_name.tmp"); - - if ($options{'avantgo'}) { - $img_line = &make_avantgo_table($local_name, $ext); - } else { - $img_addr = $local_name; - $img_addr =~ s/ /\%20/go; - if ($options{'stripnav'}) { - $img_line = "\"$name\"
Return to top"; - } else { - $img_line = "\"$name\""; - } - } - } elsif (system("diff \"$local_name_yesterday\" \"$local_name.tmp\" >/dev/null 2>&1") == 0) { + if (system("diff \"$local_name_yesterday\" \"$local_name.tmp\" >/dev/null 2>&1") == 0) { # same strip as yesterday if ($options{'nosymlinks'}) { system("mv","$local_name.tmp","$local_name"); @@ -722,6 +717,21 @@ $img_line = "\"$name\""; } } + } elsif (-e $local_name and system("diff \"$local_name\" \"$local_name.tmp\" >/dev/null 2>&1") == 0) { + # already downloaded the same strip earlier today + unlink("$local_name.tmp"); + + if ($options{'avantgo'}) { + $img_line = &make_avantgo_table($local_name, $ext); + } else { + $img_addr = $local_name; + $img_addr =~ s/ /\%20/go; + if ($options{'stripnav'}) { + $img_line = "\"$name\"
Return to top"; + } else { + $img_line = "\"$name\""; + } + } } else { # completely new strip # possible to get here by: @@ -862,7 +872,7 @@ my $ua = LWP::UserAgent->new; $ua->agent($options{'useragent'}); - $ua->proxy('http', $options{'proxy'}); + $ua->proxy(['http', 'https'], $options{'proxy'}); for (1 .. $options{'retries'}) { # main request @@ -936,7 +946,7 @@ $addr = $defs{$strip}{'baseurl'} . $defs{$strip}{'imageurl'}; } - unless ($addr =~ /^(http:\/\/|unavail)/io) { $addr = "http://" . $addr } + unless ($addr =~ /^(https?:\/\/|unavail)/io) { $addr = "http://" . $addr } push(@strips,"$strip;$defs{$strip}{'name'};$defs{$strip}{'homepage'};$addr;$defs{$strip}{'referer'};$defs{$strip}{'prefetch'};$defs{$strip}{'artist'}"); } @@ -966,7 +976,7 @@ next if $_ eq ""; if (!$sectype) { - if (/^strip\s+(\w+)$/i) + if (/^strip\s+(\S+)$/i) { if (defined ($defs{$1})) { @@ -1068,7 +1078,7 @@ } for (qw(homepage searchpage baseurl imageurl)){ - if ($defs{$strip}{$_} and $defs{$strip}{$_} !~ /^http:\/\//io) { + if ($defs{$strip}{$_} and $defs{$strip}{$_} !~ /^https?:\/\//io) { die "Error: strip $strip has invalid $_\n" } } --- dailystrips-1.0.28.orig/dailystrips-clean +++ dailystrips-1.0.28/dailystrips-clean @@ -43,7 +43,7 @@ Options: -q --quiet Turn off progress messages -v --verbose Turn on extra progress information, overrides -q - -t --test Do not acutally remove files + -t --test Do not actually remove files -d --dir DIR Work in specified directory instead of current directory -a --archive Update archive.html file @@ -169,4 +169,4 @@ { warn "Error: cannot update archive.html - could not read file: $!\n"; } -} \ No newline at end of file +} --- dailystrips-1.0.28.orig/dailystrips-clean.1 +++ dailystrips-1.0.28/dailystrips-clean.1 @@ -0,0 +1,54 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DAILYSTRIPS-CLEAN "1" "June 25, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +dailystrips-clean \- remove old downloaded dailystrips +.SH SYNOPSIS +.B dailystrips-clean +[\fIOPTIONS\fR] \fIDAYS\fR +.SH DESCRIPTION +This utility by default removes all comic strips downloaded by +.BR dailystrips +in the current directory that are older than a specified number of days. +.SH OPTIONS +.TP +.B \-q, \-\-quiet +Turn off progress messages +.TP +.B \-v, \-\-verbose +Turn on extra progress information, overrides \-q +.TP +.B \-t, \-\-test +Do not actually remove files +.TP +.B \-d, \-\-dir DIR +Work in specified directory instead of current directory +.TP +.B \-a \-\-archive +Update archive.html file +.TP +.B \-V, \-\-version +Print version number +.TP +.B \-h, \-\-help +Show summary of options +.SH "SEE ALSO" +.BR dailystrips (1) +.SH AUTHOR +This manual page was written by Rene Weber +, for the Debian GNU/Linux system +(but may be used by others). --- dailystrips-1.0.28.orig/dailystrips-update +++ dailystrips-1.0.28/dailystrips-update @@ -11,6 +11,9 @@ # Current Revision: 1.0.0 # +# "dailystrips-update" is deprecated as upstream is dead, it will be removed +# in a future release. +exit(0); # Set up use strict; --- dailystrips-1.0.28.orig/dailystrips-update.1 +++ dailystrips-1.0.28/dailystrips-update.1 @@ -0,0 +1,91 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DAILYSTRIPS-UPDATE "1" "June 25, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +dailystrips-update \- download updated dailystrips definitions +.SH SYNOPSIS +.B dailystrips-update +[\fIOPTIONS\fR] \fIDAYS\fR +.SH WARNING +This script is intended to use under the assumption that the development +version of strips.def is the latest and best. Unfortunately, at the time +of this writing (August, 2007) upstream development seems to have ceased, so +using this script will likely result in a +.B more out-of-date +strips definiton than is included in the distribution. +.SH WARNING +Due to the above, as of November 2009, +.BR dailystrips-update +has been neutered to exit immediately on execution, and it is expected that +it will be removed in a future version of this package. +.SH DESCRIPTION +The +.BR dailystrips-update +script is provided to automatically retrieve updated strip definitions from +a central server, eliminating the need to manually download and install new +versions of the entire program. + +It is recommened that the +.BR dailystrips-update +script be run before each execution of the main dailystrips program. The +.BR dailystrips-update +script has provisions to only check for updates if the current file has +reached a certain age, which maximizes efficiency and should allow users to +run the update script before each execution of dailystrips without +overtaxing the update server. +.SH USAGE +Operation is straightforward. Simply execute +.BR dailystrips-update +and the updated definitions will be saved to ~/.dailystrips-updates.def, +which will automatically be loaded by the main dailystrips program. +.SH OPTIONS +.TP +.B \-q, \-\-quiet +Turn off progress messages +.TP +.B \-v, \-\-verbose +Turn on extra progress information, overrides \-q +.TP +.B \-\-proxy host:port +Use specified HTTP proxy server (overrides environment proxy, if set) +.TP +.B \-\-proxyauth user:pass +Set username and password for proxy server +.TP +.B \-\-noenvproxy +Ignore the http_proxy environment variable, if set +.TP +.B \-\-retries NUM +When downloading items, make NUM attempts instead of only once +.TP +.B \-\-updates FILE +Save updates to FILE instead of ~/.dailystrips-updates.def +.TP +.B \-\-minage NUM +Skip downloading updates if local file is less than NUM seconds old +.TP +.B \-V, \-\-version +Print version number +.TP +.B \-h, \-\-help +Show summary of options +.SH "SEE ALSO" +.BR dailystrips (1) +.SH AUTHOR +This manual page was written by Rene Weber +, for the Debian GNU/Linux system +(but may be used by others). --- dailystrips-1.0.28.orig/dailystrips.1 +++ dailystrips-1.0.28/dailystrips.1 @@ -0,0 +1,158 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DAILYSTRIPS 1 "June 25, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +dailystrips \- view web comic strips more conveniently +.SH SYNOPSIS +.B dailystrips +.RI [ options ] " stripname" ... +.SH DESCRIPTION +This manual page documents briefly the +.B dailystrips +command. +This manual page was written for the Debian GNU/Linux distribution +because the original program does not have a manual page. +.PP +\fBdailystrips\fP is a Perl script that gathers online comic strips for more +convenient viewing. When in normal mode, it creates an HTML page that +references the strips directly, and when in local mode, it also downloads +the images to your local disk. In local mode, it is intended to be run from +cron, and for your own private use only \-\- redistribution of the images +may be illegal. +.SH COMIC STRIP DEFINITIONS +There are three files from which the definitions for comic strips can be +read (aside from that specified with the \-\-defs option, which is read +right after the one in /usr/share/dailystrips). The shipped definition file +is in /usr/share/dailystrips/strips.def and is read first. Next, +dailystrips reads the system-wide override file in /etc/dailystrips.defs +(unless \-\-nosystem is specified), which can hold an updated definition +file permitting up to date or locally-specific definitions without having to +upgrade the whole package. Finally, the user's own override file in +~/.dailystrips.defs is read (unless \-\-nopersonal is used). The last +definition read has precedence. Updated strip definitions can be downloaded +at . +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +For a complete description, see the README file in +/usr/share/doc/dailystrips/. +.TP +.B \-h, \-\-help +Show summary of options +.TP +.B \-q, \-\-quiet +Turn off progress messages +.TP +.B \-\-verbose +Turns on extra progress information, overrides \-q +.TP +.B \-\-list +List available strips +.TP +.B \-\-random +Download a random strip +.TP +.B \-\-defs FILE +Use alternate strips definition file +.TP +.B \-\-nopersonal +Ignore ~/.dailystrips.defs +.TP +.B \-\-nosystem +Ignore system-wide definitions in /etc/dailystrips.defs +.TP +.B \-\-output FILE +Output HTML to FILE instead of STDOUT (does not apply to local mode) +.TP +.B \-\-lite +Output a reduced HTML page +.TP +.B \-\-stripnav +Add links for navigation within the page +.TP +.B \-\-titles STRING +Customize HTML output +.TP +.B \-l, \-\-local +Output HTML to file and save strips locally +.TP +.B \-\-noindex +Disable symlinking current page to index.html (local mode only) +.TP +.B \-a, \-\-archive +Generate archive.html as a list of all days (local mode only) +.TP +.B \-d, \-\-dailydir +Create a separate directory for each day's images (local mode only) +.TP +.B \-\-stripdir +Create a separate directory for each strip's images (local mode only) +.TP +.B \-s, \-\-save +If it appears that a particular strip has been downloaded, does not attempt +to re-download it (local mode only) +.TP +.B \-\-nostale +If a new strip is not available, displays an error in the HTML output +instead of showing the old image +.TP +.B \-\-nosymlinks +Do not use symlinks for day-to-day duplicates +.TP +.B \-\-date DATE +Use value DATE instead of local time (DATE is parsed by Date::Parse +function, not available on Win32) +.TP +.B \-\-avantgo +Format images for viewing with Avantgo on PDAs +.TP +.B \-\-basedir DIR +Work in specified directory instead of current directory (program will look +here for strip definitions, previous HTML files, etc. and save new files +here) +.TP +.B \-\-proxy host:port +Use specified HTTP proxy server (overrides environment proxy, if set) +.TP +.B \-\-proxyauth user:pass +Set username and password for proxy server +.TP +.B \-\-noenvproxy +Ignore the http_proxy environment variable, if set +.TP +.B \-\-nospaces +Remove spaces from image filenames (local mode only) +.TP +.B \-\-useragent "STRING" +Set User-Agent: header to STRING (default is none) +.TP +.B \-\-retries NUM +When downloading items, retry NUM times instead of default 3 times +.TP +.B \-\-clean NUM +Keep only the latest NUM days of files; remove all older files +.TP +.B \-v, \-\-version +Print version number +.SH SEE ALSO +README, README.DEFS.gz (to add strips to the database), and README.LOCAL +(for more details about 'local' operation) in /usr/share/doc/dailystrips/. +.SH AUTHOR +This manual page was written by Rene Weber +, for the Debian GNU/Linux system +(but may be used by others). --- dailystrips-1.0.28.orig/debian/README.debian +++ dailystrips-1.0.28/debian/README.debian @@ -0,0 +1,36 @@ +dailystrips for Debian +---------------------- + + Due to the high volatility of the strip information stored in +, this package may be often out of date, +especially in Debian's "stable" release. + + WARNING: As upstream development seems to have ceased, use of +"dailystrips-update" is no longer recommended. As such, it has been +neutered, and will be removed in a future release of this package. Please +remove it from any automated jobs. + + You may override any definitions by creating /etc/dailystrips.defs for +system-wide upgrades or .dailystrips.defs in your home directory. + + Be warned that if you create an /etc/dailystrips.defs, your file in /etc +trumps the system one in /usr/share/dailystrips/strips.def, which means that +when you upgrade to a newer version of dailystrips you will probably want to +delete or merge your definitions in /etc. I can't really handle this +gracefully in the maintainer scripts since your file in /etc may have extra +definitions that the packaged one doesn't (or you may have deliberately +broken some strips, for example), so since you put it there manually, it is +your responsibility to remove it if the newer one supplied with the package +is better. A good strategy to reduce the chance that you will be bitten by +this is to only put the definitions that you need to override in the +/etc/dailystrips.defs file so that at least the others will be properly +updated. + + (Another option is for you to silently replace the packaged version of +strips.def in /usr/share/dailystrips, since that will [presumably -- I +haven't tested this] just be replaced on an upgrade. This *will* break +md5sum checks of that file against the packaged one though [for example, +using debsums], so it's probably not a good idea, unless you don't mind +that.) + + -- Rene Weber , Thu, 05 Nov 2009 19:40:10 +0100 --- dailystrips-1.0.28.orig/debian/changelog +++ dailystrips-1.0.28/debian/changelog @@ -0,0 +1,249 @@ +dailystrips (1.0.28-11.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Tue, 05 Jan 2021 13:37:37 +0100 + +dailystrips (1.0.28-11) unstable; urgency=low + + * Added Danish po-debconf translation (closes: #628230) + * Added Abtruse Goose definition (closes: #585529) + * Added ucomics-gen-sun-jpg class (closes: #629301) + + -- Rene Weber Mon, 25 Jul 2011 11:42:29 +0200 + +dailystrips (1.0.28-10) unstable; urgency=low + + * Neutered dailystrips-update and updated documentation. As + dailystrips-update will be removed from a future version of this + package, anyone who has it invoked automatically (e.g., through a cron + job) should remove that now. Closes: #553308 + * Added Saturday Morning Breakfast Cereal (smbc). Closes: #535831 + * Changed Dorktower definition. Closes: #540537 + + -- Rene Weber Sat, 07 Nov 2009 18:13:36 +0100 + +dailystrips (1.0.28-9) unstable; urgency=low + + * Fix for comics apparently migrated to gocomics from ucomics over the + past few days (using a new class definition gocomics-srch): + calvinandhobbes, tomthedancingbug, thefifthwave, bensargent, + patoliphant. + * Cleanup of strips.def, thanks to suggestions by Sebastian Rasmussen. + This affects the following strips: sinfest, theweedpatch, bruno, angst, + crfh, adventurers, fuzzylogic, mrchuckshow, pentasmal, elflifeadult, + funnyfarm, elflife, wandering, cutewendy, bigones, brainbuzz, swamp, + thenorm, melonpool, weakendwarriors, nekobox, stockcartoons, thatsjake, + agnes, archie, askshagg, ballardstreet, bachelorparty, charlie, + flightdeck, flofriends, forheavenssake, heathcliff, herbandjamaal, + libertymeadows, momma, mrhousewife, jimmymargulies, queenofwands, + nothingnice, instantclassic, halge, elvis, pondus, thismodernworld, + apartment3g, babsandaldo, kernelpanic, statsministeren, antiherohire, + kaerwyn, vgcats, suburbanjungle, wulffmorgenthaler, orderofthestick, + gucomics, bunny, blacktapsdonate, drfun, fans, machall. Some have been + retired, some modified, and some brought back from the dead. I have + only verified that for a trivial run, the existing strips that work on + the day that I tested are still working. Closes: #508638 + * Added link to the dailystrips homepage (though it seems to be abandoned + by upstream) to debian/control. + + -- Rene Weber Sun, 15 Mar 2009 19:38:15 +0100 + +dailystrips (1.0.28-8) unstable; urgency=low + + * Permit any non-whitespace characters in strip definitions (necessary for + the new definitions.) + * Fixes for Unitedmedia strips, will cause breakage for people using strips + that have been renamed/are missing -- dailystrips will issue warnings and + errors in this case. Closes: #504999, #504574 + * Above fixes resulted in renames for many comics, including those that used + to be called: alleyoop, arlonjanis, bignate, bornloser, buckets, chickweed, + franknernest, geech, getfuzzy, grandave, grizzwells, hedge, janesworld, + jumpstart, kitncarlyle, raisingduncan, reality, ripleys, roseisrose, + shirleynson, soup2nutz, tarzan, workingdaze. + * A number of old Unitemedia strips seem to be gone. If you care about them + and find them elsewhere, patches are accepted. These include: + bullsnbears, gingermeggs, lupo, meatloaf, pibgorn, potluck, stockcartoons. + * Some new strips thanks to Friedrich Delgado Friedrichs. This fixes + sexylosers, perscheid, clanofthecats, btaf, touche, haiopeis, and adds + orderofthestick, sharingauniverse, girlgenius, afterlifeblues, + gruftschlampe, promis, taztouche. Closes: #504633 + * New definitions for sexylosers, btaf, and orderofthestick (new strip) + require that curl be installed, and mean that those URLs will be fetched + on every invocation of dailystrips (whether you are using them or not). + Thus, these entries are commented in the strips.def for you to uncomment + or put in your personal ~/.dailystrips.defs file. + * Hagar appears to be working (again?). Closes: #265450 + + -- Rene Weber Mon, 01 Dec 2008 09:18:04 +0100 + +dailystrips (1.0.28-7) unstable; urgency=low + + * New strips and fixes for "creators" strips thanks to Sebastian Rasmussen. + Closes: #444774 + * Closing previously fixed (in documentation) bug for dailystrips-update. + Closes: #437814 + * More new strips and fixes thanks to Sebastian Rasmussen. + * More new strips and fixes thanks to Hubert Chathi. Closes: #453492 + + -- Rene Weber Mon, 10 Dec 2007 08:51:53 +0100 + +dailystrips (1.0.28-6) unstable; urgency=low + + * Support for https URLs. Closes: #437812 + * Fix for drfun. Closes: #437818 + * Fix for sluggy. Closes: #437820 + * Fix for phdcomics. Closes: #437915 + * New strip xkcd. Closes: #437910 + + -- Rene Weber Wed, 15 Aug 2007 20:13:56 +0200 + +dailystrips (1.0.28-5) unstable; urgency=low + + * Fix nostale option. Closes: #338761 + * Maintainer upload, ack NMU's, many thanks to Christian Perrier for taking + care of the debconf translations while I was unable to update. Closes: + #313498, #291870, #331332, #389501, #336034 + * Replaced strips.def with version 1.203 from CVS (the latest version, + from February 2005) and incorporated fixes for a few strips contributed + by Emmanuel Fleury. Closes: #328257 + + -- Rene Weber Fri, 20 Jul 2007 04:17:50 +0200 + +dailystrips (1.0.28-4.1) unstable; urgency=low + + * Non-maintainer upload to fix longstanding l10n issues, with + maintainer's agreement + * Depend on "debconf | debconf-2.0" to ease the cdebconf transition + Closes: #331789 + * Turn the debconf template to an error template. Closes: #388881 + * Debconf translations + - Added Vietnamese. Closes: #313498 + - Added Czech. Closes: #291870 + - Added Swedish. Closes: #331332 + - Added Portuguese. Closes: #389501 + - Added Spanish. Closes: #336034 + - Added Romanian. Sent during the call for updates for the NMU + - Added Brazilian Portuguese. Sent during the call for updates for the NMU + - Added Russian. Sent during the call for updates for the NMU + * Lintian fixes: + - use debhelper compatibility level 4 + - move debhelper form Build-Depends-Indep to Duild-Depends + - move Standards to 3.7.2 (checked) + + -- Christian Perrier Wed, 11 Oct 2006 20:56:56 +0200 + +dailystrips (1.0.28-4) unstable; urgency=low + + * The long-delayed-upload upload. + * Added Japanese po-debconf translation (closes: #270929) + * Added German po-debconf translation (closes: #251947) + * Added Dutch po-debconf translation (closes: #247083) + * Fixed rules to better reflect the fact that this is an arch: any package. + * Replaced strips.def with the latest version from CVS (many updated strips) + which is 10 months old at this point. + * Fixed strips definition for Sev Trek (and entire Sev class). Seems to + work, but has not been not well tested yet (OTOH, the old method is + definitely broken, so this is better than it was) (closes: #245373) + * Fixed strips definition for Bob, The Angry Flower. + * Fixed minus/hyphen problems in dailystrips-clean and dailystrips-update + man pages. + + -- Rene Weber Sat, 4 Dec 2004 23:24:03 -0500 + +dailystrips (1.0.28-3) unstable; urgency=low + + * Take the package back from Tollef with his approval. + * Install dailystrips-update script to update definitions. + * Created a man page for dailystrips-update. + * Corrected typo in dailystrips-clean (and its man page). + * Install new README files for -update and -clean. + * Many thanks to Tollef for taking care of this package in my absence. + + -- Rene Weber Fri, 25 Jun 2004 21:18:13 -0400 + +dailystrips (1.0.28-2) unstable; urgency=low + + * Doh. Really adopt package this time. + * Ack NMU. (closes: #244452, #144057, #153048, #158187, #158429) + (closes: #135163, #158883, #186002, #207385, #207606) + + -- Tollef Fog Heen Wed, 21 Apr 2004 20:35:18 +0200 + +dailystrips (1.0.28-1) unstable; urgency=low + + * Adopt package. (Closes: #244452) + * Remove local variables from changelog, as they are obsolete. + + -- Tollef Fog Heen Wed, 21 Apr 2004 15:36:17 +0200 + +dailystrips (1.0.28-0.1) unstable; urgency=low + + * NMU + * New upstream release (closes: #158187, #186002) + - Removed badtech from strips.def (closes: #144057) + - Bugfix for little gamers (closes: #135163) + - Fixed comicspage.com (closes: #153048) + * Fix typo in man page and clearify README.LOCAL (closes: #158883) + * Rebuild fixes perl 5.6 vs 5.8 problem (closes: #158429) + * Use po-debconf (closes: #207385) + * Add French debconf templates (closes: #207606) + + -- Tollef Fog Heen Fri, 9 Apr 2004 14:31:15 +0200 + +dailystrips (1.0.23-1) unstable; urgency=medium + + * New upstream release (note: supplied by upstream slightly in advance of + the actual release) + * Modified upstream code to explicitly include 5.005 libraries to + accomodate people with older versions of modules installed (since + perl-5.6.1-7 removed that entry in @INC). This hack will be removed + post-woody. (Closes: #143711, #143805) + * Modified upstream code to specify "perl -S" when calling + dailystrips-clean. (Closes: #143804) + * Urgency medium because #143711 is vaguely a dependency bug and + dependencies are an important bug so I'd like this to get some "testing" + testing before we release. + + -- Rene Weber Sat, 20 Apr 2002 13:19:19 -0400 + +dailystrips (1.0.22-2) unstable; urgency=low + + * Argh, quick re-upload to fix maintainer address. + + -- Rene Weber Wed, 27 Feb 2002 17:09:01 -0500 + +dailystrips (1.0.22-1) unstable; urgency=low + + * New upstream release + + -- Rene Weber Fri, 22 Feb 2002 18:14:56 -0500 + +dailystrips (1.0.21-1) unstable; urgency=low + + * New upstream release + * Applied fix for problem when using --stripdir and --nospaces together + (Closes: #128716) + + -- Rene Weber Sun, 13 Jan 2002 18:36:54 -0500 + +dailystrips (1.0.20-1) unstable; urgency=low + + * New upstream release + * Fixed Build-Depends problem (changed to Build-Depends-Indep). + + -- Rene Weber Sun, 28 Oct 2001 15:44:52 -0500 + +dailystrips (1.0.18-1) unstable; urgency=low + + * Initial Release. (Closes: #105243) + * Modifications from source are minimal (my proposed changes made it into + upstream), ignored install.pl and used plain /usr/bin/install instead, + corrected an apparent editing mistake in dailystrips.pl, and installed + binary as "dailystrips" instead of "dailystrips.pl". + * Wrote a simple manpage. + + -- Rene Weber Thu, 13 Sep 2001 22:48:09 -0400 + + --- dailystrips-1.0.28.orig/debian/compat +++ dailystrips-1.0.28/debian/compat @@ -0,0 +1 @@ +5 --- dailystrips-1.0.28.orig/debian/config +++ dailystrips-1.0.28/debian/config @@ -0,0 +1,11 @@ +#!/bin/sh -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +# Display the existence-of-/etc/dailystrips.defs warning if appropriate +if ( test -e /etc/dailystrips.defs ); then + db_input medium dailystrips/warning-etcdefs || true + db_go +fi + --- dailystrips-1.0.28.orig/debian/control +++ dailystrips-1.0.28/debian/control @@ -0,0 +1,16 @@ +Source: dailystrips +Section: net +Priority: optional +Maintainer: Rene Weber +Build-Depends: debhelper (>= 5.0.53) +Standards-Version: 3.9.2.0 + +Package: dailystrips +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libwww-perl, libtimedate-perl, debconf | debconf-2.0 +Homepage: http://dailystrips.sourceforge.net/ +Description: view web comic strips more conveniently + A perl script that gathers online comic strips for more convenient viewing. + When in normal mode, it creates an HTML page that references the strips + directly, and when in local mode, it also downloads the images to your local + disk. --- dailystrips-1.0.28.orig/debian/copyright +++ dailystrips-1.0.28/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Rene Weber + on +Thu, 12 Jul 2001 20:34:08 -0400. + +It was downloaded from http://dailystrips.sourceforge.net/ + +Upstream Author: Andrew Medico + +Copyright: + +This program Copyright (C) 2001 Andrew Medico . +All rights reserved. This program is free software; you may redistribute it +and/or modify it under the terms of the GNU GPL, Version 2. + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + --- dailystrips-1.0.28.orig/debian/dirs +++ dailystrips-1.0.28/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/dailystrips --- dailystrips-1.0.28.orig/debian/docs +++ dailystrips-1.0.28/debian/docs @@ -0,0 +1,6 @@ +BUGS +README +README.DEFS +README.LOCAL +README.dailystrips-clean +TODO --- dailystrips-1.0.28.orig/debian/po/POTFILES.in +++ dailystrips-1.0.28/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- dailystrips-1.0.28.orig/debian/po/cs.po +++ dailystrips-1.0.28/debian/po/cs.po @@ -0,0 +1,54 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2005-01-19 17:55+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "Definice v /etc/dailystrips.defs pebjej definice z balku" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Mte nainstalovn soubor /etc/dailystrips.defs. Definice v tomto souboru " +"maj vt prioritu ne soubor strips.def v balku. Pokud jste soubor " +"vytvoili proto, e byl aktulnj ne soubor v balku, je nyn vhodn as " +"prozkoumat rozdly mezi nm a /usr/share/dailystrips/strips.def. Jestlie " +"nov soubor obsahuje stejn zznamy jako v stvajc soubor, je dobr " +"soubor z /etc smazat." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Podrobnosti naleznete v README.Debian." --- dailystrips-1.0.28.orig/debian/po/da.po +++ dailystrips-1.0.28/debian/po/da.po @@ -0,0 +1,47 @@ +# Danish translation dailystrips. +# Copyright (C) dailystrips & nedenstående oversættere. +# This file is distributed under the same license as the dailystrips package. +# Joe Hansen (joedalton2@yahoo.dk), 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2011-05-28 18:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "Definitioner i /etc/dailystrips.defs overskriver pakkede definitioner" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Du har en fil af typen /etc/dailystrips-defs installeret. Vær opmærksom på " +"at punkter i denne vil overskrive dem i den pakkede fil strips.def, så hvis " +"du oprettede den fil, fordi den var mere opdateret end det pakkede punkt, vil " +"det være en god ide at tjekke den mod den pakkede (i /usr/share/dailystrips/" +"strips.defs) og nu fjerne den i /etc (under den antagelse at den nye " +"indeholder de samme rettelser som din indeholder)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Læs README.debian for yderligere detaljer." + --- dailystrips-1.0.28.orig/debian/po/de.po +++ dailystrips-1.0.28/debian/po/de.po @@ -0,0 +1,56 @@ +# translation of dailystrips_1.0.28-2_templates.po to German +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Erik Schanze , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips_1.0.28-2_templates\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2004-05-31 22:04+0200\n" +"Last-Translator: Erik Schanze \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.0.2\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Einstellungen in der Datei /etc/dailystrips.defs überschreiben die aus dem " +"Paket" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Sie haben schon eine Datei /etc/dailystrips.defs. Beachten Sie, dass die " +"Einträge dort die Werte der Datei strips.def dieses Paketes überschreiben. " +"Wenn diese Datei aktueller als die im Paket ist, dann prüfen Sie sie und /" +"usr/share/dailystrips/strips.defs auf Unterschiede und löschen Sie die in /" +"etc jetzt (vorausgesetzt die neue enthält die gleichen Änderungen wie Ihre)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Mehr Details enthält die Datei README.debian." --- dailystrips-1.0.28.orig/debian/po/es.po +++ dailystrips-1.0.28/debian/po/es.po @@ -0,0 +1,71 @@ +# dailystrips po-debconf translation to Spanish +# Copyright (C) 2005 Software in the Public Interest +# This file is distributed under the same license as the dailystrips package. +# +# Changes: +# - Initial translation +# César Gómez Martín +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2005-09-14 16:42+0100\n" +"Last-Translator: César Gómez Martín \n" +"Language-Team: Debian l10n spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Spanish\n" +"X-Poedit-Country: SPAIN\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Las definiciones de /etc/dailystrips.defs anulan las definiciones " +"empaquetadas." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Tiene un fichero /etc/dailystrips.defs instalado. Tenga en cuenta que las " +"entradas de ese fichero anularán las entradas empaquetas en el fichero " +"strips.def, por lo que, si creó ese fichero porque era más actual que el " +"empaquetado, sería una buena idea compararlo de nuevo con el empaquetado " +"(usr/share/dailystrips/strips.defs) y eliminar el que está ahora en /etc " +"(asumiendo que el nuevo contiene los mismos arreglos que el suyo)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Consulte el fichero README.debian para más información." --- dailystrips-1.0.28.orig/debian/po/fr.po +++ dailystrips-1.0.28/debian/po/fr.po @@ -0,0 +1,56 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips (1.0.23-1)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2003-08-26 18:56+0100\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "Les dfinitions de /etc/dailystrips.defs remplacent celles du paquet" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Un fichier /etc/dailystrips.defs a t trouv. Il faut savoir que les " +"entres qu'il contient prendront le pas sur celles du fichier strips.defs " +"fourni avec le paquet. En consquence, si vous aviez cr ce fichier pour " +"mettre jour celui qui tait fourni, vous devriez les comparer nouveau " +"(le fichier fourni avec le paquet est /usr/share/dailystrips/strips.defs) et " +"ventuellement supprimer le fichier contenu dans /etc si le fichier du " +"paquet comporte les mmes corrections." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "" +"Veuillez consulter le fichier README.Debian pour des dtails complmentaires." --- dailystrips-1.0.28.orig/debian/po/ja.po +++ dailystrips-1.0.28/debian/po/ja.po @@ -0,0 +1,55 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips 1.0.28-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2004-09-03 10:02+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "/etc/dailystrips.defs Ǥϥѥå񤭤ޤ" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"/etc/dailystrips.defs ե뤬󥹥ȡ뤵Ƥޤ˵ܤƤ" +"Ƥϥѥå strips.def ե񤭤ΤդƤ" +"ѥå줿Ƥǿ˶᤯뤿ˤΥեƤ" +"硢ѥåΤ (in /usr/share/dailystrips/strips.defs) Ӥ" +"(ΤΤۤȤνΤƱΤޤǤȲꤷ) /" +"etc 򤹤˺ΤɤͤǤ礦" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "ܺ٤ README.debian ǧƤ" --- dailystrips-1.0.28.orig/debian/po/nl.po +++ dailystrips-1.0.28/debian/po/nl.po @@ -0,0 +1,56 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips 1.0.28-2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2004-04-28 16:55+0100\n" +"Last-Translator: Luk Claes \n" +"Language-Team: Debian l10n Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Definities in /etc/dailystrips.defs verwerpen de definities in het pakket." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"U hebt een /etc/dailystrips.defs-bestand genstalleerd. U wordt bij deze " +"gewaarschuwd dat de definities daarin de definities in het strips.def-" +"bestand zullen verwerpen. Als u dit bestand heeft aangemaakt omdat het meer " +"up-to-date was dan die in het pakket, dan is het een goed idee om dit " +"opnieuw na te gaan voor die in het pakket (in /usr/share/dailystrips/strips." +"defs) en die in /etc nu te verwijderen (veronderstellende dat de nieuwe " +"dezelfde correcties heeft als de uwe). " + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Bekijk de README.debian voor verdere details." --- dailystrips-1.0.28.orig/debian/po/pt.po +++ dailystrips-1.0.28/debian/po/pt.po @@ -0,0 +1,46 @@ +# Portuguese translation of dailystrips. +# This file is distributed under the same license as the dailystrips package. +# Ricardo Silva , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips 1.0.28-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2006-09-21 23:29+0100\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Definições em /etc/dailystrips.defs sobrepõem-se às definições do pacote" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Existe um ficheiro /etc/dailystrips.def instalado. Fica avisado que as " +"entradas nele irão sobrepor-se àquelas no ficheiro strips.def do pacote, " +"portanto se criou o ficheiro por estar mais actualizado que o do pacote, " +"talvez seja uma boa ideia compará-lo com o do pacote (em /usr/share/" +"dailystrips/strips.def) e remover o que está em /etc (assumindo que o novo " +"contém os mesmos reparos que o seu)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Leia o ficheiro README.debian para mais detalhes." --- dailystrips-1.0.28.orig/debian/po/pt_BR.po +++ dailystrips-1.0.28/debian/po/pt_BR.po @@ -0,0 +1,59 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Felipe Augusto van de Wiel (faw) , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips (20061017)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2006-10-17 02:03-0200\n" +"Last-Translator: Felipe Augusto van de Wiel (faw) \n" +"Language-Team: l10n portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Definições em /etc/dailystrips.defs sobrescrevem as definições empacotadas" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Você tem um arquivo /etc/dailystrips.defs instalado. Fique avisado que " +"entradas neste arquivo vão sobrescrever as entradas no arquivos strips.def " +"empacotado, então se você criou esse arquivo porque ele estava mais " +"atualizado que a versão empacotada, seria uma boa idéia checá-lo com a " +"versão empacotada (em /usr/share/dailystrips/strips.defs) e remover o " +"arquivo em /etc agora (assumindo que o novo contém as mesmas correções que o " +"seu)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Verifique o arquivo README.debian para mais detalhes." --- dailystrips-1.0.28.orig/debian/po/ro.po +++ dailystrips-1.0.28/debian/po/ro.po @@ -0,0 +1,50 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Eddy Petrișor , 2006. +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2006-10-13 14:35+0300\n" +"Last-Translator: Eddy Petrișor \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3;plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "Definiţiile din /etc/dailystrips.defs înlocuiesc definiţiile din pachet" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "Aveţi un fişier /etc/dailystrips.defs instalat. Atenţie, intrările din el le vor înlocui pe cele împachetate în fişierul strips.def, deci, dacă aţi creat acel fişier deoarece avea intrări mai noi decât cel din fişierul din pachet, ar fi bine să-l verificaţi în contrast cu cel împachetat (din /usr/share/dailystrips/strips.defs) şi să-l ştergeţi pe cel din /etc acum (presupunând că cel nou conţine aceleşi îmbunătăţiri)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Consultaţi fişierul README.debian pentru mai multe detalii." + --- dailystrips-1.0.28.orig/debian/po/ru.po +++ dailystrips-1.0.28/debian/po/ru.po @@ -0,0 +1,57 @@ +# translation of dailystrips_debconf_ru.po to Russian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Yuri Kozlov , 2006. +msgid "" +msgstr "" +"Project-Id-Version: 1.0.28-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2006-10-18 21:53+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "Значения из /etc/dailystrips.defs замещают устанавливаемые пакетом" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"У вас уже установлен файл /etc/dailystrips.defs. Заметьте, что его " +"данные заместят данные из файла strips.def, находящего в этом " +"пакете, поэтому если вы создали данный файл, чтобы переопределить " +"значения установленного пакета, пересмотрите эти данные сверив их с " +"данными из файла (/usr/share/dailystrips/strips.defs) нового пакета и удалите " +"файл из /etc (предварительно перенеся свои исправления в новый файл)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Подробности смотрите в файле README.debian." + --- dailystrips-1.0.28.orig/debian/po/sv.po +++ dailystrips-1.0.28/debian/po/sv.po @@ -0,0 +1,55 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips 1.0.28-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2005-10-04 03:01+0200\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Definitioner i /etc/dailystrips/strips.defs gller istllet fr de frn " +"paketets definitionsfil." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Du har en /etc/dailystrips.defs installerad. Tnk p att poster i den filen " +"kommer att vara aktiva istllet fr dom i detta paket s om du skapat den " +"filen fr att den var mer uppdaterad n den paketerade vore det en bra ide " +"att kontrollera den mot den frn paketet (i /usr/share/dailystrips/strips." +"defs) och ta bort den i /etc nu (med tanke p att den nya innehller samma " +"information som din gr)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Ls README.debian fr mer detaljer." --- dailystrips-1.0.28.orig/debian/po/templates.pot +++ dailystrips-1.0.28/debian/po/templates.pot @@ -0,0 +1,49 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "" --- dailystrips-1.0.28.orig/debian/po/vi.po +++ dailystrips-1.0.28/debian/po/vi.po @@ -0,0 +1,48 @@ +# Vietnamese translation for dailystrips. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: dailystrips 1.0.28-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-10-12 20:00+0200\n" +"PO-Revision-Date: 2005-06-14 13:08+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Definitions in /etc/dailystrips.defs override packaged definitions" +msgstr "" +"Những lời định nghĩa trong tập tin «/etc/dailystrips.defs» có đè các lời " +"định nghĩa đã đóng gói." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "" +"You have an /etc/dailystrips.defs file installed. Be warned that entries in " +"there will override those in the packaged strips.def file, so if you created " +"that file because it was more up-to-date than the packaged entry, it would " +"be a good idea to check it against the packaged one (in /usr/share/" +"dailystrips/strips.defs) and remove the one in /etc now (assuming that the " +"new one contains the same fixes yours does)." +msgstr "" +"Trong hệ thống bạn, đã cài đặt một tập tin «/etc/dailystrips.defs» rồi. Như " +"thế thì, những mục nhập trong tập tin ấy sẽ đè các điều trong tập tin cùng " +"tên thuộc về gói tin này. Nếu bạn đã tạo tập tin trong hệ thống này vì nó " +"mới hơn điều của gói tin, bạn hãy so sánh nó với điều ấy (trong «/usr/share/" +"dailystrips/strips.defs») và xóa bỏ điều hiện có trong «/etc» (nếu tập tin " +"mới chứa cùng mọi cách sửa với tập tin bạn)." + +#. Type: error +#. Description +#: ../templates:1001 +msgid "Check the README.debian for more details." +msgstr "Hãy xem tập tin «README.debian» để tìm chi tiết." --- dailystrips-1.0.28.orig/debian/postinst +++ dailystrips-1.0.28/debian/postinst @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +# if ( test -e /etc/dailystrips.defs ); then +# db_get dailystrips/warning-etcdefs +# fi + +#DEBHELPER# --- dailystrips-1.0.28.orig/debian/rules +++ dailystrips-1.0.28/debian/rules @@ -0,0 +1,91 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# # This is the debhelper compatability version to use. +# export DH_COMPAT=4 + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + + touch configure-stamp + +build-arch: build-stamp +build-indep: build-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + #/usr/bin/docbook-to-man debian/dailystrips.sgml > dailystrips.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + #-$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/dailystrips. + #$(MAKE) install DESTDIR=$(CURDIR)/debian/dailystrips + /usr/bin/install -m 755 dailystrips $(CURDIR)/debian/dailystrips/usr/bin + /usr/bin/install -m 755 dailystrips-clean $(CURDIR)/debian/dailystrips/usr/bin + /usr/bin/install -m 755 dailystrips-update $(CURDIR)/debian/dailystrips/usr/bin + /usr/bin/install -m 644 strips.def $(CURDIR)/debian/dailystrips/usr/share/dailystrips + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman dailystrips.1 dailystrips-clean.1 dailystrips-update.1 + dh_installinfo +# dh_undocumented + dh_installchangelogs CHANGELOG + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl +# dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- dailystrips-1.0.28.orig/debian/source/format +++ dailystrips-1.0.28/debian/source/format @@ -0,0 +1 @@ +1.0 --- dailystrips-1.0.28.orig/debian/templates +++ dailystrips-1.0.28/debian/templates @@ -0,0 +1,11 @@ +Template: dailystrips/warning-etcdefs +Type: error +_Description: Definitions in /etc/dailystrips.defs override packaged definitions + You have an /etc/dailystrips.defs file installed. Be warned that entries + in there will override those in the packaged strips.def file, so if you + created that file because it was more up-to-date than the packaged entry, + it would be a good idea to check it against the packaged one (in + /usr/share/dailystrips/strips.defs) and remove the one in /etc now + (assuming that the new one contains the same fixes yours does). + . + Check the README.debian for more details. --- dailystrips-1.0.28.orig/debian/watch +++ dailystrips-1.0.28/debian/watch @@ -0,0 +1,8 @@ +version=3 + +# watch control file for mapivi +# This is obviously a bit of a lie, but there's a 1.1.0 version in there +# that is old. If upstream ever revives and decides to bump the version to +# 1.1.x or 1.2.x or anything, then this will require manual action to +# notice. +http://sf.net/dailystrips/dailystrips-(1\.0\..*)\.tar\.gz --- dailystrips-1.0.28.orig/strips.def +++ dailystrips-1.0.28/strips.def @@ -11,27 +11,46 @@ include foxtrot boondocks doonesbury zits dilbert babyblues include monty bc blondie calvinandhobbes funkywinkerbean include zippythecolorpinhead peanuts adamathome forbetter bizarro - include userfriendly geech shoe wizardofid + include userfriendly geech_classics shoe wizardofid end group gloucestertimes desc Gloucester Daily Times Strips - include garfield broomhilda bc wizardofid roseisrose + include garfield broomhilda bc wizardofid rose_is_rose include dilbert cathy sallyforth monty grimmy peanuts include forbetter foxtrot offthemark end group bgsunday desc Boston Globe Sunday Comics - include dilbert doonesbury garfield getfuzzy adamathome grimmy forbetter - include foxtrot jumpstart zits zippythecolorpinhead curtis - include rhymeswithorange boondocks nonsequitur stonesoup roseisrose monty - include arlonjanis askshagg + include dilbert doonesbury garfield get_fuzzy adamathome grimmy + include forbetter foxtrot jump_start zits zippythecolorpinhead curtis + include rhymeswithorange boondocks nonsequitur stonesoup rose_is_rose + include monty arlo&janis askshagg +end + +group creators + desc All comic strips from creators.com + include agnes andycapp archie askshagg ballardstreet bc cafeconleche + include chucklebros dinetteset doodles dogeatdoug flofriends flightdeck + include forheavenssake heathcliff herbandjamaal libertymeadows + include meaningoflila momma naturalselection onaclaireday onebighappy + include theothercoast rubes rugrats speedbump stateoftheunion + include strangebrew thinlines weepals winniethepooh wizardofid + include workingitout zackhill dogsofckennel +end + +group creatorspolitical + desc All political strips from creators.com + include chuckasay stevebensoncreators chipbok kencatalino johndeering + include bobgorrell clayjones stevekelley mikeluckovich mossprints + include dwanepowell stevesack juliasuitscreators paulszep garyvarvel end + # Class definitions class ucomics-srch - homepage http://www.ucomics.com/$strip/view$1.htm + homepage http://www.ucomics.com/$strip/ type search searchpattern + provides any +end + +class gocomics-srch + homepage http://www.gocomics.com/$strip/ + type search + searchpattern -p.jpg&code=cs$2 provides any @@ -138,24 +188,16 @@ class comicspage-panels-gen # $1 - more or less the real name # $2 - 3-letter abbreviation of $1 - homepage http://www.comicspage.com/$1/index.html - #type search - #searchpage http://www.comicspage.com/$1/main.html - #searchpattern -p.jpg&code=cp$2 - #provides latest provides any end class comicspage-editorial-gen # $1 - more or less the real name # $2 - 3-letter abbreviation of $1 - homepage http://www.comicspage.com/$1/index.html - #type search - #searchpage http://www.comicspage.com/$1/main.html - #searchpattern /$1/$1%m%dg.gif - provides any -end - class washpost-king homepage http://www.washingtonpost.com/wp-srv/style/comics/king.htm?$1 prefetch $homepage @@ -196,45 +230,120 @@ class washpost-uclick homepage http://www2.uclick.com/client/wpc/$1/ type search - searchpattern + searchpattern provides latest end class slate-cagle - homepage http://cagle.slate.msn.com/politicalcartoons/PCcartoons/$1.asp + homepage http://cagle.slate.msn.com/politicalcartoons/PCcartoons/$1.asp + type search + searchpattern + provides latest +end + +class graphicsmash-serializer + type search + homepage http://www.serializer.net/series.php?name=$1&view=current + searchpage http://www.moderntales.com/tooncast.php?series=$1 + searchpattern + provides latest +end + + +class graphicsmash-girlamatic + type search + homepage http://girlamatic.com/series.php?name=$1 + searchpage http://www.moderntales.com/tooncast.php?series=$1 + searchpattern + provides latest +end + +class graphicsmash-moderntales + type search + homepage http://www.moderntales.com/series2.php?name=$1&view=current + searchpage http://www.moderntales.com/tooncast.php?series=$1 + searchpattern + provides latest +end + +class creators + homepage http://www.creators.com/comics/$strip.html + type search + searchpage http://www.creators.com/comics/$1.html + searchpattern + # searchpage http://www.penny-arcade.com/view.php3 + # searchpattern + # searchpattern + # searchpattern + # searchpattern %d.gif -# provides any -#end - strip clanofthecats - name Clan of the cats - homepage http://www.clanofthecats.com/ - #type generate - #imageurl http://www.clanofthecats.com/comics/%Y%m%da.gif - #provides any - type search - searchpage http://www.clanofthecats.com/d/%Y%m%d.html - searchpattern 2;$s++if$w\>4;my$c=int(($s+99)/100);"ff${c}00/fv00$s.gif"> - provides any -end - strip 8bit name 8-Bit Theater homepage http://www.nuklearpower.com/latest.php type search - searchpattern + searchpattern provides latest end @@ -591,51 +624,40 @@ provides latest end - strip pgs name Pathetic Geek Stories homepage http://www.theonionavclub.com/ type search - #searchpattern +# searchpattern +# imageurl http://angryflower.com/$match +# provides latest +# end + strip boasas name Boy on a Stick and Slither homepage http://www.boasas.com/ @@ -649,7 +671,7 @@ name Bruno the Bandit homepage http://www.brunothebandit.com type generate - imageurl http://www.brunothebandit.com/comics/%Y%m%da.GIF + imageurl http://www.brunothebandit.com/comics/%Y%m%da.jpg provides any end @@ -657,113 +679,39 @@ name Bruno the Bandit - Current homepage http://www.brunothebandit.com type search - searchpattern comic + searchpattern -end - -# tuesdays, thursdays, sundays -strip machall - name Mac Hall - homepage http://www.MacHall.com/ type search - searchpattern - baseurl http://www.cnsnews.com/cartoon/ - provides latest -end - - - -strip lang - name Bob Lang Cartoon - homepage http://www.cnsnews.com/cartoon/lang.asp - type search - searchpage http://www.cnsnews.com/cartoon/Lang.asp - searchpattern - baseurl http://www.cnsnews.com/ - provides latest -end - strip shelton name Barry Shelton Cartoon homepage http://www.cnsnews.com/cartoon/shelton.asp @@ -833,32 +747,6 @@ provides latest end -strip elflifeadult - name Elf Life: R Rated - homepage http://www.elflife.com/adults.html - type generate - imageurl http://www.elflife.com/current/%Y%m%dm.gif - provides any -end - -strip funnyfarm - name Funny Farm - homepage http://www.funnyfarmcomics.com/ - type search - searchpage http://www.funnyfarmcomics.com/d/%Y%m%d.html - searchpattern +# searchpattern baseurl $homepage provides latest end @@ -1075,74 +906,25 @@ name Winter homepage http://www.wintercomic.com/ type search - #searchpattern img src='(pages/page(\d+)\.gif)' searchpattern baseurl http://lcd.keenspace.com provides latest end @@ -1212,8 +977,7 @@ name The Devil's Panties homepage http://thedevilspanties.keenspace.com type search - searchpattern - provides latest -end - strip spooner name Spooner homepage http://www.hookedoncomics.com/ @@ -1262,22 +1017,14 @@ provides any end -strip nekobox - name Nekobox - artist Jorge "Vaz" Rivas and David "vanishing" Trischuk - homepage http://www.nekobox.org - type generate - imageurl http://www.nekobox.org/comic/%Y-%m-%d.jpg - provides any -end - strip perscheid - name Perscheids Abgruende - artist Martin Perscheid -> www.martin-perscheid.de - homepage http://portale.web.de/Boulevard/Comics/Perscheid/ - type search - searchpattern www.martin-perscheid.de + homepage http://magazine.web.de/de/themen/unterhaltung/comic/perscheid/index.html + type search + searchpattern www.harmbengen.de homepage http://portale.web.de/Boulevard/Comics/Bengen/ type search - searchpattern www.weyershausen.de homepage http://portale.web.de/Boulevard/Comics/Weyershausen/ type search - searchpattern www.quirit.com homepage http://portale.web.de/Boulevard/Comics/Quirit/ type search - searchpattern .html - searchpage $homepage - provides latest + name StockcarToons + useclass unitedmedia-srch-comics-zoom + searchpage $homepage + provides latest end -strip tarzan - name Tarzan - useclass unitedmedia-srch-comics +strip tarzan_classics + name Tarzan Classics + useclass unitedmedia-srch-comics-zoom end strip thatslife @@ -1821,21 +1529,9 @@ useclass unitedmedia-srch-comics-lag end -# done! -#strip usplay -# name The US of Play -# useclass unitedmedia-srch-comics -#end - -# also done! -#strip warped -# name Warped -# useclass unitedmedia-srch-comics -#end - -strip workingdaze +strip working_daze name Working Daze - useclass unitedmedia-srch-comics + useclass unitedmedia-srch-comics-zoom end strip pcnpixel @@ -1916,12 +1612,6 @@ $1 rogers end -#strip robertariail -# name Robert Ariail -# useclass unitedmedia-srch-editoons -# $1 ariail -#end - strip stevebenson name Steve Benson useclass unitedmedia-srch-editoons @@ -1971,7 +1661,7 @@ homepage http://www.sfgate.com/columnists/farley/ type search provides latest - searchpattern ~[^"]+)" + baseurl http://www.delathehooda.com/ + provides latest +end + +strip extralife + name Extra Life + homepage http://myextralife.com/ + type search + searchpattern + baseurl http://www.warbucket.com/ + provides latest +end + +strip ghastly + name Ghastly's Ghastly Comic + homepage http://ghastly.keenspace.com + type search + searchpattern ]*> + baseurl http://sheep123.keenspace.com/ + provides latest +end + +strip catharsis + name Catharsis + homepage http://catharsiscomic.com/ + type search + searchpattern ]*> + baseurl http://www.antiheroforhire.com/ + provides latest +end + +strip somethingpositive + name Something Positive + homepage http://www.somethingpositive.net/ + type search + searchpattern + baseurl http://www.giantitp.com/ + provides latest +end + +# This definition for orderofthestick requires you to have curl installed. +# If you do, and you want to use this, put the below in your +# ~/.dailystrips.defs +# strip orderofthestick +# name Order Of The Stick +# homepage http://www.giantitp.com/ +# type search +# searchpage +# searchpattern +# baseurl $homepage +# provides latest +# end + +strip phd + name Piled Higher and Deeper + artist Jorge Cham + homepage http://www.phdcomics.com/ + type generate + imageurl http://www.phdcomics.com/comics/archive/phd%m%d%ys.gif + provides any +end + +strip phdcomics + name Piled Higher & Deeper + artist Jorge Cham + homepage http://www.phdcomics.com/ + type search + searchpage http://www.phdcomics.com/comics.php + searchpattern + baseurl $homepage +end + +strip gucomics + name GU Comics + artist Woody Hearn + homepage http://www.gucomics.com/ + type generate + provides any + imageurl http://www.gucomics.com/comics/%Y/gu_%Y%m%d.jpg +end + +strip mrwiggles + name Rehabilitating Mr. Wiggles + artist Neal Swaab + homepage http://neilswaab.com/comics/wiggles/ + type search + provides latest + searchpage http://neilswaab.com/comics/wiggles/wiggles_content.html + searchpattern + provides latest +end + +strip girlgenius + name Girl Genius + homepage http://www.girlgeniusonline.com/comic.php + type generate + imageurl http://www.girlgeniusonline.com/ggmain/strips/ggmain%Y%m%d.jpg + provides any +end + +strip afterlifeblues + name Afterlife Blues + homepage http://www.project-apollo.net/ab/ + baseurl $homepage + type search + searchpattern + provides latest +end + +strip gruftschlampe + name Die kleine Gruftschlampe + artist Tikwa + useclass drive-in-cartoons +end + +strip promis + name Promi-Strips + artist Gabriel + useclass drive-in-cartoons +end + +strip taztouche + name Touche (TAZ) + artist Tom + homepage http://www.taz.de/index.php?id=2264 + type search + searchpage http://www.taz.de/digitaz/.tom/tomdestages?day=%Y/%m/%d + # http://www.taz.de/digitaz/.tom/gif.t,tom.d,1227222000 + # TOM + searchpattern