comparison lisp/gnus/mm-url.el @ 59996:aac0a33f5772

Change release version from 21.4 to 22.1 throughout. Change development version from 21.3.50 to 22.0.50.
author Kim F. Storm <storm@cua.dk>
date Wed, 09 Feb 2005 15:50:47 +0000
parents df80d19d7a2e
children 7503b2a24a3c
comparison
equal deleted inserted replaced
59995:8f4938738427 59996:aac0a33f5772
47 (defcustom mm-url-use-external (not 47 (defcustom mm-url-use-external (not
48 (condition-case nil 48 (condition-case nil
49 (require 'url) 49 (require 'url)
50 (error nil))) 50 (error nil)))
51 "*If non-nil, use external grab program `mm-url-program'." 51 "*If non-nil, use external grab program `mm-url-program'."
52 :version "21.4" 52 :version "22.1"
53 :type 'boolean 53 :type 'boolean
54 :group 'mm-url) 54 :group 'mm-url)
55 55
56 (defvar mm-url-predefined-programs 56 (defvar mm-url-predefined-programs
57 '((wget "wget" "--user-agent=mm-url" "-q" "-O" "-") 57 '((wget "wget" "--user-agent=mm-url" "-q" "-O" "-")
66 ((executable-find "lynx") 'lynx) 66 ((executable-find "lynx") 'lynx)
67 ((executable-find "curl") 'curl) 67 ((executable-find "curl") 'curl)
68 (t "GET")) 68 (t "GET"))
69 "The url grab program. 69 "The url grab program.
70 Likely values are `wget', `w3m', `lynx' and `curl'." 70 Likely values are `wget', `w3m', `lynx' and `curl'."
71 :version "21.4" 71 :version "22.1"
72 :type '(choice 72 :type '(choice
73 (symbol :tag "wget" wget) 73 (symbol :tag "wget" wget)
74 (symbol :tag "w3m" w3m) 74 (symbol :tag "w3m" w3m)
75 (symbol :tag "lynx" lynx) 75 (symbol :tag "lynx" lynx)
76 (symbol :tag "curl" curl) 76 (symbol :tag "curl" curl)
77 (string :tag "other")) 77 (string :tag "other"))
78 :group 'mm-url) 78 :group 'mm-url)
79 79
80 (defcustom mm-url-arguments nil 80 (defcustom mm-url-arguments nil
81 "The arguments for `mm-url-program'." 81 "The arguments for `mm-url-program'."
82 :version "21.4" 82 :version "22.1"
83 :type '(repeat string) 83 :type '(repeat string)
84 :group 'mm-url) 84 :group 'mm-url)
85 85
86 86
87 ;;; Internal variables 87 ;;; Internal variables