2016-10-31 19:55:17 -04:00
|
|
|
;;; url-parse.el --- Uniform Resource Locator parser -*- lexical-binding: t -*-
|
2004-04-12 20:45:16 +00:00
|
|
|
|
2022-01-01 02:45:51 -05:00
|
|
|
;; Copyright (C) 1996-1999, 2004-2022 Free Software Foundation, Inc.
|
2004-04-12 20:45:16 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;; Keywords: comm, data, processes
|
|
|
|
|
2004-04-12 20:45:16 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;;
|
2008-05-06 04:29:13 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2004-04-12 20:45:16 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
2004-04-12 20:45:16 +00:00
|
|
|
;; 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.
|
2008-05-06 04:29:13 +00:00
|
|
|
|
2004-04-12 20:45:16 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2004-04-12 20:45:16 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(require 'url-vars)
|
2010-06-22 12:48:53 -04:00
|
|
|
(require 'auth-source)
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 19:13:41 -04:00
|
|
|
(eval-when-compile (require 'cl-lib))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(autoload 'url-scheme-get-property "url-methods")
|
|
|
|
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 19:13:41 -04:00
|
|
|
(cl-defstruct (url
|
2007-08-31 16:40:05 +00:00
|
|
|
(:constructor nil)
|
|
|
|
(:constructor url-parse-make-urlobj
|
|
|
|
(&optional type user password host portspec filename
|
|
|
|
target attributes fullness))
|
|
|
|
(:copier nil))
|
2012-02-08 01:04:42 +01:00
|
|
|
type user password host portspec filename target attributes fullness
|
2017-09-13 20:10:51 +02:00
|
|
|
silent (use-cookies t)
|
|
|
|
(asynchronous t))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
2007-08-31 16:40:05 +00:00
|
|
|
(defsubst url-port (urlobj)
|
2012-12-22 10:59:08 +08:00
|
|
|
"Return the port number for the URL specified by URLOBJ.
|
|
|
|
If the port spec is nil (i.e. URLOBJ specifies no port number),
|
|
|
|
return the default port number for URLOBJ's scheme."
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 19:13:41 -04:00
|
|
|
(declare (gv-setter (lambda (port) `(setf (url-portspec ,urlobj) ,port))))
|
2007-08-31 16:40:05 +00:00
|
|
|
(or (url-portspec urlobj)
|
2012-05-10 14:27:12 +08:00
|
|
|
(if (url-type urlobj)
|
2007-08-31 16:40:05 +00:00
|
|
|
(url-scheme-get-property (url-type urlobj) 'default-port))))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
2012-05-10 14:27:12 +08:00
|
|
|
(defun url-path-and-query (urlobj)
|
|
|
|
"Return the path and query components of URLOBJ.
|
2012-11-17 14:48:51 +08:00
|
|
|
These two components are stored together in the FILENAME slot of
|
2012-05-10 14:27:12 +08:00
|
|
|
the object. The return value of this function is (PATH . QUERY),
|
|
|
|
where each of PATH and QUERY are strings or nil."
|
|
|
|
(let ((name (url-filename urlobj))
|
|
|
|
path query)
|
|
|
|
(when name
|
|
|
|
(if (string-match "\\?" name)
|
|
|
|
(setq path (substring name 0 (match-beginning 0))
|
|
|
|
query (substring name (match-end 0)))
|
|
|
|
(setq path name)))
|
|
|
|
(cons path query)))
|
|
|
|
|
|
|
|
(defun url-port-if-non-default (urlobj)
|
|
|
|
"Return the port number specified by URLOBJ, if it is not the default.
|
|
|
|
If the specified port number is the default, return nil."
|
|
|
|
(let ((port (url-portspec urlobj))
|
|
|
|
type)
|
|
|
|
(and port
|
|
|
|
(or (null (setq type (url-type urlobj)))
|
|
|
|
(not (equal port (url-scheme-get-property type 'default-port))))
|
|
|
|
port)))
|
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun url-recreate-url (urlobj)
|
2004-04-12 04:05:50 +00:00
|
|
|
"Recreate a URL string from the parsed URLOBJ."
|
2012-05-10 14:27:12 +08:00
|
|
|
(let* ((type (url-type urlobj))
|
|
|
|
(user (url-user urlobj))
|
|
|
|
(pass (url-password urlobj))
|
|
|
|
(host (url-host urlobj))
|
|
|
|
;; RFC 3986: "omit the port component and its : delimiter if
|
|
|
|
;; port is empty or if its value would be the same as that of
|
|
|
|
;; the scheme's default."
|
|
|
|
(port (url-port-if-non-default urlobj))
|
|
|
|
(file (url-filename urlobj))
|
|
|
|
(frag (url-target urlobj)))
|
2012-05-09 16:33:48 +08:00
|
|
|
(concat (if type (concat type ":"))
|
|
|
|
(if (url-fullness urlobj) "//")
|
|
|
|
(if (or user pass)
|
|
|
|
(concat user
|
|
|
|
(if pass (concat ":" pass))
|
|
|
|
"@"))
|
|
|
|
host
|
2012-05-10 14:27:12 +08:00
|
|
|
(if port (format ":%d" (url-port urlobj)))
|
2012-05-09 16:33:48 +08:00
|
|
|
(or file "/")
|
|
|
|
(if frag (concat "#" frag)))))
|
2006-09-01 02:31:24 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun url-generic-parse-url (url)
|
2008-01-26 19:46:17 +00:00
|
|
|
"Return an URL-struct of the parts of URL.
|
|
|
|
The CL-style struct contains the following fields:
|
2012-05-09 16:33:48 +08:00
|
|
|
|
|
|
|
TYPE is the URI scheme (string or nil).
|
|
|
|
USER is the user name (string or nil).
|
|
|
|
PASSWORD is the password (string [deprecated] or nil).
|
|
|
|
HOST is the host (a registered name, IP literal in square
|
|
|
|
brackets, or IPv4 address in dotted-decimal form).
|
|
|
|
PORTSPEC is the specified port (a number), or nil.
|
|
|
|
FILENAME is the path AND the query component of the URI.
|
|
|
|
TARGET is the fragment identifier component (used to refer to a
|
|
|
|
subordinate resource, e.g. a part of a webpage).
|
|
|
|
ATTRIBUTES is nil; this slot originally stored the attribute and
|
|
|
|
value alists for IMAP URIs, but this feature was removed
|
|
|
|
since it conflicts with RFC 3986.
|
2014-05-01 19:55:25 -04:00
|
|
|
FULLNESS is non-nil if the hierarchical sequence component of
|
2012-05-10 14:27:12 +08:00
|
|
|
the URL starts with two slashes, \"//\".
|
2012-05-09 16:33:48 +08:00
|
|
|
|
|
|
|
The parser follows RFC 3986, except that it also tries to handle
|
|
|
|
URIs that are not fully specified (e.g. lacking TYPE), and it
|
|
|
|
does not check for or perform %-encoding.
|
|
|
|
|
|
|
|
Here is an example. The URL
|
|
|
|
|
|
|
|
foo://bob:pass@example.com:42/a/b/c.dtb?type=animal&name=narwhal#nose
|
|
|
|
|
|
|
|
parses to
|
|
|
|
|
|
|
|
TYPE = \"foo\"
|
|
|
|
USER = \"bob\"
|
|
|
|
PASSWORD = \"pass\"
|
|
|
|
HOST = \"example.com\"
|
|
|
|
PORTSPEC = 42
|
|
|
|
FILENAME = \"/a/b/c.dtb?type=animal&name=narwhal\"
|
|
|
|
TARGET = \"nose\"
|
|
|
|
ATTRIBUTES = nil
|
|
|
|
FULLNESS = t"
|
|
|
|
(if (null url)
|
|
|
|
(url-parse-make-urlobj)
|
2006-11-15 23:14:49 +00:00
|
|
|
(with-temp-buffer
|
2009-11-27 01:27:04 +00:00
|
|
|
;; Don't let those temp-buffer modifications accidentally
|
|
|
|
;; deactivate the mark of the current-buffer.
|
|
|
|
(let ((deactivate-mark nil))
|
|
|
|
(set-syntax-table url-parse-syntax-table)
|
2012-05-09 16:33:48 +08:00
|
|
|
(erase-buffer)
|
|
|
|
(insert url)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(let ((save-pos (point))
|
|
|
|
scheme user pass host port file fragment full
|
2009-11-27 01:27:04 +00:00
|
|
|
(inhibit-read-only t))
|
|
|
|
|
|
|
|
;; 3.1. Scheme
|
2012-05-09 16:33:48 +08:00
|
|
|
;; This is nil for a URI that is not fully specified.
|
|
|
|
(when (looking-at "\\([a-zA-Z][-a-zA-Z0-9+.]*\\):")
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(setq save-pos (point))
|
|
|
|
(setq scheme (downcase (match-string 1))))
|
2009-11-27 01:27:04 +00:00
|
|
|
|
|
|
|
;; 3.2. Authority
|
|
|
|
(when (looking-at "//")
|
|
|
|
(setq full t)
|
|
|
|
(forward-char 2)
|
|
|
|
(setq save-pos (point))
|
2012-05-09 16:33:48 +08:00
|
|
|
(skip-chars-forward "^/?#")
|
2009-11-27 01:27:04 +00:00
|
|
|
(setq host (buffer-substring save-pos (point)))
|
2012-05-09 16:33:48 +08:00
|
|
|
;; 3.2.1 User Information
|
2009-11-27 01:27:04 +00:00
|
|
|
(if (string-match "^\\([^@]+\\)@" host)
|
|
|
|
(setq user (match-string 1 host)
|
2012-05-09 16:33:48 +08:00
|
|
|
host (substring host (match-end 0))))
|
|
|
|
(if (and user (string-match "\\`\\([^:]*\\):\\(.*\\)" user))
|
2009-11-27 01:27:04 +00:00
|
|
|
(setq pass (match-string 2 user)
|
|
|
|
user (match-string 1 user)))
|
2012-05-09 16:33:48 +08:00
|
|
|
(cond
|
|
|
|
;; IPv6 literal address.
|
|
|
|
((string-match "^\\(\\[[^]]+\\]\\)\\(?::\\([0-9]*\\)\\)?$" host)
|
|
|
|
(setq port (match-string 2 host)
|
|
|
|
host (match-string 1 host)))
|
|
|
|
;; Registered name or IPv4 address.
|
|
|
|
((string-match ":\\([0-9]*\\)$" host)
|
|
|
|
(setq port (match-string 1 host)
|
|
|
|
host (substring host 0 (match-beginning 0)))))
|
|
|
|
(cond ((equal port "")
|
|
|
|
(setq port nil))
|
|
|
|
(port
|
|
|
|
(setq port (string-to-number port))))
|
|
|
|
(setq host (downcase host)))
|
|
|
|
|
|
|
|
;; Now point is on the / ? or # which terminates the
|
|
|
|
;; authority, or at the end of the URI, or (if there is no
|
|
|
|
;; authority) at the beginning of the absolute path.
|
|
|
|
|
2009-11-27 01:27:04 +00:00
|
|
|
(setq save-pos (point))
|
2012-05-09 16:33:48 +08:00
|
|
|
(if (string= "data" scheme)
|
|
|
|
;; For the "data" URI scheme, all the rest is the FILE.
|
|
|
|
(setq file (buffer-substring save-pos (point-max)))
|
|
|
|
;; For hysterical raisins, our data structure returns the
|
|
|
|
;; path and query components together in one slot.
|
|
|
|
;; 3.3. Path
|
|
|
|
(skip-chars-forward "^?#")
|
|
|
|
;; 3.4. Query
|
Fix regular-expression glitches and typos
Problems reported by Mattias Engdegård in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg00085.html
* admin/admin.el (set-version):
* lisp/allout.el (allout-latexify-one-item):
* lisp/arc-mode.el (archive-arc-rename-entry)
(archive-rar-summarize):
* lisp/calc/calc-graph.el (calc-graph-set-styles)
(calc-graph-hide):
* lisp/calc/calc-help.el (calc-describe-key):
* lisp/calc/calc-lang.el (math-compose-tex-func, eqn):
* lisp/calc/calc.el (calcDigit-key):
* lisp/cedet/ede/makefile-edit.el (makefile-macro-file-list):
* lisp/cedet/ede/speedbar.el (ede-tag-expand):
* lisp/cedet/semantic/sb.el (semantic-sb-show-extra)
(semantic-sb-expand-group):
* lisp/comint.el (comint-substitute-in-file-name):
* lisp/dired.el (dired-actual-switches):
* lisp/emacs-lisp/chart.el (chart-rmail-from):
* lisp/emacs-lisp/eieio-opt.el (eieio-sb-expand):
* lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-object-expand):
* lisp/emacs-lisp/rx.el (rx-not, rx-atomic-p):
* lisp/emulation/viper-ex.el (viper-get-ex-token)
(viper-get-ex-pat, ex-set-read-variable):
* lisp/epg.el (epg--status-SIG_CREATED):
* lisp/erc/erc-speedbar.el (erc-speedbar-expand-user):
(erc-speedbar-expand-channel, erc-speedbar-expand-server)
* lisp/erc/erc.el (erc-is-message-ctcp-and-not-action-p)
(erc-banlist-update):
* lisp/eshell/em-dirs.el (eshell-parse-drive-letter, eshell/pwd):
* lisp/find-dired.el (find-dired):
* lisp/frame.el (frame-set-background-mode):
* lisp/generic-x.el (apache-log-generic-mode):
* lisp/gnus/gnus-art.el (gnus-button-valid-localpart-regexp):
* lisp/gnus/gnus.el (gnus-short-group-name):
* lisp/gnus/message.el (message-mailer-swallows-blank-line):
* lisp/ibuffer.el (ibuffer-fontification-alist):
* lisp/ido.el (ido-set-matches-1):
* lisp/info-xref.el (info-xref-lock-file-p):
* lisp/info.el (Info-dir-remove-duplicates)
(Info-unescape-quotes, Info-split-parameter-string)
(Info-speedbar-expand-node):
* lisp/international/mule.el (sgml-html-meta-auto-coding-function):
* lisp/isearch.el (isearch-pre-command-hook):
* lisp/language/ethio-util.el (ethio-fidel-to-tex-buffer):
* lisp/mail/rmail.el (rmail-collect-deleted):
* lisp/mh-e/mh-alias.el (mh-alias-suggest-alias):
* lisp/mh-e/mh-comp.el (mh-forward):
* lisp/mh-e/mh-search.el (mh-index-next-folder)
(mh-index-create-imenu-index):
* lisp/mh-e/mh-xface.el (mh-picon-get-image):
* lisp/minibuffer.el (completion--embedded-envvar-re):
* lisp/net/ange-ftp.el (ange-ftp-ls-parser):
* lisp/net/goto-addr.el (goto-address-mail-regexp)
(goto-address-find-address-at-point):
* lisp/net/pop3.el (pop3-read-response, pop3-user)
(pop3-pass, pop3-apop):
* lisp/net/tramp.el (tramp-ipv6-regexp)
(tramp-replace-environment-variables):
* lisp/nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* lisp/nxml/rng-uri.el (rng-uri-escape-multibyte):
* lisp/nxml/rng-xsd.el (rng-xsd-convert-any-uri):
* lisp/obsolete/pgg.el (pgg-fetch-key):
* lisp/obsolete/vip.el (vip-get-ex-token):
* lisp/org/ob-core.el (org-babel-string-read):
* lisp/org/org-agenda.el:
(org-agenda-add-entry-to-org-agenda-diary-file):
* lisp/org/org-element.el (org-element-keyword-parser):
* lisp/org/org-list.el (org-list-indent-item-generic):
* lisp/org/org-mhe.el (org-mhe-get-message-folder-from-index):
* lisp/org/org-mobile.el (org-mobile-apply):
* lisp/org/org-mouse.el (org-mouse-context-menu):
* lisp/org/org-plot.el (org-plot/gnuplot):
* lisp/org/org-protocol.el (org-protocol-flatten-greedy):
* lisp/org/org-table.el (org-table-copy-down)
(org-table-formula-make-cmp-string)
(org-table-get-stored-formulas, org-table-recalculate)
(org-table-edit-formulas):
* lisp/org/org.el (org-translate-link-from-planner)
(org-fill-line-break-nobreak-p):
* lisp/org/ox-ascii.el (org-ascii-item):
* lisp/org/ox-latex.el (org-latex-clean-invalid-line-breaks):
* lisp/org/ox.el (org-export-expand-include-keyword):
* lisp/progmodes/ada-xref.el (ada-treat-cmd-string):
* lisp/progmodes/cfengine.el (cfengine2-font-lock-keywords):
* lisp/progmodes/cperl-mode.el (cperl-to-comment-or-eol)
(cperl-find-pods-heres, cperl-fix-line-spacing)
(cperl-have-help-regexp, cperl-word-at-point-hard)
(cperl-make-regexp-x):
* lisp/progmodes/dcl-mode.el (dcl-option-value-offset):
* lisp/progmodes/etags.el (tag-implicit-name-match-p):
* lisp/progmodes/fortran.el (fortran-fill):
* lisp/progmodes/gdb-mi.el (gdb-speedbar-expand-node)
(gdb-locals-handler-custom):
* lisp/progmodes/grep.el (grep-mode-font-lock-keywords):
* lisp/progmodes/gud.el (gud-jdb-find-source-using-classpath):
* lisp/progmodes/js.el (js--continued-expression-p):
* lisp/progmodes/m4-mode.el (m4-font-lock-keywords):
* lisp/progmodes/meta-mode.el (meta-indent-level-count):
* lisp/progmodes/mixal-mode.el (mixal-font-lock-keywords):
* lisp/progmodes/opascal.el (opascal-find-unit-in-directory):
* lisp/progmodes/pascal.el (pascal-progbeg-re):
* lisp/progmodes/ruby-mode.el (ruby-expression-expansion-re)
(ruby-expr-beg, ruby-parse-partial)
(ruby-toggle-string-quotes, ruby-font-lock-keywords):
* lisp/progmodes/sql.el (sql--make-help-docstring):
* lisp/progmodes/verilog-mode.el (verilog-coverpoint-re)
(verilog-skip-forward-comment-p)
(verilog-read-sub-decls-gate)
(verilog-read-auto-template-middle):
* lisp/progmodes/vhdl-mode.el (vhdl-resolve-env-variable)
(vhdl-speedbar-expand-project, vhdl-speedbar-expand-entity)
(vhdl-speedbar-expand-architecture)
(vhdl-speedbar-expand-config, vhdl-speedbar-expand-package)
(vhdl-speedbar-dired):
* lisp/speedbar.el (speedbar-dired, speedbar-tag-file)
(speedbar-tag-expand):
* lisp/textmodes/dns-mode.el (dns-mode-font-lock-keywords):
* lisp/textmodes/flyspell.el (flyspell-debug-signal-word-checked):
* lisp/textmodes/ispell.el (ispell-process-line):
* lisp/textmodes/reftex-cite.el (reftex-end-of-bib-entry):
* lisp/textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
* lisp/url/url-parse.el (url-generic-parse-url):
* lisp/url/url-util.el (url-truncate-url-for-viewing):
* lisp/vc/diff-mode.el (diff-unified->context):
* lisp/vc/vc-bzr.el (vc-bzr-error-regexp-alist):
* lisp/vc/vc-cvs.el (vc-cvs-parse-status):
* lisp/woman.el (woman0-el, woman-if-ignore)
(woman-change-fonts):
* lisp/xdg.el (xdg--substitute-home-env):
Fix regular-expression infelicities and typos.
Fix regular expression typos
Fix typos reported by Mattias Engdegård in:
that occurred in preloaded modules.
* lisp/frame.el (frame-set-background-mode):
* lisp/international/mule.el (sgml-html-meta-auto-coding-function):
* lisp/isearch.el (isearch-pre-command-hook):
* lisp/minibuffer.el (completion--embedded-envvar-re):
2019-03-04 18:00:00 -08:00
|
|
|
(when (looking-at "\\?")
|
2012-05-09 16:33:48 +08:00
|
|
|
(skip-chars-forward "^#"))
|
|
|
|
(setq file (buffer-substring save-pos (point)))
|
|
|
|
;; 3.5 Fragment
|
|
|
|
(when (looking-at "#")
|
|
|
|
(let ((opoint (point)))
|
|
|
|
(forward-char 1)
|
2015-12-26 00:50:25 +01:00
|
|
|
(setq fragment (buffer-substring (point) (point-max)))
|
2012-05-09 16:33:48 +08:00
|
|
|
(delete-region opoint (point-max)))))
|
2009-11-27 01:27:04 +00:00
|
|
|
|
|
|
|
(if (and host (string-match "%[0-9][0-9]" host))
|
|
|
|
(setq host (url-unhex-string host)))
|
2012-05-09 16:33:48 +08:00
|
|
|
(url-parse-make-urlobj scheme user pass host port file
|
|
|
|
fragment nil full))))))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
2010-06-22 12:48:53 -04:00
|
|
|
(defmacro url-bit-for-url (method lookfor url)
|
2016-10-05 22:52:20 -04:00
|
|
|
`(let* ((urlobj (url-generic-parse-url ,url))
|
2010-06-22 12:48:53 -04:00
|
|
|
(bit (funcall ,method urlobj))
|
|
|
|
(methods (list 'url-recreate-url
|
2011-02-12 11:51:02 -06:00
|
|
|
'url-host))
|
|
|
|
auth-info)
|
2010-06-22 12:48:53 -04:00
|
|
|
(while (and (not bit) (> (length methods) 0))
|
2011-02-12 11:51:02 -06:00
|
|
|
(setq auth-info (auth-source-search
|
|
|
|
:max 1
|
|
|
|
:host (funcall (pop methods) urlobj)
|
|
|
|
:port (url-type urlobj)))
|
|
|
|
(setq bit (plist-get (nth 0 auth-info) ,lookfor))
|
|
|
|
(when (functionp bit)
|
|
|
|
(setq bit (funcall bit))))
|
2010-06-22 12:48:53 -04:00
|
|
|
bit))
|
|
|
|
|
|
|
|
(defun url-user-for-url (url)
|
|
|
|
"Attempt to use .authinfo to find a user for this URL."
|
2011-02-12 11:51:02 -06:00
|
|
|
(url-bit-for-url 'url-user :user url))
|
2010-06-22 12:48:53 -04:00
|
|
|
|
|
|
|
(defun url-password-for-url (url)
|
|
|
|
"Attempt to use .authinfo to find a password for this URL."
|
2011-02-12 11:51:02 -06:00
|
|
|
(url-bit-for-url 'url-password :secret url))
|
2010-06-22 12:48:53 -04:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(provide 'url-parse)
|
2004-04-04 04:44:10 +00:00
|
|
|
|
2004-04-12 20:45:16 +00:00
|
|
|
;;; url-parse.el ends here
|