]> git.eshelyaron.com Git - emacs.git/commitdiff
image-dired: Use example.org in examples
authorStefan Kangas <stefan@marxist.se>
Wed, 27 Oct 2021 00:00:24 +0000 (02:00 +0200)
committerStefan Kangas <stefan@marxist.se>
Wed, 27 Oct 2021 00:05:33 +0000 (02:05 +0200)
* lisp/image-dired.el (image-dired-gallery-image-root-url)
(image-dired-gallery-thumb-image-root-url): Use example.org to be
RFC 2606 compliant.

lisp/image-dired.el

index 4ce61ea211beb0c0230f4be25a5708e8cb0e3f1a..1a1d89c461e45a36ab017fdc9a9bd02f66ad8280 100644 (file)
@@ -240,18 +240,22 @@ the index.html page that image-dired creates."
   :type 'directory)
 
 (defcustom image-dired-gallery-image-root-url
-"https://your.own.server/image-diredpics"
-  "URL where the full size images are to be found.
-Note that this path has to be configured in your web server.  Image-Dired
-expects to find pictures in this directory."
-  :type 'string)
+  "https://example.org/image-diredpics"
+  "URL where the full size images are to be found on your web server.
+Note that this path has to be configured on your web server.
+Image-Dired expects to find pictures in this directory.
+This is used by `image-dired-gallery-generate'."
+  :type 'string
+  :version "29.1")
 
 (defcustom image-dired-gallery-thumb-image-root-url
-"https://your.own.server/image-diredthumbs"
-  "URL where the thumbnail images are to be found.
-Note that this path has to be configured in your web server.  Image-Dired
-expects to find pictures in this directory."
-  :type 'string)
+  "https://example.org/image-diredthumbs"
+  "URL where the thumbnail images are to be found on your web server.
+Note that this path has to be configured on your web server.
+Image-Dired expects to find pictures in this directory.
+This is used by `image-dired-gallery-generate'."
+  :type 'string
+  :version "29.1")
 
 (defcustom image-dired-cmd-create-thumbnail-program
   (if (executable-find "gm") "gm" "convert")