From 4da2ee38a39546325169b6e1ec259b26e2cdf205 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Perrin?= Date: Sat, 5 Feb 2011 17:13:03 +0100 Subject: [PATCH] Put some static strings into variables. --- atom.el | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/atom.el b/atom.el index 51c9d7d..d19bb3c 100644 --- a/atom.el +++ b/atom.el @@ -152,8 +152,8 @@ for additional details." given either as a string, or as an XML tree, of a valid XHTML fragment. See `atom-add-entry' for additional details. -If CONVERT, translate all links in CONTENT so that they are no -longer relative to LINK." +If NOCONVERT is nil, translate all links in CONTENT so that they +are no longer relative to LINK." (let ((xhtml-content (atom-massage-xhtml content))) (unless noconvert (atom-xhtml-convert-links (cadr xhtml-content) link)) @@ -163,7 +163,7 @@ longer relative to LINK." (defun atom-print (atom) "Print the Atom feed ATOM in the current buffer." - (insert "\n") + (insert atom-xml-declaration) (insert "\n") (xml-print atom) (insert "\n")) @@ -223,7 +223,7 @@ Some information may be lost or approximated." (defun atom-print-as-rss (atom) (let ((rss (atom-to-rss atom))) - (insert "\n") + (insert atom-xml-declaration) (insert "\n") (insert " \n") (xml-print rss " ") @@ -233,7 +233,6 @@ Some information may be lost or approximated." (defun atom-to-rss-time (time) "Translates a string from the format used by Atom into the format used by RSS." - ;; Same remark as in `atom-format-time' (let ((system-time-locale "C")) (format-time-string "%a, %d %b %Y %T %z" (atom-parse-time time)))) @@ -253,6 +252,10 @@ format used by RSS." (defvar atom-time-format-string "%Y-%m-%dT%T%z" "The format for string representation of dates.") +(defvar atom-xhtml-namespace "http://www.w3.org/1999/xhtml") + +(defvar atom-xml-declaration "\n") + (defun atom-format-time (&optional time) "Format a time according to RFC3339." ;; The time zone must be specified in numeric form, but with a colon between @@ -263,6 +266,7 @@ format used by RSS." (defun atom-parse-time (&optional time) "Parse a time as specified in RFC3339 into Emacs's native format." + ;; Same remark as in `atom-format-time' (date-to-time (replace-regexp-in-string ":\\(..\\)$" "\\1" time))) (defun atom-massage-html (content) @@ -273,7 +277,7 @@ Atom feed. CONTENT must be a string." (defun atom-string-to-xml (string) "Convert STRING into a Lisp structure as used by `xml.el'." (with-temp-buffer - (insert "
") + (insert "
") (insert string) (insert "
") ;; `xml-parse-region' doesn't require that the XML parsed be enclosed in a @@ -287,7 +291,7 @@ Atom feed." (list '((type . "xhtml")) (or (and (stringp content) (atom-string-to-xml content)) - `(div ((xmlns . "http://www.w3.org/1999/xhtml\">")) ,@content)))) + `(div ((xmlns . ,atom-xhtml-namespace)) ,@content)))) (defun atom-massage-author (author) "Return an XML node representing the author. AUTHOR can be: -- 2.43.0