diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-07-02 11:14:38 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-07-02 11:14:38 +0000 |
commit | d1ce47b068062c1d6373e5add5abfbab0114ccb3 (patch) | |
tree | cd2ce3e726e040f880af239e1e6eb432fd6a75b8 /lisp/url/url-auth.el | |
parent | 1d344f142ac4bff89bc7f65e03af30c69afc449b (diff) | |
download | emacs-d1ce47b068062c1d6373e5add5abfbab0114ccb3.tar.gz emacs-d1ce47b068062c1d6373e5add5abfbab0114ccb3.tar.bz2 emacs-d1ce47b068062c1d6373e5add5abfbab0114ccb3.zip |
Typo and docstring fixes.
* url.el (url-do-setup):
* url-dired.el (url-dired-minor-mode):
* url-file.el (url-file-find-possibly-compressed-file):
* url-gw.el (url-gateway-broken-resolution):
* url-handlers.el (url-handler-regexp):
* url-imap.el (url-imap-default-port):
* url-methods.el (url-scheme-get-property): Fix typos in docstrings.
* url-auth.el (url-basic-auth-storage, url-digest-auth):
Fix typos in docstrings.
(url-digest-auth-storage, url-register-auth-scheme): Reflow docstrings.
* url-cache.el (url-cache-prepare): Doc fix.
(url-cache-create-filename-human-readable, url-cache-extract):
Fix typos in docstrings.
* url-dav.el (url-intersection, url-dav-iso8601-regexp)
(url-dav-delete-something): Fix typos in docstrings.
(url-dav-http-success-p, url-dav-file-name-all-completions)
(url-dav-directory-files, url-dav-file-name-completion): Doc fixes.
* url-http.el (url-http-idle-sentinel): Doc fix.
* url-irc.el (url-irc-default-port): Fix typo in docstring.
(url-irc-function): Doc fix.
* url-util.el (url-get-url-filename-chars, url-unhex-string):
Fix typos in docstrings.
(url-file-extension): Doc fix.
* url-vars.el (url-current-object, url-current-mime-headers)
(url-privacy-level, url-mail-command, url-mime-language-string):
Fix typos in docstrings.
(url-honor-refresh-requests): Reflow docstring.
(url-using-proxy): Doc fix.
Diffstat (limited to 'lisp/url/url-auth.el')
-rw-r--r-- | lisp/url/url-auth.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index ebd5c54ce14..ce730ce74ea 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -51,7 +51,7 @@ Must be a symbol pointing to another variable that will actually store the information. The value of this variable is an assoc list of assoc lists. The first assoc list is keyed by the server name. The cdr of -this is an assoc list based on the 'directory' specified by the url we +this is an assoc list based on the 'directory' specified by the URL we are looking up.") (defun url-basic-auth (url &optional prompt overwrite realm args) @@ -134,10 +134,10 @@ instead of the filename inheritance method." ;;; This is very secure ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defvar url-digest-auth-storage nil - "Where usernames and passwords are stored. Its value is an assoc list of -assoc lists. The first assoc list is keyed by the server name. The cdr of -this is an assoc list based on the 'directory' specified by the url we are -looking up.") + "Where usernames and passwords are stored. +Its value is an assoc list of assoc lists. The first assoc list is +keyed by the server name. The cdr of this is an assoc list based +on the 'directory' specified by the url we are looking up.") (defun url-digest-auth-create-key (username password realm method uri) "Create a key for digest authentication method" @@ -151,7 +151,7 @@ looking up.") (defun url-digest-auth (url &optional prompt overwrite realm args) "Get the username/password for the specified URL. If optional argument PROMPT is non-nil, ask for the username/password -to use for the url and its descendants. If optional third argument +to use for the URL and its descendants. If optional third argument OVERWRITE is non-nil, overwrite the old username/password pair if it is found in the assoc list. If REALM is specified, use that as the realm instead of hostname:portnum." @@ -308,11 +308,11 @@ PROMPT is boolean - specifies whether to ask the user for a username/password (defun url-register-auth-scheme (type &optional function rating) "Register an HTTP authentication method. -TYPE is a string or symbol specifying the name of the method. This - should be the same thing you expect to get returned in an Authenticate - header in HTTP/1.0 - it will be downcased. -FUNCTION is the function to call to get the authorization information. This - defaults to `url-?-auth', where ? is TYPE +TYPE is a string or symbol specifying the name of the method. + This should be the same thing you expect to get returned in + an Authenticate header in HTTP/1.0 - it will be downcased. +FUNCTION is the function to call to get the authorization information. + This defaults to `url-?-auth', where ? is TYPE. RATING a rating between 1 and 10 of the strength of the authentication. This is used when asking for the best authentication for a specific URL. The item with the highest rating is returned." |