1 ;;; muse-journal.el --- keep and publish a journal
3 ;; Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
5 ;; This file is part of Emacs Muse. It is not part of GNU Emacs.
7 ;; Emacs Muse is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published
9 ;; by the Free Software Foundation; either version 2, or (at your
10 ;; option) any later version.
12 ;; Emacs Muse is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;; General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Emacs Muse; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 ;; Boston, MA 02110-1301, USA.
24 ;; The module facilitates the keeping and publication of a journal.
25 ;; When publishing to HTML, it assumes the form of a web log, or blog.
27 ;; The input format for each entry is as follows:
29 ;; * 20040317: Title of entry
31 ;; Text for the entry.
34 ;; "You know who you are. It comes down to a simple gut check: You
35 ;; either love what you do or you don't. Period." -- P. Bronson
38 ;; The "qotd", or Quote of the Day, is entirely optional. When
39 ;; generated to HTML, this entry is rendered as:
41 ;; <div class="entry">
42 ;; <div class="entry-qotd">
43 ;; <h3>Quote of the Day:</h3>
44 ;; <p>"You know who you are. It comes down to a simple gut
45 ;; check: You either love what you do or you don't. Period."
48 ;; <div class="entry-body">
49 ;; <div class="entry-head">
50 ;; <div class="entry-date">
51 ;; <span class="date">March 17, 2004</span>
53 ;; <div class="entry-title">
54 ;; <h2>Title of entry</h2>
57 ;; <div class="entry-text">
58 ;; <p>Text for the entry.</p>
63 ;; The plurality of "div" tags makes it possible to display the
64 ;; entries in any form you wish, using a CSS style.
66 ;; Also, an .RDF file can be generated from your journal by publishing
67 ;; it with the "rdf" style. It uses the first two sentences of the
68 ;; first paragraph of each entry as its "description", and
69 ;; autogenerates tags for linking to the various entries.
73 ;; René Stadler (mail AT renestadler DOT de) provided a patch that
74 ;; causes dates in RSS feeds to be generated in a format that RSS
79 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
81 ;; Muse Journal Publishing
83 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
85 (require 'muse-publish
)
90 (defgroup muse-journal nil
91 "Rules for transforming a journal into its final form."
94 (defcustom muse-journal-heading-regexp
95 "\\(?:\\([0-9]+\\)\\(?:: \\)?\\)?\\(.+?\\)?"
96 "A regexp that matches a journal heading.
97 Paren group 1 is the ISO date, group 2 is the optional category,
98 and group 3 is the optional heading for the entry."
100 :group
'muse-journal
)
102 (defcustom muse-journal-date-format
"%a, %e %b %Y"
103 "Date format to use for journal entries."
105 :group
'muse-journal
)
107 (defcustom muse-journal-html-heading-regexp
108 (concat "^<h2[^>\n]*>" muse-journal-heading-regexp
"</h2>$")
109 "A regexp that matches a journal heading from an HTML document.
110 Paren group 1 is the ISO date, group 2 is the optional category,
111 and group 3 is the optional heading for the entry."
113 :group
'muse-journal
)
115 (defcustom muse-journal-rss-heading-regexp
116 (concat "^\\* " muse-journal-heading-regexp
"$")
117 "A regexp that matches a journal heading from an HTML document.
118 Paren group 1 is the ISO date, group 2 is the optional category,
119 and group 3 is the optional heading for the entry."
121 :group
'muse-journal
)
123 (defcustom muse-journal-html-entry-template
124 "<div class=\"entry\">
125 <a name=\"%anchor%\" style=\"text-decoration: none\"> </a>
126 <div class=\"entry-body\">
127 <div class=\"entry-head\">
128 <div class=\"entry-date\">
129 <span class=\"date\">%date%</span>
131 <div class=\"entry-title\">
135 <div class=\"entry-text\">
136 <div class=\"entry-qotd\">
143 "Template used to publish individual journal entries as HTML."
145 :group
'muse-journal
)
147 (defcustom muse-journal-latex-section
148 "\\section*{%title% \\hfill {\\normalsize %date%}}
149 \\addcontentsline{toc}{chapter}{%title%}"
150 "Template used to publish a LaTeX section."
152 :group
'muse-journal
)
154 (defcustom muse-journal-latex-subsection
155 "\\subsection*{%title%}
156 \\addcontentsline{toc}{section}{%title%}"
157 "Template used to publish a LaTeX subsection."
159 :group
'muse-journal
)
161 (defcustom muse-journal-latex-markup-tags
162 '(("qotd" t nil nil muse-journal-latex-qotd-tag
))
163 "A list of tag specifications, for specially marking up LaTeX.
164 See `muse-publish-markup-tags' for more info."
165 :type
'(repeat (list (string :tag
"Markup tag")
166 (boolean :tag
"Expect closing tag" :value t
)
167 (boolean :tag
"Parse attributes" :value nil
)
168 (boolean :tag
"Nestable" :value nil
)
170 :group
'muse-journal
)
172 ;; FIXME: This doesn't appear to be used.
173 (defun muse-journal-generate-pages ()
174 (let ((output-dir (muse-style-element :path
)))
175 (goto-char (point-min))
176 (while (re-search-forward muse-journal-heading-regexp nil t
)
177 (let* ((date (match-string 1))
178 (category (match-string 1))
179 (category-file (concat output-dir category
"/index.html"))
180 (heading (match-string 1)))
183 (defcustom muse-journal-rdf-extension
".rdf"
184 "Default file extension for publishing RDF (RSS 1.0) files."
186 :group
'muse-journal
)
188 (defcustom muse-journal-rdf-base-url
""
189 "The base URL of the website referenced by the RDF file."
191 :group
'muse-journal
)
193 (defcustom muse-journal-rdf-header
194 "<rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"
195 xmlns=\"http://purl.org/rss/1.0/\"
196 xmlns:dc=\"http://purl.org/dc/elements/1.1/\">
197 <channel rdf:about=\"<lisp>(concat (muse-style-element :base-url)
198 (muse-publish-link-name))</lisp>\">
199 <title><lisp>(muse-publishing-directive \"title\")</lisp></title>
200 <link><lisp>(concat (muse-style-element :base-url)
201 (concat (muse-page-name)
202 muse-html-extension))</lisp></link>
203 <description><lisp>(muse-publishing-directive \"desc\")</lisp></description>
206 <rdf:li resource=\"<lisp>
207 (concat (muse-style-element :base-url)
208 (concat (muse-page-name)
209 muse-html-extension))</lisp>\"/>
213 "Header used for publishing RDF (RSS 1.0) files.
214 This may be text or a filename."
216 :group
'muse-journal
)
218 (defcustom muse-journal-rdf-footer
220 "Footer used for publishing RDF (RSS 1.0) files.
221 This may be text or a filename."
223 :group
'muse-journal
)
225 (defcustom muse-journal-rdf-date-format
227 "Date format to use for RDF entries."
229 :group
'muse-journal
)
231 (defcustom muse-journal-rdf-entry-template
232 " <item rdf:about=\"%link%#%anchor%\">
233 <title>%title%</title>
237 <link>%link%#%anchor%</link>
238 <dc:date>%date%</dc:date>
239 <dc:creator>%maintainer%</dc:creator>
241 "Template used to publish individual journal entries as RDF."
243 :group
'muse-journal
)
245 (defcustom muse-journal-rdf-summarize-entries t
246 "If non-nil, include only summaries in the RDF file, not the full data."
248 :group
'muse-journal
)
250 (defcustom muse-journal-rss-extension
".xml"
251 "Default file extension for publishing RSS 2.0 files."
253 :group
'muse-journal
)
255 (defcustom muse-journal-rss-base-url
""
256 "The base URL of the website referenced by the RSS file."
258 :group
'muse-journal
)
260 (defcustom muse-journal-rss-header
261 "<\?xml version=\"1.0\" encoding=\"<lisp>
262 (muse-html-encoding)</lisp>\"?>
263 <rss version=\"2.0\">
265 <title><lisp>(muse-publishing-directive \"title\")</lisp></title>
266 <link><lisp>(concat (muse-style-element :base-url)
267 (concat (muse-page-name)
268 muse-html-extension))</lisp></link>
269 <description><lisp>(muse-publishing-directive \"desc\")</lisp></description>
270 <language>en-us</language>
271 <generator>Emacs Muse</generator>"
272 "Header used for publishing RSS 2.0 files. This may be text or a filename."
274 :group
'muse-journal
)
276 (defcustom muse-journal-rss-footer
279 "Footer used for publishing RSS 2.0 files. This may be text or a filename."
281 :group
'muse-journal
)
283 (defcustom muse-journal-rss-date-format
284 "%a, %d %b %Y %H:%M:%S %Z"
285 "Date format to use for RSS 2.0 entries."
287 :group
'muse-journal
)
289 (defcustom muse-journal-rss-entry-template
291 <title>%title%</title>
292 <link>%link%#%anchor%</link>
293 <description>%desc%</description>
294 <author><lisp>(muse-publishing-directive \"author\")</lisp></author>
295 <pubDate>%date%</pubDate>
296 <guid>%link%#%anchor%</guid>
299 "Template used to publish individual journal entries as RSS 2.0."
301 :group
'muse-journal
)
303 (defcustom muse-journal-rss-enclosure-types-alist
304 '(("mp3" .
"audio/mpeg"))
305 "File types that are accepted as RSS enclosures.
306 This is an alist that maps file extension to content type.
307 Useful for podcasting."
308 :type
'(alist :key-type string
:value-type string
)
309 :group
'muse-journal
)
311 (defcustom muse-journal-rss-summarize-entries nil
312 "If non-nil, include only summaries in the RSS file, not the full data.
313 Many RSS subscribers find this annoying."
315 :group
'muse-journal
)
317 (defcustom muse-journal-rss-markup-regexps
318 '((10000 muse-explicit-link-regexp
0 "\\2"))
319 "List of markup rules for publishing a Muse journal page to RSS 2.0.
320 For more information on the structure of this list, see
321 `muse-publish-markup-regexps'."
322 :type
'(repeat (choice
323 (list :tag
"Markup rule"
325 (choice regexp symbol
)
327 (choice string function symbol
))
329 :group
'muse-journal
)
331 (defcustom muse-journal-rss-markup-functions
335 "An alist of style types to custom functions for that kind of text.
336 For more on the structure of this list, see
337 `muse-publish-markup-functions'."
338 :type
'(alist :key-type symbol
:value-type function
)
339 :group
'muse-journal
)
341 (defun muse-journal-anchorize-title (title)
343 (if (string-match "(" title
)
344 (setq title
(substring title
0 (match-beginning 0))))
345 (if (string-match "<[^>]+>" title
)
346 (setq title
(replace-match "" nil nil title
)))
347 (downcase (muse-replace-regexp-in-string "[^a-zA-Z0-9_]" "" title
))))
349 (defun muse-journal-sort-entries (&optional direction
)
355 (if (re-search-forward "^\\* [0-9]+" nil t
)
356 (goto-char (match-beginning 0))
357 (goto-char (point-max)))))
360 (if (re-search-forward "^\\* [0-9]+" nil t
)
361 (goto-char (1- (match-beginning 0)))
362 (goto-char (point-max)))))
370 (defun muse-journal-html-munge-buffer ()
371 (goto-char (point-min))
372 (let ((heading-regexp muse-journal-html-heading-regexp
)
373 (inhibit-read-only t
))
374 (while (re-search-forward heading-regexp nil t
)
375 (let* ((date (match-string 1))
377 (title (match-string 2))
380 (delete-region (match-beginning 0) (match-end 0))
383 (while (string-match "\\(^<[^>]+>\\|<[^>]+>$\\)" clean-title
)
384 (setq clean-title
(replace-match "" nil nil clean-title
)))))
388 (concat "\\`\\([1-9][0-9][0-9][0-9]\\)[./]?"
389 "\\([0-1][0-9]\\)[./]?\\([0-3][0-9]\\)") date
))
393 (string-to-number (match-string 3 date
))
394 (string-to-number (match-string 2 date
))
395 (string-to-number (match-string 1 date
))
397 date
(concat (format-time-string
398 muse-journal-date-format datestamp
)
399 (substring date
(match-end 0))))))
402 (point) (if (re-search-forward
403 (concat "\\(^<hr>$\\|"
404 heading-regexp
"\\)") nil t
)
407 (goto-char (point-max))
408 (while (and (not (bobp))
409 (eq ?\
(char-syntax (char-before))))
411 (goto-char (point-min))
412 (while (and (not (eobp))
413 (eq ?\
(char-syntax (char-after))))
416 (when (search-forward "<qotd>" nil t
)
417 (let ((tag-beg (match-beginning 0))
419 (re-search-forward "</qotd>\n*")
420 (setq qotd
(buffer-substring-no-properties
421 beg
(match-beginning 0)))
422 (delete-region tag-beg
(match-end 0)))))
423 (setq text
(buffer-string))
424 (delete-region (point-min) (point-max))
425 (let ((entry muse-journal-html-entry-template
))
426 (muse-insert-markup entry
)
427 (goto-char (point-min))
428 (while (search-forward "%date%" nil t
)
429 (replace-match (or date
"") nil t
))
430 (goto-char (point-min))
431 (while (search-forward "%title%" nil t
)
432 (replace-match (or title
" ") nil t
))
433 (goto-char (point-min))
434 (while (search-forward "%anchor%" nil t
)
435 (replace-match (muse-journal-anchorize-title
436 (or clean-title orig-date
))
438 (goto-char (point-min))
439 (while (search-forward "%qotd%" nil t
)
440 (replace-match (or qotd
"") nil t
))
441 (goto-char (point-min))
442 (while (search-forward "%text%" nil t
)
443 (replace-match text nil t
))
445 (goto-char (point-min))
446 (when (search-forward "<div class=\"entry-qotd\">" nil t
)
447 (let ((beg (match-beginning 0)))
448 (re-search-forward "</div>\n*" nil t
)
449 (delete-region beg
(point))))))))))
450 ;; indicate that we are to continue the :before-end processing
453 (defun muse-journal-latex-munge-buffer ()
454 (goto-char (point-min))
455 (let ((heading-regexp
456 (concat "^" (regexp-quote (muse-markup-text 'section
))
457 muse-journal-heading-regexp
458 (regexp-quote (muse-markup-text 'section-end
)) "$"))
459 (inhibit-read-only t
))
460 (when (re-search-forward heading-regexp nil t
)
461 (goto-char (match-beginning 0))
465 (if (re-search-forward heading-regexp nil t
)
466 (goto-char (match-beginning 0))
467 (goto-char (point-max)))))
470 (if (re-search-forward heading-regexp nil t
)
471 (goto-char (1- (match-beginning 0)))
472 (goto-char (point-max)))))
479 (while (re-search-forward heading-regexp nil t
)
480 (let ((date (match-string 1))
481 (title (match-string 2))
482 ;; FIXME: Nothing is done with qotd
487 (concat "\\([1-9][0-9][0-9][0-9]\\)[./]?"
488 "\\([0-1][0-9]\\)[./]?\\([0-3][0-9]\\)") date
))
489 (setq date
(encode-time
491 (string-to-number (match-string 3 date
))
492 (string-to-number (match-string 2 date
))
493 (string-to-number (match-string 1 date
))
495 date
(format-time-string
496 muse-journal-date-format date
))))
498 (narrow-to-region (match-beginning 0) (match-end 0))
499 (delete-region (point-min) (point-max))
500 (muse-insert-markup muse-journal-latex-section
)
501 (goto-char (point-min))
502 (while (search-forward "%title%" nil t
)
503 (replace-match (or title
"Untitled") nil t
))
504 (goto-char (point-min))
505 (while (search-forward "%date%" nil t
)
506 (replace-match (or date
"") nil t
))))))
507 (goto-char (point-min))
508 (let ((subheading-regexp
509 (concat "^" (regexp-quote (muse-markup-text 'subsection
))
511 (regexp-quote (muse-markup-text 'subsection-end
)) "$"))
512 (inhibit-read-only t
))
513 (while (re-search-forward subheading-regexp nil t
)
514 (let ((title (match-string 1)))
516 (narrow-to-region (match-beginning 0) (match-end 0))
517 (delete-region (point-min) (point-max))
518 (muse-insert-markup muse-journal-latex-subsection
)
519 (goto-char (point-min))
520 (while (search-forward "%title%" nil t
)
521 (replace-match title nil t
))))))
522 ;; indicate that we are to continue the :before-end processing
525 (defun muse-journal-latex-qotd-tag (beg end
)
527 (muse-insert-markup (muse-markup-text 'begin-quote
))
529 (muse-insert-markup (muse-markup-text 'end-quote
)))
531 (defun muse-journal-rss-munge-buffer ()
532 (goto-char (point-min))
533 (let ((heading-regexp muse-journal-rss-heading-regexp
)
534 (inhibit-read-only t
))
535 (while (re-search-forward heading-regexp nil t
)
536 (let* ((date (match-string 1))
538 (title (match-string 2))
539 ;; FIXME: Nothing is done with qotd
543 (if (string-match muse-explicit-link-regexp title
)
544 (setq enclosure
(muse-get-link title
)
545 title
(muse-get-link-desc title
)))))
549 (concat "\\([1-9][0-9][0-9][0-9]\\)[./]?"
550 "\\([0-1][0-9]\\)[./]?\\([0-3][0-9]\\)") date
))
551 (setq date
(encode-time 0 0 0
552 (string-to-number (match-string 3 date
))
553 (string-to-number (match-string 2 date
))
554 (string-to-number (match-string 1 date
))
556 ;; make sure that date is in a format that RSS
557 ;; readers can handle
558 date
(let ((system-time-locale "C"))
560 (muse-style-element :date-format
) date
)))))
564 (if (re-search-forward heading-regexp nil t
)
566 (if (re-search-forward "^Footnotes:" nil t
)
569 (goto-char (point-min))
570 (delete-region (point) (muse-line-end-position))
571 (re-search-forward "</qotd>\n+" nil t
)
572 (while (and (char-after)
573 (eq ?\
(char-syntax (char-after))))
576 (if (muse-style-element :summarize
)
579 (setq desc
(concat (buffer-substring beg
(point)) "...")))
581 (muse-publish-markup-buffer "rss-entry" "html")
582 (goto-char (point-min))
583 (if (re-search-forward "Page published by Emacs Muse" nil t
)
584 (goto-char (muse-line-end-position))
585 (muse-display-warning
587 "Cannot find 'Page published by Emacs Muse begins here'.\n"
588 "You will probably need this text in your header."))
589 (goto-char (point-min)))
591 (if (re-search-forward "Page published by Emacs Muse" nil t
)
592 (goto-char (muse-line-beginning-position))
593 (muse-display-warning
595 "Cannot find 'Page published by Emacs Muse ends here'.\n"
596 "You will probably need this text in your footer."))
597 (goto-char (point-max)))
598 (setq desc
(concat "<![CDATA[" (buffer-substring beg
(point))
600 (delete-region (point-min) (point-max))
601 (let ((entry (muse-style-element :entry-template
)))
602 (muse-insert-markup entry
)
603 (goto-char (point-min))
604 (while (search-forward "%date%" nil t
)
605 (replace-match (or date
"") nil t
))
606 (goto-char (point-min))
607 (while (search-forward "%title%" nil t
)
608 (replace-match (or title
"Untitled") nil t
))
609 (goto-char (point-min))
610 (while (search-forward "%desc%" nil t
)
611 (replace-match desc nil t
))
612 (goto-char (point-min))
613 (while (search-forward "%enclosure%" nil t
)
619 "<enclosure url=\"%s\" %stype=\"%s\"/>"
620 (if (string-match "//" enclosure
)
622 (concat (muse-style-element :base-url
)
625 (expand-file-name enclosure
626 (muse-style-element :path
))))
627 (if (file-readable-p file
)
628 (format "length=\"%d\" "
629 (nth 7 (file-attributes file
)))
631 (if (string-match "\\.\\([^.]+\\)$" enclosure
)
632 (let* ((ext (match-string 1 enclosure
))
635 ext muse-journal-rss-enclosure-types-alist
)))
638 "application/octet-stream"))))))
640 (goto-char (point-min))
641 (while (search-forward "%link%" nil t
)
643 (concat (muse-style-element :base-url
)
644 (concat (muse-page-name)
645 muse-html-extension
))
647 (goto-char (point-min))
648 (while (search-forward "%anchor%" nil t
)
650 (muse-journal-anchorize-title (or title orig-date
))
652 (goto-char (point-min))
653 (while (search-forward "%maintainer%" nil t
)
655 (or (muse-style-element :maintainer
)
656 (concat "webmaster@" (system-name)))
659 (delete-region (point) (point-max))))
660 ;; indicate that we are to continue the :before-end processing
664 ;;; Register the Muse Journal Publishers
666 (muse-derive-style "journal-html" "html"
667 :before-end
'muse-journal-html-munge-buffer
)
669 (muse-derive-style "journal-xhtml" "xhtml"
670 :before-end
'muse-journal-html-munge-buffer
)
672 (muse-derive-style "journal-latex" "latex"
673 :tags
'muse-journal-latex-markup-tags
674 :before-end
'muse-journal-latex-munge-buffer
)
676 (muse-derive-style "journal-pdf" "pdf"
677 :tags
'muse-journal-latex-markup-tags
678 :before-end
'muse-journal-latex-munge-buffer
)
680 (muse-derive-style "journal-book-latex" "book-latex"
682 :tags
'muse-journal-latex-markup-tags
683 :before-end
'muse-journal-latex-munge-buffer
)
685 (muse-derive-style "journal-book-pdf" "book-pdf"
687 :tags
'muse-journal-latex-markup-tags
688 :before-end
'muse-journal-latex-munge-buffer
)
690 (muse-define-style "journal-rdf"
691 :suffix
'muse-journal-rdf-extension
692 :regexps
'muse-journal-rss-markup-regexps
693 :functions
'muse-journal-rss-markup-functions
694 :before
'muse-journal-rss-munge-buffer
695 :header
'muse-journal-rdf-header
696 :footer
'muse-journal-rdf-footer
697 :date-format
'muse-journal-rdf-date-format
698 :entry-template
'muse-journal-rdf-entry-template
699 :base-url
'muse-journal-rdf-base-url
700 :summarize
'muse-journal-rdf-summarize-entries
)
702 (muse-define-style "journal-rss"
703 :suffix
'muse-journal-rss-extension
704 :regexps
'muse-journal-rss-markup-regexps
705 :functions
'muse-journal-rss-markup-functions
706 :before
'muse-journal-rss-munge-buffer
707 :header
'muse-journal-rss-header
708 :footer
'muse-journal-rss-footer
709 :date-format
'muse-journal-rss-date-format
710 :entry-template
'muse-journal-rss-entry-template
711 :base-url
'muse-journal-rss-base-url
712 :summarize
'muse-journal-rss-summarize-entries
)
714 (provide 'muse-journal
)
716 ;;; muse-journal.el ends here