Merge ../master
[muse-el.git] / ChangeLog
blob03bf0d25b5ac8fb7f53aa5f846c845769df2d8fd
1 2007-08-05  Michael Olson  <mwolson@gnu.org>
3         * .gitignore: Add texi/muse.html and the DVC log edit file.
5         * Makefile.defs.default (install_info): Rename from INSTALLINFO.
6         Turn this into something that can be called like a command, due to
7         needing to deal with XEmacs, which has different argument order.
8         Thanks to Terrence Brannon for the report.
10         * lisp/muse-project.el (muse-project-of-file): Simplify by using
11         catch, throw, and dolist.  Look for exact matches before
12         considering any subdirectories.  If no exact matches are found,
13         then pick the longest match.
15         * lisp/muse.el (muse-sort-by-rating): Mention default test in
16         documentation.
18         * scripts/muse-build.el: Avoid interference from VC.el in the
19         build process.
21         * texi/Makefile (install): Call install_info.
23 2007-08-03  Michael Olson  <mwolson@gnu.org>
25         * lisp/muse-project.el (muse-project-applicable-styles): Remove
26         useless argument ignore-regexp.  Use saner logic.  This fixes a
27         bug where a file could potentially not exist but still appear in
28         the used-styles list.  Thanks to John Wiegley for the fix.
29         (muse-project-publish-file): Don't take ignore-reegxp argument.
31 2007-08-02  Michael Olson  <mwolson@gnu.org>
33         * lisp/muse-publish.el (muse-batch-publish-files): Don't activate
34         VC when publishing files in batch.  This avoids some annoying
35         messages when building QuickStart in the examples directory.
37         * lisp/muse-mode.el (muse-mode): Don't try to indent line before
38         inserting a comment.
40 2007-07-31  Michael Olson  <mwolson@gnu.org>
42         * lisp/Makefile: Add dependencies between Emacs Lisp files, so
43         that Muse can be recompiled without running "make clean" after an
44         update.
46         * lisp/muse-publish.el (muse-publish-verse-tag): Unconditionally
47         delete forward one character, since we are guaranteed to be on a
48         blank line.  Don't delete all initial whitespace of the first
49         line.  This fixes an issue where the output from the verse tag did
50         not match the output from Muse's verse syntax.
52 2007-07-29  Michael Olson  <mwolson@gnu.org>
54         * Relicense to GPLv3.
56         * Makefile.defs.default: Rename from Makefile.defs.  This allows
57         people to copy this file to Makefile.defs and make changes,
58         without having the changes be accidentally committed.  If
59         Makefile.defs does not exist, this file is read instead, in order
60         to minimize inconvenience to the casual user.
62         * Makefile, contrib/Makefile, examples/Makefile,
63         experimental/Makefile, lisp/Makefile, texi/Makefile: Use either
64         Makefile.defs.default or Makefile.defs.
66         * lisp/muse-mode.el (muse-list-edit-minor-mode-map): Use new
67         function names.
68         (muse-l-e-m-m-insert-list-item): Add real documentation.
69         (muse-l-e-m-m-increase-list-item-indent)
70         (muse-l-e-m-m-decrease-list-item-indent): Rename for clarity.  Add
71         real documentation.
72         (muse-list-edit-minor-mode): Improve documentation.
74         * texi/doclicense.texi (GNU Free Documentation License): Use
75         pristine copy from Emacs source tree.
77         * texi/muse.texi (Contributors): Move node and appendix indicators
78         here, rather than doclicense.texi.
80 2007-07-29  Jean Magnan de Bornier  <jean@bornier.net>
82         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
83         command which did not work correctly
85         * lisp/muse-context.el (muse-context-markup-strings): Change rule
86         command which did not work correctly; defined verse commands
87         (muse-context-markup-specials-literal): Eliminate all unuseful entries
89 2007-07-29  Michael Olson  <mwolson@gnu.org>
91         * contrib/httpd.el (httpd-send-file): Use
92         insert-file-contents-literally instead of insert-file-contents.
94         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
95         Use insert-file-contents-literally instead of
96         insert-file-contents.
98         * experimental/muse-split.el (muse-publish-file)
99         (muse-publish-presplit-publish, muse-publish-no-split-function)
100         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
101         insert-file-contents-literally instead of insert-file-contents.
103         * lisp/muse-book.el (muse-book-publish-chapter)
104         (muse-book-get-directives): Use insert-file-contents-literally
105         instead of insert-file-contents.
107         * lisp/muse-http.el (muse-http-render-page): Use
108         insert-file-contents-literally instead of insert-file-contents.
110         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
111         nowhere when done, since they can slow things down.
113         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
114         marker to nowhere when done, since they can slow things down.
116         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
117         when done, since they can slow things down.  Use
118         insert-file-contents-literally instead of insert-file-contents.
120         * lisp/muse-publish.el (muse-publish-markup-tag)
121         (muse-publish-markup-word, muse-publish-markup-footnote)
122         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
123         done, since they can slow things down.
124         (muse-insert-file-or-string, muse-publish-file)
125         (muse-publish-include-tag, muse-published-contents): Use
126         insert-file-contents-literally instead of insert-file-contents.
127         (muse-publish-surround-dl): Remove unused variable.  Track whether
128         a term has been found, and handle that case well.
129         (muse-publish-ensure-blank-line): Use a marker, so that we don't
130         lose our place when adding a newline.  This really fixes the
131         definition list item bug.
132         (muse-publish-markup-list): Since people do seem to want
133         definition lists with no terms, allow this.
134         (muse-batch-publish-files): Set muse-current-output-style.
136         * lisp/muse.el (muse-with-temp-buffer): Mention
137         `insert-file-contents-literally'.
139 2007-07-28  Michael Olson  <mwolson@gnu.org>
141         * lisp/muse-mode.el (muse-browse-result): Set
142         muse-current-output-style.
143         (muse-mode): Don't duplicate the paragraph-start regexp
144         unnecessarily.
145         (muse-list-edit-minor-mode-map): New variable containing the
146         keymap for Muse list edit minor mode.
147         (muse-l-e-m-m-list-item-regexp): New variable that matches list
148         items for Muse list edit minor mode.
149         (muse-l-e-m-m-insert-list-item,
150         muse-l-e-m-m-i-list-item-indentation)
151         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
152         item functions that change the list item regexp before calling the
153         existing function.
154         (muse-l-e-m-m-data): New variable that keeps track of the fill
155         data that we overwrite when activating Muse list edit minor mode,
156         so that we can restore it if the minor mode is toggled off.
157         (muse-list-edit-minor-mode): New minor mode that is useful for
158         editing lists in other major modes.
159         (turn-on-muse-list-edit-minor-mode)
160         (turn-off-muse-list-edit-minor-mode): New interactive functions
161         that turn Muse list edit minor mode on and off, respectively.
162         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
163         regexps.
165         * lisp/muse-project.el (muse-project-publish-this-file): Set
166         muse-current-output-style.  This fixes a bug when publishing to a
167         style that is not first in the list of styles.  Thanks to Jean
168         Magnan de Bornier for the report.
170         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
171         function that ensures that a blank line exists in the line before
172         point.
173         (muse-publish-markup-list): Use it, rather than
174         `muse-publish-ensure-block'.  This fixes a bug with definition
175         list publishing.  Thanks to meandtheshell for reporting this.
177         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
178         project argument is nil, default to the current project instead of
179         the first project entry in muse-project-alist.  This seems much
180         more sane to me.
182         * lisp/muse.el (muse-forward-list-item): Only check the 'face
183         property if we are in Muse mode or one of its derivatives.  This
184         allows movement on nested lists to work in other modes, and fixes
185         an issue with altering list indentation in
186         muse-list-edit-minor-mode.
188 2007-07-27  Michael Olson  <mwolson@gnu.org>
190         * AUTHORS: Add new authors.
192         * README: Permit Muse to be called "Emacs-Muse".
194         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
196         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
197         involving list items that have an extra blank line in front.
199         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
200         and Emacs-Muse are the same thing.
202 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
204         * lisp/muse-context.el (muse-context-header): Put
205         starttext after the modules who must be in preamble.
206         (muse-context-markup-strings): Fixed mistake in begin-example and
207         end-example.
209         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
210         math environment in ConTeXt when centered: "$$ $$" has to be
211         "\startformula \stopformula".
213 2007-07-26  Michael Olson  <mwolson@gnu.org>
215         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
216         parentheses in URLs.
218 2007-07-24  Michael Olson  <mwolson@gnu.org>
220         * examples/QuickStart.muse (Images): Fix typo where some text
221         existed in the output but not in the example region.
222         (Source Code): Fix another typo.  Explain that publishing from
223         console or X can make a difference.
225         * lisp/muse-context.el (muse-context-pdf-program): New option that
226         determines the program to use for generating PDF files for
227         ConTeXt.
228         (muse-context-pdf-cruft): New option that specifies the extensions
229         of files to remove after generating PDF output successfully.
230         (muse-context-slides-header): Docfix.
231         (muse-context-pdf-generate): Use new options.
233         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
234         save-restriction call.  This was causing a world of hurt when
235         using <lisp> inside of <include>.
237         * texi/muse.texi (ConTeXt): New section that documents how to use
238         the ConTeXt publishing styles.
240 2007-07-23  Michael Olson  <mwolson@gnu.org>
242         * lisp/muse-context.el: New file that provides support for
243         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
244         de Bornier for his work on this.
246         * lisp/muse-docbook.el (muse-docbook-entities)
247         (muse-docbook-bibliography): Remove unneeded save-restriction use.
249         * lisp/muse-latex2png.el (muse-publish-latex-tag):
250         s/contex/context/.
252         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
253         (muse-latex-bibliography): Remove call to `widen', since it is not
254         needed anymore.  Remove unneeded save-restriction use.
255         ("slides", "slides-pdf"): Indent elements uniformly.
257 2007-07-22  Michael Olson  <mwolson@gnu.org>
259         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
260         * lisp/muse-mode.el (muse-insert-tag):
261         * lisp/muse-project.el (muse-read-project)
262         (muse-read-project-file):
263         * lisp/muse-publish.el (muse-publish-get-style): Use
264         muse-completing-read-function.
266         * lisp/muse-latex2png.el (muse-publish-latex-tag)
267         (muse-publish-math-tag): Allow the contex style -- which I plan to
268         include soon -- to work with these tags.
270         * lisp/muse.el (muse-completing-read-function): New option that
271         determines which function to call when doing a completing-read.
273 2007-07-15  Michael Olson  <mwolson@gnu.org>
275         * lisp/muse-journal.el (muse-journal-html-entry-template)
276         (muse-journal-rdf-entry-template)
277         (muse-journal-rss-entry-template): Mention that this can be text
278         or a filename.
279         (muse-journal-rdf-entry-template, muse-journal-rss-header)
280         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
281         newlines to make the output look nicer.
282         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
283         Use muse-insert-file-or-string for the entry templates, rather
284         than muse-insert-markup.  This allows <lisp> and <markup> tags to
285         be acted on.  Thanks to Scott Hyde for the report.
286         (muse-journal-html-munge-buffer): Escape quote of the day using
287         entire-document specials before snarfing it.  Mark entire template
288         as read-only -- this fixes an incorrect escaping bug.  Remove
289         read-only properties before replacing template matches so that
290         they can still be escaped with entire-document specials later on.
291         (muse-journal-rss-munge-buffer): Make sure that title is escaped
292         properly.
293         (muse-journal-markup-tags): Rename from
294         muse-journal-latex-markup-tags, because we will use it for
295         journal-rss-entry as well.
296         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
297         end-quote-item.
298         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
299         html.
300         ("journal-latex", "journal-pdf", "journal-book-latex")
301         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
302         muse-journal-latex-markup-tags.
303         ("journal-rss-entry"): New style that is used by journal-rss and
304         journal-rdf to mark up individual entries.  It is needed so that
305         we can do something meaningful with the qotd tag.
306         (muse-journal-rdf-summarize-entries): Set this to nil by default,
307         because it is annoying.  Update docs to mention this.
308         (muse-journal-rss-summarize-entries): Docfix.
310         * lisp/muse-publish.el (muse-insert-file-or-string): Use
311         muse-publish-markup-header-footer-tags.  I'm not quite sure how
312         this change got reverted.
313         (muse-markup-tag-info): Make into a function.  Move common code
314         here, rather than duplicating it in two places.  Deal with case
315         where muse-publish-use-header-footer-tags is non-nil.
316         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
317         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
318         warning.
319         (muse-publish-use-header-footer-tags): New variable that indicates
320         whether we should use just the header and footer tags, rather than
321         the full set.
322         (muse-insert-file-or-string): Bind
323         muse-publish-use-header-footer-tags to t.
324         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
325         Simplify call to muse-markup-tag-info.
326         (muse-publish-mark-up-tag): Bind
327         muse-publish-use-header-footer-tags to nil.
329         * texi/muse.texi (Journal): Update for recent changes.
331 2007-07-14  Michael Olson  <mwolson@gnu.org>
333         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
334         delete the remainder of the buffer, since this causes the
335         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
336         the report and the suggested fix.
338         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
339         beginning of table-el regexp.  This fixes a bug where Muse stalls
340         when trying to publish a malformed table.  Thanks to Ye Wenbin for
341         the report and the suggested fix.
343 2007-07-12  Michael Olson  <mwolson@gnu.org>
345         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
346         default, rather than the empty string.  This really fixes the bug
347         that occurred when using Muse with muse-project-alist set to nil.
348         Thanks to Jonathan Underwood for the report.
349         (muse-wiki-update-interwiki-regexp): Set
350         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
351         defined.
352         (muse-wiki-handle-implicit-interwiki)
353         (muse-wiki-handle-explicit-interwiki): Handle case where
354         muse-wiki-interwiki-regexp is nil.
356 2007-07-10  Michael Olson  <mwolson@gnu.org>
358         * lisp/muse-mode.el (muse-grep): Abort search if the current
359         project contains no directories.
361         * lisp/muse-project.el (muse-project-file-alist): If
362         muse-project-alist is not defined, or project is nil, return nil
363         right away.  This ought to fix a bug that occurred when using Muse
364         with muse-project-alist set to nil.
365         (muse-project-of-file): Make sure muse-project-alist is not nil.
366         (muse-project-save-buffers): Make sure project is not nil.
368         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
369         case where muse-project-alist is nil.
371         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
372         for XEmacs, since color-theme.el is poorly behaved, and defines
373         its own replace-in-string.  Bad color-theme.el -- no cookie for
374         you.
376 2007-07-01  Michael Olson  <mwolson@gnu.org>
378         * Makefile (.PHONY): Update for new debian package rules.
380         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
382         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
383         Use save-restriction properly.
384         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
386         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
387         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
388         properly.
389         (muse-latex-bibliography): Re-indent.
391         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
392         higher.  This fixes an error at startup with some versions of
393         Emacs.
394         (muse-publish-cite-tag): Re-indent.
396         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
397         to the end of the link part, so as to exclude the description from
398         the match.  This fixes a bug with three-part links that have
399         descriptions.  Thanks to everyone who pointed it out.
401 2007-06-18  Michael Olson  <mwolson@gnu.org>
403         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
404         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
405         1.1 specific markup strings.
406         (muse-html-insert-anchor): Use 'anchor string, rather than
407         hard-coding it.  Thanks to Chris Corsair for the suggestion.
408         ("xhtml1.0"): New style that is an alias for the xhtml style.
409         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
411 2007-06-17  Michael Olson  <mwolson@gnu.org>
413         * examples/QuickStart.muse: Make images local so that the Info
414         version of this document works.  Add <example> for the Literal
415         paragraphs chapter, so that it is clear what is happening.
417         * Makefile: Add elpa target, which is used for building an ELPA
418         package for Muse.
420         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
421         building ELPA packages.
423         * examples/Makefile (%.html, %.pdf, %.info): Add message to
424         indicate what we are publishing.
425         (realclean distclean fullclean): Remove all TeX crud.
427         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
428         that the Info version of QuickStart can publish correctly.
430         * lisp/muse-latex.el (muse-latex-slides-header)
431         (muse-latex-lecture-notes-header): Docfix.
433         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
434         the list of things to ignore.
436         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
437         variable.
439         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
440         default to nil, since texinfmt.el is a serious nuisance.
441         (muse-texinfo-markup-strings): Add newlines to begin-example and
442         end-example.
443         (muse-texinfo-decide-specials): Also escape URL-type specials in a
444         whole slew of other contexts.
446         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
447         muse-xml.
449         * lisp/muse-xml.el (muse-xml-footer): Docfix.
451         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
453 2007-06-16  Michael Olson  <mwolson@gnu.org>
455         * etc/IDEAS.muse: Add some ideas from David D. Smith.
457         * examples/QuickStart.muse: Overhaul.
459         * lisp/muse-project.el (muse-project): Call the last part of a
460         muse-project-alist entry "Output styles" rather than "styles".
462         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
463         where we have a pipe character at the beginning of line.
465         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
466         causing tables to not be sorted at all.
468         * texi/muse.texi: Overhaul.  It would be too time-consuming to
469         list all of the changes here.  The "Getting Started" and
470         "Projects" chapters, in particular, were heavily revised.
472 2007-06-15  Michael Olson  <mwolson@gnu.org>
474         * NEWS: Update.
476         * examples/QuickStart.muse: Mention new features.
478         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
479         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
480         terminal, and C-c TAB is more important.  Most people will not
481         want to toggle images on and off that often.
483         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
484         C-i as well, so that it works in the terminal.
486         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
487         look a bit tidier when removing the region.
489         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
490         list regexp part before other parts.
491         (muse-ol-item-regexp): New regexp that specifies how to match an
492         ordered list item.
493         (muse-ul-item-regexp): New regexp that specifies how to match an
494         unordered list item.
495         (muse-table-field-regexp): New regexp that specifies how to match
496         a definition list entry.
498         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
499         lack of support for @headitem in texinfmt.el.
501         * lisp/muse.el: Wrap muse-line-beginning-position and
502         muse-line-end-position in `eval-and-compile', since they are now
503         used in muse.el.
504         (muse-list-item-type): Use a simpler algorithm for detecting which
505         kind of list item we have.  This fixes a bug where a number in a
506         definition list term was being detected incorrectly as an ordered
507         list item.  Fixes bug #6250.
508         (muse-forward-list-item): Get the entire line with the list item.
509         For some reason, Emacs 21 was not populating match 2 correctly,
510         unlike Emacs 22, so this workaround was needed.
512         * texi/muse.texi: (Keystroke Summary): Remove C-c
513         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
514         alternative keybinding to the C-c TAB stuff.  Mention
515         muse-colors-toggle-inline-images.
517 2007-06-14  Michael Olson  <mwolson@gnu.org>
519         * README: Mention that RelaxNG schema is in etc/ directory.
521         * etc/emacs-wiki-migration.txt: New document that explains how to
522         migrate from emacs-wiki to Muse.
524         * etc/muse.rnc: Increment version number to 1.0.  Fix several
525         nested emphasis and nested lists edge cases.  Move here from
526         examples/.
528         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
529         same thing as C-c C-S-t, since the former works better in the
530         console.  Thanks to Leo for the suggestion.
532         * lisp/muse-publish.el (muse-publish-markup-table)
533         (muse-publish-markup-table-el): Include a newline in the return
534         string, so that paragraph detection does not get confused.
536         * lisp/muse.el (muse-with-temp-buffer): Docfix.
538         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
539         keybinding.
541 2007-06-13  Michael Olson  <mwolson@gnu.org>
543         * etc/IDEAS.muse: Mark three-part-links item as done.
545         * experimental/muse-message.el: Remove guard for muse-define-style
546         calls.
548         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
549         markup rules were being interpreted in reverse order.  This should
550         make implicit interwiki links work properly again.
551         (muse-link-face): Strip anchor from end of a path, so that this
552         works with anchors in interwiki links.
553         (muse-colors-insert-image): Catch error that occurs in Emacs 21
554         when an image does not exist.
556         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
557         anchors.
558         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
559         interwiki links work.  Thanks to Jim Ottaway for the initial
560         implementation.
561         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
562         links work.
564         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
565         about match 0.
566         (muse-handle-explicit-link): Docfix: this does not modify the
567         match data.
568         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
569         that has the regexp in its car.
571 2007-06-12  Michael Olson  <mwolson@gnu.org>
573         * README: Document new etc/ directory.
575         * etc/IDEAS.muse: Install things from new contributors just after
576         the 3.03 release, since I won't have time to review the code
577         before the release.  Move to new etc/ directory.  Slides
578         publishing has been installed.
580         * lisp/muse-latex.el (muse-latex-slides-header): New option that
581         determines the header to use for publishing slides.
582         (muse-latex-lecture-notes-header): New option that determines the
583         header to use for publishing lecture notes.
584         (muse-latex-slides-markup-tags): New option containing tags to use
585         when publishing slides.
586         (muse-latex-permit-contents-tag): Move higher in file.
587         (muse-latex-slide-tag): New function to publish the <slide> tag.
588         ("slides", "slides-pdf"): New publishing styles that create slides
589         using Beamer.
590         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
591         create lecture notes using Beamer.
593         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
594         since otherwise Planner is not happy when `plan' is called during
595         init.  Remove stray quote from autoload snippet.
597 2007-06-11  Michael Olson  <mwolson@gnu.org>
599         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
600         autoload, rather than having it exist at top-level.  Thanks to Leo
601         for the suggestion.
602         (muse-update-file-extension): Docfix.
604 2007-06-10  Michael Olson  <mwolson@gnu.org>
606         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
607         URLs were being removed during publishing.  Thanks to everyone who
608         reported this.
610 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
612         * lisp/muse-book.el
613         * lisp/muse-docbook.el
614         * lisp/muse-latex.el
615         * lisp/muse-publish.el: added support for <cite> element which
616         denotes in-text citations
618         * lisp/muse-html.el
619         * lisp/muse-groff.el
620         * lisp/muse-texinfo.el
621         * lisp/muse-xml.el: added support for <cite> element (stub)
623 2007-06-06  Michael Olson  <mwolson@gnu.org>
625         * lisp/muse-regexps.el (muse-table-line-regexp)
626         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
627         regexps so that they work with XEmacs 21.  Thanks to Adrian
628         Tritschler for the report.
630         * texi/muse.texi: Update copyright years.
631         (HTML): Document muse-xhtml-style-sheet.  Thanks
632         to thorne for noticing.
633         (Development): Change archive year to 2006.  Thanks to Adrian
634         Tritschler for noticing.  So *that's* why some people had the 2005
635         version ....
637 2007-06-05  Michael Olson  <mwolson@gnu.org>
639         * Makefile (install-info): Remove $(MANUAL).info part, since this
640         is taken care of already by texi/Makefile.  Thanks to Leo for the
641         report.
643         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
644         read-only properties to qotd contents, so that they don't get
645         double-escaped.  Thanks to Leo for the report.
647 2007-06-04  Michael Olson  <mwolson@gnu.org>
649         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
650         -- that is, Tramp or ange-ftp -- file, then do not call
651         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
652         Fixes bug #5115.
654         * lisp/muse-html.el (muse-html-insert-contents): Add
655         documentation.  Handle case where heading is read-only, but has
656         muse-contents property.  Remove the muse-contents property for any
657         heading we come across so as to avoid double-including an item in
658         an outer table of contents.
659         (muse-html-denote-headings): New function that denotes whether a
660         heading is not read-only by adding the muse-contents property to
661         it.
662         (muse-html-munge-buffer): If we are not to generate contents,
663         still denote headings, in case some outer layer wants to generate
664         contents for our headings.  This should fix a bug with table of
665         contents and the <include> tag.  Thanks to thorne for the report.
667         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
668         muse-publish-generate-contents and set it to nil.  This should
669         do the right thing when using <include> tags.
671 2007-06-02  Michael Olson  <mwolson@gnu.org>
673         * NEWS: Update for non-inlined image change and support for
674         table.el style tables.
676         * examples/Makefile (clean): Clean backup files.
678         * examples/QuickStart.muse (Images): New section that describes
679         how to inline and not inline images.
681         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
682         touch images that have "URL:" in front of them.
684         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
685         "URL:".  Use the identity function to resolve, since we don't want
686         to rip "URL:" out while publishing, due to some magic that depends
687         on that text.
688         (muse-browse-url-url): New function that browses URLs that have
689         "URL:" in front of them, by removing the "URL:" part and
690         reprocessing the remainder.
692         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
693         (muse-publish-url): Recognize images in the description before
694         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
695         for the suggested workaround.
696         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
697         default value.
698         (muse-publish-classify-url): If target begins with "URL:" return
699         type url.
700         (muse-publish-strip-URL): New function that strips "URL:" from the
701         beginning of a string.  This is used to remove URL: from the link
702         description.  * texi/muse.texi (Markup Strings): Clarify the
703         meanings of image-link, link, and link-and-anchor.
704         (muse-publish-markup-regexps): Move normal table rule to 2350.
705         Rule 2300 is now a regexp that matches table.el-style tables.
706         (muse-publish-markup-functions): Add table-el entry.
707         (muse-publish-table-el-table): New function that given a variant,
708         publishes a table.el-style table using the table in the matched
709         region.
710         (muse-publish-markup-table-el): New function that determines
711         whether the table.el-style table can be published, and what
712         variant to use.
714         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
715         the borders of table.el-style tables.
717         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
718         the table has sufficient whitespace in front of it.
720         * texi/muse.texi (Images): Update for new non-inlined image
721         ability and provide example.
723 2007-05-31  Michael Olson  <mwolson@gnu.org>
725         * NEWS: Add example for setting `muse-html-table-attributes'.
727         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
728         Publish multiple tbody tags if there is a horizontal separator
729         after the heading, because that is valid HTML after all.
731 2007-05-30  Michael Olson  <mwolson@gnu.org>
733         * NEWS: Update.
735         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
736         horizontal separators in tables.
738         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
739         horizontal separators in tables.
740         (muse-publish-trim-table): New function to remove initial and
741         final blank columns from a table.
742         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
743         with horizontal separators, aka "hlines".
745         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
746         defines the syntax of a horizontal separator in a table.
748         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
749         horizontal separators.  Publish header lines correctly.
751         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
752         where we have nonnumbers as a row type.  This ignores sorting for
753         hlines.
754         (muse-xml-markup-table): Deal with horizontal separators.  If the
755         markup supports table groups, make hlines separate table groups.
756         Otherwise, ignore them, since they cannot be marked up.  Together,
757         these changes allow us to support orgtbl-mode tables.  Thanks to
758         Carsten Dominik for the suggestion.
760 2007-05-26  Michael Olson  <mwolson@gnu.org>
762         * lisp/muse-project.el (muse-project-alist-styles): Allow for
763         other things to be added to each generated style as well.  For
764         example, this permits me to add
765         :base-url "http://blog.mwolson.org/"
766         for my blog.
768 2007-05-25  Michael Olson  <mwolson@gnu.org>
770         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
771         way of building Debian packages that preserves the original
772         release tarball and is more modular.
773         (debrevision, debrelease): Remove.
774         (dist): No need to remove the debian/ directory, since it is now
775         in its own branch.
776         (debprepare): Copy over debian/ directory properly.
778         * NEWS: Update.
780         * examples/Makefile (clean): Remove QuickStart.texi, in case
781         something went wrong during the build.
782         (%.pdf): Publish the example using the normal pdf style, rather
783         than info-pdf.
785         * examples/QuickStart.muse: Add myself to the authors list.
787         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
788         sufficient blank lines before the tag.
790         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
791         we have sufficient blank lines before the tag.
793         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
794         specifies the program to call in order to generate PDF content
795         from LaTeX content.
796         (muse-latex-pdf-cruft): New option that specifies the extensions
797         of files to remove after generating PDF output successfully.
798         (muse-latex-pdf-generate): Use these new options.  Work around the
799         annoying edge case where a tilde character exists in the filename
800         or directory path -- now this can only error out when the relative
801         path from the output file to the source file contains a tilde,
802         which is far less likely.
804         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
805         muse-publish-ensure-block here after all, because <lisp> et al may
806         occur inline as part of other things.
808         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
809         occur after full-document escaping, rather than before.  This
810         prevents automatically-inserted Texinfo code from being escaped.
811         (muse-texinfo-pdf-generate): Rewrite to call
812         `muse-latex-pdf-generate' with pdftex as the generating binary,
813         because texi2pdf suffers irredeemably from the tilde edge case
814         mentioned above.
816 2007-05-24  Michael Olson  <mwolson@gnu.org>
818         * NEWS: Drop vague entries and position interesting entries closer
819         to the top of each section.  Update for new changes.
821         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
822         and bzr metadata directories to the list of things to ignore.
824         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
825         `muse-publish-ensure-block-tag', since we will use it for more
826         than just tags.
827         (muse-publish-markup-list, muse-publish-verse-tag)
828         (muse-publish-quote-tag, muse-publish-example-tag)
829         (muse-publish-markup-attribute): Use it.  This fixes a bug that
830         can occur when these types of markup occur immediately after a
831         paragraph.  It's good to have defined behavior!
833         * texi/muse.texi (Markup Strings): Mention new argument for
834         link-and-anchor.
836 2007-05-19  Michael Olson  <mwolson@gnu.org>
838         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
839         published footnotes and footnote references.  Thanks to Scott
840         Jaderholm for the idea.
842         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
843         link-and-anchor, on the recommendation of the original submitter.
845 2007-05-14  Michael Olson  <mwolson@gnu.org>
847         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
848         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
849         suggestion.
851         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
852         file extension as the fourth argument.
854         * README, texi/muse.texi (Getting Help and Reporting Bugs):
855         Mention the new muse-el-logs mailing list.
857 2007-05-13  Michael Olson  <mwolson@gnu.org>
859         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
860         "\`" here.  This fixes a problem with publishing custom URLs.
862 2007-05-12  Michael Olson  <mwolson@gnu.org>
864         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
865         update the list if the current buffer is associated with a file.
866         This fixes a bug with M-x muse-publish-region in a temporary
867         buffer.
869 2007-05-01  Michael Olson  <mwolson@gnu.org>
871         * lisp/muse-publish.el (muse-publish-region): Remove read-only
872         properties from the published buffer, so that the results can be
873         manually tweaked.
875 2007-04-23  Michael Olson  <mwolson@gnu.org>
877         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
878         find the footnote that goes with a reference, leave the reference
879         as-is.  This fixes an error where control characters could be
880         placed in a published document.
882 2007-04-22  Michael Olson  <mwolson@gnu.org>
884         * IDEAS.muse: Add muse-slides.el to list of things to include
885         before release.
887         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
888         character.
889         (muse-protocol-find): Find protocols correctly.  Rewrite to use
890         catch/throw.
891         (muse-browse-url): Don't concatenate "\`" here.  Together, this
892         fixes a bug with browsing woman:// links.
894         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
895         where entry-dir has a trailing backslash.
896         (muse-project-publish-file): If a style is malformed, skip it and
897         display a warning message.  This should help people figure out
898         where the problem is.
900 2007-04-21  Michael Olson  <mwolson@gnu.org>
902         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
903         yet-to-be-included "contex" publishing style, use "$$" rather
904         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
905         this out.
907 2007-04-20  Michael Olson  <mwolson@gnu.org>
909         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
910         variable that causes the :before and :before-end hooks to be
911         ignored when non-nil.
912         (muse-publish-markup-region): Use it.  Also, guarantee that point
913         is at end of region after publishing.
914         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
915         variable.
917 2007-04-19  Michael Olson  <mwolson@gnu.org>
919         * IDEAS.muse: New file containing a list of ideas we have for new
920         features, or patches that have yet to be applied.
922         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
923         be so confusing.
925         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
926         docstring.
928         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
929         <literal> tags with muse-publish-literal-tag, rather than
930         muse-publish-mark-read-only.
931         (muse-publish-literal-tag): New function that publishes the
932         <literal> tag.  It adds the ability to add the optional "style"
933         and "exact" elements, which cause text to only be included if the
934         current publishing style matches some criteria.  The text will be
935         removed otherwise.  Thanks to Jim Ottaway for the implementation.
936         (muse-publish-mark-up-tag): Let the <markup> tag take the
937         additional optional elements "style" and "exact", with much the
938         same effect as the <literal> improvements, but after calling
939         "function" or publishing the region first.  Make it possible to
940         put <content> tags in <markup> regions in HTML publishing.
942 2007-04-12  Michael Olson  <mwolson@gnu.org>
944         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
945         that a blank line always exists after a heading.  This fixes a bug
946         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
947         for the report.
949         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
950         detection regexp to that which is used in Docbook and HTML
951         publishing styles.
953 2007-04-02  Michael Olson  <mwolson@gnu.org>
955         * README (muse-el-announce): Make a listing of mailing lists,
956         rather than pointing to the old EmacsWikiMailingList page.  Thanks
957         to Andreas Roehler for noticing.
959 2007-04-01  Michael Olson  <mwolson@gnu.org>
961         * lisp/muse-publish.el (muse-publish-date-format): Add
962 `       customization type and group.
963         (muse-publish-region): New interactive function that publishes a
964         region to a new buffer.
966         * texi/muse.texi: Use "document" rather than "manual".
968 2007-03-31  Michael Olson  <mwolson@gnu.org>
970         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
971         expression (muse-style-derived-p "latex" (muse-style "latex"))
972         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
973         for the catch.
975 2007-02-25  Michael Olson  <mwolson@gnu.org>
977         * lisp/muse-publish.el (muse-publish-date-format): New option that
978         specifies how to format the date when publishing Muse pages.
979         Thanks to Thomas Gehrlein for the suggestion.
980         (muse-publish-markup-buffer): Use it.
982 2007-02-23  Michael Olson  <mwolson@gnu.org>
984         * README: Add Prerequisites section to mention which versions of
985         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
986         the suggestion.  Update link destination for Muse's page on
987         emacswiki.org.
989 2007-02-15  Michael Olson  <mwolson@gnu.org>
991         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
992         be not just at beginning of line.  This fixes an error with the
993         <class> tag.  Thanks to Jim Pivarski for the report.
995 2007-02-14  Michael Olson  <mwolson@gnu.org>
997         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
998         whether something is an image before checking to see if it is a
999         URL.  Thanks to ITSUMI ken-ichi for the report.
1001 2007-02-13  Michael Olson  <mwolson@gnu.org>
1003         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
1004         comments that have no text better.  Thanks to fang.lungang for the
1005         report.
1006         (muse-publish-markup-comment): Deal with case where no comment
1007         text is provided.
1009 2007-01-23  Michael Olson  <mwolson@gnu.org>
1011         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
1012         that ensures that at least one blank line exists at the given
1013         position.  This is used to avoid paragraph detection problems when
1014         block-level tags like <example> immediately follow a paragraph.
1015         Thanks to Hans Ekbrand for the report.
1016         (muse-publish-example-tag): Use it.
1018 2007-01-19  Michael Olson  <mwolson@gnu.org>
1020         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
1021         previous blank line if we are publishing in Latex.  Otherwise,
1022         that wouldn't be the right thing, so leave it be.
1024 2007-01-17  Michael Olson  <mwolson@gnu.org>
1026         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
1027         multiple centered math lines on the same line; keep them on
1028         different lines.  Use \[ math-text \] instead of $$math-text$$,
1029         since the latter seems to be deprecated.  Thanks to Jody Klymak
1030         for the pointer.
1032 2007-01-15  Michael Olson  <mwolson@gnu.org>
1034         * lisp/muse-latex2png.el (muse-publish-latex-tag)
1035         (muse-publish-math-tag): Publish region read-only when current
1036         style is Latex-derived, so that Muse does not escape it.
1037         (muse-publish-math-tag): If 6 or more spaces come before the tag,
1038         surround the region with "$$" rather than "$".  This is the Muse
1039         syntax for something centered, so it should be a good fit.
1041 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
1043         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
1044         protocol.
1045         (muse-browse-url-man): Change man page URL format.  The code is
1046         simpler when the section is left inside parentheses.
1047         (muse-browse-url-woman): New function.
1049 2007-01-14  Michael Olson  <mwolson@gnu.org>
1051         * AUTHORS: Bookkeeping.
1053         * lisp/muse-latex2png.el: Associate <math> tag with
1054         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
1055         Klymak for the report.
1056         (muse-publish-math-tag): Use muse-insert-markup for the "$"
1057         characters, so they don't get escaped.
1059         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
1060         make muse-style-derived-p easier to implement.
1061         (muse-style-derived-p): If the style is not provided, fetch it and
1062         check to see if the car is a string.  This should fix the other
1063         problem that was reported.
1065         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
1066         explains a case where setting muse-file-extension to nil can cause
1067         unexpected behavior.
1069 2007-01-09  Michael Olson  <mwolson@gnu.org>
1071         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
1072         comments higher priority than tags.  Thanks to Stefan van der Walt
1073         for the report.
1075 2007-01-08  Michael Olson  <mwolson@gnu.org>
1077         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
1078         argument rather than calling match-string.  Thanks to Stefan van
1079         der Walt for the report.  This should fix a bug with publishing
1080         <include file="..." markup="example">.
1082 2007-01-06  Michael Olson  <mwolson@gnu.org>
1084         * Makefile (debclean): New rule split from debrevision and
1085         debrelease.
1086         (debbuild): Take distributor into account.
1088         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1089         vendor/distributor we are building for.
1091 2007-01-04  Michael Olson  <mwolson@gnu.org>
1093         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1094         line.
1096         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1097         point to muse-publish-src-tag by default, since <src> and
1098         <example> have different parameters.
1099         (muse-publish-src-tag): New barebones publishing function for
1100         <src>, which is superseded when publishing in an HTML-based style.
1102 2007-01-03  Michael Olson  <mwolson@gnu.org>
1104         * lisp/muse-html.el (muse-html-src-tag): Document.
1106         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1107         command that calls a given tag on the current buffer.  Attributes
1108         may be passed.
1109         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1110         it.
1111         (muse-publish-srcify-buffer): New function that allows
1112         markup="src" in the <include> tag.
1113         (muse-publish-get-and-delete-attr): New macro that gets an
1114         attribute from a list and removes the first instance of that
1115         attribute from said list.
1116         (muse-publish-markup-attribute): Handle markup="src".
1117         (muse-publish-command-tag, muse-publish-include-tag): Use
1118         muse-publish-get-and-delete-attr.  This allows the remaining
1119         attributes to be passed.
1121         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1122         as changes to <command> and <include>.
1124 2006-12-30  Michael Olson  <mwolson@gnu.org>
1126         * NEWS: Update.
1128         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1129         from muse-publish-math-tag to avoid conflict with
1130         muse-latex2png.el.
1132 2006-12-23  Michael Olson  <mwolson@gnu.org>
1134         * lisp/muse-latex2png.el: Update header, since this has been
1135         rewritten sufficiently to not need an assignment from the original
1136         author.
1137         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1138         (muse-latex2png): Use two underscores to separate prefix and hash.
1139         (muse-latex2png-region): New function split from
1140         muse-publish-latex-tag that can be used easily by other code.
1141         Detect whether we are using an HTML-based publishing style, and
1142         insert a simpler markup if we are not.  If we are using a
1143         Latex-based publishing style, do not generate an image, and leave
1144         the region alone.  Return the path of the generated image, in case
1145         other functions want to use this programmatically.
1146         (muse-publish-latex-tag): Set a default prefix based on the name
1147         of the current file.
1148         (muse-publish-math-tag): New tag that surrounds the region with
1149         "$" characters, so that it becomes a Latex math region, and then
1150         publishes it.
1152         * lisp/muse-publish.el (muse-style-derived-p): New function that
1153         returns non-nil if a given style, or the current style if omitted,
1154         is equal to or derived from the given base style.  This is useful
1155         in <lisp> tags, because it allows the user to specify markup that
1156         is only to be inserted for one particular style.
1158 2006-12-22  Michael Olson  <mwolson@gnu.org>
1160         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1161         (muse-html-src-tag): New function which publishes the <src> tag.
1162         Thanks to Clinton Ebadi and Charles Wang for the initial
1163         implementations.
1165         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1167 2006-12-21  Michael Olson  <mwolson@gnu.org>
1169         * examples/johnw/muse-johnw.el: Update for preferred
1170         muse-derive-style usage.  Rename to muse-init.el.
1172         * examples/mwolson/muse-init.el: Update.
1174         * lisp/muse-book.el (muse-book-publish): New function split from
1175         muse-book-publish-project.  This is used in the definitions for
1176         the book-latex and book-pdf styles.
1177         (muse-book-publish-p): New function split from muse-book-publish.
1178         (muse-book-get-directives): New function that retrieves the
1179         publishing directives from the given file.
1180         (muse-book-publish): Use muse-book-get-directives to set the title
1181         if no title was specified.
1183         * lisp/muse-project.el (muse-project): Add :publish-project entry
1184         to widget.
1185         (muse-read-project, muse-project-find-file): Message fix.
1186         (muse-project-publish-file-default): New function split from
1187         muse-project-publish-file.
1188         (muse-project-publish-file): Allow file-level publishing function
1189         to be specified by the :publish element.  The default is
1190         muse-project-publish-file-default.
1191         (muse-project-publish-default): New function split from
1192         muse-project-publish.
1193         (muse-project-publish): Allow project-level publishing function to
1194         be specified by :publish-project element.  The default is
1195         muse-project-publish-default.
1197         * lisp/muse-publish.el (muse-publish-file): Message fix.
1199         * texi/muse.texi (Book): Mention new way to publish books and
1200         provide an example, since the process may be non-obvious.
1202 2006-12-20  Michael Olson  <mwolson@gnu.org>
1204         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1205         content-modifying code from the rest of
1206         muse-docbook-finalize-buffer.
1208         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1209         muse-groff-finalize-buffer, since it adds content to the buffer.
1211         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1212         content-modifying code from the rest of muse-html-finalize-buffer.
1213         This fixes a bug when using <include> with <content> tags.
1215         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1216         (muse-journal-latex-munge-buffer)
1217         (muse-journal-rss-munge-buffer): Rename, since they add content to
1218         the buffer.
1220         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1221         muse-latex-finalize-buffer, since it adds content to the buffer.
1223         * lisp/muse-mode.el:
1224         * lisp/muse-project.el:
1225         * lisp/muse-publish.el:
1226         * lisp/muse.el: Fix recursive load error.
1228         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1229         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1231         * lisp/muse-wiki.el: Comment cleanup.
1233         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1235 2006-12-17  Michael Olson  <mwolson@gnu.org>
1237         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1238         Remove the definition of \comment, since Latex already has comment
1239         syntax.
1240         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1241         than our own.  Thanks to Ryan Stutsman for pointing this out.
1243 2006-12-02  Michael Olson  <mwolson@gnu.org>
1245         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1246         that this can generate a proper table of contents for Planner HTML
1247         publishing.
1249 2006-12-01  Michael Olson  <mwolson@gnu.org>
1251         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1252         using a very old Emacs, avoid an infinite loop that could occur
1253         when the regexp is an empty string.
1255 2006-11-26  Michael Olson  <mwolson@gnu.org>
1257         * NEWS: Bring up to date.
1259         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1260         list issues and multiple-stanza verse issues.  This takes care of
1261         all of the markup issues I was worried about.
1263         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1264         (muse-project-publish-private-files): New option that indicates
1265         whether files with private filesystem permissions should be
1266         published.  The default is to publish them, since it avoids
1267         confusion in new users.
1268         (muse-project-private-p): Use it.
1270 2006-11-19  Michael Olson  <mwolson@gnu.org>
1272         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1273         style is found, which means that the link is not a Muse page, do
1274         not add a suffix or prefix to it.  This should fix the
1275         "[[thing.owl]]" bug that Phillip Lord reported.
1277         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1278         removing unused 2nd argument.
1280 2006-11-17  Michael Olson  <mwolson@gnu.org>
1282         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1283         latex publishing where nested enumerated lists would be squashed
1284         together at the end.
1286 2006-11-16  Michael Olson  <mwolson@gnu.org>
1288         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1289         list embedded in a definition list look right.  This also allows
1290         for definitions to be separated from their terms, much like the
1291         way HTML does it by default, if the user puts a blank line or a
1292         line break between the term and the definition.  If the term and
1293         definition are on the same line, they will be that way in the
1294         output as well.
1296 2006-11-11  Michael Olson  <mwolson@gnu.org>
1298         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1299         for the report.
1300         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1302 2006-11-07  Michael Olson  <mwolson@gnu.org>
1304         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1305         release candidate for Muse 3.03, available.
1307         * NEWS: Update.
1309 2006-11-06  Michael Olson  <mwolson@gnu.org>
1311         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1312         following a relative link worked even when the path was incorrect.
1314 2006-11-04  John Sullivan  <john@wjsullivan.net>
1316         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1317         muse-follow-name-at-point to reduce collisions with other
1318         modes (Planner).
1320         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1322 2006-11-04  Michael Olson  <mwolson@gnu.org>
1324         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1325         optional, and make interwiki delimiter a regular rather than shy
1326         group.
1327         (muse-wiki-handle-implicit-interwiki): Rename from
1328         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1329         (muse-wiki-handle-explicit-interwiki): New function that is
1330         smarter about where an explicit link ends in a buffer.  This
1331         allows you to refer to page names with invalid Wiki characters,
1332         such as underscores and dashes, merely by enclosing them in double
1333         brackets.  Also, a bug with recognizing project names too loosely
1334         has been fixed.
1336 2006-11-03  Michael Olson  <mwolson@gnu.org>
1338         * lisp/muse-project.el (muse-project-page-file): Make relative
1339         links work as expected, hopefully.
1341         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1342         output style manually, since it will differ from anything in the
1343         publishing style list.
1345 2006-10-30  Michael Olson  <mwolson@gnu.org>
1347         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1348         grouping elements, since that no longer applies.
1349         (muse-colors-custom-tags): Explicitly match against
1350         muse-tag-regexp to get the match-data set the way we want.  This
1351         really fixes the <example> highlighting bug that Stefan reported.
1352         (muse-configure-highlighting): Set the original value to the
1353         symbol, not the modified value.  Re-use modified rules properly.
1355         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1356         introduced yesterday.
1358 2006-10-29  Michael Olson  <mwolson@gnu.org>
1360         * examples/mwolson: Update my example configuration.
1362         * NEWS: Update.
1364         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1365         without a regexp in the first position before iterating through
1366         them to build muse-colors-vector.  This fixes a bug with the
1367         display of <example> tags.  Thanks to Stefan Reichör for the
1368         report.
1370         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1371         files in projects to be linked to.
1373         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1374         to serve as a description for a URL, as long as it differs from
1375         the destination URL.  This fixes the description of WikPage links
1376         in PDF output.
1377         (muse-publish-link-file): Check to see whether the given link
1378         points at a valid file.  If so, return it.  Otherwise, apply other
1379         transforms like prefix and link suffix.
1381         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1382         "/", it is a file or directory, not a Muse page.  Thanks to
1383         Phillip Lord for the suggestion.
1385         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1386         of the current page as the local path, instead of duplicating the
1387         remote file's path.  This probably fixes at least one reported
1388         bug. since it's quite major.
1389         (muse-wiki-update-project-file-regexp)
1390         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1391         passed to regexp-opt, since that can cause Emacs 21 to throw an
1392         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1393         DOT edu for the report.
1394         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1396 2006-10-28  Michael Olson  <mwolson@gnu.org>
1398         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1399         (muse-project-resolve-link): If the given style does not have a
1400         link-suffix, default to suffix.  This fixes a bug I was noticing
1401         when linking to a file that was published in both PDF and HTML
1402         form.
1404         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1405         function that is used as a callback to determine the initial
1406         amount of indentation that the current dl item has.
1407         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1408         and the post-indent value, instead of trying to determine them
1409         both.
1410         (muse-publish-strip-list-indentation): New function stripped from
1411         `muse-publish-surround-text' for readability.
1412         (muse-publish-surround-text): Instead of taking a determine-indent
1413         value, take a determine-indent-func function, which is called just
1414         after finding the next list item.  If we are asked to determine
1415         the amount of indentation, concatenate indent and post-indent the
1416         first time around.  This effectively fixes all known definition
1417         list issues.
1419 2006-10-16  Michael Olson  <mwolson@gnu.org>
1421         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1422         other software -- namely, Planner -- can detect whether they are
1423         using a version of Muse that supports nested tags.
1424         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1425         muse-publish-goto-tag-end.
1427         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1428         Adapt for nested tags.
1430         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1431         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1432         this.
1434         * lisp/muse-publish.el (muse-publish-markup-tag)
1435         (muse-publish-quote-tag): Use muse-goto-tag-end.
1437         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1439 2006-10-15  Michael Olson  <mwolson@gnu.org>
1441         * AUTHORS: Bookkeeping.
1443         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1444         tag.
1446         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1447         tags.
1449         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1451         * lisp/muse-import-docbook.el (muse-import-docbook)
1452         (muse-import-docbook-files): Docfix.
1453         (muse-import-docbook-get-title): Remove cl.el-ism.
1455         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1457         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1459         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1461         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1462         (muse-next-reference, muse-previous-reference): Minor whitespace
1463         changes.
1464         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1465         the suggestion.
1467         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1469         * lisp/muse-publish.el (muse-publish-markup-tags)
1470         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1471         element and make 4th element determine whether tags are nestable.
1472         (muse-publish-goto-tag-end): New function that moves to the end of
1473         a tag.  Handle nested tags when NESTED is non-nil.
1474         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1475         5th element for function.
1476         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1477         this on several scenarios, and it seems to work.
1478         (muse-publish-surround-text): Accept new optional argument
1479         LIST-ITEM which determines the regexp to use for list items.  The
1480         default is to use muse-list-item-regexp.
1482         * muse.texi (Markup Tags): Mention nestable tags.
1484         * NEWS: Mention new files.
1486 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1488         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1489         into Muse format.
1491         * lisp/muse-import-xml.el: New file that provides helper routines
1492         for converting XML-ish files to Muse format.
1494 2006-10-10  Michael Olson  <mwolson@gnu.org>
1496         * NEWS: Update for 3.02.7 bugfix release.
1498 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1500         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1501         using the value in the muse #date directive.
1502         (muse-blosxom-use-metadate): New option that determines whether or
1503         not to use the #postdate directive.
1504         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1505         metadate plugin format.
1507 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1509         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1510         recognised URLs.
1512         * muse.texi: Clarify handling of implicit links by mentioning
1513         which characters can prevent Muse from recognizing something as an
1514         implicit link.
1516 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1518         * lisp/muse-mode.el (muse-next-reference)
1519         (muse-previous-reference): Fix bug #6367 by moving point to the
1520         beginning of the link.
1522 2006-09-26  Michael Olson  <mwolson@gnu.org>
1524         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1525         beginning-of-line.  This should fix a bug that was noticed in
1526         recent Emacs 22 builds.
1528         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1529         eval-and-compile block to avoid a compiler warning.
1531 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1533         * lisp/muse-backlink.el (muse-backlink-split-string):
1534         Compatibility with Emacs versions < 22
1535         (muse-backlink-pending): New internal variable
1536         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1537         that backlinks are inserted at the right time.
1538         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1539         for pending backlink, and that this is the targe page.
1540         (muse-backlink-handle-link): Don’t handle the link if we are
1541         already handling one. Return the link as well as the parent links.
1543 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1545         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1546         #6942 - muse-blosxom-new-entry fails when using tags.
1548 2006-09-14  Michael Olson  <mwolson@gnu.org>
1550         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1551         compiler warning.
1553 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1555         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1556         function: Protect all wikiwords from START to END from further
1557         processing.
1558         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1560 2006-09-13  Michael Olson  <mwolson@gnu.org>
1562         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1563         adopted from Jim Ottaway's patch.  It removes links from the
1564         heading, and then marks the region read-only to inhibit WikiWord
1565         detection.
1567 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1569         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1570         special handling for headings.
1571         (muse-texinfo-remove-links): New function that removes explicit
1572         links from the given strings, replacing them with a description.
1574 2006-09-11  Michael Olson  <mwolson@gnu.org>
1576         * muse.texi (Getting Help and Reporting Bugs): Mention the
1577         muse-el-internationalization mailing list.
1579         * lisp/muse.el (muse-path-sans-extension): New function that acts
1580         like file-name-sans-extension, but guarantees to never modify the
1581         directory part of the path.  Thanks to Evan Monroig for
1582         investigating this.
1584         * lisp/muse-book.el (muse-book-publish-project): Use
1585         muse-path-sans-extension instead of file-name-sans-extension.
1587         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1588         Ditto.
1590 2006-08-30  Michael Olson  <mwolson@gnu.org>
1592         * muse.texi (Blosxom Requirements): Fix typo.
1594         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1595         directories for bzr and darcs.
1597         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1598         contrib/pyblosxom/getstamps.py: Update version and headers.
1600 2006-08-27  Michael Olson  <mwolson@gnu.org>
1602         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1603         nil values before they get to mapconcat.  This fixes a lockup when
1604         muse-wiki-match-all-project-files is nil.
1606         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1607         (muse-wiki-ignore-implicit-links-to-current-page)
1608         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1609         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1610         (muse-wiki-publish-small-title-words)
1611         (muse-wiki-publish-pretty-title): Docfix.
1612         (muse-wiki-update-local-wikiword-regexp): Rename from
1613         muse-wiki-update-local-wikiword-regexp.  Set
1614         muse-wiki-project-file-regexp instead of
1615         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1616         take muse-wiki-use-wikiword into account, since this is a
1617         different concept now.
1618         (muse-wiki-update-wikiword-regexp): Remove.
1619         (muse-wiki-wikiword-regexp): In-line the :set function.
1620         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1622 2006-08-26  Michael Olson  <mwolson@gnu.org>
1624         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1625         for indented list items, ignore blank lines.
1627         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1628         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1629         mapconcat.  This should hopefully fix a problem with large amounts
1630         of files with spaces in their name.  Thanks to Greg Detre for the
1631         report.
1633 2006-08-24  Michael Olson  <mwolson@gnu.org>
1635         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1636         numbers from the argument to format-time-string.  This fixes an
1637         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1639 2006-08-18  Michael Olson  <mwolson@gnu.org>
1641         * lisp/muse-project.el (muse-project-file-entries): Since we are
1642         given a full path, match against the filename as well.  This fixes
1643         an issue where backup files were being added to the file alist.
1645         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1646         from muse-html.el.
1648 2006-08-12  Michael Olson  <mwolson@gnu.org>
1650         * Makefile (.PHONY): Don't use line continuations.
1651         (realclean fullclean): Call realclean in subdirs, not distclean.
1652         (distclean): Don't call realclean, since this would wipe out our
1653         autoloads file.
1654         (dist): Use correct path to autoloads file.
1656         * NEWS: Catch up with the latest changes.
1658         * experimental/Makefile (.PHONY): Wrap long line.
1660         * lisp/Makefile (distclean): Do the same thing as "clean", not
1661         "realclean".
1663         * lisp/muse-project.el (muse-project-get-applicable-style):
1664         Indentation tweak.
1665         (muse-project-ignore-regexp, muse-project-recurse-directory):
1666         Docfix.
1667         (muse-project-of-file): Try the ignored files regexp against the
1668         base filename as well as the entire path.
1670         * lisp/muse-publish.el (muse-publish-this-file): Display message
1671         if the buffer is not associated with any file, so that we avoid
1672         errors later on.
1673         (muse-publish-url-desc): New function taken from muse-publish-url
1674         that causes a URL description to be transformed.
1675         (muse-publish-url): Call muse-publish-url-desc on either the
1676         description or the original URL if it will be used as a
1677         description.  Accept the original URL as an argument, in case it
1678         was transformed earlier.
1679         (muse-publish-insert-url): Pass original URL as an argument.
1680         (muse-publish-markup-link): Make this somewhat easier to follow.
1681         Pass original URL as argument.
1682         (muse-publish-get-style): If the same style is used to publish to
1683         two different directories, prompt the user for which directory to
1684         use.
1685         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1686         latest changes.
1687         (muse-publish-markup-url): Pass original URL as an argument.  This
1688         fixes the "nil" description for bare URLs that was in 3.02.91.
1689         Nothing like finding a bug just after completing the announcement
1690         of a release.
1692         * lisp/muse.el: Use defalias whenever convenient.
1693         (muse-version): Set version to 3.02.92 (3.03 RC2).
1695 2006-08-10  Michael Olson  <mwolson@gnu.org>
1697         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1698         style does not derive from any other class, return `t' here.
1699         This, along with the corresponding change to muse-publish.el,
1700         fixes a problem with the table of contents getting inserted
1701         multiple times for custom html-based styles.
1702         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1703         smarter method for table centering that works with XHTML.
1705         * lisp/muse-latex2png.el Rename all functions to have a
1706         "muse-latex2png" prefix.  Turn all variables into customizable
1707         options in the muse-latex2png group.
1708         (muse-latex2png-img-dest): New option specifying where to place
1709         the images.
1710         (muse-latex2png-template): New option containing the template to
1711         use for the surrounding LaTeX code.
1712         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1713         compliance.
1714         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1715         messages when something else goes wrong.  Create the image
1716         subdirectory if it doesn't exist already -- thanks to Christian
1717         Straßer for the report.  Expand the filename properly.
1718         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1719         and filename expansion.
1720         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1721         the default directory properly.
1723         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1724         do not run the same function twice.
1726 2006-08-08  Michael Olson  <mwolson@gnu.org>
1728         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1729         introduced wrong-type-argument error.
1731         * lisp/muse-html.el (muse-html-markup-strings)
1732         (muse-xhtml-markup-string): Cause table definition that contains
1733         image to be center-aligned.  This should fix an issue with images
1734         not being centered when captions are very long.
1736         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1737         whitespace from fields once we have split them up.
1739         * lisp/muse.el (muse-trim-whitespace): New function that strips
1740         leading and trailing whitespace from a string.
1742 2006-08-07  Michael Olson  <mwolson@gnu.org>
1744         * NEWS: Update through patch-95.
1746         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1747         to match the tags.
1748         (muse-colors-explicit-link): Show images in link descriptions if
1749         inlined images are enabled.
1751         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1752         definitions for 'image-with-desc, 'image, and 'image-link.
1753         (muse-docbook-markup-paragraph): If an inlined image begins a
1754         paragraph, insert <para> before it.
1755         (muse-docbook-fixup-images): New function that upper-cases the
1756         "format" attribute of the <imagedata> tag.
1757         (muse-docbook-finalize-buffer): Call it.
1759         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1760         with descriptions as centered tables, with a centered caption
1761         underneath.  The resulting look is consistent with the way that
1762         they are published in the LaTeX style.  Thanks to Jody Klymak for
1763         the suggestion.
1764         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1765         valid way to center a table.
1766         (muse-html-markup-paragraph): Use class="image" instead of
1767         "image-link" for paragraphs that start with an embedded image.
1769         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1770         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1771         suggestion.
1772         (muse-latex-markup-specials-image): New option that enables
1773         escaping of specials in images.  This was split from the URL
1774         specials.
1775         (muse-latex-decide-specials): Handle 'image context.
1776         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1777         of relying on caller to do this for us.
1779         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1780         'image context.
1781         (muse-publish-url): Use 'image context for images.  Use 'image
1782         instead of 'image-link and 'image-link in place of
1783         'url-with-image.  Separate the image file from its extension so
1784         that docbook and texinfo can publish images correctly.
1785         (muse-publish-markup-link): Don't force a description if one is
1786         not given.  This fixes a bug where images without descriptions
1787         were being published as 'image-with-desc instead of 'image.
1789         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1790         images the same as URLs.
1791         (muse-texinfo-markup-strings): Improve image markup to achieve an
1792         effect similar to that of the LaTeX publishing style.  Simplify
1793         'url string.
1795         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1797         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1798         when we have to use the custom version of this function.
1800         * muse.texi (Images): Explain how to toggle inlining of images and
1801         give better examples.  Mention captions and that captioned images
1802         should not be used inside of text paragraphs.
1803         (Markup Strings): Bring up-to-date with the changes made since
1804         3.02.
1806 2006-08-06  Michael Olson  <mwolson@gnu.org>
1808         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1809         in the Emacs source tree.
1811         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1812         in the Emacs source tree.
1814         * ChangeLog.3: New file created from the old ChangeLog.
1816         * Makefile.defs (VERSION): Set to 3.02.91.
1818         * NEWS: Update through patch-84.
1820         * lisp/muse.el (muse-version): Set to 3.02.91.
1822         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1823         attributes.
1824         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1825         delimiter are instead of hard-coding it.
1827         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1828         (muse-mode): Make filling definition lists work better.  This
1829         should fix #5359.
1831         * lisp/muse-publish.el (muse-style-run-hooks): Use
1832         `muse-style-element' instead of `muse-get-keyword' here.  This
1833         should fix #6399.
1835         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1837 See ChangeLog.3 for earlier changes.
1839 ;; Local Variables:
1840 ;; coding: utf-8
1841 ;; End: