Annotation of comics/comics.conf, revision 1.28

1.1       nick        1: #  This file is a CSV of what to download
1.16      nick        2: #
1.28    ! nick        3: #  $Id: comics.conf,v 1.27 2021/10/19 14:34:46 nick Exp $
1.17      nick        4: #  $Log: comics.conf,v $
1.28    ! nick        5: #  Revision 1.27  2021/10/19 14:34:46  nick
        !             6: #  Updated XKCD to work properly again.
        !             7: #
1.27      nick        8: #  Revision 1.26  2020/05/29 12:45:39  nick
                      9: #  Added Calvin and Hobbes
                     10: #
1.26      nick       11: #  Revision 1.25  2019/04/15 12:50:44  nick
                     12: #  Updated Sally Forth.
                     13: #
1.25      nick       14: #  Revision 1.24  2018/06/15 12:22:53  nick
                     15: #  Updated Questionable Content
                     16: #
1.24      nick       17: #  Revision 1.23  2018/04/22 14:03:54  nick
                     18: #  Changed the default for Sunday comics that was causing issues with some comics.
                     19: #
1.23      nick       20: #  Revision 1.22  2018/04/09 12:02:46  nick
                     21: #  Fixed configuration for StoneSoup, updated configuration for some Sunday comics.
                     22: #
1.22      nick       23: #  Revision 1.21  2018/04/06 11:48:38  nick
                     24: #  Updated URL for For Better or For Worse, Foxtrot and Foxtrot Classics.
                     25: #
1.21      nick       26: #  Revision 1.20  2018/01/27 14:39:47  nick
                     27: #  Added Cyanide & Happiness
                     28: #
1.20      nick       29: #  Revision 1.19  2018/01/26 13:05:27  nick
                     30: #  Added a new config option to remove all newline from the resulting index.html
                     31: #  file.  This allows for easier parsing for certain comics.  I then updated
                     32: #  the URLs to search for and enabled the newline removal for a handful
                     33: #  of uComics.
                     34: #
                     35: #  I believe I've also properly fixed the Comic Config version displayed on
                     36: #  the webpage itself.
                     37: #
1.19      nick       38: #  Revision 1.18  2017/08/17 12:32:42  nick
                     39: #  Updated For Better or For Worse URL change.
                     40: #
1.18      nick       41: #  Revision 1.17  2017/01/16 13:53:10  nick
                     42: #  Fixed ucomic due to website change.
                     43: #
1.17      nick       44: #  Revision 1.16  2015/10/22 12:58:44  nick
                     45: #  Added the ability for Sunday only comics.  Stonesoup is no longer weekdays, this has been added to Sunday only.  I also added Foxtrot Classics for weekdays and Foxtrot for Sundays.
                     46: #
1.1       nick       47: # 
                     48: #  This will be placed in to a hash like this:
                     49: #
1.10      nick       50: #      "userfriendly" => {
                     51: #          url     =>      "http://www.userfriendly.org/",
                     52: #          search  =>      ".*Latest Strip.*(\/cartoons\/archives\/.*gif|png|jpg).*",
                     53: #          mode    =>      "1",
                     54: #          fullName=>      "User Friendly",
                     55: #          ext     =>      "gif",
1.22      nick       56: #          Not Sundays     => "1",
1.20      nick       57: #          Sunday_only     => "1",
1.19      nick       58: #          remove_newlines => "0",
1.10      nick       59: #      },
                     60: #  Note: error should always be 0, and ext can be left blank.  The script
                     61: #  will try to determine what it is but will fallback to whatever is in 
                     62: #  there by default if it can't get it.
1.1       nick       63: 
                     64: base_directory = /home/httpd/html/daily/work
                     65: index_directory = indexes
                     66: image_directory = images
                     67: 
1.28    ! nick       68: sallyfothh,https://comicskingdom.net/sally-forth/__YEAR__-__MON__-__DAY__,link,3,Sally Forth,/daily/comics/images/SallyForth.jpg,0,0,1
        !            69: 
        !            70: questionable_content,http://questionablecontent.net/,.*<img src=\"(http.*\/comics\/.*)\">.*,1,Questionable Content,gif,1,0,0
1.25      nick       71: 
1.28    ! nick       72: # sallyforth,https://comicskingdom.com/sally-forth/__YEAR__-__MON__-__DAY__,<meta property=\"og:image\" content=\"(.*?)\"\ \/>,1,Sally Forth,gif,0,0
        !            73: #sallyforth,https://comicskingdom.com/sally-forth/__YEAR__-__MON__-__DAY__,.*<meta property=\"og:image\" content=\"(.*?)\"\ \/>.*,1,Sally Forth,gif,0,0
        !            74: #sallyforth,https://www.startribune.com/variety/comicgames/comics/sally-forth/,.*<meta property=\"og:image\" content=\"(.*?)\"\ \/>.*,1,Sally Forth,gif,0,0
        !            75: # sallyforth,https://www.startribune.com/variety/comicgames/comics/sally-forth/,.*<meta property=\"og:image\" content=\"(.*?)\"\ \/>.*,1,Sally Forth,gif,0,0
1.26      nick       76: 
1.27      nick       77: # calvinandhobbes,http://www.gocomics.com/calvinandhobbes/__YEAR__/__MON__/__DAY__,.*og:image.*(htt.*assets.amuniversal.*)\" ,1,Calvin and Hobbes,gif,0,0,0
1.26      nick       78: 
1.22      nick       79: stonesoup,http://www.gocomics.com/stonesoup/__YEAR__/__MON__/__DAY__,.*og:image.*(htt.*assets.amuniversal.*)\" ,1,StoneSoup,gif,0,1,1
                     80: forbetterorforworse,http://www.gocomics.com/forbetterorforworse/__YEAR__/__MON__/__DAY__,.*og:image.*(htt.*assets.amuniversal.*)\" ,1,For Better or For Worse,gif,0,0,1
1.28    ! nick       81: 
1.23      nick       82: foxtrot,http://www.gocomics.com/foxtrot/__YEAR__/__MON__/__DAY__,.*og:image.*(htt.*assets.amuniversal.*)\" ,1,FoxTrot,gif,0,1,1
1.17      nick       83: 
1.28    ! nick       84: # foxtrotclassics,http://www.gocomics.com/foxtrotclassics/__YEAR__/__MON__/__DAY__,.*og:image.*(htt.*assets.amuniversal.*)\",1,FoxTrot Classics,gif,1,0,1
        !            85: 
        !            86: # dilbert,http://www.dilbert.com/strip/__YEAR__-__MON__-__DAY__,<meta property=\"og:image\" content=\"(.*?)\"\/>,1,Dilbert,gif,1,0
1.21      nick       87: 
1.16      nick       88: bizarro,http://www.arcamax.com/thefunnies/bizarro/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,Bizarro,gif,0,0
                     89: pbs,http://www.arcamax.com/thefunnies/pearlsbeforeswine/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,Pearls Before Swine,gif,0,0
1.28    ! nick       90: # questionable_content,http://questionablecontent.net/,<img src=\"(https:\/\/www.questionablecontent.net\/comics\/.*.[png|gif])\">.*,1,Questionable Content,gif,1,0,0
1.16      nick       91: babyblues,http://www.arcamax.com/thefunnies/babyblues/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,Baby Blues,gif,0,0
                     92: luann,http://www.arcamax.com/thefunnies/luann/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,Luann,gif,0,0
                     93: andycapp,http://www.arcamax.com/thefunnies/andycapp/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,Andy Capp,gif,0,0
1.27      nick       94: xkcd,http://xkcd.com,.*embedding\): <a href.*\">(.*\.png).*,1,xkcd,png,1,0
1.28    ! nick       95: # questionable_content,http://questionablecontent.net/,.*<img src=\"(https:\/\/www.questionablecontent.net\/comics\/.*.[png|gif])\">.*,1,Questionable Content,gif,1,0,0
1.16      nick       96: the_lockhorns,http://www.arcamax.com/thefunnies/thelockhorns/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,The Lockhorns,gif,0,0
                     97: zits,http://www.arcamax.com/thefunnies/zits/,data-zoom-image=\"(.*/newspics/.*/\d+\.(?:gif|jpg))\".*src,1,Zits,gif,0,0
1.10      nick       98: 
                     99: #### OLD COMICS ####
                    100: #dilbert,http://www.dilbert.com,.*textarea class=\"STR_EmbedCode\".*<img src=\"(.*gif|jpg)\" border.*,1,Dilbert,gif,1
                    101: #userfriendly,http://www.userfriendly.org/,.*Latest Strip.*(\/cartoons\/archives\/.*gif|png|jpg).*,1,User Friendly,gif
                    102: #penny_arcade,http://penny-arcade.com/comic,.\s*<img src=\"(.*com\/photos.*)\" alt.*,1,Penny Arcade,png
1.9       nick      103: #blondie,http://www.arcamax.com/thefunnies/blondie/,img src=\"(.*/newspics/.*gif)\",1,Blondie,gif,0
                    104: #wizard_of_id,http://www.arcamax.com/thefunnies/wizardofid/,img src=\"(.*/newspics/.*gif)\",1,Wizard Of Id,gif,0
1.10      nick      105: #hagar_the_horrible,http://www.arcamax.com/thefunnies/hagarthehorrible/,img src=\"(.*/newspics/.*gif)\",1,Hagar the Horrible,gif,0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>