Merged from mwolson@gnu.org--2006-muse-el/muse-el--devel--0 (patch 170)
[muse-el.git] / ChangeLog
blob801e097ea00416fdcbb05de1c8168a947eae299e
1 2007-07-29  cordier   <jean@bornier.net>
3         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
4         command which did not work correctly
6         * lisp/muse-context.el (muse-context-markup-strings): Change rule
7         command which did not work correctly; defined verse commands
8         (muse-context-markup-specials-literal): Eliminate all unuseful entries
10 2007-07-29  Michael Olson  <mwolson@gnu.org>
12         * contrib/httpd.el (httpd-send-file): Use
13         insert-file-contents-literally instead of insert-file-contents.
15         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
16         Use insert-file-contents-literally instead of
17         insert-file-contents.
19         * experimental/muse-split.el (muse-publish-file)
20         (muse-publish-presplit-publish, muse-publish-no-split-function)
21         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
22         insert-file-contents-literally instead of insert-file-contents.
24         * lisp/muse-book.el (muse-book-publish-chapter)
25         (muse-book-get-directives): Use insert-file-contents-literally
26         instead of insert-file-contents.
28         * lisp/muse-http.el (muse-http-render-page): Use
29         insert-file-contents-literally instead of insert-file-contents.
31         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
32         nowhere when done, since they can slow things down.
34         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
35         marker to nowhere when done, since they can slow things down.
37         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
38         when done, since they can slow things down.  Use
39         insert-file-contents-literally instead of insert-file-contents.
41         * lisp/muse-publish.el (muse-publish-markup-tag)
42         (muse-publish-markup-word, muse-publish-markup-footnote)
43         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
44         done, since they can slow things down.
45         (muse-insert-file-or-string, muse-publish-file)
46         (muse-publish-include-tag, muse-published-contents): Use
47         insert-file-contents-literally instead of insert-file-contents.
48         (muse-publish-surround-dl): Remove unused variable.  Track whether
49         a term has been found, and handle that case well.
50         (muse-publish-ensure-blank-line): Use a marker, so that we don't
51         lose our place when adding a newline.  This really fixes the
52         definition list item bug.
53         (muse-publish-markup-list): Since people do seem to want
54         definition lists with no terms, allow this.
56         * lisp/muse.el (muse-with-temp-buffer): Mention
57         `insert-file-contents-literally'.
59 2007-07-28  Michael Olson  <mwolson@gnu.org>
61         * lisp/muse-mode.el (muse-browse-result): Set
62         muse-current-output-style.
63         (muse-mode): Don't duplicate the paragraph-start regexp
64         unnecessarily.
65         (muse-list-edit-minor-mode-map): New variable containing the
66         keymap for Muse list edit minor mode.
67         (muse-l-e-m-m-list-item-regexp): New variable that matches list
68         items for Muse list edit minor mode.
69         (muse-l-e-m-m-insert-list-item,
70         muse-l-e-m-m-i-list-item-indentation)
71         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
72         item functions that change the list item regexp before calling the
73         existing function.
74         (muse-l-e-m-m-data): New variable that keeps track of the fill
75         data that we overwrite when activating Muse list edit minor mode,
76         so that we can restore it if the minor mode is toggled off.
77         (muse-list-edit-minor-mode): New minor mode that is useful for
78         editing lists in other major modes.
79         (turn-on-muse-list-edit-minor-mode)
80         (turn-off-muse-list-edit-minor-mode): New interactive functions
81         that turn Muse list edit minor mode on and off, respectively.
82         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
83         regexps.
85         * lisp/muse-project.el (muse-project-publish-this-file): Set
86         muse-current-output-style.  This fixes a bug when publishing to a
87         style that is not first in the list of styles.  Thanks to Jean
88         Magnan de Bornier for the report.
90         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
91         function that ensures that a blank line exists in the line before
92         point.
93         (muse-publish-markup-list): Use it, rather than
94         `muse-publish-ensure-block'.  This fixes a bug with definition
95         list publishing.  Thanks to meandtheshell for reporting this.
97         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
98         project argument is nil, default to the current project instead of
99         the first project entry in muse-project-alist.  This seems much
100         more sane to me.
102         * lisp/muse.el (muse-forward-list-item): Only check the 'face
103         property if we are in Muse mode or one of its derivatives.  This
104         allows movement on nested lists to work in other modes, and fixes
105         an issue with altering list indentation in
106         muse-list-edit-minor-mode.
108 2007-07-27  Michael Olson  <mwolson@gnu.org>
110         * AUTHORS: Add new authors.
112         * README: Permit Muse to be called "Emacs-Muse".
114         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
116         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
117         involving list items that have an extra blank line in front.
119         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
120         and Emacs-Muse are the same thing.
122 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
124         * lisp/muse-context.el (muse-context-header): Put
125         starttext after the modules who must be in preamble.
126         (muse-context-markup-strings): Fixed mistake in begin-example and
127         end-example.
129         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
130         math environment in ConTeXt when centered: "$$ $$" has to be
131         "\startformula \stopformula".
133 2007-07-26  Michael Olson  <mwolson@gnu.org>
135         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
136         parentheses in URLs.
138 2007-07-24  Michael Olson  <mwolson@gnu.org>
140         * examples/QuickStart.muse (Images): Fix typo where some text
141         existed in the output but not in the example region.
142         (Source Code): Fix another typo.  Explain that publishing from
143         console or X can make a difference.
145         * lisp/muse-context.el (muse-context-pdf-program): New option that
146         determines the program to use for generating PDF files for
147         ConTeXt.
148         (muse-context-pdf-cruft): New option that specifies the extensions
149         of files to remove after generating PDF output successfully.
150         (muse-context-slides-header): Docfix.
151         (muse-context-pdf-generate): Use new options.
153         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
154         save-restriction call.  This was causing a world of hurt when
155         using <lisp> inside of <include>.
157         * texi/muse.texi (ConTeXt): New section that documents how to use
158         the ConTeXt publishing styles.
160 2007-07-23  Michael Olson  <mwolson@gnu.org>
162         * lisp/muse-context.el: New file that provides support for
163         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
164         de Bornier for his work on this.
166         * lisp/muse-docbook.el (muse-docbook-entities)
167         (muse-docbook-bibliography): Remove unneeded save-restriction use.
169         * lisp/muse-latex2png.el (muse-publish-latex-tag):
170         s/contex/context/.
172         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
173         (muse-latex-bibliography): Remove call to `widen', since it is not
174         needed anymore.  Remove unneeded save-restriction use.
175         ("slides", "slides-pdf"): Indent elements uniformly.
177 2007-07-22  Michael Olson  <mwolson@gnu.org>
179         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
180         * lisp/muse-mode.el (muse-insert-tag):
181         * lisp/muse-project.el (muse-read-project)
182         (muse-read-project-file):
183         * lisp/muse-publish.el (muse-publish-get-style): Use
184         muse-completing-read-function.
186         * lisp/muse-latex2png.el (muse-publish-latex-tag)
187         (muse-publish-math-tag): Allow the contex style -- which I plan to
188         include soon -- to work with these tags.
190         * lisp/muse.el (muse-completing-read-function): New option that
191         determines which function to call when doing a completing-read.
193 2007-07-15  Michael Olson  <mwolson@gnu.org>
195         * lisp/muse-journal.el (muse-journal-html-entry-template)
196         (muse-journal-rdf-entry-template)
197         (muse-journal-rss-entry-template): Mention that this can be text
198         or a filename.
199         (muse-journal-rdf-entry-template, muse-journal-rss-header)
200         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
201         newlines to make the output look nicer.
202         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
203         Use muse-insert-file-or-string for the entry templates, rather
204         than muse-insert-markup.  This allows <lisp> and <markup> tags to
205         be acted on.  Thanks to Scott Hyde for the report.
206         (muse-journal-html-munge-buffer): Escape quote of the day using
207         entire-document specials before snarfing it.  Mark entire template
208         as read-only -- this fixes an incorrect escaping bug.  Remove
209         read-only properties before replacing template matches so that
210         they can still be escaped with entire-document specials later on.
211         (muse-journal-rss-munge-buffer): Make sure that title is escaped
212         properly.
213         (muse-journal-markup-tags): Rename from
214         muse-journal-latex-markup-tags, because we will use it for
215         journal-rss-entry as well.
216         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
217         end-quote-item.
218         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
219         html.
220         ("journal-latex", "journal-pdf", "journal-book-latex")
221         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
222         muse-journal-latex-markup-tags.
223         ("journal-rss-entry"): New style that is used by journal-rss and
224         journal-rdf to mark up individual entries.  It is needed so that
225         we can do something meaningful with the qotd tag.
226         (muse-journal-rdf-summarize-entries): Set this to nil by default,
227         because it is annoying.  Update docs to mention this.
228         (muse-journal-rss-summarize-entries): Docfix.
230         * lisp/muse-publish.el (muse-insert-file-or-string): Use
231         muse-publish-markup-header-footer-tags.  I'm not quite sure how
232         this change got reverted.
233         (muse-markup-tag-info): Make into a function.  Move common code
234         here, rather than duplicating it in two places.  Deal with case
235         where muse-publish-use-header-footer-tags is non-nil.
236         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
237         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
238         warning.
239         (muse-publish-use-header-footer-tags): New variable that indicates
240         whether we should use just the header and footer tags, rather than
241         the full set.
242         (muse-insert-file-or-string): Bind
243         muse-publish-use-header-footer-tags to t.
244         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
245         Simplify call to muse-markup-tag-info.
246         (muse-publish-mark-up-tag): Bind
247         muse-publish-use-header-footer-tags to nil.
249         * texi/muse.texi (Journal): Update for recent changes.
251 2007-07-14  Michael Olson  <mwolson@gnu.org>
253         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
254         delete the remainder of the buffer, since this causes the
255         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
256         the report and the suggested fix.
258         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
259         beginning of table-el regexp.  This fixes a bug where Muse stalls
260         when trying to publish a malformed table.  Thanks to Ye Wenbin for
261         the report and the suggested fix.
263 2007-07-12  Michael Olson  <mwolson@gnu.org>
265         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
266         default, rather than the empty string.  This really fixes the bug
267         that occurred when using Muse with muse-project-alist set to nil.
268         Thanks to Jonathan Underwood for the report.
269         (muse-wiki-update-interwiki-regexp): Set
270         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
271         defined.
272         (muse-wiki-handle-implicit-interwiki)
273         (muse-wiki-handle-explicit-interwiki): Handle case where
274         muse-wiki-interwiki-regexp is nil.
276 2007-07-10  Michael Olson  <mwolson@gnu.org>
278         * lisp/muse-mode.el (muse-grep): Abort search if the current
279         project contains no directories.
281         * lisp/muse-project.el (muse-project-file-alist): If
282         muse-project-alist is not defined, or project is nil, return nil
283         right away.  This ought to fix a bug that occurred when using Muse
284         with muse-project-alist set to nil.
285         (muse-project-of-file): Make sure muse-project-alist is not nil.
286         (muse-project-save-buffers): Make sure project is not nil.
288         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
289         case where muse-project-alist is nil.
291         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
292         for XEmacs, since color-theme.el is poorly behaved, and defines
293         its own replace-in-string.  Bad color-theme.el -- no cookie for
294         you.
296 2007-07-01  Michael Olson  <mwolson@gnu.org>
298         * Makefile (.PHONY): Update for new debian package rules.
300         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
302         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
303         Use save-restriction properly.
304         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
306         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
307         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
308         properly.
309         (muse-latex-bibliography): Re-indent.
311         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
312         higher.  This fixes an error at startup with some versions of
313         Emacs.
314         (muse-publish-cite-tag): Re-indent.
316         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
317         to the end of the link part, so as to exclude the description from
318         the match.  This fixes a bug with three-part links that have
319         descriptions.  Thanks to everyone who pointed it out.
321 2007-06-18  Michael Olson  <mwolson@gnu.org>
323         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
324         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
325         1.1 specific markup strings.
326         (muse-html-insert-anchor): Use 'anchor string, rather than
327         hard-coding it.  Thanks to Chris Corsair for the suggestion.
328         ("xhtml1.0"): New style that is an alias for the xhtml style.
329         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
331 2007-06-17  Michael Olson  <mwolson@gnu.org>
333         * examples/QuickStart.muse: Make images local so that the Info
334         version of this document works.  Add <example> for the Literal
335         paragraphs chapter, so that it is clear what is happening.
337         * Makefile: Add elpa target, which is used for building an ELPA
338         package for Muse.
340         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
341         building ELPA packages.
343         * examples/Makefile (%.html, %.pdf, %.info): Add message to
344         indicate what we are publishing.
345         (realclean distclean fullclean): Remove all TeX crud.
347         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
348         that the Info version of QuickStart can publish correctly.
350         * lisp/muse-latex.el (muse-latex-slides-header)
351         (muse-latex-lecture-notes-header): Docfix.
353         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
354         the list of things to ignore.
356         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
357         variable.
359         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
360         default to nil, since texinfmt.el is a serious nuisance.
361         (muse-texinfo-markup-strings): Add newlines to begin-example and
362         end-example.
363         (muse-texinfo-decide-specials): Also escape URL-type specials in a
364         whole slew of other contexts.
366         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
367         muse-xml.
369         * lisp/muse-xml.el (muse-xml-footer): Docfix.
371         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
373 2007-06-16  Michael Olson  <mwolson@gnu.org>
375         * etc/IDEAS.muse: Add some ideas from David D. Smith.
377         * examples/QuickStart.muse: Overhaul.
379         * lisp/muse-project.el (muse-project): Call the last part of a
380         muse-project-alist entry "Output styles" rather than "styles".
382         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
383         where we have a pipe character at the beginning of line.
385         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
386         causing tables to not be sorted at all.
388         * texi/muse.texi: Overhaul.  It would be too time-consuming to
389         list all of the changes here.  The "Getting Started" and
390         "Projects" chapters, in particular, were heavily revised.
392 2007-06-15  Michael Olson  <mwolson@gnu.org>
394         * NEWS: Update.
396         * examples/QuickStart.muse: Mention new features.
398         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
399         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
400         terminal, and C-c TAB is more important.  Most people will not
401         want to toggle images on and off that often.
403         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
404         C-i as well, so that it works in the terminal.
406         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
407         look a bit tidier when removing the region.
409         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
410         list regexp part before other parts.
411         (muse-ol-item-regexp): New regexp that specifies how to match an
412         ordered list item.
413         (muse-ul-item-regexp): New regexp that specifies how to match an
414         unordered list item.
415         (muse-table-field-regexp): New regexp that specifies how to match
416         a definition list entry.
418         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
419         lack of support for @headitem in texinfmt.el.
421         * lisp/muse.el: Wrap muse-line-beginning-position and
422         muse-line-end-position in `eval-and-compile', since they are now
423         used in muse.el.
424         (muse-list-item-type): Use a simpler algorithm for detecting which
425         kind of list item we have.  This fixes a bug where a number in a
426         definition list term was being detected incorrectly as an ordered
427         list item.  Fixes bug #6250.
428         (muse-forward-list-item): Get the entire line with the list item.
429         For some reason, Emacs 21 was not populating match 2 correctly,
430         unlike Emacs 22, so this workaround was needed.
432         * texi/muse.texi: (Keystroke Summary): Remove C-c
433         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
434         alternative keybinding to the C-c TAB stuff.  Mention
435         muse-colors-toggle-inline-images.
437 2007-06-14  Michael Olson  <mwolson@gnu.org>
439         * README: Mention that RelaxNG schema is in etc/ directory.
441         * etc/emacs-wiki-migration.txt: New document that explains how to
442         migrate from emacs-wiki to Muse.
444         * etc/muse.rnc: Increment version number to 1.0.  Fix several
445         nested emphasis and nested lists edge cases.  Move here from
446         examples/.
448         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
449         same thing as C-c C-S-t, since the former works better in the
450         console.  Thanks to Leo for the suggestion.
452         * lisp/muse-publish.el (muse-publish-markup-table)
453         (muse-publish-markup-table-el): Include a newline in the return
454         string, so that paragraph detection does not get confused.
456         * lisp/muse.el (muse-with-temp-buffer): Docfix.
458         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
459         keybinding.
461 2007-06-13  Michael Olson  <mwolson@gnu.org>
463         * etc/IDEAS.muse: Mark three-part-links item as done.
465         * experimental/muse-message.el: Remove guard for muse-define-style
466         calls.
468         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
469         markup rules were being interpreted in reverse order.  This should
470         make implicit interwiki links work properly again.
471         (muse-link-face): Strip anchor from end of a path, so that this
472         works with anchors in interwiki links.
473         (muse-colors-insert-image): Catch error that occurs in Emacs 21
474         when an image does not exist.
476         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
477         anchors.
478         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
479         interwiki links work.  Thanks to Jim Ottaway for the initial
480         implementation.
481         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
482         links work.
484         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
485         about match 0.
486         (muse-handle-explicit-link): Docfix: this does not modify the
487         match data.
488         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
489         that has the regexp in its car.
491 2007-06-12  Michael Olson  <mwolson@gnu.org>
493         * README: Document new etc/ directory.
495         * etc/IDEAS.muse: Install things from new contributors just after
496         the 3.03 release, since I won't have time to review the code
497         before the release.  Move to new etc/ directory.  Slides
498         publishing has been installed.
500         * lisp/muse-latex.el (muse-latex-slides-header): New option that
501         determines the header to use for publishing slides.
502         (muse-latex-lecture-notes-header): New option that determines the
503         header to use for publishing lecture notes.
504         (muse-latex-slides-markup-tags): New option containing tags to use
505         when publishing slides.
506         (muse-latex-permit-contents-tag): Move higher in file.
507         (muse-latex-slide-tag): New function to publish the <slide> tag.
508         ("slides", "slides-pdf"): New publishing styles that create slides
509         using Beamer.
510         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
511         create lecture notes using Beamer.
513         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
514         since otherwise Planner is not happy when `plan' is called during
515         init.  Remove stray quote from autoload snippet.
517 2007-06-11  Michael Olson  <mwolson@gnu.org>
519         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
520         autoload, rather than having it exist at top-level.  Thanks to Leo
521         for the suggestion.
522         (muse-update-file-extension): Docfix.
524 2007-06-10  Michael Olson  <mwolson@gnu.org>
526         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
527         URLs were being removed during publishing.  Thanks to everyone who
528         reported this.
530 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
532         * lisp/muse-book.el
533         * lisp/muse-docbook.el
534         * lisp/muse-latex.el
535         * lisp/muse-publish.el: added support for <cite> element which
536         denotes in-text citations
538         * lisp/muse-html.el
539         * lisp/muse-groff.el
540         * lisp/muse-texinfo.el
541         * lisp/muse-xml.el: added support for <cite> element (stub)
543 2007-06-06  Michael Olson  <mwolson@gnu.org>
545         * lisp/muse-regexps.el (muse-table-line-regexp)
546         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
547         regexps so that they work with XEmacs 21.  Thanks to Adrian
548         Tritschler for the report.
550         * texi/muse.texi: Update copyright years.
551         (HTML): Document muse-xhtml-style-sheet.  Thanks
552         to thorne for noticing.
553         (Development): Change archive year to 2006.  Thanks to Adrian
554         Tritschler for noticing.  So *that's* why some people had the 2005
555         version ....
557 2007-06-05  Michael Olson  <mwolson@gnu.org>
559         * Makefile (install-info): Remove $(MANUAL).info part, since this
560         is taken care of already by texi/Makefile.  Thanks to Leo for the
561         report.
563         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
564         read-only properties to qotd contents, so that they don't get
565         double-escaped.  Thanks to Leo for the report.
567 2007-06-04  Michael Olson  <mwolson@gnu.org>
569         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
570         -- that is, Tramp or ange-ftp -- file, then do not call
571         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
572         Fixes bug #5115.
574         * lisp/muse-html.el (muse-html-insert-contents): Add
575         documentation.  Handle case where heading is read-only, but has
576         muse-contents property.  Remove the muse-contents property for any
577         heading we come across so as to avoid double-including an item in
578         an outer table of contents.
579         (muse-html-denote-headings): New function that denotes whether a
580         heading is not read-only by adding the muse-contents property to
581         it.
582         (muse-html-munge-buffer): If we are not to generate contents,
583         still denote headings, in case some outer layer wants to generate
584         contents for our headings.  This should fix a bug with table of
585         contents and the <include> tag.  Thanks to thorne for the report.
587         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
588         muse-publish-generate-contents and set it to nil.  This should
589         do the right thing when using <include> tags.
591 2007-06-02  Michael Olson  <mwolson@gnu.org>
593         * NEWS: Update for non-inlined image change and support for
594         table.el style tables.
596         * examples/Makefile (clean): Clean backup files.
598         * examples/QuickStart.muse (Images): New section that describes
599         how to inline and not inline images.
601         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
602         touch images that have "URL:" in front of them.
604         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
605         "URL:".  Use the identity function to resolve, since we don't want
606         to rip "URL:" out while publishing, due to some magic that depends
607         on that text.
608         (muse-browse-url-url): New function that browses URLs that have
609         "URL:" in front of them, by removing the "URL:" part and
610         reprocessing the remainder.
612         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
613         (muse-publish-url): Recognize images in the description before
614         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
615         for the suggested workaround.
616         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
617         default value.
618         (muse-publish-classify-url): If target begins with "URL:" return
619         type url.
620         (muse-publish-strip-URL): New function that strips "URL:" from the
621         beginning of a string.  This is used to remove URL: from the link
622         description.  * texi/muse.texi (Markup Strings): Clarify the
623         meanings of image-link, link, and link-and-anchor.
624         (muse-publish-markup-regexps): Move normal table rule to 2350.
625         Rule 2300 is now a regexp that matches table.el-style tables.
626         (muse-publish-markup-functions): Add table-el entry.
627         (muse-publish-table-el-table): New function that given a variant,
628         publishes a table.el-style table using the table in the matched
629         region.
630         (muse-publish-markup-table-el): New function that determines
631         whether the table.el-style table can be published, and what
632         variant to use.
634         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
635         the borders of table.el-style tables.
637         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
638         the table has sufficient whitespace in front of it.
640         * texi/muse.texi (Images): Update for new non-inlined image
641         ability and provide example.
643 2007-05-31  Michael Olson  <mwolson@gnu.org>
645         * NEWS: Add example for setting `muse-html-table-attributes'.
647         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
648         Publish multiple tbody tags if there is a horizontal separator
649         after the heading, because that is valid HTML after all.
651 2007-05-30  Michael Olson  <mwolson@gnu.org>
653         * NEWS: Update.
655         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
656         horizontal separators in tables.
658         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
659         horizontal separators in tables.
660         (muse-publish-trim-table): New function to remove initial and
661         final blank columns from a table.
662         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
663         with horizontal separators, aka "hlines".
665         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
666         defines the syntax of a horizontal separator in a table.
668         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
669         horizontal separators.  Publish header lines correctly.
671         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
672         where we have nonnumbers as a row type.  This ignores sorting for
673         hlines.
674         (muse-xml-markup-table): Deal with horizontal separators.  If the
675         markup supports table groups, make hlines separate table groups.
676         Otherwise, ignore them, since they cannot be marked up.  Together,
677         these changes allow us to support orgtbl-mode tables.  Thanks to
678         Carsten Dominik for the suggestion.
680 2007-05-26  Michael Olson  <mwolson@gnu.org>
682         * lisp/muse-project.el (muse-project-alist-styles): Allow for
683         other things to be added to each generated style as well.  For
684         example, this permits me to add
685         :base-url "http://blog.mwolson.org/"
686         for my blog.
688 2007-05-25  Michael Olson  <mwolson@gnu.org>
690         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
691         way of building Debian packages that preserves the original
692         release tarball and is more modular.
693         (debrevision, debrelease): Remove.
694         (dist): No need to remove the debian/ directory, since it is now
695         in its own branch.
696         (debprepare): Copy over debian/ directory properly.
698         * NEWS: Update.
700         * examples/Makefile (clean): Remove QuickStart.texi, in case
701         something went wrong during the build.
702         (%.pdf): Publish the example using the normal pdf style, rather
703         than info-pdf.
705         * examples/QuickStart.muse: Add myself to the authors list.
707         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
708         sufficient blank lines before the tag.
710         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
711         we have sufficient blank lines before the tag.
713         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
714         specifies the program to call in order to generate PDF content
715         from LaTeX content.
716         (muse-latex-pdf-cruft): New option that specifies the extensions
717         of files to remove after generating PDF output successfully.
718         (muse-latex-pdf-generate): Use these new options.  Work around the
719         annoying edge case where a tilde character exists in the filename
720         or directory path -- now this can only error out when the relative
721         path from the output file to the source file contains a tilde,
722         which is far less likely.
724         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
725         muse-publish-ensure-block here after all, because <lisp> et al may
726         occur inline as part of other things.
728         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
729         occur after full-document escaping, rather than before.  This
730         prevents automatically-inserted Texinfo code from being escaped.
731         (muse-texinfo-pdf-generate): Rewrite to call
732         `muse-latex-pdf-generate' with pdftex as the generating binary,
733         because texi2pdf suffers irredeemably from the tilde edge case
734         mentioned above.
736 2007-05-24  Michael Olson  <mwolson@gnu.org>
738         * NEWS: Drop vague entries and position interesting entries closer
739         to the top of each section.  Update for new changes.
741         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
742         and bzr metadata directories to the list of things to ignore.
744         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
745         `muse-publish-ensure-block-tag', since we will use it for more
746         than just tags.
747         (muse-publish-markup-list, muse-publish-verse-tag)
748         (muse-publish-quote-tag, muse-publish-example-tag)
749         (muse-publish-markup-attribute): Use it.  This fixes a bug that
750         can occur when these types of markup occur immediately after a
751         paragraph.  It's good to have defined behavior!
753         * texi/muse.texi (Markup Strings): Mention new argument for
754         link-and-anchor.
756 2007-05-19  Michael Olson  <mwolson@gnu.org>
758         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
759         published footnotes and footnote references.  Thanks to Scott
760         Jaderholm for the idea.
762         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
763         link-and-anchor, on the recommendation of the original submitter.
765 2007-05-14  Michael Olson  <mwolson@gnu.org>
767         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
768         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
769         suggestion.
771         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
772         file extension as the fourth argument.
774         * README, texi/muse.texi (Getting Help and Reporting Bugs):
775         Mention the new muse-el-logs mailing list.
777 2007-05-13  Michael Olson  <mwolson@gnu.org>
779         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
780         "\`" here.  This fixes a problem with publishing custom URLs.
782 2007-05-12  Michael Olson  <mwolson@gnu.org>
784         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
785         update the list if the current buffer is associated with a file.
786         This fixes a bug with M-x muse-publish-region in a temporary
787         buffer.
789 2007-05-01  Michael Olson  <mwolson@gnu.org>
791         * lisp/muse-publish.el (muse-publish-region): Remove read-only
792         properties from the published buffer, so that the results can be
793         manually tweaked.
795 2007-04-23  Michael Olson  <mwolson@gnu.org>
797         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
798         find the footnote that goes with a reference, leave the reference
799         as-is.  This fixes an error where control characters could be
800         placed in a published document.
802 2007-04-22  Michael Olson  <mwolson@gnu.org>
804         * IDEAS.muse: Add muse-slides.el to list of things to include
805         before release.
807         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
808         character.
809         (muse-protocol-find): Find protocols correctly.  Rewrite to use
810         catch/throw.
811         (muse-browse-url): Don't concatenate "\`" here.  Together, this
812         fixes a bug with browsing woman:// links.
814         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
815         where entry-dir has a trailing backslash.
816         (muse-project-publish-file): If a style is malformed, skip it and
817         display a warning message.  This should help people figure out
818         where the problem is.
820 2007-04-21  Michael Olson  <mwolson@gnu.org>
822         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
823         yet-to-be-included "contex" publishing style, use "$$" rather
824         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
825         this out.
827 2007-04-20  Michael Olson  <mwolson@gnu.org>
829         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
830         variable that causes the :before and :before-end hooks to be
831         ignored when non-nil.
832         (muse-publish-markup-region): Use it.  Also, guarantee that point
833         is at end of region after publishing.
834         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
835         variable.
837 2007-04-19  Michael Olson  <mwolson@gnu.org>
839         * IDEAS.muse: New file containing a list of ideas we have for new
840         features, or patches that have yet to be applied.
842         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
843         be so confusing.
845         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
846         docstring.
848         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
849         <literal> tags with muse-publish-literal-tag, rather than
850         muse-publish-mark-read-only.
851         (muse-publish-literal-tag): New function that publishes the
852         <literal> tag.  It adds the ability to add the optional "style"
853         and "exact" elements, which cause text to only be included if the
854         current publishing style matches some criteria.  The text will be
855         removed otherwise.  Thanks to Jim Ottaway for the implementation.
856         (muse-publish-mark-up-tag): Let the <markup> tag take the
857         additional optional elements "style" and "exact", with much the
858         same effect as the <literal> improvements, but after calling
859         "function" or publishing the region first.  Make it possible to
860         put <content> tags in <markup> regions in HTML publishing.
862 2007-04-12  Michael Olson  <mwolson@gnu.org>
864         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
865         that a blank line always exists after a heading.  This fixes a bug
866         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
867         for the report.
869         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
870         detection regexp to that which is used in Docbook and HTML
871         publishing styles.
873 2007-04-02  Michael Olson  <mwolson@gnu.org>
875         * README (muse-el-announce): Make a listing of mailing lists,
876         rather than pointing to the old EmacsWikiMailingList page.  Thanks
877         to Andreas Roehler for noticing.
879 2007-04-01  Michael Olson  <mwolson@gnu.org>
881         * lisp/muse-publish.el (muse-publish-date-format): Add
882 `       customization type and group.
883         (muse-publish-region): New interactive function that publishes a
884         region to a new buffer.
886         * texi/muse.texi: Use "document" rather than "manual".
888 2007-03-31  Michael Olson  <mwolson@gnu.org>
890         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
891         expression (muse-style-derived-p "latex" (muse-style "latex"))
892         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
893         for the catch.
895 2007-02-25  Michael Olson  <mwolson@gnu.org>
897         * lisp/muse-publish.el (muse-publish-date-format): New option that
898         specifies how to format the date when publishing Muse pages.
899         Thanks to Thomas Gehrlein for the suggestion.
900         (muse-publish-markup-buffer): Use it.
902 2007-02-23  Michael Olson  <mwolson@gnu.org>
904         * README: Add Prerequisites section to mention which versions of
905         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
906         the suggestion.  Update link destination for Muse's page on
907         emacswiki.org.
909 2007-02-15  Michael Olson  <mwolson@gnu.org>
911         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
912         be not just at beginning of line.  This fixes an error with the
913         <class> tag.  Thanks to Jim Pivarski for the report.
915 2007-02-14  Michael Olson  <mwolson@gnu.org>
917         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
918         whether something is an image before checking to see if it is a
919         URL.  Thanks to ITSUMI ken-ichi for the report.
921 2007-02-13  Michael Olson  <mwolson@gnu.org>
923         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
924         comments that have no text better.  Thanks to fang.lungang for the
925         report.
926         (muse-publish-markup-comment): Deal with case where no comment
927         text is provided.
929 2007-01-23  Michael Olson  <mwolson@gnu.org>
931         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
932         that ensures that at least one blank line exists at the given
933         position.  This is used to avoid paragraph detection problems when
934         block-level tags like <example> immediately follow a paragraph.
935         Thanks to Hans Ekbrand for the report.
936         (muse-publish-example-tag): Use it.
938 2007-01-19  Michael Olson  <mwolson@gnu.org>
940         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
941         previous blank line if we are publishing in Latex.  Otherwise,
942         that wouldn't be the right thing, so leave it be.
944 2007-01-17  Michael Olson  <mwolson@gnu.org>
946         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
947         multiple centered math lines on the same line; keep them on
948         different lines.  Use \[ math-text \] instead of $$math-text$$,
949         since the latter seems to be deprecated.  Thanks to Jody Klymak
950         for the pointer.
952 2007-01-15  Michael Olson  <mwolson@gnu.org>
954         * lisp/muse-latex2png.el (muse-publish-latex-tag)
955         (muse-publish-math-tag): Publish region read-only when current
956         style is Latex-derived, so that Muse does not escape it.
957         (muse-publish-math-tag): If 6 or more spaces come before the tag,
958         surround the region with "$$" rather than "$".  This is the Muse
959         syntax for something centered, so it should be a good fit.
961 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
963         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
964         protocol.
965         (muse-browse-url-man): Change man page URL format.  The code is
966         simpler when the section is left inside parentheses.
967         (muse-browse-url-woman): New function.
969 2007-01-14  Michael Olson  <mwolson@gnu.org>
971         * AUTHORS: Bookkeeping.
973         * lisp/muse-latex2png.el: Associate <math> tag with
974         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
975         Klymak for the report.
976         (muse-publish-math-tag): Use muse-insert-markup for the "$"
977         characters, so they don't get escaped.
979         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
980         make muse-style-derived-p easier to implement.
981         (muse-style-derived-p): If the style is not provided, fetch it and
982         check to see if the car is a string.  This should fix the other
983         problem that was reported.
985         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
986         explains a case where setting muse-file-extension to nil can cause
987         unexpected behavior.
989 2007-01-09  Michael Olson  <mwolson@gnu.org>
991         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
992         comments higher priority than tags.  Thanks to Stefan van der Walt
993         for the report.
995 2007-01-08  Michael Olson  <mwolson@gnu.org>
997         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
998         argument rather than calling match-string.  Thanks to Stefan van
999         der Walt for the report.  This should fix a bug with publishing
1000         <include file="..." markup="example">.
1002 2007-01-06  Michael Olson  <mwolson@gnu.org>
1004         * Makefile (debclean): New rule split from debrevision and
1005         debrelease.
1006         (debbuild): Take distributor into account.
1008         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1009         vendor/distributor we are building for.
1011 2007-01-04  Michael Olson  <mwolson@gnu.org>
1013         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1014         line.
1016         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1017         point to muse-publish-src-tag by default, since <src> and
1018         <example> have different parameters.
1019         (muse-publish-src-tag): New barebones publishing function for
1020         <src>, which is superseded when publishing in an HTML-based style.
1022 2007-01-03  Michael Olson  <mwolson@gnu.org>
1024         * lisp/muse-html.el (muse-html-src-tag): Document.
1026         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1027         command that calls a given tag on the current buffer.  Attributes
1028         may be passed.
1029         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1030         it.
1031         (muse-publish-srcify-buffer): New function that allows
1032         markup="src" in the <include> tag.
1033         (muse-publish-get-and-delete-attr): New macro that gets an
1034         attribute from a list and removes the first instance of that
1035         attribute from said list.
1036         (muse-publish-markup-attribute): Handle markup="src".
1037         (muse-publish-command-tag, muse-publish-include-tag): Use
1038         muse-publish-get-and-delete-attr.  This allows the remaining
1039         attributes to be passed.
1041         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1042         as changes to <command> and <include>.
1044 2006-12-30  Michael Olson  <mwolson@gnu.org>
1046         * NEWS: Update.
1048         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1049         from muse-publish-math-tag to avoid conflict with
1050         muse-latex2png.el.
1052 2006-12-23  Michael Olson  <mwolson@gnu.org>
1054         * lisp/muse-latex2png.el: Update header, since this has been
1055         rewritten sufficiently to not need an assignment from the original
1056         author.
1057         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1058         (muse-latex2png): Use two underscores to separate prefix and hash.
1059         (muse-latex2png-region): New function split from
1060         muse-publish-latex-tag that can be used easily by other code.
1061         Detect whether we are using an HTML-based publishing style, and
1062         insert a simpler markup if we are not.  If we are using a
1063         Latex-based publishing style, do not generate an image, and leave
1064         the region alone.  Return the path of the generated image, in case
1065         other functions want to use this programmatically.
1066         (muse-publish-latex-tag): Set a default prefix based on the name
1067         of the current file.
1068         (muse-publish-math-tag): New tag that surrounds the region with
1069         "$" characters, so that it becomes a Latex math region, and then
1070         publishes it.
1072         * lisp/muse-publish.el (muse-style-derived-p): New function that
1073         returns non-nil if a given style, or the current style if omitted,
1074         is equal to or derived from the given base style.  This is useful
1075         in <lisp> tags, because it allows the user to specify markup that
1076         is only to be inserted for one particular style.
1078 2006-12-22  Michael Olson  <mwolson@gnu.org>
1080         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1081         (muse-html-src-tag): New function which publishes the <src> tag.
1082         Thanks to Clinton Ebadi and Charles Wang for the initial
1083         implementations.
1085         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1087 2006-12-21  Michael Olson  <mwolson@gnu.org>
1089         * examples/johnw/muse-johnw.el: Update for preferred
1090         muse-derive-style usage.  Rename to muse-init.el.
1092         * examples/mwolson/muse-init.el: Update.
1094         * lisp/muse-book.el (muse-book-publish): New function split from
1095         muse-book-publish-project.  This is used in the definitions for
1096         the book-latex and book-pdf styles.
1097         (muse-book-publish-p): New function split from muse-book-publish.
1098         (muse-book-get-directives): New function that retrieves the
1099         publishing directives from the given file.
1100         (muse-book-publish): Use muse-book-get-directives to set the title
1101         if no title was specified.
1103         * lisp/muse-project.el (muse-project): Add :publish-project entry
1104         to widget.
1105         (muse-read-project, muse-project-find-file): Message fix.
1106         (muse-project-publish-file-default): New function split from
1107         muse-project-publish-file.
1108         (muse-project-publish-file): Allow file-level publishing function
1109         to be specified by the :publish element.  The default is
1110         muse-project-publish-file-default.
1111         (muse-project-publish-default): New function split from
1112         muse-project-publish.
1113         (muse-project-publish): Allow project-level publishing function to
1114         be specified by :publish-project element.  The default is
1115         muse-project-publish-default.
1117         * lisp/muse-publish.el (muse-publish-file): Message fix.
1119         * texi/muse.texi (Book): Mention new way to publish books and
1120         provide an example, since the process may be non-obvious.
1122 2006-12-20  Michael Olson  <mwolson@gnu.org>
1124         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1125         content-modifying code from the rest of
1126         muse-docbook-finalize-buffer.
1128         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1129         muse-groff-finalize-buffer, since it adds content to the buffer.
1131         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1132         content-modifying code from the rest of muse-html-finalize-buffer.
1133         This fixes a bug when using <include> with <content> tags.
1135         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1136         (muse-journal-latex-munge-buffer)
1137         (muse-journal-rss-munge-buffer): Rename, since they add content to
1138         the buffer.
1140         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1141         muse-latex-finalize-buffer, since it adds content to the buffer.
1143         * lisp/muse-mode.el:
1144         * lisp/muse-project.el:
1145         * lisp/muse-publish.el:
1146         * lisp/muse.el: Fix recursive load error.
1148         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1149         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1151         * lisp/muse-wiki.el: Comment cleanup.
1153         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1155 2006-12-17  Michael Olson  <mwolson@gnu.org>
1157         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1158         Remove the definition of \comment, since Latex already has comment
1159         syntax.
1160         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1161         than our own.  Thanks to Ryan Stutsman for pointing this out.
1163 2006-12-02  Michael Olson  <mwolson@gnu.org>
1165         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1166         that this can generate a proper table of contents for Planner HTML
1167         publishing.
1169 2006-12-01  Michael Olson  <mwolson@gnu.org>
1171         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1172         using a very old Emacs, avoid an infinite loop that could occur
1173         when the regexp is an empty string.
1175 2006-11-26  Michael Olson  <mwolson@gnu.org>
1177         * NEWS: Bring up to date.
1179         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1180         list issues and multiple-stanza verse issues.  This takes care of
1181         all of the markup issues I was worried about.
1183         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1184         (muse-project-publish-private-files): New option that indicates
1185         whether files with private filesystem permissions should be
1186         published.  The default is to publish them, since it avoids
1187         confusion in new users.
1188         (muse-project-private-p): Use it.
1190 2006-11-19  Michael Olson  <mwolson@gnu.org>
1192         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1193         style is found, which means that the link is not a Muse page, do
1194         not add a suffix or prefix to it.  This should fix the
1195         "[[thing.owl]]" bug that Phillip Lord reported.
1197         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1198         removing unused 2nd argument.
1200 2006-11-17  Michael Olson  <mwolson@gnu.org>
1202         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1203         latex publishing where nested enumerated lists would be squashed
1204         together at the end.
1206 2006-11-16  Michael Olson  <mwolson@gnu.org>
1208         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1209         list embedded in a definition list look right.  This also allows
1210         for definitions to be separated from their terms, much like the
1211         way HTML does it by default, if the user puts a blank line or a
1212         line break between the term and the definition.  If the term and
1213         definition are on the same line, they will be that way in the
1214         output as well.
1216 2006-11-11  Michael Olson  <mwolson@gnu.org>
1218         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1219         for the report.
1220         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1222 2006-11-07  Michael Olson  <mwolson@gnu.org>
1224         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1225         release candidate for Muse 3.03, available.
1227         * NEWS: Update.
1229 2006-11-06  Michael Olson  <mwolson@gnu.org>
1231         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1232         following a relative link worked even when the path was incorrect.
1234 2006-11-04  John Sullivan  <john@wjsullivan.net>
1236         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1237         muse-follow-name-at-point to reduce collisions with other
1238         modes (Planner).
1240         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1242 2006-11-04  Michael Olson  <mwolson@gnu.org>
1244         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1245         optional, and make interwiki delimiter a regular rather than shy
1246         group.
1247         (muse-wiki-handle-implicit-interwiki): Rename from
1248         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1249         (muse-wiki-handle-explicit-interwiki): New function that is
1250         smarter about where an explicit link ends in a buffer.  This
1251         allows you to refer to page names with invalid Wiki characters,
1252         such as underscores and dashes, merely by enclosing them in double
1253         brackets.  Also, a bug with recognizing project names too loosely
1254         has been fixed.
1256 2006-11-03  Michael Olson  <mwolson@gnu.org>
1258         * lisp/muse-project.el (muse-project-page-file): Make relative
1259         links work as expected, hopefully.
1261         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1262         output style manually, since it will differ from anything in the
1263         publishing style list.
1265 2006-10-30  Michael Olson  <mwolson@gnu.org>
1267         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1268         grouping elements, since that no longer applies.
1269         (muse-colors-custom-tags): Explicitly match against
1270         muse-tag-regexp to get the match-data set the way we want.  This
1271         really fixes the <example> highlighting bug that Stefan reported.
1272         (muse-configure-highlighting): Set the original value to the
1273         symbol, not the modified value.  Re-use modified rules properly.
1275         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1276         introduced yesterday.
1278 2006-10-29  Michael Olson  <mwolson@gnu.org>
1280         * examples/mwolson: Update my example configuration.
1282         * NEWS: Update.
1284         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1285         without a regexp in the first position before iterating through
1286         them to build muse-colors-vector.  This fixes a bug with the
1287         display of <example> tags.  Thanks to Stefan Reichör for the
1288         report.
1290         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1291         files in projects to be linked to.
1293         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1294         to serve as a description for a URL, as long as it differs from
1295         the destination URL.  This fixes the description of WikPage links
1296         in PDF output.
1297         (muse-publish-link-file): Check to see whether the given link
1298         points at a valid file.  If so, return it.  Otherwise, apply other
1299         transforms like prefix and link suffix.
1301         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1302         "/", it is a file or directory, not a Muse page.  Thanks to
1303         Phillip Lord for the suggestion.
1305         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1306         of the current page as the local path, instead of duplicating the
1307         remote file's path.  This probably fixes at least one reported
1308         bug. since it's quite major.
1309         (muse-wiki-update-project-file-regexp)
1310         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1311         passed to regexp-opt, since that can cause Emacs 21 to throw an
1312         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1313         DOT edu for the report.
1314         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1316 2006-10-28  Michael Olson  <mwolson@gnu.org>
1318         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1319         (muse-project-resolve-link): If the given style does not have a
1320         link-suffix, default to suffix.  This fixes a bug I was noticing
1321         when linking to a file that was published in both PDF and HTML
1322         form.
1324         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1325         function that is used as a callback to determine the initial
1326         amount of indentation that the current dl item has.
1327         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1328         and the post-indent value, instead of trying to determine them
1329         both.
1330         (muse-publish-strip-list-indentation): New function stripped from
1331         `muse-publish-surround-text' for readability.
1332         (muse-publish-surround-text): Instead of taking a determine-indent
1333         value, take a determine-indent-func function, which is called just
1334         after finding the next list item.  If we are asked to determine
1335         the amount of indentation, concatenate indent and post-indent the
1336         first time around.  This effectively fixes all known definition
1337         list issues.
1339 2006-10-16  Michael Olson  <mwolson@gnu.org>
1341         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1342         other software -- namely, Planner -- can detect whether they are
1343         using a version of Muse that supports nested tags.
1344         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1345         muse-publish-goto-tag-end.
1347         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1348         Adapt for nested tags.
1350         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1351         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1352         this.
1354         * lisp/muse-publish.el (muse-publish-markup-tag)
1355         (muse-publish-quote-tag): Use muse-goto-tag-end.
1357         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1359 2006-10-15  Michael Olson  <mwolson@gnu.org>
1361         * AUTHORS: Bookkeeping.
1363         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1364         tag.
1366         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1367         tags.
1369         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1371         * lisp/muse-import-docbook.el (muse-import-docbook)
1372         (muse-import-docbook-files): Docfix.
1373         (muse-import-docbook-get-title): Remove cl.el-ism.
1375         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1377         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1379         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1381         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1382         (muse-next-reference, muse-previous-reference): Minor whitespace
1383         changes.
1384         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1385         the suggestion.
1387         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1389         * lisp/muse-publish.el (muse-publish-markup-tags)
1390         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1391         element and make 4th element determine whether tags are nestable.
1392         (muse-publish-goto-tag-end): New function that moves to the end of
1393         a tag.  Handle nested tags when NESTED is non-nil.
1394         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1395         5th element for function.
1396         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1397         this on several scenarios, and it seems to work.
1398         (muse-publish-surround-text): Accept new optional argument
1399         LIST-ITEM which determines the regexp to use for list items.  The
1400         default is to use muse-list-item-regexp.
1402         * muse.texi (Markup Tags): Mention nestable tags.
1404         * NEWS: Mention new files.
1406 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1408         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1409         into Muse format.
1411         * lisp/muse-import-xml.el: New file that provides helper routines
1412         for converting XML-ish files to Muse format.
1414 2006-10-10  Michael Olson  <mwolson@gnu.org>
1416         * NEWS: Update for 3.02.7 bugfix release.
1418 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1420         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1421         using the value in the muse #date directive.
1422         (muse-blosxom-use-metadate): New option that determines whether or
1423         not to use the #postdate directive.
1424         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1425         metadate plugin format.
1427 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1429         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1430         recognised URLs.
1432         * muse.texi: Clarify handling of implicit links by mentioning
1433         which characters can prevent Muse from recognizing something as an
1434         implicit link.
1436 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1438         * lisp/muse-mode.el (muse-next-reference)
1439         (muse-previous-reference): Fix bug #6367 by moving point to the
1440         beginning of the link.
1442 2006-09-26  Michael Olson  <mwolson@gnu.org>
1444         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1445         beginning-of-line.  This should fix a bug that was noticed in
1446         recent Emacs 22 builds.
1448         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1449         eval-and-compile block to avoid a compiler warning.
1451 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1453         * lisp/muse-backlink.el (muse-backlink-split-string):
1454         Compatibility with Emacs versions < 22
1455         (muse-backlink-pending): New internal variable
1456         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1457         that backlinks are inserted at the right time.
1458         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1459         for pending backlink, and that this is the targe page.
1460         (muse-backlink-handle-link): Don’t handle the link if we are
1461         already handling one. Return the link as well as the parent links.
1463 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1465         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1466         #6942 - muse-blosxom-new-entry fails when using tags.
1468 2006-09-14  Michael Olson  <mwolson@gnu.org>
1470         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1471         compiler warning.
1473 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1475         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1476         function: Protect all wikiwords from START to END from further
1477         processing.
1478         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1480 2006-09-13  Michael Olson  <mwolson@gnu.org>
1482         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1483         adopted from Jim Ottaway's patch.  It removes links from the
1484         heading, and then marks the region read-only to inhibit WikiWord
1485         detection.
1487 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1489         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1490         special handling for headings.
1491         (muse-texinfo-remove-links): New function that removes explicit
1492         links from the given strings, replacing them with a description.
1494 2006-09-11  Michael Olson  <mwolson@gnu.org>
1496         * muse.texi (Getting Help and Reporting Bugs): Mention the
1497         muse-el-internationalization mailing list.
1499         * lisp/muse.el (muse-path-sans-extension): New function that acts
1500         like file-name-sans-extension, but guarantees to never modify the
1501         directory part of the path.  Thanks to Evan Monroig for
1502         investigating this.
1504         * lisp/muse-book.el (muse-book-publish-project): Use
1505         muse-path-sans-extension instead of file-name-sans-extension.
1507         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1508         Ditto.
1510 2006-08-30  Michael Olson  <mwolson@gnu.org>
1512         * muse.texi (Blosxom Requirements): Fix typo.
1514         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1515         directories for bzr and darcs.
1517         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1518         contrib/pyblosxom/getstamps.py: Update version and headers.
1520 2006-08-27  Michael Olson  <mwolson@gnu.org>
1522         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1523         nil values before they get to mapconcat.  This fixes a lockup when
1524         muse-wiki-match-all-project-files is nil.
1526         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1527         (muse-wiki-ignore-implicit-links-to-current-page)
1528         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1529         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1530         (muse-wiki-publish-small-title-words)
1531         (muse-wiki-publish-pretty-title): Docfix.
1532         (muse-wiki-update-local-wikiword-regexp): Rename from
1533         muse-wiki-update-local-wikiword-regexp.  Set
1534         muse-wiki-project-file-regexp instead of
1535         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1536         take muse-wiki-use-wikiword into account, since this is a
1537         different concept now.
1538         (muse-wiki-update-wikiword-regexp): Remove.
1539         (muse-wiki-wikiword-regexp): In-line the :set function.
1540         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1542 2006-08-26  Michael Olson  <mwolson@gnu.org>
1544         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1545         for indented list items, ignore blank lines.
1547         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1548         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1549         mapconcat.  This should hopefully fix a problem with large amounts
1550         of files with spaces in their name.  Thanks to Greg Detre for the
1551         report.
1553 2006-08-24  Michael Olson  <mwolson@gnu.org>
1555         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1556         numbers from the argument to format-time-string.  This fixes an
1557         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1559 2006-08-18  Michael Olson  <mwolson@gnu.org>
1561         * lisp/muse-project.el (muse-project-file-entries): Since we are
1562         given a full path, match against the filename as well.  This fixes
1563         an issue where backup files were being added to the file alist.
1565         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1566         from muse-html.el.
1568 2006-08-12  Michael Olson  <mwolson@gnu.org>
1570         * Makefile (.PHONY): Don't use line continuations.
1571         (realclean fullclean): Call realclean in subdirs, not distclean.
1572         (distclean): Don't call realclean, since this would wipe out our
1573         autoloads file.
1574         (dist): Use correct path to autoloads file.
1576         * NEWS: Catch up with the latest changes.
1578         * experimental/Makefile (.PHONY): Wrap long line.
1580         * lisp/Makefile (distclean): Do the same thing as "clean", not
1581         "realclean".
1583         * lisp/muse-project.el (muse-project-get-applicable-style):
1584         Indentation tweak.
1585         (muse-project-ignore-regexp, muse-project-recurse-directory):
1586         Docfix.
1587         (muse-project-of-file): Try the ignored files regexp against the
1588         base filename as well as the entire path.
1590         * lisp/muse-publish.el (muse-publish-this-file): Display message
1591         if the buffer is not associated with any file, so that we avoid
1592         errors later on.
1593         (muse-publish-url-desc): New function taken from muse-publish-url
1594         that causes a URL description to be transformed.
1595         (muse-publish-url): Call muse-publish-url-desc on either the
1596         description or the original URL if it will be used as a
1597         description.  Accept the original URL as an argument, in case it
1598         was transformed earlier.
1599         (muse-publish-insert-url): Pass original URL as an argument.
1600         (muse-publish-markup-link): Make this somewhat easier to follow.
1601         Pass original URL as argument.
1602         (muse-publish-get-style): If the same style is used to publish to
1603         two different directories, prompt the user for which directory to
1604         use.
1605         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1606         latest changes.
1607         (muse-publish-markup-url): Pass original URL as an argument.  This
1608         fixes the "nil" description for bare URLs that was in 3.02.91.
1609         Nothing like finding a bug just after completing the announcement
1610         of a release.
1612         * lisp/muse.el: Use defalias whenever convenient.
1613         (muse-version): Set version to 3.02.92 (3.03 RC2).
1615 2006-08-10  Michael Olson  <mwolson@gnu.org>
1617         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1618         style does not derive from any other class, return `t' here.
1619         This, along with the corresponding change to muse-publish.el,
1620         fixes a problem with the table of contents getting inserted
1621         multiple times for custom html-based styles.
1622         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1623         smarter method for table centering that works with XHTML.
1625         * lisp/muse-latex2png.el Rename all functions to have a
1626         "muse-latex2png" prefix.  Turn all variables into customizable
1627         options in the muse-latex2png group.
1628         (muse-latex2png-img-dest): New option specifying where to place
1629         the images.
1630         (muse-latex2png-template): New option containing the template to
1631         use for the surrounding LaTeX code.
1632         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1633         compliance.
1634         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1635         messages when something else goes wrong.  Create the image
1636         subdirectory if it doesn't exist already -- thanks to Christian
1637         Straßer for the report.  Expand the filename properly.
1638         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1639         and filename expansion.
1640         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1641         the default directory properly.
1643         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1644         do not run the same function twice.
1646 2006-08-08  Michael Olson  <mwolson@gnu.org>
1648         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1649         introduced wrong-type-argument error.
1651         * lisp/muse-html.el (muse-html-markup-strings)
1652         (muse-xhtml-markup-string): Cause table definition that contains
1653         image to be center-aligned.  This should fix an issue with images
1654         not being centered when captions are very long.
1656         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1657         whitespace from fields once we have split them up.
1659         * lisp/muse.el (muse-trim-whitespace): New function that strips
1660         leading and trailing whitespace from a string.
1662 2006-08-07  Michael Olson  <mwolson@gnu.org>
1664         * NEWS: Update through patch-95.
1666         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1667         to match the tags.
1668         (muse-colors-explicit-link): Show images in link descriptions if
1669         inlined images are enabled.
1671         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1672         definitions for 'image-with-desc, 'image, and 'image-link.
1673         (muse-docbook-markup-paragraph): If an inlined image begins a
1674         paragraph, insert <para> before it.
1675         (muse-docbook-fixup-images): New function that upper-cases the
1676         "format" attribute of the <imagedata> tag.
1677         (muse-docbook-finalize-buffer): Call it.
1679         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1680         with descriptions as centered tables, with a centered caption
1681         underneath.  The resulting look is consistent with the way that
1682         they are published in the LaTeX style.  Thanks to Jody Klymak for
1683         the suggestion.
1684         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1685         valid way to center a table.
1686         (muse-html-markup-paragraph): Use class="image" instead of
1687         "image-link" for paragraphs that start with an embedded image.
1689         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1690         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1691         suggestion.
1692         (muse-latex-markup-specials-image): New option that enables
1693         escaping of specials in images.  This was split from the URL
1694         specials.
1695         (muse-latex-decide-specials): Handle 'image context.
1696         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1697         of relying on caller to do this for us.
1699         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1700         'image context.
1701         (muse-publish-url): Use 'image context for images.  Use 'image
1702         instead of 'image-link and 'image-link in place of
1703         'url-with-image.  Separate the image file from its extension so
1704         that docbook and texinfo can publish images correctly.
1705         (muse-publish-markup-link): Don't force a description if one is
1706         not given.  This fixes a bug where images without descriptions
1707         were being published as 'image-with-desc instead of 'image.
1709         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1710         images the same as URLs.
1711         (muse-texinfo-markup-strings): Improve image markup to achieve an
1712         effect similar to that of the LaTeX publishing style.  Simplify
1713         'url string.
1715         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1717         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1718         when we have to use the custom version of this function.
1720         * muse.texi (Images): Explain how to toggle inlining of images and
1721         give better examples.  Mention captions and that captioned images
1722         should not be used inside of text paragraphs.
1723         (Markup Strings): Bring up-to-date with the changes made since
1724         3.02.
1726 2006-08-06  Michael Olson  <mwolson@gnu.org>
1728         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1729         in the Emacs source tree.
1731         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1732         in the Emacs source tree.
1734         * ChangeLog.3: New file created from the old ChangeLog.
1736         * Makefile.defs (VERSION): Set to 3.02.91.
1738         * NEWS: Update through patch-84.
1740         * lisp/muse.el (muse-version): Set to 3.02.91.
1742         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1743         attributes.
1744         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1745         delimiter are instead of hard-coding it.
1747         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1748         (muse-mode): Make filling definition lists work better.  This
1749         should fix #5359.
1751         * lisp/muse-publish.el (muse-style-run-hooks): Use
1752         `muse-style-element' instead of `muse-get-keyword' here.  This
1753         should fix #6399.
1755         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1757 See ChangeLog.3 for earlier changes.
1759 ;; Local Variables:
1760 ;; coding: utf-8
1761 ;; End: