1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
;;; webjump.el --- programmable Web hotlist
;; Copyright (C) 1996-1997, 2001-2020 Free Software Foundation, Inc.
;; Author: Neil W. Van Dyke <nwv@acm.org>
;; Created: 09-Aug-1996
;; Keywords: comm www
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; WebJump provides a sort of ``programmable hotlist'' of Web sites that can
;; quickly be invoked in your Web browser. Each Web site in the hotlist has a
;; name, and you select the desired site name via a completing string prompt in
;; the minibuffer. The URL for each Web site is defined as a static string or
;; a built-in or custom function, allowing interactive prompting for
;; site-specific queries and options.
;; Note that WebJump was originally intended to complement your conventional
;; browser-based hotlist, not replace it. (Though there's no reason you
;; couldn't use WebJump for your entire hotlist if you were so inclined.)
;; The `webjump-sites' variable, which defines the hotlist, defaults to some
;; example sites. You'll probably want to override it with your own favorite
;; sites. The documentation for the variable describes the syntax.
;; You may wish to add something like the following to your init file:
;;
;; (require 'webjump)
;; (global-set-key "\C-cj" 'webjump)
;; (setq webjump-sites
;; (append '(
;; ("My Home Page" . "www.someisp.net/users/joebobjr/")
;; ("Pop's Site" . "www.joebob-and-son.com/")
;; )
;; webjump-sample-sites))
;;
;; The above loads this package, binds `C-c j' to invoke WebJump, and adds your
;; personal favorite sites to the hotlist.
;; The `webjump-sample-sites' variable mostly contains some site entries that
;; are expected to be generally relevant to many users, but excluding
;; those that the GNU project would not want to recommend.
;; The `browse-url' package is used to submit URLs to the browser, so any
;; browser-specific configuration should be done there.
;;; Code:
;;-------------------------------------------------------- Package Dependencies
(require 'browse-url)
;;------------------------------------------------------------------- Constants
(defgroup webjump nil
"Programmable Web hotlist."
:prefix "webjump-"
:group 'browse-url)
(defconst webjump-sample-sites
'(
;; FSF, not including Emacs-specific.
("GNU Project FTP Archive" .
;; GNU FTP Mirror List from https://www.gnu.org/order/ftp.html
[mirrors "https://ftp.gnu.org/pub/gnu/"
"https://ftpmirror.gnu.org"])
("GNU Project Home Page" . "www.gnu.org")
;; Emacs.
("Emacs Home Page" .
"www.gnu.org/software/emacs/emacs.html")
("Savannah Emacs page" .
"savannah.gnu.org/projects/emacs")
("Emacs Lisp List" .
"www.damtp.cam.ac.uk/user/eglen/emacs/ell.html")
("Emacs Wiki" .
[simple-query "www.emacswiki.org"
"www.emacswiki.org/cgi-bin/wiki/" ""])
;; Internet search engines.
("DuckDuckGo" .
[simple-query "duckduckgo.com"
"duckduckgo.com/?q=" ""])
("Google" .
[simple-query "www.google.com"
"www.google.com/search?q=" ""])
("Google Groups" .
[simple-query "groups.google.com"
"groups.google.com/groups?q=" ""])
("Yahoo" .
[simple-query "www.yahoo.com" "search.yahoo.com/search?p=" ""])
("Yahoo: Reference" . "www.yahoo.com/Reference/")
("Wikipedia" .
[simple-query "wikipedia.org" "wikipedia.org/wiki/" ""])
;; Misc. general interest.
("National Weather Service" . webjump-to-iwin)
("Usenet FAQs" .
"www.faqs.org/faqs/")
("RTFM Usenet FAQs by Group" .
"ftp://rtfm.mit.edu/pub/usenet-by-group/")
("RTFM Usenet FAQs by Hierarchy" .
"ftp://rtfm.mit.edu/pub/usenet-by-hierarchy/")
("X Consortium Archive" . "ftp.x.org")
;; Computer social issues, privacy, professionalism.
("Association for Computing Machinery" . "www.acm.org")
("Computer Professionals for Social Responsibility" . "www.cpsr.org")
("Electronic Frontier Foundation" . "www.eff.org")
("IEEE Computer Society" . "www.computer.org")
("Risks Digest" . webjump-to-risks)
;; More.
("Supplemental Web site list for webjump" .
"www.neilvandyke.org/webjump/")
)
"Sample hotlist for WebJump.
See the documentation for `webjump' and `webjump-sites'.")
(defconst webjump-state-to-postal-alist
'(("Alabama" . "al") ("Alaska" . "ak") ("Arizona" . "az") ("Arkansas" . "ar")
("California" . "ca") ("Colorado" . "co") ("Connecticut" . "ct")
("Delaware" . "de") ("Florida" . "fl") ("Georgia" . "ga") ("Hawaii" . "hi")
("Idaho" . "id") ("Illinois" . "il") ("Indiana" . "in") ("Iowa" . "ia")
("Kansas" . "ks") ("Kentucky" . "ky") ("Louisiana" . "la") ("Maine" . "me")
("Maryland" . "md") ("Massachusetts" . "ma") ("Michigan" . "mi")
("Minnesota" . "mn") ("Mississippi" . "ms") ("Missouri" . "mo")
("Montana" . "mt") ("Nebraska" . "ne") ("Nevada" . "nv")
("New Hampshire" . "nh") ("New Jersey" . "nj") ("New Mexico" . "nm")
("New York" . "ny") ("North Carolina" . "nc") ("North Dakota" . "nd")
("Ohio" . "oh") ("Oklahoma" . "ok") ("Oregon" . "or")
("Pennsylvania" . "pa") ("Rhode Island" . "ri") ("South Carolina" . "sc")
("South Dakota" . "sd") ("Tennessee" . "tn") ("Texas" . "tx")
("Utah" . "ut") ("Vermont" . "vt") ("Virginia" . "va")
("Washington" . "wa") ("West Virginia" . "wv") ("Wisconsin" . "wi")
("Wyoming" . "wy")))
;;------------------------------------------------------------ Option Variables
(defcustom webjump-sites webjump-sample-sites
"Hotlist for WebJump.
The hotlist is represented as an association list, with the CAR of each cell
being the name of the Web site, and the CDR being the definition for the URL of
that site. The URL definition can be a string (the URL), a vector (specifying
a special \"builtin\" which returns a URL), a symbol (name of a function which
returns a URL), or a list (which when `eval'ed yields a URL).
If the URL definition is a vector, then a \"builtin\" is used. A builtin has a
Lisp-like syntax, with the name as the first element of the vector, and any
arguments as the following elements. The three current builtins are `name',
which returns the name of the site as the URL, `simple-query', which
returns a URL that is a function of a query entered by the user, and `mirrors',
which allows the user to select from among multiple mirror sites for the same
content.
The first argument to the `simple-query' builtin is a static URL to use if the
user enters a blank query. The second and third arguments are the prefix and
suffix, respectively, to add to the encoded query the user enters. This
builtin covers Web sites that have single-string searches with the query
embedded in the URL.
The arguments to the `mirrors' builtin are URLs of mirror sites.
If the symbol of a function is given, then the function will be called with the
Web site name (the one you specified in the CAR of the alist cell) as a
parameter. This might come in handy for various kludges.
For convenience, if the `http://', `ftp://', or `file://' prefix is missing
from a URL, WebJump will make a guess at what you wanted and prepend it before
submitting the URL."
:type '(alist :key-type (string :tag "Name")
:value-type (choice :tag "URL"
(string :tag "URL")
function
(vector :tag "Builtin"
(symbol :tag "Name")
(repeat :inline t :tag "Arguments"
string))
(sexp :tag "Expression to eval"))))
;;------------------------------------------------------- Sample Site Functions
(defun webjump-to-iwin (name)
(let* ((prefix "http://www.nws.noaa.gov/view/")
(state (webjump-read-choice name "state"
(append '(("Puerto Rico" . "pr")
("Guam" . "gu")
("American Samoa" . "as")
("District of Columbia" . "dc")
("US Virgin Islands" . "vi"))
webjump-state-to-postal-alist)))
(opt (if state
(webjump-read-choice
name "option"
'(("Hourly Report" . "hourly")
("State Forecast" . "state")
("Zone Forecast" . "zone")
("Short-Term Forecast" . "shortterm")
("Forecast Discussion" . "discussion")
("Weather Summary" . "summary")
("Public Information" . "public")
("Climatic Data" . "climate")
("Hydro Products" . "hydro")
("Watches" . "watches")
("Special Weather" . "special")
("Warnings and Advisories" . "warnings")
("Fire Weather" . "firewx"))))))
(cond (opt (concat prefix "prodsByState.php?state=" state "&prodtype=" opt))
(state (concat prefix "states.php?state=" state))
(t prefix))))
(defun webjump-to-risks (name)
(let (issue volume)
(if (and (setq volume (webjump-read-number (concat name " volume")))
(setq issue (webjump-read-number (concat name " issue"))))
(format "catless.ncl.ac.uk/Risks/%d.%02d.html" volume issue)
"catless.ncl.ac.uk/Risks/")))
;;-------------------------------------------------------------- Core Functions
;;;###autoload
(defun webjump ()
"Jumps to a Web site from a programmable hotlist.
See the documentation for the `webjump-sites' variable for how to customize the
hotlist.
Please submit bug reports and other feedback to the author, Neil W. Van Dyke
<nwv@acm.org>."
(interactive)
(let* ((completion-ignore-case t)
(item (assoc-string
(completing-read "WebJump to site: " webjump-sites nil t)
webjump-sites t))
(name (car item))
(expr (cdr item)))
(browse-url (webjump-url-fix
(cond ((not expr) "")
((stringp expr) expr)
((vectorp expr) (webjump-builtin expr name))
((listp expr) (eval expr))
((symbolp expr)
(if (fboundp expr)
(funcall expr name)
(error "WebJump URL function \"%s\" undefined"
expr)))
(t (error "WebJump URL expression for \"%s\" invalid"
name)))))))
(defun webjump-builtin (expr name)
(if (< (length expr) 1)
(error "WebJump URL builtin for \"%s\" empty" name))
(let ((builtin (aref expr 0)))
(cond
((eq builtin 'mirrors)
(if (= (length expr) 1)
(error
"WebJump URL builtin \"mirrors\" for \"%s\" needs at least 1 arg"
name))
(webjump-choose-mirror name (cdr (append expr nil))))
((eq builtin 'name)
name)
((eq builtin 'simple-query)
(webjump-builtin-check-args expr name 3)
(webjump-do-simple-query name (aref expr 1) (aref expr 2) (aref expr 3)))
(t (error "WebJump URL builtin \"%s\" for \"%s\" invalid"
builtin name)))))
(defun webjump-builtin-check-args (expr name count)
(or (= (length expr) (1+ count))
(error "WebJump URL builtin \"%s\" for \"%s\" needs %d args"
(aref expr 0) name count)))
(defun webjump-choose-mirror (name urls)
(webjump-read-url-choice (concat name " mirror")
urls
(webjump-mirror-default urls)))
(defun webjump-do-simple-query (name noquery-url query-prefix query-suffix)
(let ((query (webjump-read-string (concat name " query"))))
(if query
(concat query-prefix (webjump-url-encode query) query-suffix)
noquery-url)))
(defun webjump-mirror-default (urls)
;; Note: This should be modified to apply some simple kludges/heuristics to
;; pick a site which is likely "close". As a tie-breaker among candidates
;; judged equally desirable, randomness might be used.
(car urls))
(defun webjump-read-choice (name what choices &optional default)
(let* ((completion-ignore-case t)
(choice (completing-read (concat name " " what ": ") choices nil t)))
(if (webjump-null-or-blank-string-p choice)
default
(cdr (assoc choice choices)))))
(defun webjump-read-number (prompt)
;; Note: I should make this more robust someday.
(let ((input (webjump-read-string prompt)))
(if input (string-to-number input))))
(defun webjump-read-string (prompt)
(let ((input (read-string (concat prompt ": "))))
(if (webjump-null-or-blank-string-p input) nil input)))
(defun webjump-read-url-choice (what urls &optional default)
;; Note: Convert this to use `webjump-read-choice' someday.
(let* ((completions (mapcar (function (lambda (n) (cons n n)))
urls))
(input (completing-read (concat what
;;(if default " (RET for default)" "")
": ")
completions
nil
t)))
(if (webjump-null-or-blank-string-p input)
default
(car (assoc input completions)))))
(defun webjump-null-or-blank-string-p (str)
(or (null str) (string-match "^[ \t]*$" str)))
(defun webjump-url-encode (str)
(mapconcat (lambda (c)
(let ((s (char-to-string c)))
(cond ((string= s " ") "+")
((string-match "[a-zA-Z_./~-]" s) s)
(t (upcase (format "%%%02x" c))))))
(encode-coding-string str 'utf-8)
""))
(defun webjump-url-fix (url)
(if (webjump-null-or-blank-string-p url)
""
(webjump-url-fix-trailing-slash
(cond
((string-match "^[a-zA-Z]+:" url) url)
((string-match "^/" url) (concat "file://" url))
((string-match "^\\([^\\./]+\\)" url)
(concat (if (string= (downcase (match-string 1 url)) "ftp")
"ftp"
"http")
"://"
url))
(t url)))))
(defun webjump-url-fix-trailing-slash (url)
(if (string-match "^[a-zA-Z]+://[^/]+$" url)
(concat url "/")
url))
;;-----------------------------------------------------------------------------
(provide 'webjump)
;;; webjump.el ends here
|