diff --git a/docs/configuration.rst b/docs/configuration.rst index c58ac40c..ac1539ad 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -287,19 +287,6 @@ Description Select the directory structure created by the Gallery- and =========== ===== -extractor.deviantart.original ------------------------------ -=========== ===== -Type ``bool`` -Default ``true`` -Description Request full-sized original images if available. - - Some of DeviantArt's images require an additional API call to get - their actual original version, which is being hosted on - Amazon Web Services (AWS) servers. -=========== ===== - - extractor.deviantart.mature --------------------------- =========== ===== @@ -313,6 +300,19 @@ Description Enable mature content. =========== ===== +extractor.deviantart.original +----------------------------- +=========== ===== +Type ``bool`` +Default ``true`` +Description Request full-sized original images if available. + + Some of DeviantArt's images require an additional API call to get + their actual original version, which is being hosted on + Amazon Web Services (AWS) servers. +=========== ===== + + extractor.exhentai.original --------------------------- =========== ===== diff --git a/docs/gallery-dl.conf b/docs/gallery-dl.conf index cf68c87b..60d1a153 100644 --- a/docs/gallery-dl.conf +++ b/docs/gallery-dl.conf @@ -80,7 +80,8 @@ "deviantart": { "flat": true, - "mature": true + "mature": true, + "original": true }, "gfycat": { diff --git a/gallery_dl/extractor/4chan.py b/gallery_dl/extractor/4chan.py index b4eac370..87f70a15 100644 --- a/gallery_dl/extractor/4chan.py +++ b/gallery_dl/extractor/4chan.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2015, 2016 Mike Fährmann +# Copyright 2015-2017 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as diff --git a/gallery_dl/extractor/8chan.py b/gallery_dl/extractor/8chan.py index c1c4486a..f323db8d 100644 --- a/gallery_dl/extractor/8chan.py +++ b/gallery_dl/extractor/8chan.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2014-2016 Mike Fährmann +# Copyright 2014-2017 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as diff --git a/gallery_dl/job.py b/gallery_dl/job.py index f7215ead..32f3931b 100644 --- a/gallery_dl/job.py +++ b/gallery_dl/job.py @@ -190,7 +190,7 @@ class KeywordJob(Job): def handle_queue(self, url, keywords): if not keywords: self.extractor.log.info( - "This extractor transfers work to other extractors " + "This extractor delegates work to other extractors " "and does not provide any keywords on its own. Try " "'gallery-dl -K \"%s\"' instead.", url) else: diff --git a/gallery_dl/option.py b/gallery_dl/option.py index d9add3e6..56fcc889 100644 --- a/gallery_dl/option.py +++ b/gallery_dl/option.py @@ -201,7 +201,7 @@ def build_parser(): "--chapter-range", metavar="RANGE", dest="chapter_range", help=("Same as '--range' except for chapters " - "and other transferred URLs"), + "and other delegated URLs"), ) selection.add_argument( "--filter", @@ -216,7 +216,7 @@ def build_parser(): "--chapter-filter", metavar="EXPR", dest="chapter_filter", help=("Same as '--filter' except for chapters " - "and other transferred URLs"), + "and other delegated URLs"), ) selection.add_argument( "--images", dest="depr_images",