Update my example LaTeX header file for the recent changes
[muse-el.git] / ChangeLog
blob649cb6731f81e022c541c47791e52f951bb3fdc8
1 2007-09-22  Michael Olson  <mwolson@gnu.org>
3         * AUTHORS: Bookkeeping.
5         * NEWS: Add entry for the LaTeX image filename escaping changes.
7         * examples/mwolson/templates/header.tex: Update for recent
8         changes.
10         * lisp/muse-latex2png.el (muse-publish-math-tag): Detect whether
11         the tag ends at the end of a line.  If not, do not use "$$" to
12         publish it.  Thanks to Darlan Cavalcante Moreira for the
13         suggestion.
15         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header)
16         (muse-latex-slides-header, muse-latex-lecture-notes-header):
17         Escape specials in the title.  Define a museincludegraphics
18         command, which is able to handle escaped special characters in
19         image filenames.  Thanks to Karl Berry for providing this.
20         (muse-latex-markup-strings): Use museincludegraphics instead of
21         includegraphics in all image-related markup.  Move the width
22         specification over to the museincludegraphics command, rather than
23         specifying it explicitly.  This allows people to change this
24         information in their headers.
25         (muse-latex-markup-specials-image): Escape backslashes, "#", and
26         pipe characters in image filenames.
28         * lisp/muse-wiki.el (muse-wiki-project-files-with-spaces): Fix
29         byte-compiler warning.
31         * lisp/muse.el (muse-update-values): Fix byte-compiler warning.
32         Also, update the value of muse-current-project for all Muse
33         buffers, even if they are new.  This should be more intuitive.  I
34         don't think there are any cases where developers will want this
35         value to be nil.
36         (muse-replace-regexp-in-string): Fix byte-compiler warning.
38 2007-09-19  Michael Olson  <mwolson@gnu.org>
40         * lisp/muse.el (muse-replace-regexp-in-string): Remove fallback
41         code, since it is not needed in any version of Emacs we support,
42         and it also has a couple of bugs that I don't want to waste time
43         fixing.
45 2007-09-18  Michael Olson  <mwolson@gnu.org>
47         * lisp/muse-mode.el (muse-mode): Fix bug involving filling and
48         paragraphs next to headings.  Thanks to Gregory Collins for the
49         initial patch, which I modified.
51 2007-09-17  Michael Olson  <mwolson@gnu.org>
53         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Display
54         message about how images are now displayed.
56 2007-09-10  Michael Olson  <mwolson@gnu.org>
58         * Makefile (elpa): Use texi/dir-template rather than echoing lines
59         to the ELPA dir file for Muse.
61         * texi/dir-template: New file containing template to use when
62         making ELPA dir files.  This fixes a corrupt dir file bug for the
63         Muse ELPA package.  Thanks to Tom Tromey for the report.
65 2007-09-06  Michael Olson  <mwolson@gnu.org>
67         * lisp/muse-html.el (muse-html-class-tag): Fix bug where nested
68         class tags were not working.  We move to just after the beginning
69         of the first class tag, so that we can detect any remaining class
70         tags.  Thanks to Florian Beck for the report.  Fix error that
71         occurred when class tag has no name element.  Thanks to Peter
72         Baranyi for the report.  The correct behavior in this case is to
73         not publish the tag at all.
75         * lisp/muse.el (muse-goto-tag-end): Fix bug where nested tags with
76         arguments were not being detected properly.
78 2007-09-05  Michael Olson  <mwolson@gnu.org>
80         * lisp/muse-context.el (muse-context-decide-specials): Add
81         footnote.
83         * lisp/muse-latex.el (muse-latex-decide-specials): Add footnote.
85         * lisp/muse-publish.el (muse-publish-escape-specials): Mention
86         'footnote in docstring.
87         (muse-publish-markup-footnote): Minor docstring fix.  Escape
88         footnote text properly.  Thanks to Jean Magnan de Bornier for
89         noticing.
90         (muse-publish-url): When checking to see if this is just a plain
91         URL without a description, compare the strings as they were before
92         doing escaping.  This fixes a bug where plain URLs could sometimes
93         be published as if they were URLs with descriptions.
95         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Add
96         footnote.
98 2007-08-29  Michael Olson  <mwolson@gnu.org>
100         * lisp/muse.el (muse-update-values): Reset the value of
101         muse-current-project in all Muse buffers.  This updates the rules
102         in case you want to publish a file after changing its associated
103         muse-project-alist entry.
105 2007-08-27  Michael Olson  <mwolson@gnu.org>
107         * lisp/muse.el (muse-update-values): New function that the user
108         can call after changing muse-project-alist, in order to update
109         various autogenerated values.
111         * texi/muse.texi (Keystroke Summary): Document it.
113 2007-08-25  Michael Olson  <mwolson@gnu.org>
115         * examples/QuickStart.muse: Fix typo in first paragraph.  Thanks
116         to Karl Berry for reporting this.
118         * lisp/muse-mode.el (muse-visit-link-default): Fix bug with
119         browsing anchors that come after a link to them.
121         * texi/muse.texi (Poem): Fix typo in spelling of LaTeX.  Thanks to
122         Karl Berry for reporting this.
124 2007-08-24  Michael Olson  <mwolson@gnu.org>
126         * Release Emacs Muse 3.11.
128         * AUTHORS: Add new authors for contrib files.
130         * NEWS: Add entries for Muse 3.11.
132         * README: Mention that contents of contrib/blosxom and
133         contrib/pyblosxom have different licenses than the rest of Muse.
135         * contrib/blosxom/getstamps.pl: New file that implements fetching
136         timestamps from published Muse files and placing them in a single
137         timestamps file.  That file can then be used by blosxom's metadate
138         plugin.  Thanks to Michael Welle for providing this file, as well
139         as instructions on how to use Muse with Blosxom.
141         * contrib/blosxom/metadate_0_0_3: New file implementing the
142         metadate plugin for blosxom.
144         * contrib/pyblosxom/getstamps.py: Add license text.  It seems safe
145         to assume that the original author wanted this to be distributed
146         with Pyblosxom, and hence use the MIT license like the rest of
147         Pyblosxom.
149         * contrib/pyblosxom/hardcodedates.py: Add license text.
151         * contrib/pyblosxom/make-blog: Change license text to be "This
152         file may be used, distributed, and modified without restriction."
154         * contrib/pyblosxom/metadate.py: New file that implements the
155         PyBlosxom metadate plugin.  Since this can no longer be found at
156         the original author's website, I have included it with Muse.
158         * lisp/muse-blosxom.el: Update location of metadate plugin in
159         header.
161         * lisp/muse-wiki.el (muse-wiki-project-file-regexp): Fix typo in
162         docstring.
164         * texi/muse.texi (Blosxom Requirements): Organize information by
165         subheading and subsubheading, and document how to use the metadate
166         plugin.  Briefly document using Blosxom to serve Muse entries.
168 2007-08-23  Michael Olson  <mwolson@gnu.org>
170         * lisp/muse-html.el (muse-html-insert-contents): Escape heading
171         title just before extracting it.
173         * lisp/muse-latex.el (muse-latex-fixup-headings): New function
174         that removes footnotes from headers, since they are invalid in
175         LaTeX.
176         (muse-latex-munge-buffer): Call it.
178         * lisp/muse-publish.el (muse-publish-markup-heading): Don't escape
179         specials here.  This fixes a bug involving links in headings.
181         * lisp/muse.el (muse-update-file-extension): Simplify, and handle
182         some edge cases.
183         (muse-update-file-extension-after-init): Temporarily bind
184         muse-file-extension to "muse", so that muse-update-file-extension
185         knows what the old value was.  This should fix a bug reported by
186         Jean Magnan de Bornier.
188 2007-08-21  Michael Olson  <mwolson@gnu.org>
190         * lisp/muse-texinfo.el (muse-texinfo-markup-strings): Try to make
191         url, link, and link-and-anchor look better in texi2html output.
192         Thanks to thorne for the report.
194 2007-08-20  Michael Olson  <mwolson@gnu.org>
196         * lisp/muse-journal.el (muse-journal-anchorize-title): Revamp to
197         escape characters rather than discard them.  Use muse-regexp-alnum
198         rather than listing out the characters and numbers.  Thanks to
199         Shunsuke OKANO for the report.
200         (muse-journal-rss-munge-buffer): Make sure that <![CDATA[ stuff is
201         used when generating a summary.
203 2007-08-19  Michael Olson  <mwolson@gnu.org>
205         * examples/mwolson: Update my example settings.
207         * lisp/muse-colors.el (muse-colors-region): Bind
208         muse-colors-region-end to the end of the last line.  This avoids a
209         bug where lines that had emphasis would suddenly become
210         unhighlighted when moving around the buffer.
212         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix bug
213         involving paragraphs after literallayout markup, which is used in
214         <verse> tags.  Thanks to Shunsuke OKANO for the report.
216         * lisp/muse-html.el (muse-html-src-tag): Use
217         muse-delete-and-extract-region.
219         * lisp/muse-import-xml.el: Add require statement.
220         (muse-import-xml-parse-node): Use muse-replace-regexp-in-string.
222         * lisp/muse-protocols.el (muse-browse-url-man): Add require
223         statement.
224         (muse-browse-url-woman): Add require statement.
226         * lisp/muse-publish.el (muse-publish-surround-text): Fix serious
227         bug in definition list publishing.  We were skipping past the
228         initial indented line, and that was causing an erroneous
229         blockquote to be inserted.  This alone merits a new release.
231         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Fix bug with
232         XEmacs' return value for shell-command.
234         * lisp/muse.el (muse-delete-and-extract-region): New compatibility
235         function to deal with XEmacs' lack of the
236         delete-and-extract-region function.
238 2007-08-18  Michael Olson  <mwolson@gnu.org>
240         * AUTHORS: Update.
242         * lisp/muse-publish.el (muse-publish-include-tag): Switch from
243         copy-tree to copy-alist, since Emacs21 does not have the former,
244         and the latter does what we want.
246         * lisp/muse.el: Force-require 'derived, since Emacs21 does not
247         have derived-mode-p in subr.el like Emacs22 does.
249 2007-08-17  Michael Olson  <mwolson@gnu.org>
251         * etc/muse.rnc: Add the <cite> tag.
253         * lisp/muse-context.el (muse-context-slides-header): Clarify what
254         "mystyle" is.
256         * lisp/muse-xml.el (muse-xml-markup-strings): Mark up citations as
257         <cite type="something">.  We'll leave it to the post processing
258         tools to interpret that.
260         * texi/muse.texi (Directives, Blosxom Entries): Use @code{} for
261         directives.
262         (Citations): New section that explains further how to use the
263         <cite> tag.  The text was taken from Marcus Hoenicka's
264         documentation at http://refdb.sourceforge.net/muse.html and
265         modified.
266         (Tag Summary): Link to the Citations section in the entry for
267         <cite>.
268         (ConTeXt): Update the documentation for
269         muse-context-slides-header.
271 2007-08-17  Jean Magnan de Bornier  <jean@bornier.net>
273         * lisp/muse-context.el (muse-context-slides-header): Use #module
274         directive, if it is provided.
275         (muse-context-slides-header): Mention how to use #module.
277 2007-08-16  Michael Olson  <mwolson@gnu.org>
279         * Release Emacs Muse 3.10.
281         * Makefile (dist, debprepare): Pass HEAD argument to git-archive.
282         (upload): Don't depend on release rule.
284         * NEWS: Document remaining changes.
286 2007-08-15  Michael Olson  <mwolson@gnu.org>
288         * NEWS: Document items through 2007-08-12.
290         * lisp/muse-colors.el: Split the muse-directive-or-comment
291         property into two separate properties that are muse-directive and
292         muse-comment.
293         (muse-colors-region-end): Make buffer-local.
294         (muse-colors-delayed-commands): New variable that contains a list
295         of commands to run immediately after highlighting.  This is meant
296         to allow highlighting functions to delay code until later.
297         (muse-colors-region): Apply commands in
298         muse-colors-delayed-commands.
299         (muse-colors-inhibit-tags-in-directives): New variable that
300         determines whether tags are allowed in directives.
301         (muse-colors-custom-tags): Take
302         muse-colors-inhibit-tags-in-directives into account.
303         (muse-unhighlight-region): Remove muse-directive and muse-comment
304         properties.
305         (muse-colors-title): Modify muse-colors-delayed-commands.
306         (muse-colors-title-lisp): New command that gets called after
307         highlighting other things.  This interprets <lisp> tags, and is
308         passed arguments specifying the beginning and end of the region.
309         Thanks to Junichi Uekawa for the report.  The reason we want to do
310         things this way is because this is the behavior we get already
311         when publishing the page.
313         * lisp/muse.el (muse-goto-tag-end): Change to use muse-comment
314         property rather than muse-directive-or-comment.
316 2007-08-14  Michael Olson  <mwolson@gnu.org>
318         * lisp/muse-colors.el: Document all functions and variables.
319         (muse-colors-emphasized, muse-colors-underlined)
320         (muse-colors-verbatim, muse-colors-custom-tags)
321         (muse-colors-explicit-link, muse-colors-implicit-link): Don't trod
322         on comments or the #title directive.
323         (muse-colors-markup): Add comment rule.
324         (muse-colors-implicit-link): Only remove flyspell overlay after we
325         decide whether this is an implicit link, rather than before.
326         (muse-colors-title): Add the muse-directive-or-comment property.
327         (muse-colors-comment): New function that colorizes comments using
328         font-lock-comment-face.
329         (muse-colors-region-end): New variable indicating the end of the
330         region that is currently being font-locked.  This removes the need
331         for an ugly "defvar end" hack.
332         (muse-colors-emphasized, muse-colors-underlined)
333         (muse-colors-verbatim): Use it.
334         (muse-colors-region): Let-bind it.
336         * lisp/muse-mode.el (muse-list-edit-minor-mode): Grammar fix in
337         docstring.
339         * lisp/muse-publish.el (muse-publish-markup-heading): Escape
340         specials in heading now, rather than waiting on the whole-document
341         pass later on.  This lets <contents> generation work without
342         validation errors.  Thanks to Reid van Melle for the report.
344         * texi/muse.texi (Tag Summary): Document <cite> tag.
345         (Miscellaneous): New chapter containing "Muse List Edit Minor
346         Mode" section.
347         (Muse List Edit Minor Mode): New section that documents
348         muse-list-edit-minor-mode.
349         (Development): Mention the MuseDevlopment page on emacswiki.org.
351         * lisp/muse.el (muse-goto-tag-end): Deal with case where we are
352         font-locking and the end or beginning of a tag is in a comment or
353         directive.
355 2007-08-12  Michael Olson  <mwolson@gnu.org>
357         * lisp/muse-html.el (muse-html-strip-links): New function that
358         strips HTML links from a string.
359         (muse-html-insert-contents): Use it, instead of
360         muse-publish-strip-tags.  This fixes a bug reported by Xin Shi
361         involving the use of <sup> in section titles.
363         * lisp/muse-project.el (muse-project-resolve-directory): New
364         function that figures out the directory part of the path that
365         provides a link to a page.
366         (muse-project-resolve-link): Expand docstring.  Use the new
367         function.  Don't call muse-publish-link-file, because that does
368         the wrong thing when we have muse-file-extension set to nil.
369         Thanks to Sebastian Obermanns for the report.
370         (muse-project-publish-this-file): Let-bind muse-current-project.
371         Also, if the file is not associated with a project, fall back to
372         muse-publish-this-file.
373         (muse-project-set-variables): Add this to
374         muse-before-publish-hook, so that it gets called.  This fixes a
375         bug where project-specific variables were being used in Muse mode,
376         but ignored when publishing.
378         * lisp/muse-publish.el (muse-publish-link-name)
379         (muse-publish-link-file, muse-publish-link-page): Add docstrings
380         so that I can remember what each of these things do.
381         (muse-publish-strip-tags): Remove, since it is no longer used.
382         (muse-publish-cite-tag): Don't let-bind
383         muse-publishing-directives, because there is no need to do so.
384         Fix code indentation.
385         (muse-publish-markup-attribute): Avoid multiple evaluation of
386         attrs argument, in case it is list value instead of a symbol.  Use
387         sexp instead of form in the edebug-form-spec.
388         (muse-publish-include-tag): Make a full copy of
389         muse-publishing-directives, since it can be modified with setcdr.
390         This fixes a bug where #title and some other directives were
391         leaking out of an included region.
392         (muse-publish-mark-up-tag): Don't let-bind
393         muse-publishing-directives, because there is no need to do so.
395         * lisp/muse.el (muse-page-name): Improve docstring.
397         * texi/muse.texi (Development): Mention the http method for
398         anonymous git access to the shared repo.
400 2007-08-10  Michael Olson  <mwolson@gnu.org>
402         * Makefile (dist, debprepare): Use git instead of tla.
404         * contrib/httpd.el (httpd-send-file): Use insert-file-contents.
406         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
407         Use muse-insert-file-contents.
409         * experimental/muse-split.el (muse-publish-file)
410         (muse-publish-presplit-publish, muse-publish-no-split-function)
411         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
412         muse-insert-file-contents.
414         * lisp/muse-book.el (muse-book-publish-chapter)
415         (muse-book-get-directives): Use muse-insert-file-contents.
417         * lisp/muse-http.el (muse-http-render-page): Use
418         muse-insert-file-contents.
420         * lisp/muse-poem.el (muse-poem-markup-tag): Use
421         muse-insert-file-contents.
423         * lisp/muse-publish.el (muse-insert-file-or-string)
424         (muse-publish-file, muse-publish-include-tag)
425         (muse-published-contents): Use muse-insert-file-contents.
427         * lisp/muse.el (muse-insert-file-contents): New function that
428         inserts a file with character code conversion, but none of the
429         other frivolities.  Since insert-file-contents-literally does not
430         do character code conversion, it is not suitable for us.
431         (muse-with-temp-buffer): Mention muse-insert-file-contents rather
432         than insert-file-contents-literally.
434 2007-08-09  Michael Olson  <mwolson@gnu.org>
436         * lisp/muse.el (muse-write-file): Pay attention to
437         coding-system-for-write and save-buffer-coding-system.  This
438         should fix a recently-introduced bug with writing Muse pages in
439         different coding systems.
441 2007-08-08  Michael Olson  <mwolson@gnu.org>
443         * README (Prerequisites): Fix typo.
444         (Compilation, Installation): Update.
445         (Documentation, Further Documentation): Update URLs.
446         (Further Documentation): Add quick blurb on how to participate in
447         Muse development or track changes.
449         * texi/muse.texi (Releases): Use gna.org URL for downloading the
450         latest release, rather than my website.
451         (Development): Change instructions to use git instead of
452         Arch. Mention where to get a Windows binary for git.  Improve the
453         look of the listing.  Add section with instructions for Becoming a
454         Muse developer.
455         (Installation): Update instructions for Makefile.defs.default and
456         XEmacs.  Add index entries.  Add section for ELPA, since Muse
457         ought to be distributed in ELPA after the 3.10 release.  Fix typo
458         and clarify wording.
460 2007-08-06  Michael Olson  <mwolson@gnu.org>
462         * texi/muse.texi: Make sure that attributes are marked up with
463         @option{} rather than @code{} or @samp{} for consistency.
464         (Journal): Add "muse-project-alist-considerations" subheading,
465         along with a mention of :base-url.
467 2007-08-05  Michael Olson  <mwolson@gnu.org>
469         * .gitignore: Add texi/muse.html and the DVC log edit file.
471         * Makefile.defs.default (install_info): Rename from INSTALLINFO.
472         Turn this into something that can be called like a command, due to
473         needing to deal with XEmacs, which has different argument order.
474         Thanks to Terrence Brannon for the report.
476         * lisp/muse-project.el (muse-project-of-file): Simplify by using
477         catch, throw, and dolist.  Look for exact matches before
478         considering any subdirectories.  If no exact matches are found,
479         then pick the longest match.
481         * lisp/muse.el (muse-sort-by-rating): Mention default test in
482         documentation.
484         * scripts/muse-build.el: Avoid interference from VC.el in the
485         build process.
487         * texi/Makefile (install): Call install_info.
489 2007-08-03  Michael Olson  <mwolson@gnu.org>
491         * lisp/muse-project.el (muse-project-applicable-styles): Remove
492         useless argument ignore-regexp.  Use saner logic.  This fixes a
493         bug where a file could potentially not exist but still appear in
494         the used-styles list.  Thanks to John Wiegley for the fix.
495         (muse-project-publish-file): Don't take ignore-reegxp argument.
497 2007-08-02  Michael Olson  <mwolson@gnu.org>
499         * lisp/muse-publish.el (muse-batch-publish-files): Don't activate
500         VC when publishing files in batch.  This avoids some annoying
501         messages when building QuickStart in the examples directory.
503         * lisp/muse-mode.el (muse-mode): Don't try to indent line before
504         inserting a comment.
506 2007-07-31  Michael Olson  <mwolson@gnu.org>
508         * lisp/Makefile: Add dependencies between Emacs Lisp files, so
509         that Muse can be recompiled without running "make clean" after an
510         update.
512         * lisp/muse-publish.el (muse-publish-verse-tag): Unconditionally
513         delete forward one character, since we are guaranteed to be on a
514         blank line.  Don't delete all initial whitespace of the first
515         line.  This fixes an issue where the output from the verse tag did
516         not match the output from Muse's verse syntax.
518 2007-07-29  Michael Olson  <mwolson@gnu.org>
520         * Relicense to GPLv3.
522         * Makefile.defs.default: Rename from Makefile.defs.  This allows
523         people to copy this file to Makefile.defs and make changes,
524         without having the changes be accidentally committed.  If
525         Makefile.defs does not exist, this file is read instead, in order
526         to minimize inconvenience to the casual user.
528         * Makefile, contrib/Makefile, examples/Makefile,
529         experimental/Makefile, lisp/Makefile, texi/Makefile: Use either
530         Makefile.defs.default or Makefile.defs.
532         * lisp/muse-mode.el (muse-list-edit-minor-mode-map): Use new
533         function names.
534         (muse-l-e-m-m-insert-list-item): Add real documentation.
535         (muse-l-e-m-m-increase-list-item-indent)
536         (muse-l-e-m-m-decrease-list-item-indent): Rename for clarity.  Add
537         real documentation.
538         (muse-list-edit-minor-mode): Improve documentation.
540         * texi/doclicense.texi (GNU Free Documentation License): Use
541         pristine copy from Emacs source tree.
543         * texi/muse.texi (Contributors): Move node and appendix indicators
544         here, rather than doclicense.texi.
546 2007-07-29  Jean Magnan de Bornier  <jean@bornier.net>
548         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
549         command which did not work correctly
551         * lisp/muse-context.el (muse-context-markup-strings): Change rule
552         command which did not work correctly; defined verse commands
553         (muse-context-markup-specials-literal): Eliminate all unuseful entries
555 2007-07-29  Michael Olson  <mwolson@gnu.org>
557         * contrib/httpd.el (httpd-send-file): Use
558         insert-file-contents-literally instead of insert-file-contents.
560         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
561         Use insert-file-contents-literally instead of
562         insert-file-contents.
564         * experimental/muse-split.el (muse-publish-file)
565         (muse-publish-presplit-publish, muse-publish-no-split-function)
566         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
567         insert-file-contents-literally instead of insert-file-contents.
569         * lisp/muse-book.el (muse-book-publish-chapter)
570         (muse-book-get-directives): Use insert-file-contents-literally
571         instead of insert-file-contents.
573         * lisp/muse-http.el (muse-http-render-page): Use
574         insert-file-contents-literally instead of insert-file-contents.
576         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
577         nowhere when done, since they can slow things down.
579         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
580         marker to nowhere when done, since they can slow things down.
582         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
583         when done, since they can slow things down.  Use
584         insert-file-contents-literally instead of insert-file-contents.
586         * lisp/muse-publish.el (muse-publish-markup-tag)
587         (muse-publish-markup-word, muse-publish-markup-footnote)
588         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
589         done, since they can slow things down.
590         (muse-insert-file-or-string, muse-publish-file)
591         (muse-publish-include-tag, muse-published-contents): Use
592         insert-file-contents-literally instead of insert-file-contents.
593         (muse-publish-surround-dl): Remove unused variable.  Track whether
594         a term has been found, and handle that case well.
595         (muse-publish-ensure-blank-line): Use a marker, so that we don't
596         lose our place when adding a newline.  This really fixes the
597         definition list item bug.
598         (muse-publish-markup-list): Since people do seem to want
599         definition lists with no terms, allow this.
600         (muse-batch-publish-files): Set muse-current-output-style.
602         * lisp/muse.el (muse-with-temp-buffer): Mention
603         `insert-file-contents-literally'.
605 2007-07-28  Michael Olson  <mwolson@gnu.org>
607         * lisp/muse-mode.el (muse-browse-result): Set
608         muse-current-output-style.
609         (muse-mode): Don't duplicate the paragraph-start regexp
610         unnecessarily.
611         (muse-list-edit-minor-mode-map): New variable containing the
612         keymap for Muse list edit minor mode.
613         (muse-l-e-m-m-list-item-regexp): New variable that matches list
614         items for Muse list edit minor mode.
615         (muse-l-e-m-m-insert-list-item,
616         muse-l-e-m-m-i-list-item-indentation)
617         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
618         item functions that change the list item regexp before calling the
619         existing function.
620         (muse-l-e-m-m-data): New variable that keeps track of the fill
621         data that we overwrite when activating Muse list edit minor mode,
622         so that we can restore it if the minor mode is toggled off.
623         (muse-list-edit-minor-mode): New minor mode that is useful for
624         editing lists in other major modes.
625         (turn-on-muse-list-edit-minor-mode)
626         (turn-off-muse-list-edit-minor-mode): New interactive functions
627         that turn Muse list edit minor mode on and off, respectively.
628         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
629         regexps.
631         * lisp/muse-project.el (muse-project-publish-this-file): Set
632         muse-current-output-style.  This fixes a bug when publishing to a
633         style that is not first in the list of styles.  Thanks to Jean
634         Magnan de Bornier for the report.
636         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
637         function that ensures that a blank line exists in the line before
638         point.
639         (muse-publish-markup-list): Use it, rather than
640         `muse-publish-ensure-block'.  This fixes a bug with definition
641         list publishing.  Thanks to meandtheshell for reporting this.
643         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
644         project argument is nil, default to the current project instead of
645         the first project entry in muse-project-alist.  This seems much
646         more sane to me.
648         * lisp/muse.el (muse-forward-list-item): Only check the 'face
649         property if we are in Muse mode or one of its derivatives.  This
650         allows movement on nested lists to work in other modes, and fixes
651         an issue with altering list indentation in
652         muse-list-edit-minor-mode.
654 2007-07-27  Michael Olson  <mwolson@gnu.org>
656         * AUTHORS: Add new authors.
658         * README: Permit Muse to be called "Emacs-Muse".
660         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
662         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
663         involving list items that have an extra blank line in front.
665         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
666         and Emacs-Muse are the same thing.
668 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
670         * lisp/muse-context.el (muse-context-header): Put
671         starttext after the modules who must be in preamble.
672         (muse-context-markup-strings): Fixed mistake in begin-example and
673         end-example.
675         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
676         math environment in ConTeXt when centered: "$$ $$" has to be
677         "\startformula \stopformula".
679 2007-07-26  Michael Olson  <mwolson@gnu.org>
681         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
682         parentheses in URLs.
684 2007-07-24  Michael Olson  <mwolson@gnu.org>
686         * examples/QuickStart.muse (Images): Fix typo where some text
687         existed in the output but not in the example region.
688         (Source Code): Fix another typo.  Explain that publishing from
689         console or X can make a difference.
691         * lisp/muse-context.el (muse-context-pdf-program): New option that
692         determines the program to use for generating PDF files for
693         ConTeXt.
694         (muse-context-pdf-cruft): New option that specifies the extensions
695         of files to remove after generating PDF output successfully.
696         (muse-context-slides-header): Docfix.
697         (muse-context-pdf-generate): Use new options.
699         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
700         save-restriction call.  This was causing a world of hurt when
701         using <lisp> inside of <include>.
703         * texi/muse.texi (ConTeXt): New section that documents how to use
704         the ConTeXt publishing styles.
706 2007-07-23  Michael Olson  <mwolson@gnu.org>
708         * lisp/muse-context.el: New file that provides support for
709         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
710         de Bornier for his work on this.
712         * lisp/muse-docbook.el (muse-docbook-entities)
713         (muse-docbook-bibliography): Remove unneeded save-restriction use.
715         * lisp/muse-latex2png.el (muse-publish-latex-tag):
716         s/contex/context/.
718         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
719         (muse-latex-bibliography): Remove call to `widen', since it is not
720         needed anymore.  Remove unneeded save-restriction use.
721         ("slides", "slides-pdf"): Indent elements uniformly.
723 2007-07-22  Michael Olson  <mwolson@gnu.org>
725         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
726         * lisp/muse-mode.el (muse-insert-tag):
727         * lisp/muse-project.el (muse-read-project)
728         (muse-read-project-file):
729         * lisp/muse-publish.el (muse-publish-get-style): Use
730         muse-completing-read-function.
732         * lisp/muse-latex2png.el (muse-publish-latex-tag)
733         (muse-publish-math-tag): Allow the context style -- which I plan
734         to include soon -- to work with these tags.
736         * lisp/muse.el (muse-completing-read-function): New option that
737         determines which function to call when doing a completing-read.
739 2007-07-15  Michael Olson  <mwolson@gnu.org>
741         * lisp/muse-journal.el (muse-journal-html-entry-template)
742         (muse-journal-rdf-entry-template)
743         (muse-journal-rss-entry-template): Mention that this can be text
744         or a filename.
745         (muse-journal-rdf-entry-template, muse-journal-rss-header)
746         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
747         newlines to make the output look nicer.
748         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
749         Use muse-insert-file-or-string for the entry templates, rather
750         than muse-insert-markup.  This allows <lisp> and <markup> tags to
751         be acted on.  Thanks to Scott Hyde for the report.
752         (muse-journal-html-munge-buffer): Escape quote of the day using
753         entire-document specials before snarfing it.  Mark entire template
754         as read-only -- this fixes an incorrect escaping bug.  Remove
755         read-only properties before replacing template matches so that
756         they can still be escaped with entire-document specials later on.
757         (muse-journal-rss-munge-buffer): Make sure that title is escaped
758         properly.
759         (muse-journal-markup-tags): Rename from
760         muse-journal-latex-markup-tags, because we will use it for
761         journal-rss-entry as well.
762         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
763         end-quote-item.
764         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
765         html.
766         ("journal-latex", "journal-pdf", "journal-book-latex")
767         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
768         muse-journal-latex-markup-tags.
769         ("journal-rss-entry"): New style that is used by journal-rss and
770         journal-rdf to mark up individual entries.  It is needed so that
771         we can do something meaningful with the qotd tag.
772         (muse-journal-rdf-summarize-entries): Set this to nil by default,
773         because it is annoying.  Update docs to mention this.
774         (muse-journal-rss-summarize-entries): Docfix.
776         * lisp/muse-publish.el (muse-insert-file-or-string): Use
777         muse-publish-markup-header-footer-tags.  I'm not quite sure how
778         this change got reverted.
779         (muse-markup-tag-info): Make into a function.  Move common code
780         here, rather than duplicating it in two places.  Deal with case
781         where muse-publish-use-header-footer-tags is non-nil.
782         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
783         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
784         warning.
785         (muse-publish-use-header-footer-tags): New variable that indicates
786         whether we should use just the header and footer tags, rather than
787         the full set.
788         (muse-insert-file-or-string): Bind
789         muse-publish-use-header-footer-tags to t.
790         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
791         Simplify call to muse-markup-tag-info.
792         (muse-publish-mark-up-tag): Bind
793         muse-publish-use-header-footer-tags to nil.
795         * texi/muse.texi (Journal): Update for recent changes.
797 2007-07-14  Michael Olson  <mwolson@gnu.org>
799         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
800         delete the remainder of the buffer, since this causes the
801         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
802         the report and the suggested fix.
804         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
805         beginning of table-el regexp.  This fixes a bug where Muse stalls
806         when trying to publish a malformed table.  Thanks to Ye Wenbin for
807         the report and the suggested fix.
809 2007-07-12  Michael Olson  <mwolson@gnu.org>
811         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
812         default, rather than the empty string.  This really fixes the bug
813         that occurred when using Muse with muse-project-alist set to nil.
814         Thanks to Jonathan Underwood for the report.
815         (muse-wiki-update-interwiki-regexp): Set
816         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
817         defined.
818         (muse-wiki-handle-implicit-interwiki)
819         (muse-wiki-handle-explicit-interwiki): Handle case where
820         muse-wiki-interwiki-regexp is nil.
822 2007-07-10  Michael Olson  <mwolson@gnu.org>
824         * lisp/muse-mode.el (muse-grep): Abort search if the current
825         project contains no directories.
827         * lisp/muse-project.el (muse-project-file-alist): If
828         muse-project-alist is not defined, or project is nil, return nil
829         right away.  This ought to fix a bug that occurred when using Muse
830         with muse-project-alist set to nil.
831         (muse-project-of-file): Make sure muse-project-alist is not nil.
832         (muse-project-save-buffers): Make sure project is not nil.
834         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
835         case where muse-project-alist is nil.
837         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
838         for XEmacs, since color-theme.el is poorly behaved, and defines
839         its own replace-in-string.  Bad color-theme.el -- no cookie for
840         you.
842 2007-07-01  Michael Olson  <mwolson@gnu.org>
844         * Makefile (.PHONY): Update for new debian package rules.
846         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
848         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
849         Use save-restriction properly.
850         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
852         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
853         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
854         properly.
855         (muse-latex-bibliography): Re-indent.
857         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
858         higher.  This fixes an error at startup with some versions of
859         Emacs.
860         (muse-publish-cite-tag): Re-indent.
862         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
863         to the end of the link part, so as to exclude the description from
864         the match.  This fixes a bug with three-part links that have
865         descriptions.  Thanks to everyone who pointed it out.
867 2007-06-18  Michael Olson  <mwolson@gnu.org>
869         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
870         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
871         1.1 specific markup strings.
872         (muse-html-insert-anchor): Use 'anchor string, rather than
873         hard-coding it.  Thanks to Chris Corsair for the suggestion.
874         ("xhtml1.0"): New style that is an alias for the xhtml style.
875         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
877 2007-06-17  Michael Olson  <mwolson@gnu.org>
879         * examples/QuickStart.muse: Make images local so that the Info
880         version of this document works.  Add <example> for the Literal
881         paragraphs chapter, so that it is clear what is happening.
883         * Makefile: Add elpa target, which is used for building an ELPA
884         package for Muse.
886         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
887         building ELPA packages.
889         * examples/Makefile (%.html, %.pdf, %.info): Add message to
890         indicate what we are publishing.
891         (realclean distclean fullclean): Remove all TeX crud.
893         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
894         that the Info version of QuickStart can publish correctly.
896         * lisp/muse-latex.el (muse-latex-slides-header)
897         (muse-latex-lecture-notes-header): Docfix.
899         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
900         the list of things to ignore.
902         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
903         variable.
905         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
906         default to nil, since texinfmt.el is a serious nuisance.
907         (muse-texinfo-markup-strings): Add newlines to begin-example and
908         end-example.
909         (muse-texinfo-decide-specials): Also escape URL-type specials in a
910         whole slew of other contexts.
912         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
913         muse-xml.
915         * lisp/muse-xml.el (muse-xml-footer): Docfix.
917         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
919 2007-06-16  Michael Olson  <mwolson@gnu.org>
921         * etc/IDEAS.muse: Add some ideas from David D. Smith.
923         * examples/QuickStart.muse: Overhaul.
925         * lisp/muse-project.el (muse-project): Call the last part of a
926         muse-project-alist entry "Output styles" rather than "styles".
928         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
929         where we have a pipe character at the beginning of line.
931         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
932         causing tables to not be sorted at all.
934         * texi/muse.texi: Overhaul.  It would be too time-consuming to
935         list all of the changes here.  The "Getting Started" and
936         "Projects" chapters, in particular, were heavily revised.
938 2007-06-15  Michael Olson  <mwolson@gnu.org>
940         * NEWS: Update.
942         * examples/QuickStart.muse: Mention new features.
944         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
945         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
946         terminal, and C-c TAB is more important.  Most people will not
947         want to toggle images on and off that often.
949         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
950         C-i as well, so that it works in the terminal.
952         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
953         look a bit tidier when removing the region.
955         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
956         list regexp part before other parts.
957         (muse-ol-item-regexp): New regexp that specifies how to match an
958         ordered list item.
959         (muse-ul-item-regexp): New regexp that specifies how to match an
960         unordered list item.
961         (muse-table-field-regexp): New regexp that specifies how to match
962         a definition list entry.
964         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
965         lack of support for @headitem in texinfmt.el.
967         * lisp/muse.el: Wrap muse-line-beginning-position and
968         muse-line-end-position in `eval-and-compile', since they are now
969         used in muse.el.
970         (muse-list-item-type): Use a simpler algorithm for detecting which
971         kind of list item we have.  This fixes a bug where a number in a
972         definition list term was being detected incorrectly as an ordered
973         list item.  Fixes bug #6250.
974         (muse-forward-list-item): Get the entire line with the list item.
975         For some reason, Emacs 21 was not populating match 2 correctly,
976         unlike Emacs 22, so this workaround was needed.
978         * texi/muse.texi: (Keystroke Summary): Remove C-c
979         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
980         alternative keybinding to the C-c TAB stuff.  Mention
981         muse-colors-toggle-inline-images.
983 2007-06-14  Michael Olson  <mwolson@gnu.org>
985         * README: Mention that RelaxNG schema is in etc/ directory.
987         * etc/emacs-wiki-migration.txt: New document that explains how to
988         migrate from emacs-wiki to Muse.
990         * etc/muse.rnc: Increment version number to 1.0.  Fix several
991         nested emphasis and nested lists edge cases.  Move here from
992         examples/.
994         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
995         same thing as C-c C-S-t, since the former works better in the
996         console.  Thanks to Leo for the suggestion.
998         * lisp/muse-publish.el (muse-publish-markup-table)
999         (muse-publish-markup-table-el): Include a newline in the return
1000         string, so that paragraph detection does not get confused.
1002         * lisp/muse.el (muse-with-temp-buffer): Docfix.
1004         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
1005         keybinding.
1007 2007-06-13  Michael Olson  <mwolson@gnu.org>
1009         * etc/IDEAS.muse: Mark three-part-links item as done.
1011         * experimental/muse-message.el: Remove guard for muse-define-style
1012         calls.
1014         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
1015         markup rules were being interpreted in reverse order.  This should
1016         make implicit interwiki links work properly again.
1017         (muse-link-face): Strip anchor from end of a path, so that this
1018         works with anchors in interwiki links.
1019         (muse-colors-insert-image): Catch error that occurs in Emacs 21
1020         when an image does not exist.
1022         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
1023         anchors.
1024         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
1025         interwiki links work.  Thanks to Jim Ottaway for the initial
1026         implementation.
1027         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
1028         links work.
1030         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
1031         about match 0.
1032         (muse-handle-explicit-link): Docfix: this does not modify the
1033         match data.
1034         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
1035         that has the regexp in its car.
1037 2007-06-12  Michael Olson  <mwolson@gnu.org>
1039         * README: Document new etc/ directory.
1041         * etc/IDEAS.muse: Install things from new contributors just after
1042         the 3.03 release, since I won't have time to review the code
1043         before the release.  Move to new etc/ directory.  Slides
1044         publishing has been installed.
1046         * lisp/muse-latex.el (muse-latex-slides-header): New option that
1047         determines the header to use for publishing slides.
1048         (muse-latex-lecture-notes-header): New option that determines the
1049         header to use for publishing lecture notes.
1050         (muse-latex-slides-markup-tags): New option containing tags to use
1051         when publishing slides.
1052         (muse-latex-permit-contents-tag): Move higher in file.
1053         (muse-latex-slide-tag): New function to publish the <slide> tag.
1054         ("slides", "slides-pdf"): New publishing styles that create slides
1055         using Beamer.
1056         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
1057         create lecture notes using Beamer.
1059         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
1060         since otherwise Planner is not happy when `plan' is called during
1061         init.  Remove stray quote from autoload snippet.
1063 2007-06-11  Michael Olson  <mwolson@gnu.org>
1065         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
1066         autoload, rather than having it exist at top-level.  Thanks to Leo
1067         for the suggestion.
1068         (muse-update-file-extension): Docfix.
1070 2007-06-10  Michael Olson  <mwolson@gnu.org>
1072         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
1073         URLs were being removed during publishing.  Thanks to everyone who
1074         reported this.
1076 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
1078         * lisp/muse-book.el
1079         * lisp/muse-docbook.el
1080         * lisp/muse-latex.el
1081         * lisp/muse-publish.el: added support for <cite> element which
1082         denotes in-text citations
1084         * lisp/muse-html.el
1085         * lisp/muse-groff.el
1086         * lisp/muse-texinfo.el
1087         * lisp/muse-xml.el: added support for <cite> element (stub)
1089 2007-06-06  Michael Olson  <mwolson@gnu.org>
1091         * lisp/muse-regexps.el (muse-table-line-regexp)
1092         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
1093         regexps so that they work with XEmacs 21.  Thanks to Adrian
1094         Tritschler for the report.
1096         * texi/muse.texi: Update copyright years.
1097         (HTML): Document muse-xhtml-style-sheet.  Thanks
1098         to thorne for noticing.
1099         (Development): Change archive year to 2006.  Thanks to Adrian
1100         Tritschler for noticing.  So *that's* why some people had the 2005
1101         version ....
1103 2007-06-05  Michael Olson  <mwolson@gnu.org>
1105         * Makefile (install-info): Remove $(MANUAL).info part, since this
1106         is taken care of already by texi/Makefile.  Thanks to Leo for the
1107         report.
1109         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
1110         read-only properties to qotd contents, so that they don't get
1111         double-escaped.  Thanks to Leo for the report.
1113 2007-06-04  Michael Olson  <mwolson@gnu.org>
1115         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
1116         -- that is, Tramp or ange-ftp -- file, then do not call
1117         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
1118         Fixes bug #5115.
1120         * lisp/muse-html.el (muse-html-insert-contents): Add
1121         documentation.  Handle case where heading is read-only, but has
1122         muse-contents property.  Remove the muse-contents property for any
1123         heading we come across so as to avoid double-including an item in
1124         an outer table of contents.
1125         (muse-html-denote-headings): New function that denotes whether a
1126         heading is not read-only by adding the muse-contents property to
1127         it.
1128         (muse-html-munge-buffer): If we are not to generate contents,
1129         still denote headings, in case some outer layer wants to generate
1130         contents for our headings.  This should fix a bug with table of
1131         contents and the <include> tag.  Thanks to thorne for the report.
1133         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
1134         muse-publish-generate-contents and set it to nil.  This should
1135         do the right thing when using <include> tags.
1137 2007-06-02  Michael Olson  <mwolson@gnu.org>
1139         * NEWS: Update for non-inlined image change and support for
1140         table.el style tables.
1142         * examples/Makefile (clean): Clean backup files.
1144         * examples/QuickStart.muse (Images): New section that describes
1145         how to inline and not inline images.
1147         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
1148         touch images that have "URL:" in front of them.
1150         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
1151         "URL:".  Use the identity function to resolve, since we don't want
1152         to rip "URL:" out while publishing, due to some magic that depends
1153         on that text.
1154         (muse-browse-url-url): New function that browses URLs that have
1155         "URL:" in front of them, by removing the "URL:" part and
1156         reprocessing the remainder.
1158         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
1159         (muse-publish-url): Recognize images in the description before
1160         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
1161         for the suggested workaround.
1162         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
1163         default value.
1164         (muse-publish-classify-url): If target begins with "URL:" return
1165         type url.
1166         (muse-publish-strip-URL): New function that strips "URL:" from the
1167         beginning of a string.  This is used to remove URL: from the link
1168         description.  * texi/muse.texi (Markup Strings): Clarify the
1169         meanings of image-link, link, and link-and-anchor.
1170         (muse-publish-markup-regexps): Move normal table rule to 2350.
1171         Rule 2300 is now a regexp that matches table.el-style tables.
1172         (muse-publish-markup-functions): Add table-el entry.
1173         (muse-publish-table-el-table): New function that given a variant,
1174         publishes a table.el-style table using the table in the matched
1175         region.
1176         (muse-publish-markup-table-el): New function that determines
1177         whether the table.el-style table can be published, and what
1178         variant to use.
1180         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
1181         the borders of table.el-style tables.
1183         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
1184         the table has sufficient whitespace in front of it.
1186         * texi/muse.texi (Images): Update for new non-inlined image
1187         ability and provide example.
1189 2007-05-31  Michael Olson  <mwolson@gnu.org>
1191         * NEWS: Add example for setting `muse-html-table-attributes'.
1193         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
1194         Publish multiple tbody tags if there is a horizontal separator
1195         after the heading, because that is valid HTML after all.
1197 2007-05-30  Michael Olson  <mwolson@gnu.org>
1199         * NEWS: Update.
1201         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
1202         horizontal separators in tables.
1204         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
1205         horizontal separators in tables.
1206         (muse-publish-trim-table): New function to remove initial and
1207         final blank columns from a table.
1208         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
1209         with horizontal separators, aka "hlines".
1211         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
1212         defines the syntax of a horizontal separator in a table.
1214         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
1215         horizontal separators.  Publish header lines correctly.
1217         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
1218         where we have nonnumbers as a row type.  This ignores sorting for
1219         hlines.
1220         (muse-xml-markup-table): Deal with horizontal separators.  If the
1221         markup supports table groups, make hlines separate table groups.
1222         Otherwise, ignore them, since they cannot be marked up.  Together,
1223         these changes allow us to support orgtbl-mode tables.  Thanks to
1224         Carsten Dominik for the suggestion.
1226 2007-05-26  Michael Olson  <mwolson@gnu.org>
1228         * lisp/muse-project.el (muse-project-alist-styles): Allow for
1229         other things to be added to each generated style as well.  For
1230         example, this permits me to add
1231         :base-url "http://blog.mwolson.org/"
1232         for my blog.
1234 2007-05-25  Michael Olson  <mwolson@gnu.org>
1236         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
1237         way of building Debian packages that preserves the original
1238         release tarball and is more modular.
1239         (debrevision, debrelease): Remove.
1240         (dist): No need to remove the debian/ directory, since it is now
1241         in its own branch.
1242         (debprepare): Copy over debian/ directory properly.
1244         * NEWS: Update.
1246         * examples/Makefile (clean): Remove QuickStart.texi, in case
1247         something went wrong during the build.
1248         (%.pdf): Publish the example using the normal pdf style, rather
1249         than info-pdf.
1251         * examples/QuickStart.muse: Add myself to the authors list.
1253         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
1254         sufficient blank lines before the tag.
1256         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
1257         we have sufficient blank lines before the tag.
1259         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
1260         specifies the program to call in order to generate PDF content
1261         from LaTeX content.
1262         (muse-latex-pdf-cruft): New option that specifies the extensions
1263         of files to remove after generating PDF output successfully.
1264         (muse-latex-pdf-generate): Use these new options.  Work around the
1265         annoying edge case where a tilde character exists in the filename
1266         or directory path -- now this can only error out when the relative
1267         path from the output file to the source file contains a tilde,
1268         which is far less likely.
1270         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
1271         muse-publish-ensure-block here after all, because <lisp> et al may
1272         occur inline as part of other things.
1274         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
1275         occur after full-document escaping, rather than before.  This
1276         prevents automatically-inserted Texinfo code from being escaped.
1277         (muse-texinfo-pdf-generate): Rewrite to call
1278         `muse-latex-pdf-generate' with pdftex as the generating binary,
1279         because texi2pdf suffers irredeemably from the tilde edge case
1280         mentioned above.
1282 2007-05-24  Michael Olson  <mwolson@gnu.org>
1284         * NEWS: Drop vague entries and position interesting entries closer
1285         to the top of each section.  Update for new changes.
1287         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
1288         and bzr metadata directories to the list of things to ignore.
1290         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
1291         `muse-publish-ensure-block-tag', since we will use it for more
1292         than just tags.
1293         (muse-publish-markup-list, muse-publish-verse-tag)
1294         (muse-publish-quote-tag, muse-publish-example-tag)
1295         (muse-publish-markup-attribute): Use it.  This fixes a bug that
1296         can occur when these types of markup occur immediately after a
1297         paragraph.  It's good to have defined behavior!
1299         * texi/muse.texi (Markup Strings): Mention new argument for
1300         link-and-anchor.
1302 2007-05-19  Michael Olson  <mwolson@gnu.org>
1304         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
1305         published footnotes and footnote references.  Thanks to Scott
1306         Jaderholm for the idea.
1308         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
1309         link-and-anchor, on the recommendation of the original submitter.
1311 2007-05-14  Michael Olson  <mwolson@gnu.org>
1313         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
1314         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
1315         suggestion.
1317         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
1318         file extension as the fourth argument.
1320         * README, texi/muse.texi (Getting Help and Reporting Bugs):
1321         Mention the new muse-el-logs mailing list.
1323 2007-05-13  Michael Olson  <mwolson@gnu.org>
1325         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
1326         "\`" here.  This fixes a problem with publishing custom URLs.
1328 2007-05-12  Michael Olson  <mwolson@gnu.org>
1330         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
1331         update the list if the current buffer is associated with a file.
1332         This fixes a bug with M-x muse-publish-region in a temporary
1333         buffer.
1335 2007-05-01  Michael Olson  <mwolson@gnu.org>
1337         * lisp/muse-publish.el (muse-publish-region): Remove read-only
1338         properties from the published buffer, so that the results can be
1339         manually tweaked.
1341 2007-04-23  Michael Olson  <mwolson@gnu.org>
1343         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
1344         find the footnote that goes with a reference, leave the reference
1345         as-is.  This fixes an error where control characters could be
1346         placed in a published document.
1348 2007-04-22  Michael Olson  <mwolson@gnu.org>
1350         * IDEAS.muse: Add muse-slides.el to list of things to include
1351         before release.
1353         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
1354         character.
1355         (muse-protocol-find): Find protocols correctly.  Rewrite to use
1356         catch/throw.
1357         (muse-browse-url): Don't concatenate "\`" here.  Together, this
1358         fixes a bug with browsing woman:// links.
1360         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
1361         where entry-dir has a trailing backslash.
1362         (muse-project-publish-file): If a style is malformed, skip it and
1363         display a warning message.  This should help people figure out
1364         where the problem is.
1366 2007-04-21  Michael Olson  <mwolson@gnu.org>
1368         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
1369         yet-to-be-included "contex" publishing style, use "$$" rather
1370         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
1371         this out.
1373 2007-04-20  Michael Olson  <mwolson@gnu.org>
1375         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
1376         variable that causes the :before and :before-end hooks to be
1377         ignored when non-nil.
1378         (muse-publish-markup-region): Use it.  Also, guarantee that point
1379         is at end of region after publishing.
1380         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
1381         variable.
1383 2007-04-19  Michael Olson  <mwolson@gnu.org>
1385         * IDEAS.muse: New file containing a list of ideas we have for new
1386         features, or patches that have yet to be applied.
1388         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
1389         be so confusing.
1391         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
1392         docstring.
1394         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
1395         <literal> tags with muse-publish-literal-tag, rather than
1396         muse-publish-mark-read-only.
1397         (muse-publish-literal-tag): New function that publishes the
1398         <literal> tag.  It adds the ability to add the optional "style"
1399         and "exact" elements, which cause text to only be included if the
1400         current publishing style matches some criteria.  The text will be
1401         removed otherwise.  Thanks to Jim Ottaway for the implementation.
1402         (muse-publish-mark-up-tag): Let the <markup> tag take the
1403         additional optional elements "style" and "exact", with much the
1404         same effect as the <literal> improvements, but after calling
1405         "function" or publishing the region first.  Make it possible to
1406         put <content> tags in <markup> regions in HTML publishing.
1408 2007-04-12  Michael Olson  <mwolson@gnu.org>
1410         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
1411         that a blank line always exists after a heading.  This fixes a bug
1412         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
1413         for the report.
1415         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
1416         detection regexp to that which is used in Docbook and HTML
1417         publishing styles.
1419 2007-04-02  Michael Olson  <mwolson@gnu.org>
1421         * README (muse-el-announce): Make a listing of mailing lists,
1422         rather than pointing to the old EmacsWikiMailingList page.  Thanks
1423         to Andreas Roehler for noticing.
1425 2007-04-01  Michael Olson  <mwolson@gnu.org>
1427         * lisp/muse-publish.el (muse-publish-date-format): Add
1428 `       customization type and group.
1429         (muse-publish-region): New interactive function that publishes a
1430         region to a new buffer.
1432         * texi/muse.texi: Use "document" rather than "manual".
1434 2007-03-31  Michael Olson  <mwolson@gnu.org>
1436         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
1437         expression (muse-style-derived-p "latex" (muse-style "latex"))
1438         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
1439         for the catch.
1441 2007-02-25  Michael Olson  <mwolson@gnu.org>
1443         * lisp/muse-publish.el (muse-publish-date-format): New option that
1444         specifies how to format the date when publishing Muse pages.
1445         Thanks to Thomas Gehrlein for the suggestion.
1446         (muse-publish-markup-buffer): Use it.
1448 2007-02-23  Michael Olson  <mwolson@gnu.org>
1450         * README: Add Prerequisites section to mention which versions of
1451         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
1452         the suggestion.  Update link destination for Muse's page on
1453         emacswiki.org.
1455 2007-02-15  Michael Olson  <mwolson@gnu.org>
1457         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
1458         be not just at beginning of line.  This fixes an error with the
1459         <class> tag.  Thanks to Jim Pivarski for the report.
1461 2007-02-14  Michael Olson  <mwolson@gnu.org>
1463         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
1464         whether something is an image before checking to see if it is a
1465         URL.  Thanks to ITSUMI ken-ichi for the report.
1467 2007-02-13  Michael Olson  <mwolson@gnu.org>
1469         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
1470         comments that have no text better.  Thanks to fang.lungang for the
1471         report.
1472         (muse-publish-markup-comment): Deal with case where no comment
1473         text is provided.
1475 2007-01-23  Michael Olson  <mwolson@gnu.org>
1477         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
1478         that ensures that at least one blank line exists at the given
1479         position.  This is used to avoid paragraph detection problems when
1480         block-level tags like <example> immediately follow a paragraph.
1481         Thanks to Hans Ekbrand for the report.
1482         (muse-publish-example-tag): Use it.
1484 2007-01-19  Michael Olson  <mwolson@gnu.org>
1486         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
1487         previous blank line if we are publishing in Latex.  Otherwise,
1488         that wouldn't be the right thing, so leave it be.
1490 2007-01-17  Michael Olson  <mwolson@gnu.org>
1492         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
1493         multiple centered math lines on the same line; keep them on
1494         different lines.  Use \[ math-text \] instead of $$math-text$$,
1495         since the latter seems to be deprecated.  Thanks to Jody Klymak
1496         for the pointer.
1498 2007-01-15  Michael Olson  <mwolson@gnu.org>
1500         * lisp/muse-latex2png.el (muse-publish-latex-tag)
1501         (muse-publish-math-tag): Publish region read-only when current
1502         style is Latex-derived, so that Muse does not escape it.
1503         (muse-publish-math-tag): If 6 or more spaces come before the tag,
1504         surround the region with "$$" rather than "$".  This is the Muse
1505         syntax for something centered, so it should be a good fit.
1507 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
1509         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
1510         protocol.
1511         (muse-browse-url-man): Change man page URL format.  The code is
1512         simpler when the section is left inside parentheses.
1513         (muse-browse-url-woman): New function.
1515 2007-01-14  Michael Olson  <mwolson@gnu.org>
1517         * AUTHORS: Bookkeeping.
1519         * lisp/muse-latex2png.el: Associate <math> tag with
1520         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
1521         Klymak for the report.
1522         (muse-publish-math-tag): Use muse-insert-markup for the "$"
1523         characters, so they don't get escaped.
1525         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
1526         make muse-style-derived-p easier to implement.
1527         (muse-style-derived-p): If the style is not provided, fetch it and
1528         check to see if the car is a string.  This should fix the other
1529         problem that was reported.
1531         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
1532         explains a case where setting muse-file-extension to nil can cause
1533         unexpected behavior.
1535 2007-01-09  Michael Olson  <mwolson@gnu.org>
1537         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
1538         comments higher priority than tags.  Thanks to Stefan van der Walt
1539         for the report.
1541 2007-01-08  Michael Olson  <mwolson@gnu.org>
1543         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
1544         argument rather than calling match-string.  Thanks to Stefan van
1545         der Walt for the report.  This should fix a bug with publishing
1546         <include file="..." markup="example">.
1548 2007-01-06  Michael Olson  <mwolson@gnu.org>
1550         * Makefile (debclean): New rule split from debrevision and
1551         debrelease.
1552         (debbuild): Take distributor into account.
1554         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1555         vendor/distributor we are building for.
1557 2007-01-04  Michael Olson  <mwolson@gnu.org>
1559         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1560         line.
1562         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1563         point to muse-publish-src-tag by default, since <src> and
1564         <example> have different parameters.
1565         (muse-publish-src-tag): New barebones publishing function for
1566         <src>, which is superseded when publishing in an HTML-based style.
1568 2007-01-03  Michael Olson  <mwolson@gnu.org>
1570         * lisp/muse-html.el (muse-html-src-tag): Document.
1572         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1573         command that calls a given tag on the current buffer.  Attributes
1574         may be passed.
1575         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1576         it.
1577         (muse-publish-srcify-buffer): New function that allows
1578         markup="src" in the <include> tag.
1579         (muse-publish-get-and-delete-attr): New macro that gets an
1580         attribute from a list and removes the first instance of that
1581         attribute from said list.
1582         (muse-publish-markup-attribute): Handle markup="src".
1583         (muse-publish-command-tag, muse-publish-include-tag): Use
1584         muse-publish-get-and-delete-attr.  This allows the remaining
1585         attributes to be passed.
1587         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1588         as changes to <command> and <include>.
1590 2006-12-30  Michael Olson  <mwolson@gnu.org>
1592         * NEWS: Update.
1594         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1595         from muse-publish-math-tag to avoid conflict with
1596         muse-latex2png.el.
1598 2006-12-23  Michael Olson  <mwolson@gnu.org>
1600         * lisp/muse-latex2png.el: Update header, since this has been
1601         rewritten sufficiently to not need an assignment from the original
1602         author.
1603         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1604         (muse-latex2png): Use two underscores to separate prefix and hash.
1605         (muse-latex2png-region): New function split from
1606         muse-publish-latex-tag that can be used easily by other code.
1607         Detect whether we are using an HTML-based publishing style, and
1608         insert a simpler markup if we are not.  If we are using a
1609         Latex-based publishing style, do not generate an image, and leave
1610         the region alone.  Return the path of the generated image, in case
1611         other functions want to use this programmatically.
1612         (muse-publish-latex-tag): Set a default prefix based on the name
1613         of the current file.
1614         (muse-publish-math-tag): New tag that surrounds the region with
1615         "$" characters, so that it becomes a Latex math region, and then
1616         publishes it.
1618         * lisp/muse-publish.el (muse-style-derived-p): New function that
1619         returns non-nil if a given style, or the current style if omitted,
1620         is equal to or derived from the given base style.  This is useful
1621         in <lisp> tags, because it allows the user to specify markup that
1622         is only to be inserted for one particular style.
1624 2006-12-22  Michael Olson  <mwolson@gnu.org>
1626         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1627         (muse-html-src-tag): New function which publishes the <src> tag.
1628         Thanks to Clinton Ebadi and Charles Wang for the initial
1629         implementations.
1631         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1633 2006-12-21  Michael Olson  <mwolson@gnu.org>
1635         * examples/johnw/muse-johnw.el: Update for preferred
1636         muse-derive-style usage.  Rename to muse-init.el.
1638         * examples/mwolson/muse-init.el: Update.
1640         * lisp/muse-book.el (muse-book-publish): New function split from
1641         muse-book-publish-project.  This is used in the definitions for
1642         the book-latex and book-pdf styles.
1643         (muse-book-publish-p): New function split from muse-book-publish.
1644         (muse-book-get-directives): New function that retrieves the
1645         publishing directives from the given file.
1646         (muse-book-publish): Use muse-book-get-directives to set the title
1647         if no title was specified.
1649         * lisp/muse-project.el (muse-project): Add :publish-project entry
1650         to widget.
1651         (muse-read-project, muse-project-find-file): Message fix.
1652         (muse-project-publish-file-default): New function split from
1653         muse-project-publish-file.
1654         (muse-project-publish-file): Allow file-level publishing function
1655         to be specified by the :publish element.  The default is
1656         muse-project-publish-file-default.
1657         (muse-project-publish-default): New function split from
1658         muse-project-publish.
1659         (muse-project-publish): Allow project-level publishing function to
1660         be specified by :publish-project element.  The default is
1661         muse-project-publish-default.
1663         * lisp/muse-publish.el (muse-publish-file): Message fix.
1665         * texi/muse.texi (Book): Mention new way to publish books and
1666         provide an example, since the process may be non-obvious.
1668 2006-12-20  Michael Olson  <mwolson@gnu.org>
1670         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1671         content-modifying code from the rest of
1672         muse-docbook-finalize-buffer.
1674         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1675         muse-groff-finalize-buffer, since it adds content to the buffer.
1677         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1678         content-modifying code from the rest of muse-html-finalize-buffer.
1679         This fixes a bug when using <include> with <content> tags.
1681         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1682         (muse-journal-latex-munge-buffer)
1683         (muse-journal-rss-munge-buffer): Rename, since they add content to
1684         the buffer.
1686         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1687         muse-latex-finalize-buffer, since it adds content to the buffer.
1689         * lisp/muse-mode.el:
1690         * lisp/muse-project.el:
1691         * lisp/muse-publish.el:
1692         * lisp/muse.el: Fix recursive load error.
1694         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1695         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1697         * lisp/muse-wiki.el: Comment cleanup.
1699         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1701 2006-12-17  Michael Olson  <mwolson@gnu.org>
1703         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1704         Remove the definition of \comment, since Latex already has comment
1705         syntax.
1706         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1707         than our own.  Thanks to Ryan Stutsman for pointing this out.
1709 2006-12-02  Michael Olson  <mwolson@gnu.org>
1711         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1712         that this can generate a proper table of contents for Planner HTML
1713         publishing.
1715 2006-12-01  Michael Olson  <mwolson@gnu.org>
1717         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1718         using a very old Emacs, avoid an infinite loop that could occur
1719         when the regexp is an empty string.
1721 2006-11-26  Michael Olson  <mwolson@gnu.org>
1723         * NEWS: Bring up to date.
1725         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1726         list issues and multiple-stanza verse issues.  This takes care of
1727         all of the markup issues I was worried about.
1729         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1730         (muse-project-publish-private-files): New option that indicates
1731         whether files with private filesystem permissions should be
1732         published.  The default is to publish them, since it avoids
1733         confusion in new users.
1734         (muse-project-private-p): Use it.
1736 2006-11-19  Michael Olson  <mwolson@gnu.org>
1738         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1739         style is found, which means that the link is not a Muse page, do
1740         not add a suffix or prefix to it.  This should fix the
1741         "[[thing.owl]]" bug that Phillip Lord reported.
1743         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1744         removing unused 2nd argument.
1746 2006-11-17  Michael Olson  <mwolson@gnu.org>
1748         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1749         latex publishing where nested enumerated lists would be squashed
1750         together at the end.
1752 2006-11-16  Michael Olson  <mwolson@gnu.org>
1754         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1755         list embedded in a definition list look right.  This also allows
1756         for definitions to be separated from their terms, much like the
1757         way HTML does it by default, if the user puts a blank line or a
1758         line break between the term and the definition.  If the term and
1759         definition are on the same line, they will be that way in the
1760         output as well.
1762 2006-11-11  Michael Olson  <mwolson@gnu.org>
1764         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1765         for the report.
1766         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1768 2006-11-07  Michael Olson  <mwolson@gnu.org>
1770         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1771         release candidate for Muse 3.03, available.
1773         * NEWS: Update.
1775 2006-11-06  Michael Olson  <mwolson@gnu.org>
1777         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1778         following a relative link worked even when the path was incorrect.
1780 2006-11-04  John Sullivan  <john@wjsullivan.net>
1782         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1783         muse-follow-name-at-point to reduce collisions with other
1784         modes (Planner).
1786         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1788 2006-11-04  Michael Olson  <mwolson@gnu.org>
1790         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1791         optional, and make interwiki delimiter a regular rather than shy
1792         group.
1793         (muse-wiki-handle-implicit-interwiki): Rename from
1794         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1795         (muse-wiki-handle-explicit-interwiki): New function that is
1796         smarter about where an explicit link ends in a buffer.  This
1797         allows you to refer to page names with invalid Wiki characters,
1798         such as underscores and dashes, merely by enclosing them in double
1799         brackets.  Also, a bug with recognizing project names too loosely
1800         has been fixed.
1802 2006-11-03  Michael Olson  <mwolson@gnu.org>
1804         * lisp/muse-project.el (muse-project-page-file): Make relative
1805         links work as expected, hopefully.
1807         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1808         output style manually, since it will differ from anything in the
1809         publishing style list.
1811 2006-10-30  Michael Olson  <mwolson@gnu.org>
1813         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1814         grouping elements, since that no longer applies.
1815         (muse-colors-custom-tags): Explicitly match against
1816         muse-tag-regexp to get the match-data set the way we want.  This
1817         really fixes the <example> highlighting bug that Stefan reported.
1818         (muse-configure-highlighting): Set the original value to the
1819         symbol, not the modified value.  Re-use modified rules properly.
1821         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1822         introduced yesterday.
1824 2006-10-29  Michael Olson  <mwolson@gnu.org>
1826         * examples/mwolson: Update my example configuration.
1828         * NEWS: Update.
1830         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1831         without a regexp in the first position before iterating through
1832         them to build muse-colors-vector.  This fixes a bug with the
1833         display of <example> tags.  Thanks to Stefan Reichör for the
1834         report.
1836         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1837         files in projects to be linked to.
1839         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1840         to serve as a description for a URL, as long as it differs from
1841         the destination URL.  This fixes the description of WikPage links
1842         in PDF output.
1843         (muse-publish-link-file): Check to see whether the given link
1844         points at a valid file.  If so, return it.  Otherwise, apply other
1845         transforms like prefix and link suffix.
1847         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1848         "/", it is a file or directory, not a Muse page.  Thanks to
1849         Phillip Lord for the suggestion.
1851         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1852         of the current page as the local path, instead of duplicating the
1853         remote file's path.  This probably fixes at least one reported
1854         bug. since it's quite major.
1855         (muse-wiki-update-project-file-regexp)
1856         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1857         passed to regexp-opt, since that can cause Emacs 21 to throw an
1858         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1859         DOT edu for the report.
1860         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1862 2006-10-28  Michael Olson  <mwolson@gnu.org>
1864         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1865         (muse-project-resolve-link): If the given style does not have a
1866         link-suffix, default to suffix.  This fixes a bug I was noticing
1867         when linking to a file that was published in both PDF and HTML
1868         form.
1870         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1871         function that is used as a callback to determine the initial
1872         amount of indentation that the current dl item has.
1873         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1874         and the post-indent value, instead of trying to determine them
1875         both.
1876         (muse-publish-strip-list-indentation): New function stripped from
1877         `muse-publish-surround-text' for readability.
1878         (muse-publish-surround-text): Instead of taking a determine-indent
1879         value, take a determine-indent-func function, which is called just
1880         after finding the next list item.  If we are asked to determine
1881         the amount of indentation, concatenate indent and post-indent the
1882         first time around.  This effectively fixes all known definition
1883         list issues.
1885 2006-10-16  Michael Olson  <mwolson@gnu.org>
1887         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1888         other software -- namely, Planner -- can detect whether they are
1889         using a version of Muse that supports nested tags.
1890         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1891         muse-publish-goto-tag-end.
1893         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1894         Adapt for nested tags.
1896         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1897         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1898         this.
1900         * lisp/muse-publish.el (muse-publish-markup-tag)
1901         (muse-publish-quote-tag): Use muse-goto-tag-end.
1903         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1905 2006-10-15  Michael Olson  <mwolson@gnu.org>
1907         * AUTHORS: Bookkeeping.
1909         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1910         tag.
1912         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1913         tags.
1915         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1917         * lisp/muse-import-docbook.el (muse-import-docbook)
1918         (muse-import-docbook-files): Docfix.
1919         (muse-import-docbook-get-title): Remove cl.el-ism.
1921         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1923         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1925         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1927         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1928         (muse-next-reference, muse-previous-reference): Minor whitespace
1929         changes.
1930         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1931         the suggestion.
1933         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1935         * lisp/muse-publish.el (muse-publish-markup-tags)
1936         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1937         element and make 4th element determine whether tags are nestable.
1938         (muse-publish-goto-tag-end): New function that moves to the end of
1939         a tag.  Handle nested tags when NESTED is non-nil.
1940         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1941         5th element for function.
1942         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1943         this on several scenarios, and it seems to work.
1944         (muse-publish-surround-text): Accept new optional argument
1945         LIST-ITEM which determines the regexp to use for list items.  The
1946         default is to use muse-list-item-regexp.
1948         * muse.texi (Markup Tags): Mention nestable tags.
1950         * NEWS: Mention new files.
1952 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1954         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1955         into Muse format.
1957         * lisp/muse-import-xml.el: New file that provides helper routines
1958         for converting XML-ish files to Muse format.
1960 2006-10-10  Michael Olson  <mwolson@gnu.org>
1962         * NEWS: Update for 3.02.7 bugfix release.
1964 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1966         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1967         using the value in the muse #date directive.
1968         (muse-blosxom-use-metadate): New option that determines whether or
1969         not to use the #postdate directive.
1970         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1971         metadate plugin format.
1973 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1975         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1976         recognised URLs.
1978         * muse.texi: Clarify handling of implicit links by mentioning
1979         which characters can prevent Muse from recognizing something as an
1980         implicit link.
1982 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1984         * lisp/muse-mode.el (muse-next-reference)
1985         (muse-previous-reference): Fix bug #6367 by moving point to the
1986         beginning of the link.
1988 2006-09-26  Michael Olson  <mwolson@gnu.org>
1990         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1991         beginning-of-line.  This should fix a bug that was noticed in
1992         recent Emacs 22 builds.
1994         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1995         eval-and-compile block to avoid a compiler warning.
1997 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1999         * lisp/muse-backlink.el (muse-backlink-split-string):
2000         Compatibility with Emacs versions < 22
2001         (muse-backlink-pending): New internal variable
2002         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
2003         that backlinks are inserted at the right time.
2004         (muse-backlink-insert-hook-func): Remove unwind-protection; check
2005         for pending backlink, and that this is the targe page.
2006         (muse-backlink-handle-link): Don’t handle the link if we are
2007         already handling one. Return the link as well as the parent links.
2009 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
2011         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
2012         #6942 - muse-blosxom-new-entry fails when using tags.
2014 2006-09-14  Michael Olson  <mwolson@gnu.org>
2016         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
2017         compiler warning.
2019 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
2021         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
2022         function: Protect all wikiwords from START to END from further
2023         processing.
2024         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
2026 2006-09-13  Michael Olson  <mwolson@gnu.org>
2028         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
2029         adopted from Jim Ottaway's patch.  It removes links from the
2030         heading, and then marks the region read-only to inhibit WikiWord
2031         detection.
2033 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
2035         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
2036         special handling for headings.
2037         (muse-texinfo-remove-links): New function that removes explicit
2038         links from the given strings, replacing them with a description.
2040 2006-09-11  Michael Olson  <mwolson@gnu.org>
2042         * muse.texi (Getting Help and Reporting Bugs): Mention the
2043         muse-el-internationalization mailing list.
2045         * lisp/muse.el (muse-path-sans-extension): New function that acts
2046         like file-name-sans-extension, but guarantees to never modify the
2047         directory part of the path.  Thanks to Evan Monroig for
2048         investigating this.
2050         * lisp/muse-book.el (muse-book-publish-project): Use
2051         muse-path-sans-extension instead of file-name-sans-extension.
2053         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
2054         Ditto.
2056 2006-08-30  Michael Olson  <mwolson@gnu.org>
2058         * muse.texi (Blosxom Requirements): Fix typo.
2060         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
2061         directories for bzr and darcs.
2063         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
2064         contrib/pyblosxom/getstamps.py: Update version and headers.
2066 2006-08-27  Michael Olson  <mwolson@gnu.org>
2068         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
2069         nil values before they get to mapconcat.  This fixes a lockup when
2070         muse-wiki-match-all-project-files is nil.
2072         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
2073         (muse-wiki-ignore-implicit-links-to-current-page)
2074         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
2075         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
2076         (muse-wiki-publish-small-title-words)
2077         (muse-wiki-publish-pretty-title): Docfix.
2078         (muse-wiki-update-local-wikiword-regexp): Rename from
2079         muse-wiki-update-local-wikiword-regexp.  Set
2080         muse-wiki-project-file-regexp instead of
2081         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
2082         take muse-wiki-use-wikiword into account, since this is a
2083         different concept now.
2084         (muse-wiki-update-wikiword-regexp): Remove.
2085         (muse-wiki-wikiword-regexp): In-line the :set function.
2086         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
2088 2006-08-26  Michael Olson  <mwolson@gnu.org>
2090         * lisp/muse-publish.el (muse-publish-surround-text): When looking
2091         for indented list items, ignore blank lines.
2093         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
2094         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
2095         mapconcat.  This should hopefully fix a problem with large amounts
2096         of files with spaces in their name.  Thanks to Greg Detre for the
2097         report.
2099 2006-08-24  Michael Olson  <mwolson@gnu.org>
2101         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
2102         numbers from the argument to format-time-string.  This fixes an
2103         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
2105 2006-08-18  Michael Olson  <mwolson@gnu.org>
2107         * lisp/muse-project.el (muse-project-file-entries): Since we are
2108         given a full path, match against the filename as well.  This fixes
2109         an issue where backup files were being added to the file alist.
2111         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
2112         from muse-html.el.
2114 2006-08-12  Michael Olson  <mwolson@gnu.org>
2116         * Makefile (.PHONY): Don't use line continuations.
2117         (realclean fullclean): Call realclean in subdirs, not distclean.
2118         (distclean): Don't call realclean, since this would wipe out our
2119         autoloads file.
2120         (dist): Use correct path to autoloads file.
2122         * NEWS: Catch up with the latest changes.
2124         * experimental/Makefile (.PHONY): Wrap long line.
2126         * lisp/Makefile (distclean): Do the same thing as "clean", not
2127         "realclean".
2129         * lisp/muse-project.el (muse-project-get-applicable-style):
2130         Indentation tweak.
2131         (muse-project-ignore-regexp, muse-project-recurse-directory):
2132         Docfix.
2133         (muse-project-of-file): Try the ignored files regexp against the
2134         base filename as well as the entire path.
2136         * lisp/muse-publish.el (muse-publish-this-file): Display message
2137         if the buffer is not associated with any file, so that we avoid
2138         errors later on.
2139         (muse-publish-url-desc): New function taken from muse-publish-url
2140         that causes a URL description to be transformed.
2141         (muse-publish-url): Call muse-publish-url-desc on either the
2142         description or the original URL if it will be used as a
2143         description.  Accept the original URL as an argument, in case it
2144         was transformed earlier.
2145         (muse-publish-insert-url): Pass original URL as an argument.
2146         (muse-publish-markup-link): Make this somewhat easier to follow.
2147         Pass original URL as argument.
2148         (muse-publish-get-style): If the same style is used to publish to
2149         two different directories, prompt the user for which directory to
2150         use.
2151         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
2152         latest changes.
2153         (muse-publish-markup-url): Pass original URL as an argument.  This
2154         fixes the "nil" description for bare URLs that was in 3.02.91.
2155         Nothing like finding a bug just after completing the announcement
2156         of a release.
2158         * lisp/muse.el: Use defalias whenever convenient.
2159         (muse-version): Set version to 3.02.92 (3.03 RC2).
2161 2006-08-10  Michael Olson  <mwolson@gnu.org>
2163         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
2164         style does not derive from any other class, return `t' here.
2165         This, along with the corresponding change to muse-publish.el,
2166         fixes a problem with the table of contents getting inserted
2167         multiple times for custom html-based styles.
2168         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
2169         smarter method for table centering that works with XHTML.
2171         * lisp/muse-latex2png.el Rename all functions to have a
2172         "muse-latex2png" prefix.  Turn all variables into customizable
2173         options in the muse-latex2png group.
2174         (muse-latex2png-img-dest): New option specifying where to place
2175         the images.
2176         (muse-latex2png-template): New option containing the template to
2177         use for the surrounding LaTeX code.
2178         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
2179         compliance.
2180         (muse-latex2png-move2pubdir): Avoid multiple redundant error
2181         messages when something else goes wrong.  Create the image
2182         subdirectory if it doesn't exist already -- thanks to Christian
2183         Straßer for the report.  Expand the filename properly.
2184         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
2185         and filename expansion.
2186         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
2187         the default directory properly.
2189         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
2190         do not run the same function twice.
2192 2006-08-08  Michael Olson  <mwolson@gnu.org>
2194         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
2195         introduced wrong-type-argument error.
2197         * lisp/muse-html.el (muse-html-markup-strings)
2198         (muse-xhtml-markup-string): Cause table definition that contains
2199         image to be center-aligned.  This should fix an issue with images
2200         not being centered when captions are very long.
2202         * lisp/muse-publish.el (muse-publish-table-fields): Trim
2203         whitespace from fields once we have split them up.
2205         * lisp/muse.el (muse-trim-whitespace): New function that strips
2206         leading and trailing whitespace from a string.
2208 2006-08-07  Michael Olson  <mwolson@gnu.org>
2210         * NEWS: Update through patch-95.
2212         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
2213         to match the tags.
2214         (muse-colors-explicit-link): Show images in link descriptions if
2215         inlined images are enabled.
2217         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
2218         definitions for 'image-with-desc, 'image, and 'image-link.
2219         (muse-docbook-markup-paragraph): If an inlined image begins a
2220         paragraph, insert <para> before it.
2221         (muse-docbook-fixup-images): New function that upper-cases the
2222         "format" attribute of the <imagedata> tag.
2223         (muse-docbook-finalize-buffer): Call it.
2225         * lisp/muse-html.el (muse-html-markup-strings): Publish images
2226         with descriptions as centered tables, with a centered caption
2227         underneath.  The resulting look is consistent with the way that
2228         they are published in the LaTeX style.  Thanks to Jody Klymak for
2229         the suggestion.
2230         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
2231         valid way to center a table.
2232         (muse-html-markup-paragraph): Use class="image" instead of
2233         "image-link" for paragraphs that start with an embedded image.
2235         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
2236         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
2237         suggestion.
2238         (muse-latex-markup-specials-image): New option that enables
2239         escaping of specials in images.  This was split from the URL
2240         specials.
2241         (muse-latex-decide-specials): Handle 'image context.
2242         (muse-latex-fixup-dquotes): Go to beginning of document, instead
2243         of relying on caller to do this for us.
2245         * lisp/muse-publish.el (muse-publish-escape-specials): Document
2246         'image context.
2247         (muse-publish-url): Use 'image context for images.  Use 'image
2248         instead of 'image-link and 'image-link in place of
2249         'url-with-image.  Separate the image file from its extension so
2250         that docbook and texinfo can publish images correctly.
2251         (muse-publish-markup-link): Don't force a description if one is
2252         not given.  This fixes a bug where images without descriptions
2253         were being published as 'image-with-desc instead of 'image.
2255         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
2256         images the same as URLs.
2257         (muse-texinfo-markup-strings): Improve image markup to achieve an
2258         effect similar to that of the LaTeX publishing style.  Simplify
2259         'url string.
2261         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
2263         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
2264         when we have to use the custom version of this function.
2266         * muse.texi (Images): Explain how to toggle inlining of images and
2267         give better examples.  Mention captions and that captioned images
2268         should not be used inside of text paragraphs.
2269         (Markup Strings): Bring up-to-date with the changes made since
2270         3.02.
2272 2006-08-06  Michael Olson  <mwolson@gnu.org>
2274         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
2275         in the Emacs source tree.
2277         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
2278         in the Emacs source tree.
2280         * ChangeLog.3: New file created from the old ChangeLog.
2282         * Makefile.defs (VERSION): Set to 3.02.91.
2284         * NEWS: Update through patch-84.
2286         * lisp/muse.el (muse-version): Set to 3.02.91.
2288         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
2289         attributes.
2290         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
2291         delimiter are instead of hard-coding it.
2293         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
2294         (muse-mode): Make filling definition lists work better.  This
2295         should fix #5359.
2297         * lisp/muse-publish.el (muse-style-run-hooks): Use
2298         `muse-style-element' instead of `muse-get-keyword' here.  This
2299         should fix #6399.
2301         * muse.texi: Set version to 3.02.91 (3.02 RC2).
2303 See ChangeLog.3 for earlier changes.
2305 ;; Local Variables:
2306 ;; coding: utf-8
2307 ;; End: