Variable: newsticker--raw-url-list-defaults

newsticker--raw-url-list-defaults is a variable defined in newst-backend.el.gz.

Value

(("Debian Security Advisories"
  "https://www.debian.org/security/dsa.en.rdf")
 ("Debian Security Advisories - Long format"
  "https://www.debian.org/security/dsa-long.en.rdf")
 ("Emacs Wiki" "https://www.emacswiki.org/emacs?action=rss" nil 3600)
 ("LWN (Linux Weekly News)" "https://lwn.net/headlines/rss")
 ("Quote of the day"
  "https://feeds.feedburner.com/quotationspage/qotd" "07:00" 86400)
 ("The Register" "https://www.theregister.co.uk/headlines.rss")
 ("slashdot" "https://rss.slashdot.org/Slashdot/slashdot" nil 3600)
 ("Wired News" "https://www.wired.com/feed/rss")
 ("Heise News (german)" "https://www.heise.de/newsticker/heise.rdf")
 ("Tagesschau (german)" "https://www.tagesschau.de/newsticker.rdf" nil
  1800))

Documentation

Default URL list in raw form.

This list is fed into defcustom via newsticker--splicer.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
;; Hard-coding URLs like this is a recipe for propagating obsolete info.
(defconst newsticker--raw-url-list-defaults
  '(("Debian Security Advisories"
     "https://www.debian.org/security/dsa.en.rdf")
    ("Debian Security Advisories - Long format"
     "https://www.debian.org/security/dsa-long.en.rdf")
    ("Emacs Wiki"
     "https://www.emacswiki.org/emacs?action=rss"
     nil
     3600)
    ("LWN (Linux Weekly News)"
     "https://lwn.net/headlines/rss")
    ("Quote of the day"
     "https://feeds.feedburner.com/quotationspage/qotd"
     "07:00"
     86400)
    ("The Register"
     "https://www.theregister.co.uk/headlines.rss")
    ("slashdot"
     "https://rss.slashdot.org/Slashdot/slashdot"
     nil
     3600)                        ;/. will ban you if under 3600 seconds!
    ("Wired News"
     "https://www.wired.com/feed/rss")
    ("Heise News (german)"
     "https://www.heise.de/newsticker/heise.rdf")
    ("Tagesschau (german)"
     "https://www.tagesschau.de/newsticker.rdf"
     nil
     1800))
  "Default URL list in raw form.
This list is fed into defcustom via `newsticker--splicer'.")