-
Notifications
You must be signed in to change notification settings - Fork 2
/
strips.def
5513 lines (4783 loc) · 101 KB
/
strips.def
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Last update: Sub Tra 25 09:02:36 UTC 2015
group andrews
desc Andrew's Favorite Strips
include userfriendly dilbert foxtrot
include pennyarcade joyoftech thefifthwave monty bc
include wizardofid garfield adamathome
end
group michael
desc Michael's Favorite Strips
include foxtrot boondocks doonesbury zits dilbert babyblues
include monty bc blondie calvinandhobbes funkywinkerbean
include zippythecolorpinhead peanuts adamathome forbetter bizarro
include userfriendly geech shoe wizardofid
end
group gloucestertimes
desc Gloucester Daily Times Strips
include garfield broomhilda bc wizardofid roseisrose
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
end
# Class definitions
class ucomics-srch
homepage http://www.gocomics.com/$strip/
type search
searchpattern <img.+?src="(http://assets\.amuniversal\.com/\S+)"
searchpage $homepage
provides latest
end
class ucomics-gen
homepage http://www.ucomics.com/$strip/
type generate
imageurl http://images.ucomics.com/comics/$1/%Y/$1%y%m%d.gif
provides any
end
class unitedmedia-srch-comics
homepage http://comics.com/$strip/
type search
searchpage $homepage
searchpattern <img.+?src="(http://\S+\.cdn\.cloudfiles\.rackspacecloud\.com/dyn/str_strip/\S+\.full\.(gif|jpg))"
provides latest
end
class unitedmedia-srch-comics-lag
homepage http://www.unitedmedia.com/comics/$strip/
type search
searchpattern <img.+?src="(/comics/$strip/archive/images/$strip.+?)"
baseurl http://www.unitedmedia.com
provides latest
end
class unitedmedia-srch-creators
homepage http://www.unitedmedia.com/creators/$strip/
type search
searchpattern <img.+?src="?(/creators/$strip/archive/images/.+?\.(gif|jpg))"?
baseurl http://www.unitedmedia.com
provides latest
end
class unitedmedia-srch-wash
homepage http://www.unitedmedia.com/wash/$strip/
type search
searchpattern (/wash/$strip/archive/images/(.*?)\.(gif|jpg))
baseurl http://www.unitedmedia.com
provides latest
end
class unitedmedia-srch-editoons
homepage http://www.unitedmedia.com/editoons/$1/
type search
searchpattern <img src="(/editoons/$1/archive/images/$1\d+\..+?)"
baseurl http://www.unitedmedia.com
provides latest
end
class sfgate-gen-zippy
homepage http://www.sfgate.com/cgi-bin/article.cgi?file=/comics/$1.dtl
type generate
imageurl http://pst.rbma.com/content/$3
provides latest
prefetch $homepage
end
class sfgate-gen-zippycolor
homepage http://www.sfgate.com/cgi-bin/article.cgi?file=/comics/$1.dtl
type generate
imageurl http://pst.rbma.com/content/$2
provides latest
end
class sfgate-gen
homepage http://www.sfgate.com/cgi-bin/article.cgi?file=/comics/$1.dtl
type generate
imageurl http://pst.rbma.com/content/$1
provides latest
prefetch $homepage
end
class sfgate-srch
homepage http://www.sfgate.com/cgi-bin/article.cgi?file=/comics/$1.dtl
type search
searchpattern <img.+?src=".+?(/comics/graphics/$2/.+?\..+?)"
baseurl http://www.sfgate.com
provides latest
end
class sfgate-columnists
homepage http://www.sfgate.com/columnists/$1/
type search
provides latest
searchpattern <IMG.+?SRC="(http://www\.sfgate\.com/chronicle/pictures/\d+/\d+/\d+/.+?-farley.gif)"
end
class comicspage-strips-gen
# $1 - more or less the real name
# $2 - 3-letter abbreviation of $1
referer http://www.comicspage.com/$1/
homepage http://www.comicspage.com/$1/
type generate
imageurl http://www.tmsfeatures.com/tmsfeatures/servlet/com.featureserv.util.Download?file=%Y%m%dcs$2-<code:"s" if %w==0><code:"a" if %w!=0>-p.jpg&code=cs$2
provides any
end
class comicspage-panels-gen
# $1 - more or less the real name
# $2 - 3-letter abbreviation of $1
homepage http://www.comicspage.com/$1/
type generate
imageurl http://www.tmsfeatures.com/tmsfeatures/servlet/com.featureserv.util.Download?file=%Y%m%dcp$2-<code:"s" if %w==0><code:"a" if %w!=0>-p.jpg&code=cp$2
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/
type generate
imageurl http://www.tmsfeatures.com/tmsfeatures/servlet/com.featureserv.util.Download?file=%Y%m%ded$2-a-p.jpg&code=ed$2
provides any
end
class mercurycenter
# $1 - number of strip (unique to Mercury Center?)
# $2 - name of strip spaces=_?
homepage http://cgi.mercurycenter.com/cgi-bin/comics/show.cgi?ID=$1&DATE=TODAY
type generate
imageurl http://cgi.mercurycenter.com/premium/comics/%m_%d/$2.gif
provides any
end
class sev-comics
homepage http://www.sev.com.au/toonzone/$strip.asp
type generate
imageurl http://www.sev.com.au/toonzone/$strip.jpg
provides latest
end
class washpost-creators
homepage http://featurepage.creators.com/washpost.html?name=$1
type generate
prefetch $homepage
imageurl http://www.creators.com/comics/<code:use POSIX;my$o=0;while(strftime("\%"."w",localtime($time_today-86400*$o))!=0){$o++}my$d=strftime("\%"."m"."\%"."d",localtime($time_today-86400*$o));"$d">/$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
imageurl http://est.rbma.com/content/$1
type generate
provides latest
end
class washpost-uclick
homepage http://www2.uclick.com/client/wpc/$1/
type search
searchpattern <IMG.+?SRC="(http://images\.ucomics\.com/comics/$1/\d+/$1\d+.gif)">
provides latest
end
class slate-cagle
homepage http://cagle.slate.msn.com/politicalcartoons/PCcartoons/$1.asp
type search
searchpattern <IMG.+?SRC=".+?(/working/\d+/$2\d*\.(gif|jpg))"
baseurl http://cagle.slate.msn.com
provides latest
end
class slate-cagle-alt
homepage http://cagle.slate.msn.com/politicalcartoons/PCcartoons/$1.asp
type search
searchpattern <IMG.+?SRC=.+?(/comics/updating/$2\d*\.(gif|jpg))"
baseurl http://cagle.slate.msn.com
provides latest
end
class kingfeatures
homepage http://www.kingfeatures.com/features/comics/$1/about.htm
type search
searchpage http://www.kingfeatures.com/features/comics/$1/aboutMaina.php
searchpattern <img.+?src='(http://est\.rbma\.com/content/$2\?date=\d+)'
provides latest
end
class kingfeatures-alt
homepage http://www.kingfeatures.com/features/comics/$1/about.htm
type search
searchpage http://www.kingfeatures.com/features/comics/$1/aboutMaina.php
searchpattern <img.+?src='($2\d+\..+?)'
baseurl http://www.kingfeatures.com/features/comics/$1/
provides latest
end
class cnsnews
homepage http://www.cnsnews.com/cartoon/$1.asp
type search
searchpage http://www.cnsnews.com/cartoon/$1.asp
searchpattern <img.+?src="(/cartoon/$1images/\d+/.+?\..+?)"
baseurl http://www.cnsnews.com
provides latest
end
class graphicsmash
type search
homepage http://www.graphicsmash.com/series.php?name=$1
searchpage http://www.moderntales.com/tooncast.php?series=$1
searchpattern <img.+?src=(.+?)>
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 <img.+?src=(.+?)>
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 <img.+?src=(.+?)>
provides latest
end
class tumblr
homepage http://$1.tumblr.com
type search
searchpattern <a href="http://$1.tumblr.com/image/\d+"><img src="(http://\d+.media.tumblr.com/.+?/tumblr_.+?)"
provides latest
end
# Non-standard strips
# should be possible to generate?
# sometimes multi-image - need a new way to handle this
strip avalonhigh
name Avalon High
homepage http://www.avalonhigh.com/
type search
searchpattern <IMG.+?SRC="(/?comics/avalon\d{8}.*?\.gif)"
baseurl $homepage
provides latest
end
strip drfun
name Doctor Fun
homepage http://www.ibiblio.org/Dave/Dr-Fun/html/
type generate
imageurl http://www.ibiblio.org/Dave/Dr-Fun/latest.jpg
provides latest
end
strip goats
name Goats
homepage http://www.goats.com/
type search
searchpattern <IMG.+?SRC="(/comix/\d{4}/goats\d{6}.png)"
baseurl http://www.goats.com/
provides latest
end
strip jokesonyou
name The Joke's on You
homepage http://www.thefunnypages.com/
type search
searchpattern <img.+src="(http://www\.thefunnypages\.com/archives/.+?\.gif)"
provides latest
end
strip innies
name Innies and Outies
homepage http://www.inniesandoutties.com/
type generate
imageurl http://www.inniesandoutties.com/images/front.jpg
provides latest
end
strip joyoftech
name The Joy of Tech
artist Liza Schmalcel and Bruce Evans
homepage http://www.joyoftech.com/joyoftech/
type search
searchpattern <img.+?src="(joyimages/\S+\.(gif|jpg))"
baseurl $homepage
provides latest
end
strip megatokyo
name MegaTokyo
homepage http://www.megatokyo.com/
artist Fred Gallagher
type search
searchpattern <img.+?src="(/?strips/\d+\.(gif|jpg|png))"
baseurl http://www.megatokyo.com/
provides latest
end
strip mostlybusiness
name Mostly Business
homepage http://www.tedgoff.com/
type generate
imageurl http://www.tedgoff.com/mb/images/today.gif
provides latest
end
strip pennyarcade
name Penny Arcade
homepage http://www.penny-arcade.com/
artist Jerry Holkins
type search
searchpage http://www.penny-arcade.com/comic
searchpattern <img.+?src="(http://art\.penny-arcade\.com/photos/\S+\.jpg)"
provides latest
end
strip plif
name Parking Lot is Full
homepage http://www.plif.com
type generate
imageurl http://www.plif.com/thisweek.gif
provides latest
end
strip pvp
name Player vs. Player
homepage http://www.pvponline.com/
type generate
imageurl http://www.pvponline.com/archive/%Y/pvp%Y%m%d.gif
provides any
end
strip pvpcurrent
name Player vs. Player
artist Scott Kurtz
homepage http://www.pvponline.com/comic/
type search
searchpage $homepage
searchpattern <img.+?src="(http://.*amazonaws\.com/pvponlinenew/img/comic/\d{4}/\d{2}/pvp\d{8}\.(gif|jpg|png))"
provides latest
end
strip redmeat
name Redmeat
artist Max Cannon
homepage http://www.redmeat.com/
type search
searchpage http://www.redmeat.com/max-cannon/FreshMeat
searchpattern rel="image_src".+?href="(http://www\.redmeat\.com/imager/\S+/RM-\d{4}-\d{2}-\d{2}\.png)"
provides latest
end
strip rudypark
name Rudy Park
homepage http://www.rudypark.com/
type generate
imageurl http://www.rudypark.com/comics/rudy%Y%m%d.gif
provides latest
end
# cookies only
#strip sinfest
# name Sinfest
# homepage http://sinfest.net/
# artist Tatsuya Ishida
# type search
# searchpage $homepage
# searchpattern <img.+?src="(btphp/comics/\S+\.gif)"
# baseurl $homepage
# provides latest
#end
strip sluggy
name Sluggy Freelance
homepage http://www.sluggy.com/
type search
searchpattern <img.+?src="?(/images/comics/\d+a\.(gif|jpg|png))"?
baseurl $homepage
provides latest
end
strip squinkers
name Squinkers
homepage http://www.squinkers.com/
type generate
imageurl http://www.squinkers.com/sqkrs/Images/today.gif
provides latest
end
strip superosity
name Superosity
homepage http://www.superosity.com/
type generate
imageurl http://www.superosity.com/comics/sup%Y%m%d.gif
provides any
end
strip theweedpatch
name The WeedPatch
homepage http://www.jpjennings.com/toons/
type generate
imageurl http://www.jpjennings.com/toons/%m%d%Y.gif
provides any
end
strip userfriendly
name User Friendly
artist J.D. Frazer
homepage http://www.userfriendly.org/
type search
searchpage http://www.userfriendly.org/static/
searchpattern <IMG.+?SRC="(http://www\.userfriendly\.org/cartoons/archives/\d{2}\w{3}/xuf\d+\.gif)"
provides latest
end
strip classm
name The Class Menagerie
homepage http://www.theclassm.com/
type search
searchpattern <IMG.+?SRC="(/comics/cmc\d+\..+?)"
baseurl http://www.theclassm.com/
provides latest
end
strip bruno
name The Bruno Daily Times
homepage http://www.brunostrip.com/bruno.html
type generate
imageurl http://www.brunostrip.com/%Ypics/%Y%m%d.gif
provides any
end
strip nukees
name Nukees
homepage http://www.nukees.com
type search
searchpattern <IMG.+?SRC="(/comics/\d+\..+?)"
baseurl http://www.nukees.com/
provides latest
end
strip joeaverage
name Joe Average
homepage http://www.joeaverage.org
type search
searchpattern <IMG.+?SRC="(/comics/\d+\..+?)"
baseurl http://www.joeaverage.org/
provides latest
end
strip angst
name Angst Technology
homepage http://www.inktank.com/AT/
type generate
imageurl http://www.inktank.com/images/AT/cartoons/%m-%d-%y.gif
provides any
end
strip clanofthecats
name Clan of the cats
homepage http://www.clanofthecats.com/
type search
searchpage http://www.clanofthecats.com/d/%Y%m%d.html
searchpattern <img.+?SRC="/(comics/%Y%m%d.+?)"
baseurl $homepage
provides any
end
strip gpf
name General Protection Fault
homepage http://www.gpf-comics.com/
artist Jeffrey T. Darlington
type search
searchpattern <img.+?src="(/comics/gpf\d+\S+\.(jpg|gif|png))"
baseurl http://www.gpf-comics.com
provides latest
end
strip crfh
name College Roomies from Hell
homepage http://www.crfh.net
type generate
imageurl http://www.crfh.net/comics/crfh%Y%m%d.png
provides any
end
strip striptease
name Strip Tease Comic
homepage http://striptease.keenspot.com/
type generate
imageurl http://striptease.keenspot.com/comics/%Y%m%d.gif
provides any
end
strip dorktower
name Dork Tower
homepage http://www.dorktower.com/
type search
searchpattern <img.+?src="(/?images/comics/.+?\..+?)"
baseurl http://www.gamespy.com/comics/dorktower/
provides latest
end
strip jerkcity
name Jerkcity
homepage http://www.jerkcity.com/
type generate
imageurl http://www.jerkcity.com/today.gif
provides latest
end
strip kevinandkell
name Kevin and Kell
homepage http://www.kevinandkell.com/
type generate
imageurl http://www.kevinandkell.com/%Y/strips/kk%Y%m%d.gif
provides any
end
# superceded
#strip freefall
# name Freefall
# homepage http://www.purrsia.com/freefall/
# type generate
# imageurl $homepage<code:use POSIX;my $w=strftime("\%"."u",localtime($time_today));my $s=517+3*floor(($time_today-995839200)/604800);$s++if$w\>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/8-bit-theater/
artist Brian Clevinger
type search
searchpattern <img.+?src="(http://\S+/comics/8-bit-theater/\d{6}\.(png|jpg))"
searchpage $homepage
provides latest
end
strip apodbig
name Astronomy Picture of the Day (big image)
homepage http://antwrp.gsfc.nasa.gov/apod/
type search
searchpattern <a.+?href="(image/\d{4}/.+?\.(jpg|gif))"
baseurl $homepage
provides latest
end
strip apod
name Astronomy Picture of the Day
homepage http://antwrp.gsfc.nasa.gov/apod/
type search
searchpattern <img.+?SRC="(image/\d{4}/.+?\..+?)"
baseurl $homepage
provides latest
end
strip pgs
name Pathetic Geek Stories
homepage http://www.theonionavclub.com/
type search
searchpage http://www.theonionavclub.com/current_pgs.html
searchpattern <IMG.+?src="(/images/\d+/image_article\d+..+?)"
baseurl $homepage
provides latest
end
strip adventurers
name Adventurers!
homepage http://www.adventurers-comic.com/
type generate
imageurl http://www.adventurers-comic.com/comics/adventurers%Y%m%da.gif
provides any
end
strip btaf
name Bob, The Angry Flower
homepage http://angryflower.com/
type search
searchpage http://angryflower.com/archive.html
searchpattern <a href="(.+?.gif)"
provides latest
baseurl http://angryflower.com/
end
strip boasas
name Boy on a Stick and Slither
homepage http://www.boasas.com/
type search
searchpattern <img.+?src="(boasas/\d+\..+?)"
provides latest
baseurl http://www.boasas.com/
end
strip brunothebandit
name Bruno the Bandit
homepage http://www.brunothebandit.com
type generate
imageurl http://www.brunothebandit.com/comics/%Y%m%da.gif
provides any
end
strip brunothebanditcurrent
name Bruno the Bandit - Current
homepage http://www.brunothebandit.com
type search
searchpattern <IMG.+?SRC="(/comics/%Y\d{4}[a-z]{0,1}\.gif)"
baseurl $homepage
provides latest
end
strip dieselsweeties
name Diesel Sweeties
homepage http://www.dieselsweeties.com/
type search
searchpattern <img.+?src="(/hstrips/\d/\d/\d/\d/\d+\..+?)"
baseurl $homepage
provides latest
end
strip fuzzylogic
name Fuzzy Logic
homepage http://www.bbspot.com/comics/fuzzy_logic/index.html
type generate
imageurl http://www.bbspot.com/Images/comics/fuzzy_logic/%Y/%Y%m%d.jpg
provides any
end
strip littlegamers
name Little Gamers
homepage http://www.little-gamers.com/
artist Christian Fundin and Pontus Madsen
type search
searchpattern <img.+?src="(http://little-gamers\.com/comics/\d{4}-\d{2}-\d{2}-\S+.(jpg|gif))"
provides latest
end
strip machall
name Mac Hall
homepage http://www.MacHall.com/
type search
searchpattern <img.+?src='(/index.php\?do_command=show_strip\&strip_id=\d+\&auth=.+?)'
baseurl $homepage
provides latest
end
strip mrchuckshow
name Mr. Chuck Show
homepage http://www.mrchuckshow.com/
type generate
imageurl http://www.mrchuckshow.com/strips/mcs%Y%m%db.png
provides any
end
strip pentasmal
name Pentasmal
homepage http://www.pentasmal.com/
type generate
imageurl http://www.pentasmal.com/comics/%Y%m%d.png
provides any
end
strip rpgworld
name RPG World
homepage http://www.rpgworldcomic.com/
type search
searchpattern <IMG.+?SRC="(/comics/.+?\..+?)"
provides latest
baseurl $homepage
end
strip spazlabs
name Spaz Labs
homepage http://www.stonebrokestudios.com
type generate
imageurl http://www.stonebrokestudios.com/archives/spaz/%y%m%dspaz.gif
provides any
end
strip glasbergen
name Randy Glasbergen
homepage http://www.glasbergen.com
type generate
imageurl http://www.glasbergen.com/images/toon.gif
provides latest
end
strip spiderman
name Spider Man
homepage http://www.kingfeatures.com/features/comics/spidermn/about.htm
type search
searchpage http://www.kingfeatures.com/features/comics/spidermn/aboutMaina.php
searchpattern <img.+?src='(http://est\.rbma\.com/content/Spiderman\?date=\d{8})'
provides latest
prefetch http://www.kingfeatures.com/images/clear.gif
end
#dead?
strip shelton
name Barry Shelton Cartoon
homepage http://www.cnsnews.com/cartoon/shelton.asp
type search
searchpattern <img.+?border="0".+?src="(Sheltonimages/%Y/.+?\..+?)"
baseurl http://www.cnsnews.com/cartoon/
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 <IMG.+?SRC="(/comics/%Y%m%da\..+?)"
baseurl $homepage
provides any
end
strip elflife
name Elf Life
homepage http://www.elflife.com/
type generate
imageurl http://www.elflife.com/comics/%Y%m%dm.gif
provides any
end
# superceded
#strip suburbanjungle
# name Suburban Jungle
# homepage http://www.suburbanjungle.com/
# type search
# searchpage http://suburbanjungle.com/d/%Y%m%d.html
# searchpattern <img.+?SRC="(/comics/sj%Y%m%d\..+?)"
# baseurl http://www.suburbanjungle.com
# provides any
#end
strip acidreflux
name Acid Reflux
homepage http://www.acidrefluxcomic.com/
type search
baseurl http://www.acidrefluxcomic.com/
searchpattern <img.+?src="(archive/c\d+\..+?)"
provides latest
end
strip whenigrowup
name When I Grow Up
homepage http://www.whenigrowup.net/
type generate
imageurl http://www.whenigrowup.net/comics/wigu%Y%m%d.png
provides any
end
strip walky
name It's Walky
homepage http://www.itswalky.com/
baseurl $homepage
type search
searchpattern <img.+?SRC="/(comics/.+?)"
baseurl $homepage
provides latest
end
strip jackiesfridge
name Jackie's Fridge
type generate
homepage http://jackiesfridge.keenspace.com/
imageurl http://jackiesfridge.keenspace.com/comics/jf%Y%m%da.jpg
provides any
end
#strip schlockmercenary
# name Schlock Mercenary
# type generate
# homepage http://www.schlockmercenary.com/
# imageurl http://www.schlockmercenary.com/comics/schlock%Y%m%d.png
# provides any
#end
strip downtoearth
name Down To Earth
homepage http://www.downtoearthcomic.com/
artist Gavin Chafin and Steve Wood
type search
searchpattern <img.+?src="(strips/\d+_72dpi.gif)"
baseurl $homepage
provides latest
end
strip wandering
name Wandering Ones
homepage http://www.wanderingones.com/
type search
searchpattern <img.+?src='(/buffer/\d/\d\.jpg)'
baseurl $homepage
provides latest
end
strip rvfun
name Reverend Fun
homepage http://rev-fun.gospelcom.net/
type generate
imageurl http://rev-fun.gospelcom.net/add_toon_info.php?date=%Y%m%d
provides any
end
strip slowwave
name Slow Wave
homepage http://www.slowwave.com/
type generate
imageurl $homepage/cgi-bin/archive.cgi?thisweek.gif
provides latest
end
strip sexylosers
name Sexy Losers
homepage http://sexylosers.com/
type search
searchpattern <A.+?HREF="/(\d+).html"
imageurl http://sexylosers.com/comics/sl$match_1.jpg
provides latest
end
# weekly
strip youdamnkid
name You Damn Kid
homepage http://www.youdamnkid.com/
type search
baseurl $homepage
provides latest
searchpattern <img.+?src="(images/ydk\d+\.png)"
end
strip houndshome
name Hound's Home
homepage http://www.houndshome.com/
type search
baseurl $homepage
provides latest
searchpattern <IMG.+?SRC="/(comics/hh.+?)"
end
strip cutewendy
name CuteWendy
homepage http://www.wendycomic.com/
type generate
imageurl http://www.wendycomic.com/comics/wendy%Y%m%d.gif
provides any
end
strip lifesorad
name Life's So Rad
homepage http://www.radcomics.com/
type search
baseurl $homepage
provides latest
searchpattern <IMG.+?SRC="/(comics/\d+.+?)"
end
# formerly known as otakufeh. NC-17.
strip bigones
name Big Ones
homepage http://otakufeh.keenspace.com/
type generate
provides any
imageurl $homepage/comics/big%Y%m%d.gif
end
strip offthemark
name Off the Mark
homepage http://www.offthemark.com/DailyCartoon
type generate
imageurl http://www.offthemark.com/image/data/cartoons/%Y-%m-%dB.gif
provides any
end
strip asif
name As If
homepage http://www.asifcomic.com/
type search
searchpage http://www.asifcomic.com/current.html
searchpattern <img.+?src=".*?_left\.jpg".+?><img.+?src="(\d+\..{3})".+?alt="Comic
baseurl $homepage
provides latest
end
strip nipandtuck
name Nip 'N Tuck
homepage http://nipandtuck.keenspace.com
type search
searchpattern SRC=".+?(/comics/nt(\d{8})\.gif)"
baseurl $homepage
provides latest
end
strip lemontree
name Under The Lemon Tree
homepage http://utlt.keenspace.com
type search
searchpattern <IMG.+?SRC=".+?(/comics/.+?\d{8}\..+?)"
baseurl $homepage
provides latest
end
strip winter
name Winter
homepage http://www.wintercomic.com/
type search
searchpattern <img.+?src='(/index.php\?do_command=show_strip&.+?)'
baseurl $homepage
provides latest
end
#looks gone 2003-11-12
strip brainbuzz
name Brainbuzz
homepage http://cramsession.brainbuzz.com/lists/cartoon/
type generate
imageurl http://i.brainbuzz.com/CS/Lists/Cartoon/%y%m%d.gif
provides any
end
#they win... for now (8394022423 levels of frames and i don't feel like building a full-blown web browser right now)
strip swamp
name Swamp
homepage http://www.swamp.com.au
type search
searchpage http://s1.emcs.com.au/SwampStrips/Strips/Strip.asp?Date=<code:strftime("%-d-%b-%Y", @localtime_today)
searchpattern <img.+?src="(http://s1\.emcs\.com\.au/swampstrips/Strips_Images/\d+\..+?)"
provides any
end
strip thenorm
name The Norm
homepage http://www.thenorm.com/
type generate
imageurl http://www.thenorm.com/arch/%Y/%y%m%d.gif
provides any
end
strip melonpool
name Melonpool
homepage http://www.melonpool.com/
type generate
imageurl http://www.melonpool.com/comics/MM%Y%m%d.gif
provides any
end
strip flem
name FLEM!
homepage http://www.flemcomics.com/
type generate
imageurl http://flem.dhs.org/new.jpg
provides latest
end