Merged from mwolson@gnu.org--2006/muse--main--1.0 (patch 401)
[muse-el.git] / ChangeLog
blobfd24b9da603e6a4ec98c0ae36832e4166d9c57b3
1 2007-07-24  Michael Olson  <mwolson@gnu.org>
3         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
4         save-restriction call.  This was causing a world of hurt when
5         using <lisp> inside of <include>.
7 2007-07-23  Michael Olson  <mwolson@gnu.org>
9         * lisp/muse-context.el: New file that provides support for
10         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
11         de Bornier for his work on this.
13         * lisp/muse-docbook.el (muse-docbook-entities)
14         (muse-docbook-bibliography): Remove unneeded save-restriction use.
16         * lisp/muse-latex2png.el (muse-publish-latex-tag):
17         s/contex/context/.
19         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
20         (muse-latex-bibliography): Remove call to `widen', since it is not
21         needed anymore.  Remove unneeded save-restriction use.
22         ("slides", "slides-pdf"): Indent elements uniformly.
24 2007-07-22  Michael Olson  <mwolson@gnu.org>
26         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
27         * lisp/muse-mode.el (muse-insert-tag):
28         * lisp/muse-project.el (muse-read-project)
29         (muse-read-project-file):
30         * lisp/muse-publish.el (muse-publish-get-style): Use
31         muse-completing-read-function.
33         * lisp/muse-latex2png.el (muse-publish-latex-tag)
34         (muse-publish-math-tag): Allow the contex style -- which I plan to
35         include soon -- to work with these tags.
37         * lisp/muse.el (muse-completing-read-function): New option that
38         determines which function to call when doing a completing-read.
40 2007-07-15  Michael Olson  <mwolson@gnu.org>
42         * lisp/muse-journal.el (muse-journal-html-entry-template)
43         (muse-journal-rdf-entry-template)
44         (muse-journal-rss-entry-template): Mention that this can be text
45         or a filename.
46         (muse-journal-rdf-entry-template, muse-journal-rss-header)
47         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
48         newlines to make the output look nicer.
49         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
50         Use muse-insert-file-or-string for the entry templates, rather
51         than muse-insert-markup.  This allows <lisp> and <markup> tags to
52         be acted on.  Thanks to Scott Hyde for the report.
53         (muse-journal-html-munge-buffer): Escape quote of the day using
54         entire-document specials before snarfing it.  Mark entire template
55         as read-only -- this fixes an incorrect escaping bug.  Remove
56         read-only properties before replacing template matches so that
57         they can still be escaped with entire-document specials later on.
58         (muse-journal-rss-munge-buffer): Make sure that title is escaped
59         properly.
60         (muse-journal-markup-tags): Rename from
61         muse-journal-latex-markup-tags, because we will use it for
62         journal-rss-entry as well.
63         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
64         end-quote-item.
65         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
66         html.
67         ("journal-latex", "journal-pdf", "journal-book-latex")
68         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
69         muse-journal-latex-markup-tags.
70         ("journal-rss-entry"): New style that is used by journal-rss and
71         journal-rdf to mark up individual entries.  It is needed so that
72         we can do something meaningful with the qotd tag.
73         (muse-journal-rdf-summarize-entries): Set this to nil by default,
74         because it is annoying.  Update docs to mention this.
75         (muse-journal-rss-summarize-entries): Docfix.
77         * lisp/muse-publish.el (muse-insert-file-or-string): Use
78         muse-publish-markup-header-footer-tags.  I'm not quite sure how
79         this change got reverted.
80         (muse-markup-tag-info): Make into a function.  Move common code
81         here, rather than duplicating it in two places.  Deal with case
82         where muse-publish-use-header-footer-tags is non-nil.
83         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
84         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
85         warning.
86         (muse-publish-use-header-footer-tags): New variable that indicates
87         whether we should use just the header and footer tags, rather than
88         the full set.
89         (muse-insert-file-or-string): Bind
90         muse-publish-use-header-footer-tags to t.
91         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
92         Simplify call to muse-markup-tag-info.
93         (muse-publish-mark-up-tag): Bind
94         muse-publish-use-header-footer-tags to nil.
96         * texi/muse.texi (Journal): Update for recent changes.
98 2007-07-14  Michael Olson  <mwolson@gnu.org>
100         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
101         delete the remainder of the buffer, since this causes the
102         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
103         the report and the suggested fix.
105         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
106         beginning of table-el regexp.  This fixes a bug where Muse stalls
107         when trying to publish a malformed table.  Thanks to Ye Wenbin for
108         the report and the suggested fix.
110 2007-07-12  Michael Olson  <mwolson@gnu.org>
112         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
113         default, rather than the empty string.  This really fixes the bug
114         that occurred when using Muse with muse-project-alist set to nil.
115         Thanks to Jonathan Underwood for the report.
116         (muse-wiki-update-interwiki-regexp): Set
117         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
118         defined.
119         (muse-wiki-handle-implicit-interwiki)
120         (muse-wiki-handle-explicit-interwiki): Handle case where
121         muse-wiki-interwiki-regexp is nil.
123 2007-07-10  Michael Olson  <mwolson@gnu.org>
125         * lisp/muse-mode.el (muse-grep): Abort search if the current
126         project contains no directories.
128         * lisp/muse-project.el (muse-project-file-alist): If
129         muse-project-alist is not defined, or project is nil, return nil
130         right away.  This ought to fix a bug that occurred when using Muse
131         with muse-project-alist set to nil.
132         (muse-project-of-file): Make sure muse-project-alist is not nil.
133         (muse-project-save-buffers): Make sure project is not nil.
135         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
136         case where muse-project-alist is nil.
138         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
139         for XEmacs, since color-theme.el is poorly behaved, and defines
140         its own replace-in-string.  Bad color-theme.el -- no cookie for
141         you.
143 2007-07-01  Michael Olson  <mwolson@gnu.org>
145         * Makefile (.PHONY): Update for new debian package rules.
147         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
149         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
150         Use save-restriction properly.
151         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
153         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
154         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
155         properly.
156         (muse-latex-bibliography): Re-indent.
158         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
159         higher.  This fixes an error at startup with some versions of
160         Emacs.
161         (muse-publish-cite-tag): Re-indent.
163         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
164         to the end of the link part, so as to exclude the description from
165         the match.  This fixes a bug with three-part links that have
166         descriptions.  Thanks to everyone who pointed it out.
168 2007-06-18  Michael Olson  <mwolson@gnu.org>
170         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
171         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
172         1.1 specific markup strings.
173         (muse-html-insert-anchor): Use 'anchor string, rather than
174         hard-coding it.  Thanks to Chris Corsair for the suggestion.
175         ("xhtml1.0"): New style that is an alias for the xhtml style.
176         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
178 2007-06-17  Michael Olson  <mwolson@gnu.org>
180         * examples/QuickStart.muse: Make images local so that the Info
181         version of this document works.  Add <example> for the Literal
182         paragraphs chapter, so that it is clear what is happening.
184         * Makefile: Add elpa target, which is used for building an ELPA
185         package for Muse.
187         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
188         building ELPA packages.
190         * examples/Makefile (%.html, %.pdf, %.info): Add message to
191         indicate what we are publishing.
192         (realclean distclean fullclean): Remove all TeX crud.
194         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
195         that the Info version of QuickStart can publish correctly.
197         * lisp/muse-latex.el (muse-latex-slides-header)
198         (muse-latex-lecture-notes-header): Docfix.
200         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
201         the list of things to ignore.
203         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
204         variable.
206         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
207         default to nil, since texinfmt.el is a serious nuisance.
208         (muse-texinfo-markup-strings): Add newlines to begin-example and
209         end-example.
210         (muse-texinfo-decide-specials): Also escape URL-type specials in a
211         whole slew of other contexts.
213         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
214         muse-xml.
216         * lisp/muse-xml.el (muse-xml-footer): Docfix.
218         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
220 2007-06-16  Michael Olson  <mwolson@gnu.org>
222         * etc/IDEAS.muse: Add some ideas from David D. Smith.
224         * examples/QuickStart.muse: Overhaul.
226         * lisp/muse-project.el (muse-project): Call the last part of a
227         muse-project-alist entry "Output styles" rather than "styles".
229         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
230         where we have a pipe character at the beginning of line.
232         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
233         causing tables to not be sorted at all.
235         * texi/muse.texi: Overhaul.  It would be too time-consuming to
236         list all of the changes here.  The "Getting Started" and
237         "Projects" chapters, in particular, were heavily revised.
239 2007-06-15  Michael Olson  <mwolson@gnu.org>
241         * NEWS: Update.
243         * examples/QuickStart.muse: Mention new features.
245         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
246         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
247         terminal, and C-c TAB is more important.  Most people will not
248         want to toggle images on and off that often.
250         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
251         C-i as well, so that it works in the terminal.
253         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
254         look a bit tidier when removing the region.
256         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
257         list regexp part before other parts.
258         (muse-ol-item-regexp): New regexp that specifies how to match an
259         ordered list item.
260         (muse-ul-item-regexp): New regexp that specifies how to match an
261         unordered list item.
262         (muse-table-field-regexp): New regexp that specifies how to match
263         a definition list entry.
265         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
266         lack of support for @headitem in texinfmt.el.
268         * lisp/muse.el: Wrap muse-line-beginning-position and
269         muse-line-end-position in `eval-and-compile', since they are now
270         used in muse.el.
271         (muse-list-item-type): Use a simpler algorithm for detecting which
272         kind of list item we have.  This fixes a bug where a number in a
273         definition list term was being detected incorrectly as an ordered
274         list item.  Fixes bug #6250.
275         (muse-forward-list-item): Get the entire line with the list item.
276         For some reason, Emacs 21 was not populating match 2 correctly,
277         unlike Emacs 22, so this workaround was needed.
279         * texi/muse.texi: (Keystroke Summary): Remove C-c
280         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
281         alternative keybinding to the C-c TAB stuff.  Mention
282         muse-colors-toggle-inline-images.
284 2007-06-14  Michael Olson  <mwolson@gnu.org>
286         * README: Mention that RelaxNG schema is in etc/ directory.
288         * etc/emacs-wiki-migration.txt: New document that explains how to
289         migrate from emacs-wiki to Muse.
291         * etc/muse.rnc: Increment version number to 1.0.  Fix several
292         nested emphasis and nested lists edge cases.  Move here from
293         examples/.
295         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
296         same thing as C-c C-S-t, since the former works better in the
297         console.  Thanks to Leo for the suggestion.
299         * lisp/muse-publish.el (muse-publish-markup-table)
300         (muse-publish-markup-table-el): Include a newline in the return
301         string, so that paragraph detection does not get confused.
303         * lisp/muse.el (muse-with-temp-buffer): Docfix.
305         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
306         keybinding.
308 2007-06-13  Michael Olson  <mwolson@gnu.org>
310         * etc/IDEAS.muse: Mark three-part-links item as done.
312         * experimental/muse-message.el: Remove guard for muse-define-style
313         calls.
315         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
316         markup rules were being interpreted in reverse order.  This should
317         make implicit interwiki links work properly again.
318         (muse-link-face): Strip anchor from end of a path, so that this
319         works with anchors in interwiki links.
320         (muse-colors-insert-image): Catch error that occurs in Emacs 21
321         when an image does not exist.
323         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
324         anchors.
325         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
326         interwiki links work.  Thanks to Jim Ottaway for the initial
327         implementation.
328         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
329         links work.
331         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
332         about match 0.
333         (muse-handle-explicit-link): Docfix: this does not modify the
334         match data.
335         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
336         that has the regexp in its car.
338 2007-06-12  Michael Olson  <mwolson@gnu.org>
340         * README: Document new etc/ directory.
342         * etc/IDEAS.muse: Install things from new contributors just after
343         the 3.03 release, since I won't have time to review the code
344         before the release.  Move to new etc/ directory.  Slides
345         publishing has been installed.
347         * lisp/muse-latex.el (muse-latex-slides-header): New option that
348         determines the header to use for publishing slides.
349         (muse-latex-lecture-notes-header): New option that determines the
350         header to use for publishing lecture notes.
351         (muse-latex-slides-markup-tags): New option containing tags to use
352         when publishing slides.
353         (muse-latex-permit-contents-tag): Move higher in file.
354         (muse-latex-slide-tag): New function to publish the <slide> tag.
355         ("slides", "slides-pdf"): New publishing styles that create slides
356         using Beamer.
357         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
358         create lecture notes using Beamer.
360         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
361         since otherwise Planner is not happy when `plan' is called during
362         init.  Remove stray quote from autoload snippet.
364 2007-06-11  Michael Olson  <mwolson@gnu.org>
366         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
367         autoload, rather than having it exist at top-level.  Thanks to Leo
368         for the suggestion.
369         (muse-update-file-extension): Docfix.
371 2007-06-10  Michael Olson  <mwolson@gnu.org>
373         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
374         URLs were being removed during publishing.  Thanks to everyone who
375         reported this.
377 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
379         * lisp/muse-book.el
380         * lisp/muse-docbook.el
381         * lisp/muse-latex.el
382         * lisp/muse-publish.el: added support for <cite> element which
383         denotes in-text citations
385         * lisp/muse-html.el
386         * lisp/muse-groff.el
387         * lisp/muse-texinfo.el
388         * lisp/muse-xml.el: added support for <cite> element (stub)
390 2007-06-06  Michael Olson  <mwolson@gnu.org>
392         * lisp/muse-regexps.el (muse-table-line-regexp)
393         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
394         regexps so that they work with XEmacs 21.  Thanks to Adrian
395         Tritschler for the report.
397         * texi/muse.texi: Update copyright years.
398         (HTML): Document muse-xhtml-style-sheet.  Thanks
399         to thorne for noticing.
400         (Development): Change archive year to 2006.  Thanks to Adrian
401         Tritschler for noticing.  So *that's* why some people had the 2005
402         version ....
404 2007-06-05  Michael Olson  <mwolson@gnu.org>
406         * Makefile (install-info): Remove $(MANUAL).info part, since this
407         is taken care of already by texi/Makefile.  Thanks to Leo for the
408         report.
410         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
411         read-only properties to qotd contents, so that they don't get
412         double-escaped.  Thanks to Leo for the report.
414 2007-06-04  Michael Olson  <mwolson@gnu.org>
416         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
417         -- that is, Tramp or ange-ftp -- file, then do not call
418         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
419         Fixes bug #5115.
421         * lisp/muse-html.el (muse-html-insert-contents): Add
422         documentation.  Handle case where heading is read-only, but has
423         muse-contents property.  Remove the muse-contents property for any
424         heading we come across so as to avoid double-including an item in
425         an outer table of contents.
426         (muse-html-denote-headings): New function that denotes whether a
427         heading is not read-only by adding the muse-contents property to
428         it.
429         (muse-html-munge-buffer): If we are not to generate contents,
430         still denote headings, in case some outer layer wants to generate
431         contents for our headings.  This should fix a bug with table of
432         contents and the <include> tag.  Thanks to thorne for the report.
434         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
435         muse-publish-generate-contents and set it to nil.  This should
436         do the right thing when using <include> tags.
438 2007-06-02  Michael Olson  <mwolson@gnu.org>
440         * NEWS: Update for non-inlined image change and support for
441         table.el style tables.
443         * examples/Makefile (clean): Clean backup files.
445         * examples/QuickStart.muse (Images): New section that describes
446         how to inline and not inline images.
448         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
449         touch images that have "URL:" in front of them.
451         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
452         "URL:".  Use the identity function to resolve, since we don't want
453         to rip "URL:" out while publishing, due to some magic that depends
454         on that text.
455         (muse-browse-url-url): New function that browses URLs that have
456         "URL:" in front of them, by removing the "URL:" part and
457         reprocessing the remainder.
459         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
460         (muse-publish-url): Recognize images in the description before
461         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
462         for the suggested workaround.
463         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
464         default value.
465         (muse-publish-classify-url): If target begins with "URL:" return
466         type url.
467         (muse-publish-strip-URL): New function that strips "URL:" from the
468         beginning of a string.  This is used to remove URL: from the link
469         description.  * texi/muse.texi (Markup Strings): Clarify the
470         meanings of image-link, link, and link-and-anchor.
471         (muse-publish-markup-regexps): Move normal table rule to 2350.
472         Rule 2300 is now a regexp that matches table.el-style tables.
473         (muse-publish-markup-functions): Add table-el entry.
474         (muse-publish-table-el-table): New function that given a variant,
475         publishes a table.el-style table using the table in the matched
476         region.
477         (muse-publish-markup-table-el): New function that determines
478         whether the table.el-style table can be published, and what
479         variant to use.
481         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
482         the borders of table.el-style tables.
484         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
485         the table has sufficient whitespace in front of it.
487         * texi/muse.texi (Images): Update for new non-inlined image
488         ability and provide example.
490 2007-05-31  Michael Olson  <mwolson@gnu.org>
492         * NEWS: Add example for setting `muse-html-table-attributes'.
494         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
495         Publish multiple tbody tags if there is a horizontal separator
496         after the heading, because that is valid HTML after all.
498 2007-05-30  Michael Olson  <mwolson@gnu.org>
500         * NEWS: Update.
502         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
503         horizontal separators in tables.
505         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
506         horizontal separators in tables.
507         (muse-publish-trim-table): New function to remove initial and
508         final blank columns from a table.
509         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
510         with horizontal separators, aka "hlines".
512         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
513         defines the syntax of a horizontal separator in a table.
515         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
516         horizontal separators.  Publish header lines correctly.
518         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
519         where we have nonnumbers as a row type.  This ignores sorting for
520         hlines.
521         (muse-xml-markup-table): Deal with horizontal separators.  If the
522         markup supports table groups, make hlines separate table groups.
523         Otherwise, ignore them, since they cannot be marked up.  Together,
524         these changes allow us to support orgtbl-mode tables.  Thanks to
525         Carsten Dominik for the suggestion.
527 2007-05-26  Michael Olson  <mwolson@gnu.org>
529         * lisp/muse-project.el (muse-project-alist-styles): Allow for
530         other things to be added to each generated style as well.  For
531         example, this permits me to add
532         :base-url "http://blog.mwolson.org/"
533         for my blog.
535 2007-05-25  Michael Olson  <mwolson@gnu.org>
537         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
538         way of building Debian packages that preserves the original
539         release tarball and is more modular.
540         (debrevision, debrelease): Remove.
541         (dist): No need to remove the debian/ directory, since it is now
542         in its own branch.
543         (debprepare): Copy over debian/ directory properly.
545         * NEWS: Update.
547         * examples/Makefile (clean): Remove QuickStart.texi, in case
548         something went wrong during the build.
549         (%.pdf): Publish the example using the normal pdf style, rather
550         than info-pdf.
552         * examples/QuickStart.muse: Add myself to the authors list.
554         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
555         sufficient blank lines before the tag.
557         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
558         we have sufficient blank lines before the tag.
560         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
561         specifies the program to call in order to generate PDF content
562         from LaTeX content.
563         (muse-latex-pdf-cruft): New option that specifies the extensions
564         of files to remove after generating PDF output successfully.
565         (muse-latex-pdf-generate): Use these new options.  Work around the
566         annoying edge case where a tilde character exists in the filename
567         or directory path -- now this can only error out when the relative
568         path from the output file to the source file contains a tilde,
569         which is far less likely.
571         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
572         muse-publish-ensure-block here after all, because <lisp> et al may
573         occur inline as part of other things.
575         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
576         occur after full-document escaping, rather than before.  This
577         prevents automatically-inserted Texinfo code from being escaped.
578         (muse-texinfo-pdf-generate): Rewrite to call
579         `muse-latex-pdf-generate' with pdftex as the generating binary,
580         because texi2pdf suffers irredeemably from the tilde edge case
581         mentioned above.
583 2007-05-24  Michael Olson  <mwolson@gnu.org>
585         * NEWS: Drop vague entries and position interesting entries closer
586         to the top of each section.  Update for new changes.
588         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
589         and bzr metadata directories to the list of things to ignore.
591         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
592         `muse-publish-ensure-block-tag', since we will use it for more
593         than just tags.
594         (muse-publish-markup-list, muse-publish-verse-tag)
595         (muse-publish-quote-tag, muse-publish-example-tag)
596         (muse-publish-markup-attribute): Use it.  This fixes a bug that
597         can occur when these types of markup occur immediately after a
598         paragraph.  It's good to have defined behavior!
600         * texi/muse.texi (Markup Strings): Mention new argument for
601         link-and-anchor.
603 2007-05-19  Michael Olson  <mwolson@gnu.org>
605         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
606         published footnotes and footnote references.  Thanks to Scott
607         Jaderholm for the idea.
609         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
610         link-and-anchor, on the recommendation of the original submitter.
612 2007-05-14  Michael Olson  <mwolson@gnu.org>
614         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
615         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
616         suggestion.
618         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
619         file extension as the fourth argument.
621         * README, texi/muse.texi (Getting Help and Reporting Bugs):
622         Mention the new muse-el-logs mailing list.
624 2007-05-13  Michael Olson  <mwolson@gnu.org>
626         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
627         "\`" here.  This fixes a problem with publishing custom URLs.
629 2007-05-12  Michael Olson  <mwolson@gnu.org>
631         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
632         update the list if the current buffer is associated with a file.
633         This fixes a bug with M-x muse-publish-region in a temporary
634         buffer.
636 2007-05-01  Michael Olson  <mwolson@gnu.org>
638         * lisp/muse-publish.el (muse-publish-region): Remove read-only
639         properties from the published buffer, so that the results can be
640         manually tweaked.
642 2007-04-23  Michael Olson  <mwolson@gnu.org>
644         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
645         find the footnote that goes with a reference, leave the reference
646         as-is.  This fixes an error where control characters could be
647         placed in a published document.
649 2007-04-22  Michael Olson  <mwolson@gnu.org>
651         * IDEAS.muse: Add muse-slides.el to list of things to include
652         before release.
654         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
655         character.
656         (muse-protocol-find): Find protocols correctly.  Rewrite to use
657         catch/throw.
658         (muse-browse-url): Don't concatenate "\`" here.  Together, this
659         fixes a bug with browsing woman:// links.
661         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
662         where entry-dir has a trailing backslash.
663         (muse-project-publish-file): If a style is malformed, skip it and
664         display a warning message.  This should help people figure out
665         where the problem is.
667 2007-04-21  Michael Olson  <mwolson@gnu.org>
669         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
670         yet-to-be-included "contex" publishing style, use "$$" rather
671         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
672         this out.
674 2007-04-20  Michael Olson  <mwolson@gnu.org>
676         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
677         variable that causes the :before and :before-end hooks to be
678         ignored when non-nil.
679         (muse-publish-markup-region): Use it.  Also, guarantee that point
680         is at end of region after publishing.
681         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
682         variable.
684 2007-04-19  Michael Olson  <mwolson@gnu.org>
686         * IDEAS.muse: New file containing a list of ideas we have for new
687         features, or patches that have yet to be applied.
689         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
690         be so confusing.
692         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
693         docstring.
695         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
696         <literal> tags with muse-publish-literal-tag, rather than
697         muse-publish-mark-read-only.
698         (muse-publish-literal-tag): New function that publishes the
699         <literal> tag.  It adds the ability to add the optional "style"
700         and "exact" elements, which cause text to only be included if the
701         current publishing style matches some criteria.  The text will be
702         removed otherwise.  Thanks to Jim Ottaway for the implementation.
703         (muse-publish-mark-up-tag): Let the <markup> tag take the
704         additional optional elements "style" and "exact", with much the
705         same effect as the <literal> improvements, but after calling
706         "function" or publishing the region first.  Make it possible to
707         put <content> tags in <markup> regions in HTML publishing.
709 2007-04-12  Michael Olson  <mwolson@gnu.org>
711         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
712         that a blank line always exists after a heading.  This fixes a bug
713         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
714         for the report.
716         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
717         detection regexp to that which is used in Docbook and HTML
718         publishing styles.
720 2007-04-02  Michael Olson  <mwolson@gnu.org>
722         * README (muse-el-announce): Make a listing of mailing lists,
723         rather than pointing to the old EmacsWikiMailingList page.  Thanks
724         to Andreas Roehler for noticing.
726 2007-04-01  Michael Olson  <mwolson@gnu.org>
728         * lisp/muse-publish.el (muse-publish-date-format): Add
729 `       customization type and group.
730         (muse-publish-region): New interactive function that publishes a
731         region to a new buffer.
733         * texi/muse.texi: Use "document" rather than "manual".
735 2007-03-31  Michael Olson  <mwolson@gnu.org>
737         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
738         expression (muse-style-derived-p "latex" (muse-style "latex"))
739         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
740         for the catch.
742 2007-02-25  Michael Olson  <mwolson@gnu.org>
744         * lisp/muse-publish.el (muse-publish-date-format): New option that
745         specifies how to format the date when publishing Muse pages.
746         Thanks to Thomas Gehrlein for the suggestion.
747         (muse-publish-markup-buffer): Use it.
749 2007-02-23  Michael Olson  <mwolson@gnu.org>
751         * README: Add Prerequisites section to mention which versions of
752         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
753         the suggestion.  Update link destination for Muse's page on
754         emacswiki.org.
756 2007-02-15  Michael Olson  <mwolson@gnu.org>
758         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
759         be not just at beginning of line.  This fixes an error with the
760         <class> tag.  Thanks to Jim Pivarski for the report.
762 2007-02-14  Michael Olson  <mwolson@gnu.org>
764         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
765         whether something is an image before checking to see if it is a
766         URL.  Thanks to ITSUMI ken-ichi for the report.
768 2007-02-13  Michael Olson  <mwolson@gnu.org>
770         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
771         comments that have no text better.  Thanks to fang.lungang for the
772         report.
773         (muse-publish-markup-comment): Deal with case where no comment
774         text is provided.
776 2007-01-23  Michael Olson  <mwolson@gnu.org>
778         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
779         that ensures that at least one blank line exists at the given
780         position.  This is used to avoid paragraph detection problems when
781         block-level tags like <example> immediately follow a paragraph.
782         Thanks to Hans Ekbrand for the report.
783         (muse-publish-example-tag): Use it.
785 2007-01-19  Michael Olson  <mwolson@gnu.org>
787         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
788         previous blank line if we are publishing in Latex.  Otherwise,
789         that wouldn't be the right thing, so leave it be.
791 2007-01-17  Michael Olson  <mwolson@gnu.org>
793         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
794         multiple centered math lines on the same line; keep them on
795         different lines.  Use \[ math-text \] instead of $$math-text$$,
796         since the latter seems to be deprecated.  Thanks to Jody Klymak
797         for the pointer.
799 2007-01-15  Michael Olson  <mwolson@gnu.org>
801         * lisp/muse-latex2png.el (muse-publish-latex-tag)
802         (muse-publish-math-tag): Publish region read-only when current
803         style is Latex-derived, so that Muse does not escape it.
804         (muse-publish-math-tag): If 6 or more spaces come before the tag,
805         surround the region with "$$" rather than "$".  This is the Muse
806         syntax for something centered, so it should be a good fit.
808 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
810         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
811         protocol.
812         (muse-browse-url-man): Change man page URL format.  The code is
813         simpler when the section is left inside parentheses.
814         (muse-browse-url-woman): New function.
816 2007-01-14  Michael Olson  <mwolson@gnu.org>
818         * AUTHORS: Bookkeeping.
820         * lisp/muse-latex2png.el: Associate <math> tag with
821         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
822         Klymak for the report.
823         (muse-publish-math-tag): Use muse-insert-markup for the "$"
824         characters, so they don't get escaped.
826         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
827         make muse-style-derived-p easier to implement.
828         (muse-style-derived-p): If the style is not provided, fetch it and
829         check to see if the car is a string.  This should fix the other
830         problem that was reported.
832         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
833         explains a case where setting muse-file-extension to nil can cause
834         unexpected behavior.
836 2007-01-09  Michael Olson  <mwolson@gnu.org>
838         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
839         comments higher priority than tags.  Thanks to Stefan van der Walt
840         for the report.
842 2007-01-08  Michael Olson  <mwolson@gnu.org>
844         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
845         argument rather than calling match-string.  Thanks to Stefan van
846         der Walt for the report.  This should fix a bug with publishing
847         <include file="..." markup="example">.
849 2007-01-06  Michael Olson  <mwolson@gnu.org>
851         * Makefile (debclean): New rule split from debrevision and
852         debrelease.
853         (debbuild): Take distributor into account.
855         * Makefile.defs (DISTRIBUTOR): New field that tracks what
856         vendor/distributor we are building for.
858 2007-01-04  Michael Olson  <mwolson@gnu.org>
860         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
861         line.
863         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
864         point to muse-publish-src-tag by default, since <src> and
865         <example> have different parameters.
866         (muse-publish-src-tag): New barebones publishing function for
867         <src>, which is superseded when publishing in an HTML-based style.
869 2007-01-03  Michael Olson  <mwolson@gnu.org>
871         * lisp/muse-html.el (muse-html-src-tag): Document.
873         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
874         command that calls a given tag on the current buffer.  Attributes
875         may be passed.
876         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
877         it.
878         (muse-publish-srcify-buffer): New function that allows
879         markup="src" in the <include> tag.
880         (muse-publish-get-and-delete-attr): New macro that gets an
881         attribute from a list and removes the first instance of that
882         attribute from said list.
883         (muse-publish-markup-attribute): Handle markup="src".
884         (muse-publish-command-tag, muse-publish-include-tag): Use
885         muse-publish-get-and-delete-attr.  This allows the remaining
886         attributes to be passed.
888         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
889         as changes to <command> and <include>.
891 2006-12-30  Michael Olson  <mwolson@gnu.org>
893         * NEWS: Update.
895         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
896         from muse-publish-math-tag to avoid conflict with
897         muse-latex2png.el.
899 2006-12-23  Michael Olson  <mwolson@gnu.org>
901         * lisp/muse-latex2png.el: Update header, since this has been
902         rewritten sufficiently to not need an assignment from the original
903         author.
904         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
905         (muse-latex2png): Use two underscores to separate prefix and hash.
906         (muse-latex2png-region): New function split from
907         muse-publish-latex-tag that can be used easily by other code.
908         Detect whether we are using an HTML-based publishing style, and
909         insert a simpler markup if we are not.  If we are using a
910         Latex-based publishing style, do not generate an image, and leave
911         the region alone.  Return the path of the generated image, in case
912         other functions want to use this programmatically.
913         (muse-publish-latex-tag): Set a default prefix based on the name
914         of the current file.
915         (muse-publish-math-tag): New tag that surrounds the region with
916         "$" characters, so that it becomes a Latex math region, and then
917         publishes it.
919         * lisp/muse-publish.el (muse-style-derived-p): New function that
920         returns non-nil if a given style, or the current style if omitted,
921         is equal to or derived from the given base style.  This is useful
922         in <lisp> tags, because it allows the user to specify markup that
923         is only to be inserted for one particular style.
925 2006-12-22  Michael Olson  <mwolson@gnu.org>
927         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
928         (muse-html-src-tag): New function which publishes the <src> tag.
929         Thanks to Clinton Ebadi and Charles Wang for the initial
930         implementations.
932         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
934 2006-12-21  Michael Olson  <mwolson@gnu.org>
936         * examples/johnw/muse-johnw.el: Update for preferred
937         muse-derive-style usage.  Rename to muse-init.el.
939         * examples/mwolson/muse-init.el: Update.
941         * lisp/muse-book.el (muse-book-publish): New function split from
942         muse-book-publish-project.  This is used in the definitions for
943         the book-latex and book-pdf styles.
944         (muse-book-publish-p): New function split from muse-book-publish.
945         (muse-book-get-directives): New function that retrieves the
946         publishing directives from the given file.
947         (muse-book-publish): Use muse-book-get-directives to set the title
948         if no title was specified.
950         * lisp/muse-project.el (muse-project): Add :publish-project entry
951         to widget.
952         (muse-read-project, muse-project-find-file): Message fix.
953         (muse-project-publish-file-default): New function split from
954         muse-project-publish-file.
955         (muse-project-publish-file): Allow file-level publishing function
956         to be specified by the :publish element.  The default is
957         muse-project-publish-file-default.
958         (muse-project-publish-default): New function split from
959         muse-project-publish.
960         (muse-project-publish): Allow project-level publishing function to
961         be specified by :publish-project element.  The default is
962         muse-project-publish-default.
964         * lisp/muse-publish.el (muse-publish-file): Message fix.
966         * texi/muse.texi (Book): Mention new way to publish books and
967         provide an example, since the process may be non-obvious.
969 2006-12-20  Michael Olson  <mwolson@gnu.org>
971         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
972         content-modifying code from the rest of
973         muse-docbook-finalize-buffer.
975         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
976         muse-groff-finalize-buffer, since it adds content to the buffer.
978         * lisp/muse-html.el (muse-html-munge-buffer): Split out
979         content-modifying code from the rest of muse-html-finalize-buffer.
980         This fixes a bug when using <include> with <content> tags.
982         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
983         (muse-journal-latex-munge-buffer)
984         (muse-journal-rss-munge-buffer): Rename, since they add content to
985         the buffer.
987         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
988         muse-latex-finalize-buffer, since it adds content to the buffer.
990         * lisp/muse-mode.el:
991         * lisp/muse-project.el:
992         * lisp/muse-publish.el:
993         * lisp/muse.el: Fix recursive load error.
995         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
996         muse-texinfo-finalize-buffer, since it adds content to the buffer.
998         * lisp/muse-wiki.el: Comment cleanup.
1000         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1002 2006-12-17  Michael Olson  <mwolson@gnu.org>
1004         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1005         Remove the definition of \comment, since Latex already has comment
1006         syntax.
1007         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1008         than our own.  Thanks to Ryan Stutsman for pointing this out.
1010 2006-12-02  Michael Olson  <mwolson@gnu.org>
1012         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1013         that this can generate a proper table of contents for Planner HTML
1014         publishing.
1016 2006-12-01  Michael Olson  <mwolson@gnu.org>
1018         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1019         using a very old Emacs, avoid an infinite loop that could occur
1020         when the regexp is an empty string.
1022 2006-11-26  Michael Olson  <mwolson@gnu.org>
1024         * NEWS: Bring up to date.
1026         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1027         list issues and multiple-stanza verse issues.  This takes care of
1028         all of the markup issues I was worried about.
1030         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1031         (muse-project-publish-private-files): New option that indicates
1032         whether files with private filesystem permissions should be
1033         published.  The default is to publish them, since it avoids
1034         confusion in new users.
1035         (muse-project-private-p): Use it.
1037 2006-11-19  Michael Olson  <mwolson@gnu.org>
1039         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1040         style is found, which means that the link is not a Muse page, do
1041         not add a suffix or prefix to it.  This should fix the
1042         "[[thing.owl]]" bug that Phillip Lord reported.
1044         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1045         removing unused 2nd argument.
1047 2006-11-17  Michael Olson  <mwolson@gnu.org>
1049         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1050         latex publishing where nested enumerated lists would be squashed
1051         together at the end.
1053 2006-11-16  Michael Olson  <mwolson@gnu.org>
1055         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1056         list embedded in a definition list look right.  This also allows
1057         for definitions to be separated from their terms, much like the
1058         way HTML does it by default, if the user puts a blank line or a
1059         line break between the term and the definition.  If the term and
1060         definition are on the same line, they will be that way in the
1061         output as well.
1063 2006-11-11  Michael Olson  <mwolson@gnu.org>
1065         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1066         for the report.
1067         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1069 2006-11-07  Michael Olson  <mwolson@gnu.org>
1071         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1072         release candidate for Muse 3.03, available.
1074         * NEWS: Update.
1076 2006-11-06  Michael Olson  <mwolson@gnu.org>
1078         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1079         following a relative link worked even when the path was incorrect.
1081 2006-11-04  John Sullivan  <john@wjsullivan.net>
1083         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1084         muse-follow-name-at-point to reduce collisions with other
1085         modes (Planner).
1087         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1089 2006-11-04  Michael Olson  <mwolson@gnu.org>
1091         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1092         optional, and make interwiki delimiter a regular rather than shy
1093         group.
1094         (muse-wiki-handle-implicit-interwiki): Rename from
1095         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1096         (muse-wiki-handle-explicit-interwiki): New function that is
1097         smarter about where an explicit link ends in a buffer.  This
1098         allows you to refer to page names with invalid Wiki characters,
1099         such as underscores and dashes, merely by enclosing them in double
1100         brackets.  Also, a bug with recognizing project names too loosely
1101         has been fixed.
1103 2006-11-03  Michael Olson  <mwolson@gnu.org>
1105         * lisp/muse-project.el (muse-project-page-file): Make relative
1106         links work as expected, hopefully.
1108         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1109         output style manually, since it will differ from anything in the
1110         publishing style list.
1112 2006-10-30  Michael Olson  <mwolson@gnu.org>
1114         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1115         grouping elements, since that no longer applies.
1116         (muse-colors-custom-tags): Explicitly match against
1117         muse-tag-regexp to get the match-data set the way we want.  This
1118         really fixes the <example> highlighting bug that Stefan reported.
1119         (muse-configure-highlighting): Set the original value to the
1120         symbol, not the modified value.  Re-use modified rules properly.
1122         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1123         introduced yesterday.
1125 2006-10-29  Michael Olson  <mwolson@gnu.org>
1127         * examples/mwolson: Update my example configuration.
1129         * NEWS: Update.
1131         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1132         without a regexp in the first position before iterating through
1133         them to build muse-colors-vector.  This fixes a bug with the
1134         display of <example> tags.  Thanks to Stefan Reichör for the
1135         report.
1137         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1138         files in projects to be linked to.
1140         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1141         to serve as a description for a URL, as long as it differs from
1142         the destination URL.  This fixes the description of WikPage links
1143         in PDF output.
1144         (muse-publish-link-file): Check to see whether the given link
1145         points at a valid file.  If so, return it.  Otherwise, apply other
1146         transforms like prefix and link suffix.
1148         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1149         "/", it is a file or directory, not a Muse page.  Thanks to
1150         Phillip Lord for the suggestion.
1152         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1153         of the current page as the local path, instead of duplicating the
1154         remote file's path.  This probably fixes at least one reported
1155         bug. since it's quite major.
1156         (muse-wiki-update-project-file-regexp)
1157         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1158         passed to regexp-opt, since that can cause Emacs 21 to throw an
1159         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1160         DOT edu for the report.
1161         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1163 2006-10-28  Michael Olson  <mwolson@gnu.org>
1165         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1166         (muse-project-resolve-link): If the given style does not have a
1167         link-suffix, default to suffix.  This fixes a bug I was noticing
1168         when linking to a file that was published in both PDF and HTML
1169         form.
1171         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1172         function that is used as a callback to determine the initial
1173         amount of indentation that the current dl item has.
1174         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1175         and the post-indent value, instead of trying to determine them
1176         both.
1177         (muse-publish-strip-list-indentation): New function stripped from
1178         `muse-publish-surround-text' for readability.
1179         (muse-publish-surround-text): Instead of taking a determine-indent
1180         value, take a determine-indent-func function, which is called just
1181         after finding the next list item.  If we are asked to determine
1182         the amount of indentation, concatenate indent and post-indent the
1183         first time around.  This effectively fixes all known definition
1184         list issues.
1186 2006-10-16  Michael Olson  <mwolson@gnu.org>
1188         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1189         other software -- namely, Planner -- can detect whether they are
1190         using a version of Muse that supports nested tags.
1191         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1192         muse-publish-goto-tag-end.
1194         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1195         Adapt for nested tags.
1197         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1198         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1199         this.
1201         * lisp/muse-publish.el (muse-publish-markup-tag)
1202         (muse-publish-quote-tag): Use muse-goto-tag-end.
1204         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1206 2006-10-15  Michael Olson  <mwolson@gnu.org>
1208         * AUTHORS: Bookkeeping.
1210         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1211         tag.
1213         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1214         tags.
1216         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1218         * lisp/muse-import-docbook.el (muse-import-docbook)
1219         (muse-import-docbook-files): Docfix.
1220         (muse-import-docbook-get-title): Remove cl.el-ism.
1222         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1224         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1226         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1228         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1229         (muse-next-reference, muse-previous-reference): Minor whitespace
1230         changes.
1231         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1232         the suggestion.
1234         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1236         * lisp/muse-publish.el (muse-publish-markup-tags)
1237         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1238         element and make 4th element determine whether tags are nestable.
1239         (muse-publish-goto-tag-end): New function that moves to the end of
1240         a tag.  Handle nested tags when NESTED is non-nil.
1241         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1242         5th element for function.
1243         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1244         this on several scenarios, and it seems to work.
1245         (muse-publish-surround-text): Accept new optional argument
1246         LIST-ITEM which determines the regexp to use for list items.  The
1247         default is to use muse-list-item-regexp.
1249         * muse.texi (Markup Tags): Mention nestable tags.
1251         * NEWS: Mention new files.
1253 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1255         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1256         into Muse format.
1258         * lisp/muse-import-xml.el: New file that provides helper routines
1259         for converting XML-ish files to Muse format.
1261 2006-10-10  Michael Olson  <mwolson@gnu.org>
1263         * NEWS: Update for 3.02.7 bugfix release.
1265 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1267         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1268         using the value in the muse #date directive.
1269         (muse-blosxom-use-metadate): New option that determines whether or
1270         not to use the #postdate directive.
1271         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1272         metadate plugin format.
1274 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1276         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1277         recognised URLs.
1279         * muse.texi: Clarify handling of implicit links by mentioning
1280         which characters can prevent Muse from recognizing something as an
1281         implicit link.
1283 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1285         * lisp/muse-mode.el (muse-next-reference)
1286         (muse-previous-reference): Fix bug #6367 by moving point to the
1287         beginning of the link.
1289 2006-09-26  Michael Olson  <mwolson@gnu.org>
1291         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1292         beginning-of-line.  This should fix a bug that was noticed in
1293         recent Emacs 22 builds.
1295         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1296         eval-and-compile block to avoid a compiler warning.
1298 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1300         * lisp/muse-backlink.el (muse-backlink-split-string):
1301         Compatibility with Emacs versions < 22
1302         (muse-backlink-pending): New internal variable
1303         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1304         that backlinks are inserted at the right time.
1305         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1306         for pending backlink, and that this is the targe page.
1307         (muse-backlink-handle-link): Don’t handle the link if we are
1308         already handling one. Return the link as well as the parent links.
1310 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1312         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1313         #6942 - muse-blosxom-new-entry fails when using tags.
1315 2006-09-14  Michael Olson  <mwolson@gnu.org>
1317         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1318         compiler warning.
1320 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1322         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1323         function: Protect all wikiwords from START to END from further
1324         processing.
1325         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1327 2006-09-13  Michael Olson  <mwolson@gnu.org>
1329         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1330         adopted from Jim Ottaway's patch.  It removes links from the
1331         heading, and then marks the region read-only to inhibit WikiWord
1332         detection.
1334 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1336         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1337         special handling for headings.
1338         (muse-texinfo-remove-links): New function that removes explicit
1339         links from the given strings, replacing them with a description.
1341 2006-09-11  Michael Olson  <mwolson@gnu.org>
1343         * muse.texi (Getting Help and Reporting Bugs): Mention the
1344         muse-el-internationalization mailing list.
1346         * lisp/muse.el (muse-path-sans-extension): New function that acts
1347         like file-name-sans-extension, but guarantees to never modify the
1348         directory part of the path.  Thanks to Evan Monroig for
1349         investigating this.
1351         * lisp/muse-book.el (muse-book-publish-project): Use
1352         muse-path-sans-extension instead of file-name-sans-extension.
1354         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1355         Ditto.
1357 2006-08-30  Michael Olson  <mwolson@gnu.org>
1359         * muse.texi (Blosxom Requirements): Fix typo.
1361         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1362         directories for bzr and darcs.
1364         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1365         contrib/pyblosxom/getstamps.py: Update version and headers.
1367 2006-08-27  Michael Olson  <mwolson@gnu.org>
1369         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1370         nil values before they get to mapconcat.  This fixes a lockup when
1371         muse-wiki-match-all-project-files is nil.
1373         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1374         (muse-wiki-ignore-implicit-links-to-current-page)
1375         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1376         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1377         (muse-wiki-publish-small-title-words)
1378         (muse-wiki-publish-pretty-title): Docfix.
1379         (muse-wiki-update-local-wikiword-regexp): Rename from
1380         muse-wiki-update-local-wikiword-regexp.  Set
1381         muse-wiki-project-file-regexp instead of
1382         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1383         take muse-wiki-use-wikiword into account, since this is a
1384         different concept now.
1385         (muse-wiki-update-wikiword-regexp): Remove.
1386         (muse-wiki-wikiword-regexp): In-line the :set function.
1387         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1389 2006-08-26  Michael Olson  <mwolson@gnu.org>
1391         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1392         for indented list items, ignore blank lines.
1394         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1395         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1396         mapconcat.  This should hopefully fix a problem with large amounts
1397         of files with spaces in their name.  Thanks to Greg Detre for the
1398         report.
1400 2006-08-24  Michael Olson  <mwolson@gnu.org>
1402         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1403         numbers from the argument to format-time-string.  This fixes an
1404         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1406 2006-08-18  Michael Olson  <mwolson@gnu.org>
1408         * lisp/muse-project.el (muse-project-file-entries): Since we are
1409         given a full path, match against the filename as well.  This fixes
1410         an issue where backup files were being added to the file alist.
1412         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1413         from muse-html.el.
1415 2006-08-12  Michael Olson  <mwolson@gnu.org>
1417         * Makefile (.PHONY): Don't use line continuations.
1418         (realclean fullclean): Call realclean in subdirs, not distclean.
1419         (distclean): Don't call realclean, since this would wipe out our
1420         autoloads file.
1421         (dist): Use correct path to autoloads file.
1423         * NEWS: Catch up with the latest changes.
1425         * experimental/Makefile (.PHONY): Wrap long line.
1427         * lisp/Makefile (distclean): Do the same thing as "clean", not
1428         "realclean".
1430         * lisp/muse-project.el (muse-project-get-applicable-style):
1431         Indentation tweak.
1432         (muse-project-ignore-regexp, muse-project-recurse-directory):
1433         Docfix.
1434         (muse-project-of-file): Try the ignored files regexp against the
1435         base filename as well as the entire path.
1437         * lisp/muse-publish.el (muse-publish-this-file): Display message
1438         if the buffer is not associated with any file, so that we avoid
1439         errors later on.
1440         (muse-publish-url-desc): New function taken from muse-publish-url
1441         that causes a URL description to be transformed.
1442         (muse-publish-url): Call muse-publish-url-desc on either the
1443         description or the original URL if it will be used as a
1444         description.  Accept the original URL as an argument, in case it
1445         was transformed earlier.
1446         (muse-publish-insert-url): Pass original URL as an argument.
1447         (muse-publish-markup-link): Make this somewhat easier to follow.
1448         Pass original URL as argument.
1449         (muse-publish-get-style): If the same style is used to publish to
1450         two different directories, prompt the user for which directory to
1451         use.
1452         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1453         latest changes.
1454         (muse-publish-markup-url): Pass original URL as an argument.  This
1455         fixes the "nil" description for bare URLs that was in 3.02.91.
1456         Nothing like finding a bug just after completing the announcement
1457         of a release.
1459         * lisp/muse.el: Use defalias whenever convenient.
1460         (muse-version): Set version to 3.02.92 (3.03 RC2).
1462 2006-08-10  Michael Olson  <mwolson@gnu.org>
1464         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1465         style does not derive from any other class, return `t' here.
1466         This, along with the corresponding change to muse-publish.el,
1467         fixes a problem with the table of contents getting inserted
1468         multiple times for custom html-based styles.
1469         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1470         smarter method for table centering that works with XHTML.
1472         * lisp/muse-latex2png.el Rename all functions to have a
1473         "muse-latex2png" prefix.  Turn all variables into customizable
1474         options in the muse-latex2png group.
1475         (muse-latex2png-img-dest): New option specifying where to place
1476         the images.
1477         (muse-latex2png-template): New option containing the template to
1478         use for the surrounding LaTeX code.
1479         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1480         compliance.
1481         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1482         messages when something else goes wrong.  Create the image
1483         subdirectory if it doesn't exist already -- thanks to Christian
1484         Straßer for the report.  Expand the filename properly.
1485         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1486         and filename expansion.
1487         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1488         the default directory properly.
1490         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1491         do not run the same function twice.
1493 2006-08-08  Michael Olson  <mwolson@gnu.org>
1495         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1496         introduced wrong-type-argument error.
1498         * lisp/muse-html.el (muse-html-markup-strings)
1499         (muse-xhtml-markup-string): Cause table definition that contains
1500         image to be center-aligned.  This should fix an issue with images
1501         not being centered when captions are very long.
1503         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1504         whitespace from fields once we have split them up.
1506         * lisp/muse.el (muse-trim-whitespace): New function that strips
1507         leading and trailing whitespace from a string.
1509 2006-08-07  Michael Olson  <mwolson@gnu.org>
1511         * NEWS: Update through patch-95.
1513         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1514         to match the tags.
1515         (muse-colors-explicit-link): Show images in link descriptions if
1516         inlined images are enabled.
1518         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1519         definitions for 'image-with-desc, 'image, and 'image-link.
1520         (muse-docbook-markup-paragraph): If an inlined image begins a
1521         paragraph, insert <para> before it.
1522         (muse-docbook-fixup-images): New function that upper-cases the
1523         "format" attribute of the <imagedata> tag.
1524         (muse-docbook-finalize-buffer): Call it.
1526         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1527         with descriptions as centered tables, with a centered caption
1528         underneath.  The resulting look is consistent with the way that
1529         they are published in the LaTeX style.  Thanks to Jody Klymak for
1530         the suggestion.
1531         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1532         valid way to center a table.
1533         (muse-html-markup-paragraph): Use class="image" instead of
1534         "image-link" for paragraphs that start with an embedded image.
1536         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1537         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1538         suggestion.
1539         (muse-latex-markup-specials-image): New option that enables
1540         escaping of specials in images.  This was split from the URL
1541         specials.
1542         (muse-latex-decide-specials): Handle 'image context.
1543         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1544         of relying on caller to do this for us.
1546         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1547         'image context.
1548         (muse-publish-url): Use 'image context for images.  Use 'image
1549         instead of 'image-link and 'image-link in place of
1550         'url-with-image.  Separate the image file from its extension so
1551         that docbook and texinfo can publish images correctly.
1552         (muse-publish-markup-link): Don't force a description if one is
1553         not given.  This fixes a bug where images without descriptions
1554         were being published as 'image-with-desc instead of 'image.
1556         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1557         images the same as URLs.
1558         (muse-texinfo-markup-strings): Improve image markup to achieve an
1559         effect similar to that of the LaTeX publishing style.  Simplify
1560         'url string.
1562         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1564         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1565         when we have to use the custom version of this function.
1567         * muse.texi (Images): Explain how to toggle inlining of images and
1568         give better examples.  Mention captions and that captioned images
1569         should not be used inside of text paragraphs.
1570         (Markup Strings): Bring up-to-date with the changes made since
1571         3.02.
1573 2006-08-06  Michael Olson  <mwolson@gnu.org>
1575         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1576         in the Emacs source tree.
1578         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1579         in the Emacs source tree.
1581         * ChangeLog.3: New file created from the old ChangeLog.
1583         * Makefile.defs (VERSION): Set to 3.02.91.
1585         * NEWS: Update through patch-84.
1587         * lisp/muse.el (muse-version): Set to 3.02.91.
1589         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1590         attributes.
1591         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1592         delimiter are instead of hard-coding it.
1594         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1595         (muse-mode): Make filling definition lists work better.  This
1596         should fix #5359.
1598         * lisp/muse-publish.el (muse-style-run-hooks): Use
1599         `muse-style-element' instead of `muse-get-keyword' here.  This
1600         should fix #6399.
1602         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1604 See ChangeLog.3 for earlier changes.
1606 ;; Local Variables:
1607 ;; coding: utf-8
1608 ;; End: