Variable: nnweb-type-definition

nnweb-type-definition is a variable defined in nnweb.el.gz.

Value

((google
  (id
   . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source")
  (result . "https://groups.google.com/group/%s/msg/%s?dmode=source")
  (article . nnweb-google-wash-article) (reference . identity)
  (map . nnweb-google-create-mapping) (search . nnweb-google-search)
  (address . "https://groups.google.com/groups")
  (base . "https://groups.google.com")
  (identifier . nnweb-google-identity))
 (dejanews
  (id
   . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source")
  (result . "https://groups.google.com/group/%s/msg/%s?dmode=source")
  (article . nnweb-google-wash-article) (reference . identity)
  (map . nnweb-google-create-mapping) (search . nnweb-google-search)
  (address . "https://groups.google.com/groups")
  (base . "https://groups.google.com")
  (identifier . nnweb-google-identity)))

Documentation

Type-definition alist.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnweb.el.gz
(defvar nnweb-type-definition
  '((google
     (id . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source")
     (result . "https://groups.google.com/group/%s/msg/%s?dmode=source")
     (article . nnweb-google-wash-article)
     (reference . identity)
     (map . nnweb-google-create-mapping)
     (search . nnweb-google-search)
     (address . "https://groups.google.com/groups")
     (base    . "https://groups.google.com")
     (identifier . nnweb-google-identity))
    ;; FIXME: Make obsolete?
    (dejanews ;; alias of google
     (id . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source")
     (result . "https://groups.google.com/group/%s/msg/%s?dmode=source")
     (article . nnweb-google-wash-article)
     (reference . identity)
     (map . nnweb-google-create-mapping)
     (search . nnweb-google-search)
     (address . "https://groups.google.com/groups")
     (base    . "https://groups.google.com")
     (identifier . nnweb-google-identity)))
  "Type-definition alist.")