Really fix termless definition list bug
[muse-el.git] / ChangeLog
blobe61fc4ac5b185d993147a4ae87d39a1591c35e1b
1 2007-07-29  Michael Olson  <mwolson@gnu.org>
3         * contrib/httpd.el (httpd-send-file): Use
4         insert-file-contents-literally instead of insert-file-contents.
6         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
7         Use insert-file-contents-literally instead of
8         insert-file-contents.
10         * experimental/muse-split.el (muse-publish-file)
11         (muse-publish-presplit-publish, muse-publish-no-split-function)
12         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
13         insert-file-contents-literally instead of insert-file-contents.
15         * lisp/muse-book.el (muse-book-publish-chapter)
16         (muse-book-get-directives): Use insert-file-contents-literally
17         instead of insert-file-contents.
19         * lisp/muse-http.el (muse-http-render-page): Use
20         insert-file-contents-literally instead of insert-file-contents.
22         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
23         nowhere when done, since they can slow things down.
25         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
26         marker to nowhere when done, since they can slow things down.
28         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
29         when done, since they can slow things down.  Use
30         insert-file-contents-literally instead of insert-file-contents.
32         * lisp/muse-publish.el (muse-publish-markup-tag)
33         (muse-publish-markup-word, muse-publish-markup-footnote)
34         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
35         done, since they can slow things down.
36         (muse-insert-file-or-string, muse-publish-file)
37         (muse-publish-include-tag, muse-published-contents): Use
38         insert-file-contents-literally instead of insert-file-contents.
39         (muse-publish-surround-dl): Remove unused variable.  Track whether
40         a term has been found, and handle that case well.
41         (muse-publish-ensure-blank-line): Use a marker, so that we don't
42         lose our place when adding a newline.  This really fixes the
43         definition list item bug.
44         (muse-publish-markup-list): Since people do seem to want
45         definition lists with no terms, allow this.
47         * lisp/muse.el (muse-with-temp-buffer): Mention
48         `insert-file-contents-literally'.
50 2007-07-28  Michael Olson  <mwolson@gnu.org>
52         * lisp/muse-mode.el (muse-browse-result): Set
53         muse-current-output-style.
54         (muse-mode): Don't duplicate the paragraph-start regexp
55         unnecessarily.
56         (muse-list-edit-minor-mode-map): New variable containing the
57         keymap for Muse list edit minor mode.
58         (muse-l-e-m-m-list-item-regexp): New variable that matches list
59         items for Muse list edit minor mode.
60         (muse-l-e-m-m-insert-list-item,
61         muse-l-e-m-m-i-list-item-indentation)
62         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
63         item functions that change the list item regexp before calling the
64         existing function.
65         (muse-l-e-m-m-data): New variable that keeps track of the fill
66         data that we overwrite when activating Muse list edit minor mode,
67         so that we can restore it if the minor mode is toggled off.
68         (muse-list-edit-minor-mode): New minor mode that is useful for
69         editing lists in other major modes.
70         (turn-on-muse-list-edit-minor-mode)
71         (turn-off-muse-list-edit-minor-mode): New interactive functions
72         that turn Muse list edit minor mode on and off, respectively.
73         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
74         regexps.
76         * lisp/muse-project.el (muse-project-publish-this-file): Set
77         muse-current-output-style.  This fixes a bug when publishing to a
78         style that is not first in the list of styles.  Thanks to Jean
79         Magnan de Bornier for the report.
81         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
82         function that ensures that a blank line exists in the line before
83         point.
84         (muse-publish-markup-list): Use it, rather than
85         `muse-publish-ensure-block'.  This fixes a bug with definition
86         list publishing.  Thanks to meandtheshell for reporting this.
88         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
89         project argument is nil, default to the current project instead of
90         the first project entry in muse-project-alist.  This seems much
91         more sane to me.
93         * lisp/muse.el (muse-forward-list-item): Only check the 'face
94         property if we are in Muse mode or one of its derivatives.  This
95         allows movement on nested lists to work in other modes, and fixes
96         an issue with altering list indentation in
97         muse-list-edit-minor-mode.
99 2007-07-27  Michael Olson  <mwolson@gnu.org>
101         * AUTHORS: Add new authors.
103         * README: Permit Muse to be called "Emacs-Muse".
105         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
107         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
108         involving list items that have an extra blank line in front.
110         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
111         and Emacs-Muse are the same thing.
113 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
115         * lisp/muse-context.el (muse-context-header): Put
116         starttext after the modules who must be in preamble.
117         (muse-context-markup-strings): Fixed mistake in begin-example and
118         end-example.
120         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
121         math environment in ConTeXt when centered: "$$ $$" has to be
122         "\startformula \stopformula".
124 2007-07-26  Michael Olson  <mwolson@gnu.org>
126         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
127         parentheses in URLs.
129 2007-07-24  Michael Olson  <mwolson@gnu.org>
131         * examples/QuickStart.muse (Images): Fix typo where some text
132         existed in the output but not in the example region.
133         (Source Code): Fix another typo.  Explain that publishing from
134         console or X can make a difference.
136         * lisp/muse-context.el (muse-context-pdf-program): New option that
137         determines the program to use for generating PDF files for
138         ConTeXt.
139         (muse-context-pdf-cruft): New option that specifies the extensions
140         of files to remove after generating PDF output successfully.
141         (muse-context-slides-header): Docfix.
142         (muse-context-pdf-generate): Use new options.
144         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
145         save-restriction call.  This was causing a world of hurt when
146         using <lisp> inside of <include>.
148         * texi/muse.texi (ConTeXt): New section that documents how to use
149         the ConTeXt publishing styles.
151 2007-07-23  Michael Olson  <mwolson@gnu.org>
153         * lisp/muse-context.el: New file that provides support for
154         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
155         de Bornier for his work on this.
157         * lisp/muse-docbook.el (muse-docbook-entities)
158         (muse-docbook-bibliography): Remove unneeded save-restriction use.
160         * lisp/muse-latex2png.el (muse-publish-latex-tag):
161         s/contex/context/.
163         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
164         (muse-latex-bibliography): Remove call to `widen', since it is not
165         needed anymore.  Remove unneeded save-restriction use.
166         ("slides", "slides-pdf"): Indent elements uniformly.
168 2007-07-22  Michael Olson  <mwolson@gnu.org>
170         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
171         * lisp/muse-mode.el (muse-insert-tag):
172         * lisp/muse-project.el (muse-read-project)
173         (muse-read-project-file):
174         * lisp/muse-publish.el (muse-publish-get-style): Use
175         muse-completing-read-function.
177         * lisp/muse-latex2png.el (muse-publish-latex-tag)
178         (muse-publish-math-tag): Allow the contex style -- which I plan to
179         include soon -- to work with these tags.
181         * lisp/muse.el (muse-completing-read-function): New option that
182         determines which function to call when doing a completing-read.
184 2007-07-15  Michael Olson  <mwolson@gnu.org>
186         * lisp/muse-journal.el (muse-journal-html-entry-template)
187         (muse-journal-rdf-entry-template)
188         (muse-journal-rss-entry-template): Mention that this can be text
189         or a filename.
190         (muse-journal-rdf-entry-template, muse-journal-rss-header)
191         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
192         newlines to make the output look nicer.
193         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
194         Use muse-insert-file-or-string for the entry templates, rather
195         than muse-insert-markup.  This allows <lisp> and <markup> tags to
196         be acted on.  Thanks to Scott Hyde for the report.
197         (muse-journal-html-munge-buffer): Escape quote of the day using
198         entire-document specials before snarfing it.  Mark entire template
199         as read-only -- this fixes an incorrect escaping bug.  Remove
200         read-only properties before replacing template matches so that
201         they can still be escaped with entire-document specials later on.
202         (muse-journal-rss-munge-buffer): Make sure that title is escaped
203         properly.
204         (muse-journal-markup-tags): Rename from
205         muse-journal-latex-markup-tags, because we will use it for
206         journal-rss-entry as well.
207         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
208         end-quote-item.
209         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
210         html.
211         ("journal-latex", "journal-pdf", "journal-book-latex")
212         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
213         muse-journal-latex-markup-tags.
214         ("journal-rss-entry"): New style that is used by journal-rss and
215         journal-rdf to mark up individual entries.  It is needed so that
216         we can do something meaningful with the qotd tag.
217         (muse-journal-rdf-summarize-entries): Set this to nil by default,
218         because it is annoying.  Update docs to mention this.
219         (muse-journal-rss-summarize-entries): Docfix.
221         * lisp/muse-publish.el (muse-insert-file-or-string): Use
222         muse-publish-markup-header-footer-tags.  I'm not quite sure how
223         this change got reverted.
224         (muse-markup-tag-info): Make into a function.  Move common code
225         here, rather than duplicating it in two places.  Deal with case
226         where muse-publish-use-header-footer-tags is non-nil.
227         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
228         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
229         warning.
230         (muse-publish-use-header-footer-tags): New variable that indicates
231         whether we should use just the header and footer tags, rather than
232         the full set.
233         (muse-insert-file-or-string): Bind
234         muse-publish-use-header-footer-tags to t.
235         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
236         Simplify call to muse-markup-tag-info.
237         (muse-publish-mark-up-tag): Bind
238         muse-publish-use-header-footer-tags to nil.
240         * texi/muse.texi (Journal): Update for recent changes.
242 2007-07-14  Michael Olson  <mwolson@gnu.org>
244         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
245         delete the remainder of the buffer, since this causes the
246         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
247         the report and the suggested fix.
249         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
250         beginning of table-el regexp.  This fixes a bug where Muse stalls
251         when trying to publish a malformed table.  Thanks to Ye Wenbin for
252         the report and the suggested fix.
254 2007-07-12  Michael Olson  <mwolson@gnu.org>
256         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
257         default, rather than the empty string.  This really fixes the bug
258         that occurred when using Muse with muse-project-alist set to nil.
259         Thanks to Jonathan Underwood for the report.
260         (muse-wiki-update-interwiki-regexp): Set
261         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
262         defined.
263         (muse-wiki-handle-implicit-interwiki)
264         (muse-wiki-handle-explicit-interwiki): Handle case where
265         muse-wiki-interwiki-regexp is nil.
267 2007-07-10  Michael Olson  <mwolson@gnu.org>
269         * lisp/muse-mode.el (muse-grep): Abort search if the current
270         project contains no directories.
272         * lisp/muse-project.el (muse-project-file-alist): If
273         muse-project-alist is not defined, or project is nil, return nil
274         right away.  This ought to fix a bug that occurred when using Muse
275         with muse-project-alist set to nil.
276         (muse-project-of-file): Make sure muse-project-alist is not nil.
277         (muse-project-save-buffers): Make sure project is not nil.
279         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
280         case where muse-project-alist is nil.
282         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
283         for XEmacs, since color-theme.el is poorly behaved, and defines
284         its own replace-in-string.  Bad color-theme.el -- no cookie for
285         you.
287 2007-07-01  Michael Olson  <mwolson@gnu.org>
289         * Makefile (.PHONY): Update for new debian package rules.
291         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
293         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
294         Use save-restriction properly.
295         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
297         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
298         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
299         properly.
300         (muse-latex-bibliography): Re-indent.
302         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
303         higher.  This fixes an error at startup with some versions of
304         Emacs.
305         (muse-publish-cite-tag): Re-indent.
307         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
308         to the end of the link part, so as to exclude the description from
309         the match.  This fixes a bug with three-part links that have
310         descriptions.  Thanks to everyone who pointed it out.
312 2007-06-18  Michael Olson  <mwolson@gnu.org>
314         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
315         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
316         1.1 specific markup strings.
317         (muse-html-insert-anchor): Use 'anchor string, rather than
318         hard-coding it.  Thanks to Chris Corsair for the suggestion.
319         ("xhtml1.0"): New style that is an alias for the xhtml style.
320         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
322 2007-06-17  Michael Olson  <mwolson@gnu.org>
324         * examples/QuickStart.muse: Make images local so that the Info
325         version of this document works.  Add <example> for the Literal
326         paragraphs chapter, so that it is clear what is happening.
328         * Makefile: Add elpa target, which is used for building an ELPA
329         package for Muse.
331         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
332         building ELPA packages.
334         * examples/Makefile (%.html, %.pdf, %.info): Add message to
335         indicate what we are publishing.
336         (realclean distclean fullclean): Remove all TeX crud.
338         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
339         that the Info version of QuickStart can publish correctly.
341         * lisp/muse-latex.el (muse-latex-slides-header)
342         (muse-latex-lecture-notes-header): Docfix.
344         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
345         the list of things to ignore.
347         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
348         variable.
350         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
351         default to nil, since texinfmt.el is a serious nuisance.
352         (muse-texinfo-markup-strings): Add newlines to begin-example and
353         end-example.
354         (muse-texinfo-decide-specials): Also escape URL-type specials in a
355         whole slew of other contexts.
357         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
358         muse-xml.
360         * lisp/muse-xml.el (muse-xml-footer): Docfix.
362         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
364 2007-06-16  Michael Olson  <mwolson@gnu.org>
366         * etc/IDEAS.muse: Add some ideas from David D. Smith.
368         * examples/QuickStart.muse: Overhaul.
370         * lisp/muse-project.el (muse-project): Call the last part of a
371         muse-project-alist entry "Output styles" rather than "styles".
373         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
374         where we have a pipe character at the beginning of line.
376         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
377         causing tables to not be sorted at all.
379         * texi/muse.texi: Overhaul.  It would be too time-consuming to
380         list all of the changes here.  The "Getting Started" and
381         "Projects" chapters, in particular, were heavily revised.
383 2007-06-15  Michael Olson  <mwolson@gnu.org>
385         * NEWS: Update.
387         * examples/QuickStart.muse: Mention new features.
389         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
390         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
391         terminal, and C-c TAB is more important.  Most people will not
392         want to toggle images on and off that often.
394         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
395         C-i as well, so that it works in the terminal.
397         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
398         look a bit tidier when removing the region.
400         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
401         list regexp part before other parts.
402         (muse-ol-item-regexp): New regexp that specifies how to match an
403         ordered list item.
404         (muse-ul-item-regexp): New regexp that specifies how to match an
405         unordered list item.
406         (muse-table-field-regexp): New regexp that specifies how to match
407         a definition list entry.
409         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
410         lack of support for @headitem in texinfmt.el.
412         * lisp/muse.el: Wrap muse-line-beginning-position and
413         muse-line-end-position in `eval-and-compile', since they are now
414         used in muse.el.
415         (muse-list-item-type): Use a simpler algorithm for detecting which
416         kind of list item we have.  This fixes a bug where a number in a
417         definition list term was being detected incorrectly as an ordered
418         list item.  Fixes bug #6250.
419         (muse-forward-list-item): Get the entire line with the list item.
420         For some reason, Emacs 21 was not populating match 2 correctly,
421         unlike Emacs 22, so this workaround was needed.
423         * texi/muse.texi: (Keystroke Summary): Remove C-c
424         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
425         alternative keybinding to the C-c TAB stuff.  Mention
426         muse-colors-toggle-inline-images.
428 2007-06-14  Michael Olson  <mwolson@gnu.org>
430         * README: Mention that RelaxNG schema is in etc/ directory.
432         * etc/emacs-wiki-migration.txt: New document that explains how to
433         migrate from emacs-wiki to Muse.
435         * etc/muse.rnc: Increment version number to 1.0.  Fix several
436         nested emphasis and nested lists edge cases.  Move here from
437         examples/.
439         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
440         same thing as C-c C-S-t, since the former works better in the
441         console.  Thanks to Leo for the suggestion.
443         * lisp/muse-publish.el (muse-publish-markup-table)
444         (muse-publish-markup-table-el): Include a newline in the return
445         string, so that paragraph detection does not get confused.
447         * lisp/muse.el (muse-with-temp-buffer): Docfix.
449         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
450         keybinding.
452 2007-06-13  Michael Olson  <mwolson@gnu.org>
454         * etc/IDEAS.muse: Mark three-part-links item as done.
456         * experimental/muse-message.el: Remove guard for muse-define-style
457         calls.
459         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
460         markup rules were being interpreted in reverse order.  This should
461         make implicit interwiki links work properly again.
462         (muse-link-face): Strip anchor from end of a path, so that this
463         works with anchors in interwiki links.
464         (muse-colors-insert-image): Catch error that occurs in Emacs 21
465         when an image does not exist.
467         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
468         anchors.
469         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
470         interwiki links work.  Thanks to Jim Ottaway for the initial
471         implementation.
472         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
473         links work.
475         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
476         about match 0.
477         (muse-handle-explicit-link): Docfix: this does not modify the
478         match data.
479         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
480         that has the regexp in its car.
482 2007-06-12  Michael Olson  <mwolson@gnu.org>
484         * README: Document new etc/ directory.
486         * etc/IDEAS.muse: Install things from new contributors just after
487         the 3.03 release, since I won't have time to review the code
488         before the release.  Move to new etc/ directory.  Slides
489         publishing has been installed.
491         * lisp/muse-latex.el (muse-latex-slides-header): New option that
492         determines the header to use for publishing slides.
493         (muse-latex-lecture-notes-header): New option that determines the
494         header to use for publishing lecture notes.
495         (muse-latex-slides-markup-tags): New option containing tags to use
496         when publishing slides.
497         (muse-latex-permit-contents-tag): Move higher in file.
498         (muse-latex-slide-tag): New function to publish the <slide> tag.
499         ("slides", "slides-pdf"): New publishing styles that create slides
500         using Beamer.
501         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
502         create lecture notes using Beamer.
504         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
505         since otherwise Planner is not happy when `plan' is called during
506         init.  Remove stray quote from autoload snippet.
508 2007-06-11  Michael Olson  <mwolson@gnu.org>
510         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
511         autoload, rather than having it exist at top-level.  Thanks to Leo
512         for the suggestion.
513         (muse-update-file-extension): Docfix.
515 2007-06-10  Michael Olson  <mwolson@gnu.org>
517         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
518         URLs were being removed during publishing.  Thanks to everyone who
519         reported this.
521 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
523         * lisp/muse-book.el
524         * lisp/muse-docbook.el
525         * lisp/muse-latex.el
526         * lisp/muse-publish.el: added support for <cite> element which
527         denotes in-text citations
529         * lisp/muse-html.el
530         * lisp/muse-groff.el
531         * lisp/muse-texinfo.el
532         * lisp/muse-xml.el: added support for <cite> element (stub)
534 2007-06-06  Michael Olson  <mwolson@gnu.org>
536         * lisp/muse-regexps.el (muse-table-line-regexp)
537         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
538         regexps so that they work with XEmacs 21.  Thanks to Adrian
539         Tritschler for the report.
541         * texi/muse.texi: Update copyright years.
542         (HTML): Document muse-xhtml-style-sheet.  Thanks
543         to thorne for noticing.
544         (Development): Change archive year to 2006.  Thanks to Adrian
545         Tritschler for noticing.  So *that's* why some people had the 2005
546         version ....
548 2007-06-05  Michael Olson  <mwolson@gnu.org>
550         * Makefile (install-info): Remove $(MANUAL).info part, since this
551         is taken care of already by texi/Makefile.  Thanks to Leo for the
552         report.
554         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
555         read-only properties to qotd contents, so that they don't get
556         double-escaped.  Thanks to Leo for the report.
558 2007-06-04  Michael Olson  <mwolson@gnu.org>
560         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
561         -- that is, Tramp or ange-ftp -- file, then do not call
562         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
563         Fixes bug #5115.
565         * lisp/muse-html.el (muse-html-insert-contents): Add
566         documentation.  Handle case where heading is read-only, but has
567         muse-contents property.  Remove the muse-contents property for any
568         heading we come across so as to avoid double-including an item in
569         an outer table of contents.
570         (muse-html-denote-headings): New function that denotes whether a
571         heading is not read-only by adding the muse-contents property to
572         it.
573         (muse-html-munge-buffer): If we are not to generate contents,
574         still denote headings, in case some outer layer wants to generate
575         contents for our headings.  This should fix a bug with table of
576         contents and the <include> tag.  Thanks to thorne for the report.
578         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
579         muse-publish-generate-contents and set it to nil.  This should
580         do the right thing when using <include> tags.
582 2007-06-02  Michael Olson  <mwolson@gnu.org>
584         * NEWS: Update for non-inlined image change and support for
585         table.el style tables.
587         * examples/Makefile (clean): Clean backup files.
589         * examples/QuickStart.muse (Images): New section that describes
590         how to inline and not inline images.
592         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
593         touch images that have "URL:" in front of them.
595         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
596         "URL:".  Use the identity function to resolve, since we don't want
597         to rip "URL:" out while publishing, due to some magic that depends
598         on that text.
599         (muse-browse-url-url): New function that browses URLs that have
600         "URL:" in front of them, by removing the "URL:" part and
601         reprocessing the remainder.
603         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
604         (muse-publish-url): Recognize images in the description before
605         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
606         for the suggested workaround.
607         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
608         default value.
609         (muse-publish-classify-url): If target begins with "URL:" return
610         type url.
611         (muse-publish-strip-URL): New function that strips "URL:" from the
612         beginning of a string.  This is used to remove URL: from the link
613         description.  * texi/muse.texi (Markup Strings): Clarify the
614         meanings of image-link, link, and link-and-anchor.
615         (muse-publish-markup-regexps): Move normal table rule to 2350.
616         Rule 2300 is now a regexp that matches table.el-style tables.
617         (muse-publish-markup-functions): Add table-el entry.
618         (muse-publish-table-el-table): New function that given a variant,
619         publishes a table.el-style table using the table in the matched
620         region.
621         (muse-publish-markup-table-el): New function that determines
622         whether the table.el-style table can be published, and what
623         variant to use.
625         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
626         the borders of table.el-style tables.
628         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
629         the table has sufficient whitespace in front of it.
631         * texi/muse.texi (Images): Update for new non-inlined image
632         ability and provide example.
634 2007-05-31  Michael Olson  <mwolson@gnu.org>
636         * NEWS: Add example for setting `muse-html-table-attributes'.
638         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
639         Publish multiple tbody tags if there is a horizontal separator
640         after the heading, because that is valid HTML after all.
642 2007-05-30  Michael Olson  <mwolson@gnu.org>
644         * NEWS: Update.
646         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
647         horizontal separators in tables.
649         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
650         horizontal separators in tables.
651         (muse-publish-trim-table): New function to remove initial and
652         final blank columns from a table.
653         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
654         with horizontal separators, aka "hlines".
656         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
657         defines the syntax of a horizontal separator in a table.
659         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
660         horizontal separators.  Publish header lines correctly.
662         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
663         where we have nonnumbers as a row type.  This ignores sorting for
664         hlines.
665         (muse-xml-markup-table): Deal with horizontal separators.  If the
666         markup supports table groups, make hlines separate table groups.
667         Otherwise, ignore them, since they cannot be marked up.  Together,
668         these changes allow us to support orgtbl-mode tables.  Thanks to
669         Carsten Dominik for the suggestion.
671 2007-05-26  Michael Olson  <mwolson@gnu.org>
673         * lisp/muse-project.el (muse-project-alist-styles): Allow for
674         other things to be added to each generated style as well.  For
675         example, this permits me to add
676         :base-url "http://blog.mwolson.org/"
677         for my blog.
679 2007-05-25  Michael Olson  <mwolson@gnu.org>
681         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
682         way of building Debian packages that preserves the original
683         release tarball and is more modular.
684         (debrevision, debrelease): Remove.
685         (dist): No need to remove the debian/ directory, since it is now
686         in its own branch.
687         (debprepare): Copy over debian/ directory properly.
689         * NEWS: Update.
691         * examples/Makefile (clean): Remove QuickStart.texi, in case
692         something went wrong during the build.
693         (%.pdf): Publish the example using the normal pdf style, rather
694         than info-pdf.
696         * examples/QuickStart.muse: Add myself to the authors list.
698         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
699         sufficient blank lines before the tag.
701         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
702         we have sufficient blank lines before the tag.
704         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
705         specifies the program to call in order to generate PDF content
706         from LaTeX content.
707         (muse-latex-pdf-cruft): New option that specifies the extensions
708         of files to remove after generating PDF output successfully.
709         (muse-latex-pdf-generate): Use these new options.  Work around the
710         annoying edge case where a tilde character exists in the filename
711         or directory path -- now this can only error out when the relative
712         path from the output file to the source file contains a tilde,
713         which is far less likely.
715         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
716         muse-publish-ensure-block here after all, because <lisp> et al may
717         occur inline as part of other things.
719         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
720         occur after full-document escaping, rather than before.  This
721         prevents automatically-inserted Texinfo code from being escaped.
722         (muse-texinfo-pdf-generate): Rewrite to call
723         `muse-latex-pdf-generate' with pdftex as the generating binary,
724         because texi2pdf suffers irredeemably from the tilde edge case
725         mentioned above.
727 2007-05-24  Michael Olson  <mwolson@gnu.org>
729         * NEWS: Drop vague entries and position interesting entries closer
730         to the top of each section.  Update for new changes.
732         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
733         and bzr metadata directories to the list of things to ignore.
735         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
736         `muse-publish-ensure-block-tag', since we will use it for more
737         than just tags.
738         (muse-publish-markup-list, muse-publish-verse-tag)
739         (muse-publish-quote-tag, muse-publish-example-tag)
740         (muse-publish-markup-attribute): Use it.  This fixes a bug that
741         can occur when these types of markup occur immediately after a
742         paragraph.  It's good to have defined behavior!
744         * texi/muse.texi (Markup Strings): Mention new argument for
745         link-and-anchor.
747 2007-05-19  Michael Olson  <mwolson@gnu.org>
749         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
750         published footnotes and footnote references.  Thanks to Scott
751         Jaderholm for the idea.
753         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
754         link-and-anchor, on the recommendation of the original submitter.
756 2007-05-14  Michael Olson  <mwolson@gnu.org>
758         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
759         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
760         suggestion.
762         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
763         file extension as the fourth argument.
765         * README, texi/muse.texi (Getting Help and Reporting Bugs):
766         Mention the new muse-el-logs mailing list.
768 2007-05-13  Michael Olson  <mwolson@gnu.org>
770         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
771         "\`" here.  This fixes a problem with publishing custom URLs.
773 2007-05-12  Michael Olson  <mwolson@gnu.org>
775         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
776         update the list if the current buffer is associated with a file.
777         This fixes a bug with M-x muse-publish-region in a temporary
778         buffer.
780 2007-05-01  Michael Olson  <mwolson@gnu.org>
782         * lisp/muse-publish.el (muse-publish-region): Remove read-only
783         properties from the published buffer, so that the results can be
784         manually tweaked.
786 2007-04-23  Michael Olson  <mwolson@gnu.org>
788         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
789         find the footnote that goes with a reference, leave the reference
790         as-is.  This fixes an error where control characters could be
791         placed in a published document.
793 2007-04-22  Michael Olson  <mwolson@gnu.org>
795         * IDEAS.muse: Add muse-slides.el to list of things to include
796         before release.
798         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
799         character.
800         (muse-protocol-find): Find protocols correctly.  Rewrite to use
801         catch/throw.
802         (muse-browse-url): Don't concatenate "\`" here.  Together, this
803         fixes a bug with browsing woman:// links.
805         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
806         where entry-dir has a trailing backslash.
807         (muse-project-publish-file): If a style is malformed, skip it and
808         display a warning message.  This should help people figure out
809         where the problem is.
811 2007-04-21  Michael Olson  <mwolson@gnu.org>
813         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
814         yet-to-be-included "contex" publishing style, use "$$" rather
815         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
816         this out.
818 2007-04-20  Michael Olson  <mwolson@gnu.org>
820         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
821         variable that causes the :before and :before-end hooks to be
822         ignored when non-nil.
823         (muse-publish-markup-region): Use it.  Also, guarantee that point
824         is at end of region after publishing.
825         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
826         variable.
828 2007-04-19  Michael Olson  <mwolson@gnu.org>
830         * IDEAS.muse: New file containing a list of ideas we have for new
831         features, or patches that have yet to be applied.
833         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
834         be so confusing.
836         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
837         docstring.
839         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
840         <literal> tags with muse-publish-literal-tag, rather than
841         muse-publish-mark-read-only.
842         (muse-publish-literal-tag): New function that publishes the
843         <literal> tag.  It adds the ability to add the optional "style"
844         and "exact" elements, which cause text to only be included if the
845         current publishing style matches some criteria.  The text will be
846         removed otherwise.  Thanks to Jim Ottaway for the implementation.
847         (muse-publish-mark-up-tag): Let the <markup> tag take the
848         additional optional elements "style" and "exact", with much the
849         same effect as the <literal> improvements, but after calling
850         "function" or publishing the region first.  Make it possible to
851         put <content> tags in <markup> regions in HTML publishing.
853 2007-04-12  Michael Olson  <mwolson@gnu.org>
855         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
856         that a blank line always exists after a heading.  This fixes a bug
857         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
858         for the report.
860         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
861         detection regexp to that which is used in Docbook and HTML
862         publishing styles.
864 2007-04-02  Michael Olson  <mwolson@gnu.org>
866         * README (muse-el-announce): Make a listing of mailing lists,
867         rather than pointing to the old EmacsWikiMailingList page.  Thanks
868         to Andreas Roehler for noticing.
870 2007-04-01  Michael Olson  <mwolson@gnu.org>
872         * lisp/muse-publish.el (muse-publish-date-format): Add
873 `       customization type and group.
874         (muse-publish-region): New interactive function that publishes a
875         region to a new buffer.
877         * texi/muse.texi: Use "document" rather than "manual".
879 2007-03-31  Michael Olson  <mwolson@gnu.org>
881         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
882         expression (muse-style-derived-p "latex" (muse-style "latex"))
883         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
884         for the catch.
886 2007-02-25  Michael Olson  <mwolson@gnu.org>
888         * lisp/muse-publish.el (muse-publish-date-format): New option that
889         specifies how to format the date when publishing Muse pages.
890         Thanks to Thomas Gehrlein for the suggestion.
891         (muse-publish-markup-buffer): Use it.
893 2007-02-23  Michael Olson  <mwolson@gnu.org>
895         * README: Add Prerequisites section to mention which versions of
896         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
897         the suggestion.  Update link destination for Muse's page on
898         emacswiki.org.
900 2007-02-15  Michael Olson  <mwolson@gnu.org>
902         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
903         be not just at beginning of line.  This fixes an error with the
904         <class> tag.  Thanks to Jim Pivarski for the report.
906 2007-02-14  Michael Olson  <mwolson@gnu.org>
908         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
909         whether something is an image before checking to see if it is a
910         URL.  Thanks to ITSUMI ken-ichi for the report.
912 2007-02-13  Michael Olson  <mwolson@gnu.org>
914         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
915         comments that have no text better.  Thanks to fang.lungang for the
916         report.
917         (muse-publish-markup-comment): Deal with case where no comment
918         text is provided.
920 2007-01-23  Michael Olson  <mwolson@gnu.org>
922         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
923         that ensures that at least one blank line exists at the given
924         position.  This is used to avoid paragraph detection problems when
925         block-level tags like <example> immediately follow a paragraph.
926         Thanks to Hans Ekbrand for the report.
927         (muse-publish-example-tag): Use it.
929 2007-01-19  Michael Olson  <mwolson@gnu.org>
931         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
932         previous blank line if we are publishing in Latex.  Otherwise,
933         that wouldn't be the right thing, so leave it be.
935 2007-01-17  Michael Olson  <mwolson@gnu.org>
937         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
938         multiple centered math lines on the same line; keep them on
939         different lines.  Use \[ math-text \] instead of $$math-text$$,
940         since the latter seems to be deprecated.  Thanks to Jody Klymak
941         for the pointer.
943 2007-01-15  Michael Olson  <mwolson@gnu.org>
945         * lisp/muse-latex2png.el (muse-publish-latex-tag)
946         (muse-publish-math-tag): Publish region read-only when current
947         style is Latex-derived, so that Muse does not escape it.
948         (muse-publish-math-tag): If 6 or more spaces come before the tag,
949         surround the region with "$$" rather than "$".  This is the Muse
950         syntax for something centered, so it should be a good fit.
952 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
954         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
955         protocol.
956         (muse-browse-url-man): Change man page URL format.  The code is
957         simpler when the section is left inside parentheses.
958         (muse-browse-url-woman): New function.
960 2007-01-14  Michael Olson  <mwolson@gnu.org>
962         * AUTHORS: Bookkeeping.
964         * lisp/muse-latex2png.el: Associate <math> tag with
965         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
966         Klymak for the report.
967         (muse-publish-math-tag): Use muse-insert-markup for the "$"
968         characters, so they don't get escaped.
970         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
971         make muse-style-derived-p easier to implement.
972         (muse-style-derived-p): If the style is not provided, fetch it and
973         check to see if the car is a string.  This should fix the other
974         problem that was reported.
976         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
977         explains a case where setting muse-file-extension to nil can cause
978         unexpected behavior.
980 2007-01-09  Michael Olson  <mwolson@gnu.org>
982         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
983         comments higher priority than tags.  Thanks to Stefan van der Walt
984         for the report.
986 2007-01-08  Michael Olson  <mwolson@gnu.org>
988         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
989         argument rather than calling match-string.  Thanks to Stefan van
990         der Walt for the report.  This should fix a bug with publishing
991         <include file="..." markup="example">.
993 2007-01-06  Michael Olson  <mwolson@gnu.org>
995         * Makefile (debclean): New rule split from debrevision and
996         debrelease.
997         (debbuild): Take distributor into account.
999         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1000         vendor/distributor we are building for.
1002 2007-01-04  Michael Olson  <mwolson@gnu.org>
1004         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1005         line.
1007         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1008         point to muse-publish-src-tag by default, since <src> and
1009         <example> have different parameters.
1010         (muse-publish-src-tag): New barebones publishing function for
1011         <src>, which is superseded when publishing in an HTML-based style.
1013 2007-01-03  Michael Olson  <mwolson@gnu.org>
1015         * lisp/muse-html.el (muse-html-src-tag): Document.
1017         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1018         command that calls a given tag on the current buffer.  Attributes
1019         may be passed.
1020         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1021         it.
1022         (muse-publish-srcify-buffer): New function that allows
1023         markup="src" in the <include> tag.
1024         (muse-publish-get-and-delete-attr): New macro that gets an
1025         attribute from a list and removes the first instance of that
1026         attribute from said list.
1027         (muse-publish-markup-attribute): Handle markup="src".
1028         (muse-publish-command-tag, muse-publish-include-tag): Use
1029         muse-publish-get-and-delete-attr.  This allows the remaining
1030         attributes to be passed.
1032         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1033         as changes to <command> and <include>.
1035 2006-12-30  Michael Olson  <mwolson@gnu.org>
1037         * NEWS: Update.
1039         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1040         from muse-publish-math-tag to avoid conflict with
1041         muse-latex2png.el.
1043 2006-12-23  Michael Olson  <mwolson@gnu.org>
1045         * lisp/muse-latex2png.el: Update header, since this has been
1046         rewritten sufficiently to not need an assignment from the original
1047         author.
1048         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1049         (muse-latex2png): Use two underscores to separate prefix and hash.
1050         (muse-latex2png-region): New function split from
1051         muse-publish-latex-tag that can be used easily by other code.
1052         Detect whether we are using an HTML-based publishing style, and
1053         insert a simpler markup if we are not.  If we are using a
1054         Latex-based publishing style, do not generate an image, and leave
1055         the region alone.  Return the path of the generated image, in case
1056         other functions want to use this programmatically.
1057         (muse-publish-latex-tag): Set a default prefix based on the name
1058         of the current file.
1059         (muse-publish-math-tag): New tag that surrounds the region with
1060         "$" characters, so that it becomes a Latex math region, and then
1061         publishes it.
1063         * lisp/muse-publish.el (muse-style-derived-p): New function that
1064         returns non-nil if a given style, or the current style if omitted,
1065         is equal to or derived from the given base style.  This is useful
1066         in <lisp> tags, because it allows the user to specify markup that
1067         is only to be inserted for one particular style.
1069 2006-12-22  Michael Olson  <mwolson@gnu.org>
1071         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1072         (muse-html-src-tag): New function which publishes the <src> tag.
1073         Thanks to Clinton Ebadi and Charles Wang for the initial
1074         implementations.
1076         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1078 2006-12-21  Michael Olson  <mwolson@gnu.org>
1080         * examples/johnw/muse-johnw.el: Update for preferred
1081         muse-derive-style usage.  Rename to muse-init.el.
1083         * examples/mwolson/muse-init.el: Update.
1085         * lisp/muse-book.el (muse-book-publish): New function split from
1086         muse-book-publish-project.  This is used in the definitions for
1087         the book-latex and book-pdf styles.
1088         (muse-book-publish-p): New function split from muse-book-publish.
1089         (muse-book-get-directives): New function that retrieves the
1090         publishing directives from the given file.
1091         (muse-book-publish): Use muse-book-get-directives to set the title
1092         if no title was specified.
1094         * lisp/muse-project.el (muse-project): Add :publish-project entry
1095         to widget.
1096         (muse-read-project, muse-project-find-file): Message fix.
1097         (muse-project-publish-file-default): New function split from
1098         muse-project-publish-file.
1099         (muse-project-publish-file): Allow file-level publishing function
1100         to be specified by the :publish element.  The default is
1101         muse-project-publish-file-default.
1102         (muse-project-publish-default): New function split from
1103         muse-project-publish.
1104         (muse-project-publish): Allow project-level publishing function to
1105         be specified by :publish-project element.  The default is
1106         muse-project-publish-default.
1108         * lisp/muse-publish.el (muse-publish-file): Message fix.
1110         * texi/muse.texi (Book): Mention new way to publish books and
1111         provide an example, since the process may be non-obvious.
1113 2006-12-20  Michael Olson  <mwolson@gnu.org>
1115         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1116         content-modifying code from the rest of
1117         muse-docbook-finalize-buffer.
1119         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1120         muse-groff-finalize-buffer, since it adds content to the buffer.
1122         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1123         content-modifying code from the rest of muse-html-finalize-buffer.
1124         This fixes a bug when using <include> with <content> tags.
1126         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1127         (muse-journal-latex-munge-buffer)
1128         (muse-journal-rss-munge-buffer): Rename, since they add content to
1129         the buffer.
1131         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1132         muse-latex-finalize-buffer, since it adds content to the buffer.
1134         * lisp/muse-mode.el:
1135         * lisp/muse-project.el:
1136         * lisp/muse-publish.el:
1137         * lisp/muse.el: Fix recursive load error.
1139         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1140         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1142         * lisp/muse-wiki.el: Comment cleanup.
1144         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1146 2006-12-17  Michael Olson  <mwolson@gnu.org>
1148         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1149         Remove the definition of \comment, since Latex already has comment
1150         syntax.
1151         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1152         than our own.  Thanks to Ryan Stutsman for pointing this out.
1154 2006-12-02  Michael Olson  <mwolson@gnu.org>
1156         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1157         that this can generate a proper table of contents for Planner HTML
1158         publishing.
1160 2006-12-01  Michael Olson  <mwolson@gnu.org>
1162         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1163         using a very old Emacs, avoid an infinite loop that could occur
1164         when the regexp is an empty string.
1166 2006-11-26  Michael Olson  <mwolson@gnu.org>
1168         * NEWS: Bring up to date.
1170         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1171         list issues and multiple-stanza verse issues.  This takes care of
1172         all of the markup issues I was worried about.
1174         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1175         (muse-project-publish-private-files): New option that indicates
1176         whether files with private filesystem permissions should be
1177         published.  The default is to publish them, since it avoids
1178         confusion in new users.
1179         (muse-project-private-p): Use it.
1181 2006-11-19  Michael Olson  <mwolson@gnu.org>
1183         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1184         style is found, which means that the link is not a Muse page, do
1185         not add a suffix or prefix to it.  This should fix the
1186         "[[thing.owl]]" bug that Phillip Lord reported.
1188         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1189         removing unused 2nd argument.
1191 2006-11-17  Michael Olson  <mwolson@gnu.org>
1193         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1194         latex publishing where nested enumerated lists would be squashed
1195         together at the end.
1197 2006-11-16  Michael Olson  <mwolson@gnu.org>
1199         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1200         list embedded in a definition list look right.  This also allows
1201         for definitions to be separated from their terms, much like the
1202         way HTML does it by default, if the user puts a blank line or a
1203         line break between the term and the definition.  If the term and
1204         definition are on the same line, they will be that way in the
1205         output as well.
1207 2006-11-11  Michael Olson  <mwolson@gnu.org>
1209         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1210         for the report.
1211         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1213 2006-11-07  Michael Olson  <mwolson@gnu.org>
1215         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1216         release candidate for Muse 3.03, available.
1218         * NEWS: Update.
1220 2006-11-06  Michael Olson  <mwolson@gnu.org>
1222         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1223         following a relative link worked even when the path was incorrect.
1225 2006-11-04  John Sullivan  <john@wjsullivan.net>
1227         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1228         muse-follow-name-at-point to reduce collisions with other
1229         modes (Planner).
1231         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1233 2006-11-04  Michael Olson  <mwolson@gnu.org>
1235         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1236         optional, and make interwiki delimiter a regular rather than shy
1237         group.
1238         (muse-wiki-handle-implicit-interwiki): Rename from
1239         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1240         (muse-wiki-handle-explicit-interwiki): New function that is
1241         smarter about where an explicit link ends in a buffer.  This
1242         allows you to refer to page names with invalid Wiki characters,
1243         such as underscores and dashes, merely by enclosing them in double
1244         brackets.  Also, a bug with recognizing project names too loosely
1245         has been fixed.
1247 2006-11-03  Michael Olson  <mwolson@gnu.org>
1249         * lisp/muse-project.el (muse-project-page-file): Make relative
1250         links work as expected, hopefully.
1252         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1253         output style manually, since it will differ from anything in the
1254         publishing style list.
1256 2006-10-30  Michael Olson  <mwolson@gnu.org>
1258         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1259         grouping elements, since that no longer applies.
1260         (muse-colors-custom-tags): Explicitly match against
1261         muse-tag-regexp to get the match-data set the way we want.  This
1262         really fixes the <example> highlighting bug that Stefan reported.
1263         (muse-configure-highlighting): Set the original value to the
1264         symbol, not the modified value.  Re-use modified rules properly.
1266         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1267         introduced yesterday.
1269 2006-10-29  Michael Olson  <mwolson@gnu.org>
1271         * examples/mwolson: Update my example configuration.
1273         * NEWS: Update.
1275         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1276         without a regexp in the first position before iterating through
1277         them to build muse-colors-vector.  This fixes a bug with the
1278         display of <example> tags.  Thanks to Stefan Reichör for the
1279         report.
1281         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1282         files in projects to be linked to.
1284         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1285         to serve as a description for a URL, as long as it differs from
1286         the destination URL.  This fixes the description of WikPage links
1287         in PDF output.
1288         (muse-publish-link-file): Check to see whether the given link
1289         points at a valid file.  If so, return it.  Otherwise, apply other
1290         transforms like prefix and link suffix.
1292         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1293         "/", it is a file or directory, not a Muse page.  Thanks to
1294         Phillip Lord for the suggestion.
1296         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1297         of the current page as the local path, instead of duplicating the
1298         remote file's path.  This probably fixes at least one reported
1299         bug. since it's quite major.
1300         (muse-wiki-update-project-file-regexp)
1301         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1302         passed to regexp-opt, since that can cause Emacs 21 to throw an
1303         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1304         DOT edu for the report.
1305         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1307 2006-10-28  Michael Olson  <mwolson@gnu.org>
1309         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1310         (muse-project-resolve-link): If the given style does not have a
1311         link-suffix, default to suffix.  This fixes a bug I was noticing
1312         when linking to a file that was published in both PDF and HTML
1313         form.
1315         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1316         function that is used as a callback to determine the initial
1317         amount of indentation that the current dl item has.
1318         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1319         and the post-indent value, instead of trying to determine them
1320         both.
1321         (muse-publish-strip-list-indentation): New function stripped from
1322         `muse-publish-surround-text' for readability.
1323         (muse-publish-surround-text): Instead of taking a determine-indent
1324         value, take a determine-indent-func function, which is called just
1325         after finding the next list item.  If we are asked to determine
1326         the amount of indentation, concatenate indent and post-indent the
1327         first time around.  This effectively fixes all known definition
1328         list issues.
1330 2006-10-16  Michael Olson  <mwolson@gnu.org>
1332         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1333         other software -- namely, Planner -- can detect whether they are
1334         using a version of Muse that supports nested tags.
1335         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1336         muse-publish-goto-tag-end.
1338         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1339         Adapt for nested tags.
1341         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1342         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1343         this.
1345         * lisp/muse-publish.el (muse-publish-markup-tag)
1346         (muse-publish-quote-tag): Use muse-goto-tag-end.
1348         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1350 2006-10-15  Michael Olson  <mwolson@gnu.org>
1352         * AUTHORS: Bookkeeping.
1354         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1355         tag.
1357         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1358         tags.
1360         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1362         * lisp/muse-import-docbook.el (muse-import-docbook)
1363         (muse-import-docbook-files): Docfix.
1364         (muse-import-docbook-get-title): Remove cl.el-ism.
1366         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1368         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1370         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1372         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1373         (muse-next-reference, muse-previous-reference): Minor whitespace
1374         changes.
1375         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1376         the suggestion.
1378         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1380         * lisp/muse-publish.el (muse-publish-markup-tags)
1381         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1382         element and make 4th element determine whether tags are nestable.
1383         (muse-publish-goto-tag-end): New function that moves to the end of
1384         a tag.  Handle nested tags when NESTED is non-nil.
1385         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1386         5th element for function.
1387         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1388         this on several scenarios, and it seems to work.
1389         (muse-publish-surround-text): Accept new optional argument
1390         LIST-ITEM which determines the regexp to use for list items.  The
1391         default is to use muse-list-item-regexp.
1393         * muse.texi (Markup Tags): Mention nestable tags.
1395         * NEWS: Mention new files.
1397 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1399         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1400         into Muse format.
1402         * lisp/muse-import-xml.el: New file that provides helper routines
1403         for converting XML-ish files to Muse format.
1405 2006-10-10  Michael Olson  <mwolson@gnu.org>
1407         * NEWS: Update for 3.02.7 bugfix release.
1409 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1411         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1412         using the value in the muse #date directive.
1413         (muse-blosxom-use-metadate): New option that determines whether or
1414         not to use the #postdate directive.
1415         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1416         metadate plugin format.
1418 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1420         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1421         recognised URLs.
1423         * muse.texi: Clarify handling of implicit links by mentioning
1424         which characters can prevent Muse from recognizing something as an
1425         implicit link.
1427 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1429         * lisp/muse-mode.el (muse-next-reference)
1430         (muse-previous-reference): Fix bug #6367 by moving point to the
1431         beginning of the link.
1433 2006-09-26  Michael Olson  <mwolson@gnu.org>
1435         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1436         beginning-of-line.  This should fix a bug that was noticed in
1437         recent Emacs 22 builds.
1439         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1440         eval-and-compile block to avoid a compiler warning.
1442 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1444         * lisp/muse-backlink.el (muse-backlink-split-string):
1445         Compatibility with Emacs versions < 22
1446         (muse-backlink-pending): New internal variable
1447         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1448         that backlinks are inserted at the right time.
1449         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1450         for pending backlink, and that this is the targe page.
1451         (muse-backlink-handle-link): Don’t handle the link if we are
1452         already handling one. Return the link as well as the parent links.
1454 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1456         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1457         #6942 - muse-blosxom-new-entry fails when using tags.
1459 2006-09-14  Michael Olson  <mwolson@gnu.org>
1461         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1462         compiler warning.
1464 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1466         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1467         function: Protect all wikiwords from START to END from further
1468         processing.
1469         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1471 2006-09-13  Michael Olson  <mwolson@gnu.org>
1473         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1474         adopted from Jim Ottaway's patch.  It removes links from the
1475         heading, and then marks the region read-only to inhibit WikiWord
1476         detection.
1478 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1480         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1481         special handling for headings.
1482         (muse-texinfo-remove-links): New function that removes explicit
1483         links from the given strings, replacing them with a description.
1485 2006-09-11  Michael Olson  <mwolson@gnu.org>
1487         * muse.texi (Getting Help and Reporting Bugs): Mention the
1488         muse-el-internationalization mailing list.
1490         * lisp/muse.el (muse-path-sans-extension): New function that acts
1491         like file-name-sans-extension, but guarantees to never modify the
1492         directory part of the path.  Thanks to Evan Monroig for
1493         investigating this.
1495         * lisp/muse-book.el (muse-book-publish-project): Use
1496         muse-path-sans-extension instead of file-name-sans-extension.
1498         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1499         Ditto.
1501 2006-08-30  Michael Olson  <mwolson@gnu.org>
1503         * muse.texi (Blosxom Requirements): Fix typo.
1505         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1506         directories for bzr and darcs.
1508         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1509         contrib/pyblosxom/getstamps.py: Update version and headers.
1511 2006-08-27  Michael Olson  <mwolson@gnu.org>
1513         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1514         nil values before they get to mapconcat.  This fixes a lockup when
1515         muse-wiki-match-all-project-files is nil.
1517         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1518         (muse-wiki-ignore-implicit-links-to-current-page)
1519         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1520         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1521         (muse-wiki-publish-small-title-words)
1522         (muse-wiki-publish-pretty-title): Docfix.
1523         (muse-wiki-update-local-wikiword-regexp): Rename from
1524         muse-wiki-update-local-wikiword-regexp.  Set
1525         muse-wiki-project-file-regexp instead of
1526         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1527         take muse-wiki-use-wikiword into account, since this is a
1528         different concept now.
1529         (muse-wiki-update-wikiword-regexp): Remove.
1530         (muse-wiki-wikiword-regexp): In-line the :set function.
1531         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1533 2006-08-26  Michael Olson  <mwolson@gnu.org>
1535         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1536         for indented list items, ignore blank lines.
1538         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1539         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1540         mapconcat.  This should hopefully fix a problem with large amounts
1541         of files with spaces in their name.  Thanks to Greg Detre for the
1542         report.
1544 2006-08-24  Michael Olson  <mwolson@gnu.org>
1546         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1547         numbers from the argument to format-time-string.  This fixes an
1548         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1550 2006-08-18  Michael Olson  <mwolson@gnu.org>
1552         * lisp/muse-project.el (muse-project-file-entries): Since we are
1553         given a full path, match against the filename as well.  This fixes
1554         an issue where backup files were being added to the file alist.
1556         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1557         from muse-html.el.
1559 2006-08-12  Michael Olson  <mwolson@gnu.org>
1561         * Makefile (.PHONY): Don't use line continuations.
1562         (realclean fullclean): Call realclean in subdirs, not distclean.
1563         (distclean): Don't call realclean, since this would wipe out our
1564         autoloads file.
1565         (dist): Use correct path to autoloads file.
1567         * NEWS: Catch up with the latest changes.
1569         * experimental/Makefile (.PHONY): Wrap long line.
1571         * lisp/Makefile (distclean): Do the same thing as "clean", not
1572         "realclean".
1574         * lisp/muse-project.el (muse-project-get-applicable-style):
1575         Indentation tweak.
1576         (muse-project-ignore-regexp, muse-project-recurse-directory):
1577         Docfix.
1578         (muse-project-of-file): Try the ignored files regexp against the
1579         base filename as well as the entire path.
1581         * lisp/muse-publish.el (muse-publish-this-file): Display message
1582         if the buffer is not associated with any file, so that we avoid
1583         errors later on.
1584         (muse-publish-url-desc): New function taken from muse-publish-url
1585         that causes a URL description to be transformed.
1586         (muse-publish-url): Call muse-publish-url-desc on either the
1587         description or the original URL if it will be used as a
1588         description.  Accept the original URL as an argument, in case it
1589         was transformed earlier.
1590         (muse-publish-insert-url): Pass original URL as an argument.
1591         (muse-publish-markup-link): Make this somewhat easier to follow.
1592         Pass original URL as argument.
1593         (muse-publish-get-style): If the same style is used to publish to
1594         two different directories, prompt the user for which directory to
1595         use.
1596         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1597         latest changes.
1598         (muse-publish-markup-url): Pass original URL as an argument.  This
1599         fixes the "nil" description for bare URLs that was in 3.02.91.
1600         Nothing like finding a bug just after completing the announcement
1601         of a release.
1603         * lisp/muse.el: Use defalias whenever convenient.
1604         (muse-version): Set version to 3.02.92 (3.03 RC2).
1606 2006-08-10  Michael Olson  <mwolson@gnu.org>
1608         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1609         style does not derive from any other class, return `t' here.
1610         This, along with the corresponding change to muse-publish.el,
1611         fixes a problem with the table of contents getting inserted
1612         multiple times for custom html-based styles.
1613         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1614         smarter method for table centering that works with XHTML.
1616         * lisp/muse-latex2png.el Rename all functions to have a
1617         "muse-latex2png" prefix.  Turn all variables into customizable
1618         options in the muse-latex2png group.
1619         (muse-latex2png-img-dest): New option specifying where to place
1620         the images.
1621         (muse-latex2png-template): New option containing the template to
1622         use for the surrounding LaTeX code.
1623         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1624         compliance.
1625         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1626         messages when something else goes wrong.  Create the image
1627         subdirectory if it doesn't exist already -- thanks to Christian
1628         Straßer for the report.  Expand the filename properly.
1629         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1630         and filename expansion.
1631         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1632         the default directory properly.
1634         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1635         do not run the same function twice.
1637 2006-08-08  Michael Olson  <mwolson@gnu.org>
1639         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1640         introduced wrong-type-argument error.
1642         * lisp/muse-html.el (muse-html-markup-strings)
1643         (muse-xhtml-markup-string): Cause table definition that contains
1644         image to be center-aligned.  This should fix an issue with images
1645         not being centered when captions are very long.
1647         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1648         whitespace from fields once we have split them up.
1650         * lisp/muse.el (muse-trim-whitespace): New function that strips
1651         leading and trailing whitespace from a string.
1653 2006-08-07  Michael Olson  <mwolson@gnu.org>
1655         * NEWS: Update through patch-95.
1657         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1658         to match the tags.
1659         (muse-colors-explicit-link): Show images in link descriptions if
1660         inlined images are enabled.
1662         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1663         definitions for 'image-with-desc, 'image, and 'image-link.
1664         (muse-docbook-markup-paragraph): If an inlined image begins a
1665         paragraph, insert <para> before it.
1666         (muse-docbook-fixup-images): New function that upper-cases the
1667         "format" attribute of the <imagedata> tag.
1668         (muse-docbook-finalize-buffer): Call it.
1670         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1671         with descriptions as centered tables, with a centered caption
1672         underneath.  The resulting look is consistent with the way that
1673         they are published in the LaTeX style.  Thanks to Jody Klymak for
1674         the suggestion.
1675         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1676         valid way to center a table.
1677         (muse-html-markup-paragraph): Use class="image" instead of
1678         "image-link" for paragraphs that start with an embedded image.
1680         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1681         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1682         suggestion.
1683         (muse-latex-markup-specials-image): New option that enables
1684         escaping of specials in images.  This was split from the URL
1685         specials.
1686         (muse-latex-decide-specials): Handle 'image context.
1687         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1688         of relying on caller to do this for us.
1690         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1691         'image context.
1692         (muse-publish-url): Use 'image context for images.  Use 'image
1693         instead of 'image-link and 'image-link in place of
1694         'url-with-image.  Separate the image file from its extension so
1695         that docbook and texinfo can publish images correctly.
1696         (muse-publish-markup-link): Don't force a description if one is
1697         not given.  This fixes a bug where images without descriptions
1698         were being published as 'image-with-desc instead of 'image.
1700         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1701         images the same as URLs.
1702         (muse-texinfo-markup-strings): Improve image markup to achieve an
1703         effect similar to that of the LaTeX publishing style.  Simplify
1704         'url string.
1706         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1708         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1709         when we have to use the custom version of this function.
1711         * muse.texi (Images): Explain how to toggle inlining of images and
1712         give better examples.  Mention captions and that captioned images
1713         should not be used inside of text paragraphs.
1714         (Markup Strings): Bring up-to-date with the changes made since
1715         3.02.
1717 2006-08-06  Michael Olson  <mwolson@gnu.org>
1719         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1720         in the Emacs source tree.
1722         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1723         in the Emacs source tree.
1725         * ChangeLog.3: New file created from the old ChangeLog.
1727         * Makefile.defs (VERSION): Set to 3.02.91.
1729         * NEWS: Update through patch-84.
1731         * lisp/muse.el (muse-version): Set to 3.02.91.
1733         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1734         attributes.
1735         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1736         delimiter are instead of hard-coding it.
1738         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1739         (muse-mode): Make filling definition lists work better.  This
1740         should fix #5359.
1742         * lisp/muse-publish.el (muse-style-run-hooks): Use
1743         `muse-style-element' instead of `muse-get-keyword' here.  This
1744         should fix #6399.
1746         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1748 See ChangeLog.3 for earlier changes.
1750 ;; Local Variables:
1751 ;; coding: utf-8
1752 ;; End: