emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b37b080 1/2: image-dired: Use example.org in examples


From: Stefan Kangas
Subject: master b37b080 1/2: image-dired: Use example.org in examples
Date: Tue, 26 Oct 2021 20:09:29 -0400 (EDT)

branch: master
commit b37b080af182628c18f53401c5730f1b00a11287
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    image-dired: Use example.org in examples
    
    * 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 | 24 ++++++++++++++----------
 1 file changed, 14 insertions(+), 10 deletions(-)

diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 4ce61ea..1a1d89c 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]