manual: Update description for muse-context-slides-header
[muse-el.git] / ChangeLog
blob7111cd0f3c7f08c387e0668e40c3c1ed43572d23
1 2007-08-17  Michael Olson  <mwolson@gnu.org>
3         * etc/muse.rnc: Add the <cite> tag.
5         * lisp/muse-context.el (muse-context-slides-header): Clarify what
6         "mystyle" is.
8         * lisp/muse-xml.el (muse-xml-markup-strings): Mark up citations as
9         <cite type="something">.  We'll leave it to the post processing
10         tools to interpret that.
12         * texi/muse.texi (Directives, Blosxom Entries): Use @code{} for
13         directives.
14         (Citations): New section that explains further how to use the
15         <cite> tag.  The text was taken from Marcus Hoenicka's
16         documentation at http://refdb.sourceforge.net/muse.html and
17         modified.
18         (Tag Summary): Link to the Citations section in the entry for
19         <cite>.
20         (ConTeXt): Update the documentation for
21         muse-context-slides-header.
23 2007-08-17  Jean Magnan de Bornier  <jean@bornier.net>
25         * lisp/muse-context.el (muse-context-slides-header): Use #module
26         directive, if it is provided.
27         (muse-context-slides-header): Mention how to use #module.
29 2007-08-16  Michael Olson  <mwolson@gnu.org>
31         * Release Emacs Muse 3.10.
33         * Makefile (dist, debprepare): Pass HEAD argument to git-archive.
34         (upload): Don't depend on release rule.
36         * NEWS: Document remaining changes.
38 2007-08-15  Michael Olson  <mwolson@gnu.org>
40         * NEWS: Document items through 2007-08-12.
42         * lisp/muse-colors.el: Split the muse-directive-or-comment
43         property into two separate properties that are muse-directive and
44         muse-comment.
45         (muse-colors-region-end): Make buffer-local.
46         (muse-colors-delayed-commands): New variable that contains a list
47         of commands to run immediately after highlighting.  This is meant
48         to allow highlighting functions to delay code until later.
49         (muse-colors-region): Apply commands in
50         muse-colors-delayed-commands.
51         (muse-colors-inhibit-tags-in-directives): New variable that
52         determines whether tags are allowed in directives.
53         (muse-colors-custom-tags): Take
54         muse-colors-inhibit-tags-in-directives into account.
55         (muse-unhighlight-region): Remove muse-directive and muse-comment
56         properties.
57         (muse-colors-title): Modify muse-colors-delayed-commands.
58         (muse-colors-title-lisp): New command that gets called after
59         highlighting other things.  This interprets <lisp> tags, and is
60         passed arguments specifying the beginning and end of the region.
61         Thanks to Junichi Uekawa for the report.  The reason we want to do
62         things this way is because this is the behavior we get already
63         when publishing the page.
65         * lisp/muse.el (muse-goto-tag-end): Change to use muse-comment
66         property rather than muse-directive-or-comment.
68 2007-08-14  Michael Olson  <mwolson@gnu.org>
70         * lisp/muse-colors.el: Document all functions and variables.
71         (muse-colors-emphasized, muse-colors-underlined)
72         (muse-colors-verbatim, muse-colors-custom-tags)
73         (muse-colors-explicit-link, muse-colors-implicit-link): Don't trod
74         on comments or the #title directive.
75         (muse-colors-markup): Add comment rule.
76         (muse-colors-implicit-link): Only remove flyspell overlay after we
77         decide whether this is an implicit link, rather than before.
78         (muse-colors-title): Add the muse-directive-or-comment property.
79         (muse-colors-comment): New function that colorizes comments using
80         font-lock-comment-face.
81         (muse-colors-region-end): New variable indicating the end of the
82         region that is currently being font-locked.  This removes the need
83         for an ugly "defvar end" hack.
84         (muse-colors-emphasized, muse-colors-underlined)
85         (muse-colors-verbatim): Use it.
86         (muse-colors-region): Let-bind it.
88         * lisp/muse-mode.el (muse-list-edit-minor-mode): Grammar fix in
89         docstring.
91         * lisp/muse-publish.el (muse-publish-markup-heading): Escape
92         specials in heading now, rather than waiting on the whole-document
93         pass later on.  This lets <contents> generation work without
94         validation errors.  Thanks to Reid van Melle for the report.
96         * texi/muse.texi (Tag Summary): Document <cite> tag.
97         (Miscellaneous): New chapter containing "Muse List Edit Minor
98         Mode" section.
99         (Muse List Edit Minor Mode): New section that documents
100         muse-list-edit-minor-mode.
101         (Development): Mention the MuseDevlopment page on emacswiki.org.
103         * lisp/muse.el (muse-goto-tag-end): Deal with case where we are
104         font-locking and the end or beginning of a tag is in a comment or
105         directive.
107 2007-08-12  Michael Olson  <mwolson@gnu.org>
109         * lisp/muse-html.el (muse-html-strip-links): New function that
110         strips HTML links from a string.
111         (muse-html-insert-contents): Use it, instead of
112         muse-publish-strip-tags.  This fixes a bug reported by Xin Shi
113         involving the use of <sup> in section titles.
115         * lisp/muse-project.el (muse-project-resolve-directory): New
116         function that figures out the directory part of the path that
117         provides a link to a page.
118         (muse-project-resolve-link): Expand docstring.  Use the new
119         function.  Don't call muse-publish-link-file, because that does
120         the wrong thing when we have muse-file-extension set to nil.
121         Thanks to Sebastian Obermanns for the report.
122         (muse-project-publish-this-file): Let-bind muse-current-project.
123         Also, if the file is not associated with a project, fall back to
124         muse-publish-this-file.
125         (muse-project-set-variables): Add this to
126         muse-before-publish-hook, so that it gets called.  This fixes a
127         bug where project-specific variables were being used in Muse mode,
128         but ignored when publishing.
130         * lisp/muse-publish.el (muse-publish-link-name)
131         (muse-publish-link-file, muse-publish-link-page): Add docstrings
132         so that I can remember what each of these things do.
133         (muse-publish-strip-tags): Remove, since it is no longer used.
134         (muse-publish-cite-tag): Don't let-bind
135         muse-publishing-directives, because there is no need to do so.
136         Fix code indentation.
137         (muse-publish-markup-attribute): Avoid multiple evaluation of
138         attrs argument, in case it is list value instead of a symbol.  Use
139         sexp instead of form in the edebug-form-spec.
140         (muse-publish-include-tag): Make a full copy of
141         muse-publishing-directives, since it can be modified with setcdr.
142         This fixes a bug where #title and some other directives were
143         leaking out of an included region.
144         (muse-publish-mark-up-tag): Don't let-bind
145         muse-publishing-directives, because there is no need to do so.
147         * lisp/muse.el (muse-page-name): Improve docstring.
149         * texi/muse.texi (Development): Mention the http method for
150         anonymous git access to the shared repo.
152 2007-08-10  Michael Olson  <mwolson@gnu.org>
154         * Makefile (dist, debprepare): Use git instead of tla.
156         * contrib/httpd.el (httpd-send-file): Use insert-file-contents.
158         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
159         Use muse-insert-file-contents.
161         * experimental/muse-split.el (muse-publish-file)
162         (muse-publish-presplit-publish, muse-publish-no-split-function)
163         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
164         muse-insert-file-contents.
166         * lisp/muse-book.el (muse-book-publish-chapter)
167         (muse-book-get-directives): Use muse-insert-file-contents.
169         * lisp/muse-http.el (muse-http-render-page): Use
170         muse-insert-file-contents.
172         * lisp/muse-poem.el (muse-poem-markup-tag): Use
173         muse-insert-file-contents.
175         * lisp/muse-publish.el (muse-insert-file-or-string)
176         (muse-publish-file, muse-publish-include-tag)
177         (muse-published-contents): Use muse-insert-file-contents.
179         * lisp/muse.el (muse-insert-file-contents): New function that
180         inserts a file with character code conversion, but none of the
181         other frivolities.  Since insert-file-contents-literally does not
182         do character code conversion, it is not suitable for us.
183         (muse-with-temp-buffer): Mention muse-insert-file-contents rather
184         than insert-file-contents-literally.
186 2007-08-09  Michael Olson  <mwolson@gnu.org>
188         * lisp/muse.el (muse-write-file): Pay attention to
189         coding-system-for-write and save-buffer-coding-system.  This
190         should fix a recently-introduced bug with writing Muse pages in
191         different coding systems.
193 2007-08-08  Michael Olson  <mwolson@gnu.org>
195         * README (Prerequisites): Fix typo.
196         (Compilation, Installation): Update.
197         (Documentation, Further Documentation): Update URLs.
198         (Further Documentation): Add quick blurb on how to participate in
199         Muse development or track changes.
201         * texi/muse.texi (Releases): Use gna.org URL for downloading the
202         latest release, rather than my website.
203         (Development): Change instructions to use git instead of
204         Arch. Mention where to get a Windows binary for git.  Improve the
205         look of the listing.  Add section with instructions for Becoming a
206         Muse developer.
207         (Installation): Update instructions for Makefile.defs.default and
208         XEmacs.  Add index entries.  Add section for ELPA, since Muse
209         ought to be distributed in ELPA after the 3.10 release.  Fix typo
210         and clarify wording.
212 2007-08-06  Michael Olson  <mwolson@gnu.org>
214         * texi/muse.texi: Make sure that attributes are marked up with
215         @option{} rather than @code{} or @samp{} for consistency.
216         (Journal): Add "muse-project-alist-considerations" subheading,
217         along with a mention of :base-url.
219 2007-08-05  Michael Olson  <mwolson@gnu.org>
221         * .gitignore: Add texi/muse.html and the DVC log edit file.
223         * Makefile.defs.default (install_info): Rename from INSTALLINFO.
224         Turn this into something that can be called like a command, due to
225         needing to deal with XEmacs, which has different argument order.
226         Thanks to Terrence Brannon for the report.
228         * lisp/muse-project.el (muse-project-of-file): Simplify by using
229         catch, throw, and dolist.  Look for exact matches before
230         considering any subdirectories.  If no exact matches are found,
231         then pick the longest match.
233         * lisp/muse.el (muse-sort-by-rating): Mention default test in
234         documentation.
236         * scripts/muse-build.el: Avoid interference from VC.el in the
237         build process.
239         * texi/Makefile (install): Call install_info.
241 2007-08-03  Michael Olson  <mwolson@gnu.org>
243         * lisp/muse-project.el (muse-project-applicable-styles): Remove
244         useless argument ignore-regexp.  Use saner logic.  This fixes a
245         bug where a file could potentially not exist but still appear in
246         the used-styles list.  Thanks to John Wiegley for the fix.
247         (muse-project-publish-file): Don't take ignore-reegxp argument.
249 2007-08-02  Michael Olson  <mwolson@gnu.org>
251         * lisp/muse-publish.el (muse-batch-publish-files): Don't activate
252         VC when publishing files in batch.  This avoids some annoying
253         messages when building QuickStart in the examples directory.
255         * lisp/muse-mode.el (muse-mode): Don't try to indent line before
256         inserting a comment.
258 2007-07-31  Michael Olson  <mwolson@gnu.org>
260         * lisp/Makefile: Add dependencies between Emacs Lisp files, so
261         that Muse can be recompiled without running "make clean" after an
262         update.
264         * lisp/muse-publish.el (muse-publish-verse-tag): Unconditionally
265         delete forward one character, since we are guaranteed to be on a
266         blank line.  Don't delete all initial whitespace of the first
267         line.  This fixes an issue where the output from the verse tag did
268         not match the output from Muse's verse syntax.
270 2007-07-29  Michael Olson  <mwolson@gnu.org>
272         * Relicense to GPLv3.
274         * Makefile.defs.default: Rename from Makefile.defs.  This allows
275         people to copy this file to Makefile.defs and make changes,
276         without having the changes be accidentally committed.  If
277         Makefile.defs does not exist, this file is read instead, in order
278         to minimize inconvenience to the casual user.
280         * Makefile, contrib/Makefile, examples/Makefile,
281         experimental/Makefile, lisp/Makefile, texi/Makefile: Use either
282         Makefile.defs.default or Makefile.defs.
284         * lisp/muse-mode.el (muse-list-edit-minor-mode-map): Use new
285         function names.
286         (muse-l-e-m-m-insert-list-item): Add real documentation.
287         (muse-l-e-m-m-increase-list-item-indent)
288         (muse-l-e-m-m-decrease-list-item-indent): Rename for clarity.  Add
289         real documentation.
290         (muse-list-edit-minor-mode): Improve documentation.
292         * texi/doclicense.texi (GNU Free Documentation License): Use
293         pristine copy from Emacs source tree.
295         * texi/muse.texi (Contributors): Move node and appendix indicators
296         here, rather than doclicense.texi.
298 2007-07-29  Jean Magnan de Bornier  <jean@bornier.net>
300         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
301         command which did not work correctly
303         * lisp/muse-context.el (muse-context-markup-strings): Change rule
304         command which did not work correctly; defined verse commands
305         (muse-context-markup-specials-literal): Eliminate all unuseful entries
307 2007-07-29  Michael Olson  <mwolson@gnu.org>
309         * contrib/httpd.el (httpd-send-file): Use
310         insert-file-contents-literally instead of insert-file-contents.
312         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
313         Use insert-file-contents-literally instead of
314         insert-file-contents.
316         * experimental/muse-split.el (muse-publish-file)
317         (muse-publish-presplit-publish, muse-publish-no-split-function)
318         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
319         insert-file-contents-literally instead of insert-file-contents.
321         * lisp/muse-book.el (muse-book-publish-chapter)
322         (muse-book-get-directives): Use insert-file-contents-literally
323         instead of insert-file-contents.
325         * lisp/muse-http.el (muse-http-render-page): Use
326         insert-file-contents-literally instead of insert-file-contents.
328         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
329         nowhere when done, since they can slow things down.
331         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
332         marker to nowhere when done, since they can slow things down.
334         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
335         when done, since they can slow things down.  Use
336         insert-file-contents-literally instead of insert-file-contents.
338         * lisp/muse-publish.el (muse-publish-markup-tag)
339         (muse-publish-markup-word, muse-publish-markup-footnote)
340         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
341         done, since they can slow things down.
342         (muse-insert-file-or-string, muse-publish-file)
343         (muse-publish-include-tag, muse-published-contents): Use
344         insert-file-contents-literally instead of insert-file-contents.
345         (muse-publish-surround-dl): Remove unused variable.  Track whether
346         a term has been found, and handle that case well.
347         (muse-publish-ensure-blank-line): Use a marker, so that we don't
348         lose our place when adding a newline.  This really fixes the
349         definition list item bug.
350         (muse-publish-markup-list): Since people do seem to want
351         definition lists with no terms, allow this.
352         (muse-batch-publish-files): Set muse-current-output-style.
354         * lisp/muse.el (muse-with-temp-buffer): Mention
355         `insert-file-contents-literally'.
357 2007-07-28  Michael Olson  <mwolson@gnu.org>
359         * lisp/muse-mode.el (muse-browse-result): Set
360         muse-current-output-style.
361         (muse-mode): Don't duplicate the paragraph-start regexp
362         unnecessarily.
363         (muse-list-edit-minor-mode-map): New variable containing the
364         keymap for Muse list edit minor mode.
365         (muse-l-e-m-m-list-item-regexp): New variable that matches list
366         items for Muse list edit minor mode.
367         (muse-l-e-m-m-insert-list-item,
368         muse-l-e-m-m-i-list-item-indentation)
369         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
370         item functions that change the list item regexp before calling the
371         existing function.
372         (muse-l-e-m-m-data): New variable that keeps track of the fill
373         data that we overwrite when activating Muse list edit minor mode,
374         so that we can restore it if the minor mode is toggled off.
375         (muse-list-edit-minor-mode): New minor mode that is useful for
376         editing lists in other major modes.
377         (turn-on-muse-list-edit-minor-mode)
378         (turn-off-muse-list-edit-minor-mode): New interactive functions
379         that turn Muse list edit minor mode on and off, respectively.
380         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
381         regexps.
383         * lisp/muse-project.el (muse-project-publish-this-file): Set
384         muse-current-output-style.  This fixes a bug when publishing to a
385         style that is not first in the list of styles.  Thanks to Jean
386         Magnan de Bornier for the report.
388         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
389         function that ensures that a blank line exists in the line before
390         point.
391         (muse-publish-markup-list): Use it, rather than
392         `muse-publish-ensure-block'.  This fixes a bug with definition
393         list publishing.  Thanks to meandtheshell for reporting this.
395         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
396         project argument is nil, default to the current project instead of
397         the first project entry in muse-project-alist.  This seems much
398         more sane to me.
400         * lisp/muse.el (muse-forward-list-item): Only check the 'face
401         property if we are in Muse mode or one of its derivatives.  This
402         allows movement on nested lists to work in other modes, and fixes
403         an issue with altering list indentation in
404         muse-list-edit-minor-mode.
406 2007-07-27  Michael Olson  <mwolson@gnu.org>
408         * AUTHORS: Add new authors.
410         * README: Permit Muse to be called "Emacs-Muse".
412         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
414         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
415         involving list items that have an extra blank line in front.
417         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
418         and Emacs-Muse are the same thing.
420 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
422         * lisp/muse-context.el (muse-context-header): Put
423         starttext after the modules who must be in preamble.
424         (muse-context-markup-strings): Fixed mistake in begin-example and
425         end-example.
427         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
428         math environment in ConTeXt when centered: "$$ $$" has to be
429         "\startformula \stopformula".
431 2007-07-26  Michael Olson  <mwolson@gnu.org>
433         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
434         parentheses in URLs.
436 2007-07-24  Michael Olson  <mwolson@gnu.org>
438         * examples/QuickStart.muse (Images): Fix typo where some text
439         existed in the output but not in the example region.
440         (Source Code): Fix another typo.  Explain that publishing from
441         console or X can make a difference.
443         * lisp/muse-context.el (muse-context-pdf-program): New option that
444         determines the program to use for generating PDF files for
445         ConTeXt.
446         (muse-context-pdf-cruft): New option that specifies the extensions
447         of files to remove after generating PDF output successfully.
448         (muse-context-slides-header): Docfix.
449         (muse-context-pdf-generate): Use new options.
451         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
452         save-restriction call.  This was causing a world of hurt when
453         using <lisp> inside of <include>.
455         * texi/muse.texi (ConTeXt): New section that documents how to use
456         the ConTeXt publishing styles.
458 2007-07-23  Michael Olson  <mwolson@gnu.org>
460         * lisp/muse-context.el: New file that provides support for
461         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
462         de Bornier for his work on this.
464         * lisp/muse-docbook.el (muse-docbook-entities)
465         (muse-docbook-bibliography): Remove unneeded save-restriction use.
467         * lisp/muse-latex2png.el (muse-publish-latex-tag):
468         s/contex/context/.
470         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
471         (muse-latex-bibliography): Remove call to `widen', since it is not
472         needed anymore.  Remove unneeded save-restriction use.
473         ("slides", "slides-pdf"): Indent elements uniformly.
475 2007-07-22  Michael Olson  <mwolson@gnu.org>
477         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
478         * lisp/muse-mode.el (muse-insert-tag):
479         * lisp/muse-project.el (muse-read-project)
480         (muse-read-project-file):
481         * lisp/muse-publish.el (muse-publish-get-style): Use
482         muse-completing-read-function.
484         * lisp/muse-latex2png.el (muse-publish-latex-tag)
485         (muse-publish-math-tag): Allow the context style -- which I plan
486         to include soon -- to work with these tags.
488         * lisp/muse.el (muse-completing-read-function): New option that
489         determines which function to call when doing a completing-read.
491 2007-07-15  Michael Olson  <mwolson@gnu.org>
493         * lisp/muse-journal.el (muse-journal-html-entry-template)
494         (muse-journal-rdf-entry-template)
495         (muse-journal-rss-entry-template): Mention that this can be text
496         or a filename.
497         (muse-journal-rdf-entry-template, muse-journal-rss-header)
498         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
499         newlines to make the output look nicer.
500         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
501         Use muse-insert-file-or-string for the entry templates, rather
502         than muse-insert-markup.  This allows <lisp> and <markup> tags to
503         be acted on.  Thanks to Scott Hyde for the report.
504         (muse-journal-html-munge-buffer): Escape quote of the day using
505         entire-document specials before snarfing it.  Mark entire template
506         as read-only -- this fixes an incorrect escaping bug.  Remove
507         read-only properties before replacing template matches so that
508         they can still be escaped with entire-document specials later on.
509         (muse-journal-rss-munge-buffer): Make sure that title is escaped
510         properly.
511         (muse-journal-markup-tags): Rename from
512         muse-journal-latex-markup-tags, because we will use it for
513         journal-rss-entry as well.
514         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
515         end-quote-item.
516         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
517         html.
518         ("journal-latex", "journal-pdf", "journal-book-latex")
519         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
520         muse-journal-latex-markup-tags.
521         ("journal-rss-entry"): New style that is used by journal-rss and
522         journal-rdf to mark up individual entries.  It is needed so that
523         we can do something meaningful with the qotd tag.
524         (muse-journal-rdf-summarize-entries): Set this to nil by default,
525         because it is annoying.  Update docs to mention this.
526         (muse-journal-rss-summarize-entries): Docfix.
528         * lisp/muse-publish.el (muse-insert-file-or-string): Use
529         muse-publish-markup-header-footer-tags.  I'm not quite sure how
530         this change got reverted.
531         (muse-markup-tag-info): Make into a function.  Move common code
532         here, rather than duplicating it in two places.  Deal with case
533         where muse-publish-use-header-footer-tags is non-nil.
534         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
535         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
536         warning.
537         (muse-publish-use-header-footer-tags): New variable that indicates
538         whether we should use just the header and footer tags, rather than
539         the full set.
540         (muse-insert-file-or-string): Bind
541         muse-publish-use-header-footer-tags to t.
542         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
543         Simplify call to muse-markup-tag-info.
544         (muse-publish-mark-up-tag): Bind
545         muse-publish-use-header-footer-tags to nil.
547         * texi/muse.texi (Journal): Update for recent changes.
549 2007-07-14  Michael Olson  <mwolson@gnu.org>
551         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
552         delete the remainder of the buffer, since this causes the
553         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
554         the report and the suggested fix.
556         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
557         beginning of table-el regexp.  This fixes a bug where Muse stalls
558         when trying to publish a malformed table.  Thanks to Ye Wenbin for
559         the report and the suggested fix.
561 2007-07-12  Michael Olson  <mwolson@gnu.org>
563         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
564         default, rather than the empty string.  This really fixes the bug
565         that occurred when using Muse with muse-project-alist set to nil.
566         Thanks to Jonathan Underwood for the report.
567         (muse-wiki-update-interwiki-regexp): Set
568         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
569         defined.
570         (muse-wiki-handle-implicit-interwiki)
571         (muse-wiki-handle-explicit-interwiki): Handle case where
572         muse-wiki-interwiki-regexp is nil.
574 2007-07-10  Michael Olson  <mwolson@gnu.org>
576         * lisp/muse-mode.el (muse-grep): Abort search if the current
577         project contains no directories.
579         * lisp/muse-project.el (muse-project-file-alist): If
580         muse-project-alist is not defined, or project is nil, return nil
581         right away.  This ought to fix a bug that occurred when using Muse
582         with muse-project-alist set to nil.
583         (muse-project-of-file): Make sure muse-project-alist is not nil.
584         (muse-project-save-buffers): Make sure project is not nil.
586         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
587         case where muse-project-alist is nil.
589         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
590         for XEmacs, since color-theme.el is poorly behaved, and defines
591         its own replace-in-string.  Bad color-theme.el -- no cookie for
592         you.
594 2007-07-01  Michael Olson  <mwolson@gnu.org>
596         * Makefile (.PHONY): Update for new debian package rules.
598         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
600         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
601         Use save-restriction properly.
602         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
604         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
605         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
606         properly.
607         (muse-latex-bibliography): Re-indent.
609         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
610         higher.  This fixes an error at startup with some versions of
611         Emacs.
612         (muse-publish-cite-tag): Re-indent.
614         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
615         to the end of the link part, so as to exclude the description from
616         the match.  This fixes a bug with three-part links that have
617         descriptions.  Thanks to everyone who pointed it out.
619 2007-06-18  Michael Olson  <mwolson@gnu.org>
621         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
622         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
623         1.1 specific markup strings.
624         (muse-html-insert-anchor): Use 'anchor string, rather than
625         hard-coding it.  Thanks to Chris Corsair for the suggestion.
626         ("xhtml1.0"): New style that is an alias for the xhtml style.
627         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
629 2007-06-17  Michael Olson  <mwolson@gnu.org>
631         * examples/QuickStart.muse: Make images local so that the Info
632         version of this document works.  Add <example> for the Literal
633         paragraphs chapter, so that it is clear what is happening.
635         * Makefile: Add elpa target, which is used for building an ELPA
636         package for Muse.
638         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
639         building ELPA packages.
641         * examples/Makefile (%.html, %.pdf, %.info): Add message to
642         indicate what we are publishing.
643         (realclean distclean fullclean): Remove all TeX crud.
645         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
646         that the Info version of QuickStart can publish correctly.
648         * lisp/muse-latex.el (muse-latex-slides-header)
649         (muse-latex-lecture-notes-header): Docfix.
651         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
652         the list of things to ignore.
654         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
655         variable.
657         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
658         default to nil, since texinfmt.el is a serious nuisance.
659         (muse-texinfo-markup-strings): Add newlines to begin-example and
660         end-example.
661         (muse-texinfo-decide-specials): Also escape URL-type specials in a
662         whole slew of other contexts.
664         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
665         muse-xml.
667         * lisp/muse-xml.el (muse-xml-footer): Docfix.
669         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
671 2007-06-16  Michael Olson  <mwolson@gnu.org>
673         * etc/IDEAS.muse: Add some ideas from David D. Smith.
675         * examples/QuickStart.muse: Overhaul.
677         * lisp/muse-project.el (muse-project): Call the last part of a
678         muse-project-alist entry "Output styles" rather than "styles".
680         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
681         where we have a pipe character at the beginning of line.
683         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
684         causing tables to not be sorted at all.
686         * texi/muse.texi: Overhaul.  It would be too time-consuming to
687         list all of the changes here.  The "Getting Started" and
688         "Projects" chapters, in particular, were heavily revised.
690 2007-06-15  Michael Olson  <mwolson@gnu.org>
692         * NEWS: Update.
694         * examples/QuickStart.muse: Mention new features.
696         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
697         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
698         terminal, and C-c TAB is more important.  Most people will not
699         want to toggle images on and off that often.
701         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
702         C-i as well, so that it works in the terminal.
704         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
705         look a bit tidier when removing the region.
707         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
708         list regexp part before other parts.
709         (muse-ol-item-regexp): New regexp that specifies how to match an
710         ordered list item.
711         (muse-ul-item-regexp): New regexp that specifies how to match an
712         unordered list item.
713         (muse-table-field-regexp): New regexp that specifies how to match
714         a definition list entry.
716         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
717         lack of support for @headitem in texinfmt.el.
719         * lisp/muse.el: Wrap muse-line-beginning-position and
720         muse-line-end-position in `eval-and-compile', since they are now
721         used in muse.el.
722         (muse-list-item-type): Use a simpler algorithm for detecting which
723         kind of list item we have.  This fixes a bug where a number in a
724         definition list term was being detected incorrectly as an ordered
725         list item.  Fixes bug #6250.
726         (muse-forward-list-item): Get the entire line with the list item.
727         For some reason, Emacs 21 was not populating match 2 correctly,
728         unlike Emacs 22, so this workaround was needed.
730         * texi/muse.texi: (Keystroke Summary): Remove C-c
731         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
732         alternative keybinding to the C-c TAB stuff.  Mention
733         muse-colors-toggle-inline-images.
735 2007-06-14  Michael Olson  <mwolson@gnu.org>
737         * README: Mention that RelaxNG schema is in etc/ directory.
739         * etc/emacs-wiki-migration.txt: New document that explains how to
740         migrate from emacs-wiki to Muse.
742         * etc/muse.rnc: Increment version number to 1.0.  Fix several
743         nested emphasis and nested lists edge cases.  Move here from
744         examples/.
746         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
747         same thing as C-c C-S-t, since the former works better in the
748         console.  Thanks to Leo for the suggestion.
750         * lisp/muse-publish.el (muse-publish-markup-table)
751         (muse-publish-markup-table-el): Include a newline in the return
752         string, so that paragraph detection does not get confused.
754         * lisp/muse.el (muse-with-temp-buffer): Docfix.
756         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
757         keybinding.
759 2007-06-13  Michael Olson  <mwolson@gnu.org>
761         * etc/IDEAS.muse: Mark three-part-links item as done.
763         * experimental/muse-message.el: Remove guard for muse-define-style
764         calls.
766         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
767         markup rules were being interpreted in reverse order.  This should
768         make implicit interwiki links work properly again.
769         (muse-link-face): Strip anchor from end of a path, so that this
770         works with anchors in interwiki links.
771         (muse-colors-insert-image): Catch error that occurs in Emacs 21
772         when an image does not exist.
774         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
775         anchors.
776         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
777         interwiki links work.  Thanks to Jim Ottaway for the initial
778         implementation.
779         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
780         links work.
782         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
783         about match 0.
784         (muse-handle-explicit-link): Docfix: this does not modify the
785         match data.
786         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
787         that has the regexp in its car.
789 2007-06-12  Michael Olson  <mwolson@gnu.org>
791         * README: Document new etc/ directory.
793         * etc/IDEAS.muse: Install things from new contributors just after
794         the 3.03 release, since I won't have time to review the code
795         before the release.  Move to new etc/ directory.  Slides
796         publishing has been installed.
798         * lisp/muse-latex.el (muse-latex-slides-header): New option that
799         determines the header to use for publishing slides.
800         (muse-latex-lecture-notes-header): New option that determines the
801         header to use for publishing lecture notes.
802         (muse-latex-slides-markup-tags): New option containing tags to use
803         when publishing slides.
804         (muse-latex-permit-contents-tag): Move higher in file.
805         (muse-latex-slide-tag): New function to publish the <slide> tag.
806         ("slides", "slides-pdf"): New publishing styles that create slides
807         using Beamer.
808         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
809         create lecture notes using Beamer.
811         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
812         since otherwise Planner is not happy when `plan' is called during
813         init.  Remove stray quote from autoload snippet.
815 2007-06-11  Michael Olson  <mwolson@gnu.org>
817         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
818         autoload, rather than having it exist at top-level.  Thanks to Leo
819         for the suggestion.
820         (muse-update-file-extension): Docfix.
822 2007-06-10  Michael Olson  <mwolson@gnu.org>
824         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
825         URLs were being removed during publishing.  Thanks to everyone who
826         reported this.
828 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
830         * lisp/muse-book.el
831         * lisp/muse-docbook.el
832         * lisp/muse-latex.el
833         * lisp/muse-publish.el: added support for <cite> element which
834         denotes in-text citations
836         * lisp/muse-html.el
837         * lisp/muse-groff.el
838         * lisp/muse-texinfo.el
839         * lisp/muse-xml.el: added support for <cite> element (stub)
841 2007-06-06  Michael Olson  <mwolson@gnu.org>
843         * lisp/muse-regexps.el (muse-table-line-regexp)
844         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
845         regexps so that they work with XEmacs 21.  Thanks to Adrian
846         Tritschler for the report.
848         * texi/muse.texi: Update copyright years.
849         (HTML): Document muse-xhtml-style-sheet.  Thanks
850         to thorne for noticing.
851         (Development): Change archive year to 2006.  Thanks to Adrian
852         Tritschler for noticing.  So *that's* why some people had the 2005
853         version ....
855 2007-06-05  Michael Olson  <mwolson@gnu.org>
857         * Makefile (install-info): Remove $(MANUAL).info part, since this
858         is taken care of already by texi/Makefile.  Thanks to Leo for the
859         report.
861         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
862         read-only properties to qotd contents, so that they don't get
863         double-escaped.  Thanks to Leo for the report.
865 2007-06-04  Michael Olson  <mwolson@gnu.org>
867         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
868         -- that is, Tramp or ange-ftp -- file, then do not call
869         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
870         Fixes bug #5115.
872         * lisp/muse-html.el (muse-html-insert-contents): Add
873         documentation.  Handle case where heading is read-only, but has
874         muse-contents property.  Remove the muse-contents property for any
875         heading we come across so as to avoid double-including an item in
876         an outer table of contents.
877         (muse-html-denote-headings): New function that denotes whether a
878         heading is not read-only by adding the muse-contents property to
879         it.
880         (muse-html-munge-buffer): If we are not to generate contents,
881         still denote headings, in case some outer layer wants to generate
882         contents for our headings.  This should fix a bug with table of
883         contents and the <include> tag.  Thanks to thorne for the report.
885         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
886         muse-publish-generate-contents and set it to nil.  This should
887         do the right thing when using <include> tags.
889 2007-06-02  Michael Olson  <mwolson@gnu.org>
891         * NEWS: Update for non-inlined image change and support for
892         table.el style tables.
894         * examples/Makefile (clean): Clean backup files.
896         * examples/QuickStart.muse (Images): New section that describes
897         how to inline and not inline images.
899         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
900         touch images that have "URL:" in front of them.
902         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
903         "URL:".  Use the identity function to resolve, since we don't want
904         to rip "URL:" out while publishing, due to some magic that depends
905         on that text.
906         (muse-browse-url-url): New function that browses URLs that have
907         "URL:" in front of them, by removing the "URL:" part and
908         reprocessing the remainder.
910         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
911         (muse-publish-url): Recognize images in the description before
912         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
913         for the suggested workaround.
914         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
915         default value.
916         (muse-publish-classify-url): If target begins with "URL:" return
917         type url.
918         (muse-publish-strip-URL): New function that strips "URL:" from the
919         beginning of a string.  This is used to remove URL: from the link
920         description.  * texi/muse.texi (Markup Strings): Clarify the
921         meanings of image-link, link, and link-and-anchor.
922         (muse-publish-markup-regexps): Move normal table rule to 2350.
923         Rule 2300 is now a regexp that matches table.el-style tables.
924         (muse-publish-markup-functions): Add table-el entry.
925         (muse-publish-table-el-table): New function that given a variant,
926         publishes a table.el-style table using the table in the matched
927         region.
928         (muse-publish-markup-table-el): New function that determines
929         whether the table.el-style table can be published, and what
930         variant to use.
932         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
933         the borders of table.el-style tables.
935         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
936         the table has sufficient whitespace in front of it.
938         * texi/muse.texi (Images): Update for new non-inlined image
939         ability and provide example.
941 2007-05-31  Michael Olson  <mwolson@gnu.org>
943         * NEWS: Add example for setting `muse-html-table-attributes'.
945         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
946         Publish multiple tbody tags if there is a horizontal separator
947         after the heading, because that is valid HTML after all.
949 2007-05-30  Michael Olson  <mwolson@gnu.org>
951         * NEWS: Update.
953         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
954         horizontal separators in tables.
956         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
957         horizontal separators in tables.
958         (muse-publish-trim-table): New function to remove initial and
959         final blank columns from a table.
960         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
961         with horizontal separators, aka "hlines".
963         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
964         defines the syntax of a horizontal separator in a table.
966         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
967         horizontal separators.  Publish header lines correctly.
969         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
970         where we have nonnumbers as a row type.  This ignores sorting for
971         hlines.
972         (muse-xml-markup-table): Deal with horizontal separators.  If the
973         markup supports table groups, make hlines separate table groups.
974         Otherwise, ignore them, since they cannot be marked up.  Together,
975         these changes allow us to support orgtbl-mode tables.  Thanks to
976         Carsten Dominik for the suggestion.
978 2007-05-26  Michael Olson  <mwolson@gnu.org>
980         * lisp/muse-project.el (muse-project-alist-styles): Allow for
981         other things to be added to each generated style as well.  For
982         example, this permits me to add
983         :base-url "http://blog.mwolson.org/"
984         for my blog.
986 2007-05-25  Michael Olson  <mwolson@gnu.org>
988         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
989         way of building Debian packages that preserves the original
990         release tarball and is more modular.
991         (debrevision, debrelease): Remove.
992         (dist): No need to remove the debian/ directory, since it is now
993         in its own branch.
994         (debprepare): Copy over debian/ directory properly.
996         * NEWS: Update.
998         * examples/Makefile (clean): Remove QuickStart.texi, in case
999         something went wrong during the build.
1000         (%.pdf): Publish the example using the normal pdf style, rather
1001         than info-pdf.
1003         * examples/QuickStart.muse: Add myself to the authors list.
1005         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
1006         sufficient blank lines before the tag.
1008         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
1009         we have sufficient blank lines before the tag.
1011         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
1012         specifies the program to call in order to generate PDF content
1013         from LaTeX content.
1014         (muse-latex-pdf-cruft): New option that specifies the extensions
1015         of files to remove after generating PDF output successfully.
1016         (muse-latex-pdf-generate): Use these new options.  Work around the
1017         annoying edge case where a tilde character exists in the filename
1018         or directory path -- now this can only error out when the relative
1019         path from the output file to the source file contains a tilde,
1020         which is far less likely.
1022         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
1023         muse-publish-ensure-block here after all, because <lisp> et al may
1024         occur inline as part of other things.
1026         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
1027         occur after full-document escaping, rather than before.  This
1028         prevents automatically-inserted Texinfo code from being escaped.
1029         (muse-texinfo-pdf-generate): Rewrite to call
1030         `muse-latex-pdf-generate' with pdftex as the generating binary,
1031         because texi2pdf suffers irredeemably from the tilde edge case
1032         mentioned above.
1034 2007-05-24  Michael Olson  <mwolson@gnu.org>
1036         * NEWS: Drop vague entries and position interesting entries closer
1037         to the top of each section.  Update for new changes.
1039         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
1040         and bzr metadata directories to the list of things to ignore.
1042         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
1043         `muse-publish-ensure-block-tag', since we will use it for more
1044         than just tags.
1045         (muse-publish-markup-list, muse-publish-verse-tag)
1046         (muse-publish-quote-tag, muse-publish-example-tag)
1047         (muse-publish-markup-attribute): Use it.  This fixes a bug that
1048         can occur when these types of markup occur immediately after a
1049         paragraph.  It's good to have defined behavior!
1051         * texi/muse.texi (Markup Strings): Mention new argument for
1052         link-and-anchor.
1054 2007-05-19  Michael Olson  <mwolson@gnu.org>
1056         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
1057         published footnotes and footnote references.  Thanks to Scott
1058         Jaderholm for the idea.
1060         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
1061         link-and-anchor, on the recommendation of the original submitter.
1063 2007-05-14  Michael Olson  <mwolson@gnu.org>
1065         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
1066         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
1067         suggestion.
1069         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
1070         file extension as the fourth argument.
1072         * README, texi/muse.texi (Getting Help and Reporting Bugs):
1073         Mention the new muse-el-logs mailing list.
1075 2007-05-13  Michael Olson  <mwolson@gnu.org>
1077         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
1078         "\`" here.  This fixes a problem with publishing custom URLs.
1080 2007-05-12  Michael Olson  <mwolson@gnu.org>
1082         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
1083         update the list if the current buffer is associated with a file.
1084         This fixes a bug with M-x muse-publish-region in a temporary
1085         buffer.
1087 2007-05-01  Michael Olson  <mwolson@gnu.org>
1089         * lisp/muse-publish.el (muse-publish-region): Remove read-only
1090         properties from the published buffer, so that the results can be
1091         manually tweaked.
1093 2007-04-23  Michael Olson  <mwolson@gnu.org>
1095         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
1096         find the footnote that goes with a reference, leave the reference
1097         as-is.  This fixes an error where control characters could be
1098         placed in a published document.
1100 2007-04-22  Michael Olson  <mwolson@gnu.org>
1102         * IDEAS.muse: Add muse-slides.el to list of things to include
1103         before release.
1105         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
1106         character.
1107         (muse-protocol-find): Find protocols correctly.  Rewrite to use
1108         catch/throw.
1109         (muse-browse-url): Don't concatenate "\`" here.  Together, this
1110         fixes a bug with browsing woman:// links.
1112         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
1113         where entry-dir has a trailing backslash.
1114         (muse-project-publish-file): If a style is malformed, skip it and
1115         display a warning message.  This should help people figure out
1116         where the problem is.
1118 2007-04-21  Michael Olson  <mwolson@gnu.org>
1120         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
1121         yet-to-be-included "contex" publishing style, use "$$" rather
1122         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
1123         this out.
1125 2007-04-20  Michael Olson  <mwolson@gnu.org>
1127         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
1128         variable that causes the :before and :before-end hooks to be
1129         ignored when non-nil.
1130         (muse-publish-markup-region): Use it.  Also, guarantee that point
1131         is at end of region after publishing.
1132         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
1133         variable.
1135 2007-04-19  Michael Olson  <mwolson@gnu.org>
1137         * IDEAS.muse: New file containing a list of ideas we have for new
1138         features, or patches that have yet to be applied.
1140         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
1141         be so confusing.
1143         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
1144         docstring.
1146         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
1147         <literal> tags with muse-publish-literal-tag, rather than
1148         muse-publish-mark-read-only.
1149         (muse-publish-literal-tag): New function that publishes the
1150         <literal> tag.  It adds the ability to add the optional "style"
1151         and "exact" elements, which cause text to only be included if the
1152         current publishing style matches some criteria.  The text will be
1153         removed otherwise.  Thanks to Jim Ottaway for the implementation.
1154         (muse-publish-mark-up-tag): Let the <markup> tag take the
1155         additional optional elements "style" and "exact", with much the
1156         same effect as the <literal> improvements, but after calling
1157         "function" or publishing the region first.  Make it possible to
1158         put <content> tags in <markup> regions in HTML publishing.
1160 2007-04-12  Michael Olson  <mwolson@gnu.org>
1162         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
1163         that a blank line always exists after a heading.  This fixes a bug
1164         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
1165         for the report.
1167         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
1168         detection regexp to that which is used in Docbook and HTML
1169         publishing styles.
1171 2007-04-02  Michael Olson  <mwolson@gnu.org>
1173         * README (muse-el-announce): Make a listing of mailing lists,
1174         rather than pointing to the old EmacsWikiMailingList page.  Thanks
1175         to Andreas Roehler for noticing.
1177 2007-04-01  Michael Olson  <mwolson@gnu.org>
1179         * lisp/muse-publish.el (muse-publish-date-format): Add
1180 `       customization type and group.
1181         (muse-publish-region): New interactive function that publishes a
1182         region to a new buffer.
1184         * texi/muse.texi: Use "document" rather than "manual".
1186 2007-03-31  Michael Olson  <mwolson@gnu.org>
1188         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
1189         expression (muse-style-derived-p "latex" (muse-style "latex"))
1190         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
1191         for the catch.
1193 2007-02-25  Michael Olson  <mwolson@gnu.org>
1195         * lisp/muse-publish.el (muse-publish-date-format): New option that
1196         specifies how to format the date when publishing Muse pages.
1197         Thanks to Thomas Gehrlein for the suggestion.
1198         (muse-publish-markup-buffer): Use it.
1200 2007-02-23  Michael Olson  <mwolson@gnu.org>
1202         * README: Add Prerequisites section to mention which versions of
1203         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
1204         the suggestion.  Update link destination for Muse's page on
1205         emacswiki.org.
1207 2007-02-15  Michael Olson  <mwolson@gnu.org>
1209         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
1210         be not just at beginning of line.  This fixes an error with the
1211         <class> tag.  Thanks to Jim Pivarski for the report.
1213 2007-02-14  Michael Olson  <mwolson@gnu.org>
1215         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
1216         whether something is an image before checking to see if it is a
1217         URL.  Thanks to ITSUMI ken-ichi for the report.
1219 2007-02-13  Michael Olson  <mwolson@gnu.org>
1221         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
1222         comments that have no text better.  Thanks to fang.lungang for the
1223         report.
1224         (muse-publish-markup-comment): Deal with case where no comment
1225         text is provided.
1227 2007-01-23  Michael Olson  <mwolson@gnu.org>
1229         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
1230         that ensures that at least one blank line exists at the given
1231         position.  This is used to avoid paragraph detection problems when
1232         block-level tags like <example> immediately follow a paragraph.
1233         Thanks to Hans Ekbrand for the report.
1234         (muse-publish-example-tag): Use it.
1236 2007-01-19  Michael Olson  <mwolson@gnu.org>
1238         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
1239         previous blank line if we are publishing in Latex.  Otherwise,
1240         that wouldn't be the right thing, so leave it be.
1242 2007-01-17  Michael Olson  <mwolson@gnu.org>
1244         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
1245         multiple centered math lines on the same line; keep them on
1246         different lines.  Use \[ math-text \] instead of $$math-text$$,
1247         since the latter seems to be deprecated.  Thanks to Jody Klymak
1248         for the pointer.
1250 2007-01-15  Michael Olson  <mwolson@gnu.org>
1252         * lisp/muse-latex2png.el (muse-publish-latex-tag)
1253         (muse-publish-math-tag): Publish region read-only when current
1254         style is Latex-derived, so that Muse does not escape it.
1255         (muse-publish-math-tag): If 6 or more spaces come before the tag,
1256         surround the region with "$$" rather than "$".  This is the Muse
1257         syntax for something centered, so it should be a good fit.
1259 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
1261         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
1262         protocol.
1263         (muse-browse-url-man): Change man page URL format.  The code is
1264         simpler when the section is left inside parentheses.
1265         (muse-browse-url-woman): New function.
1267 2007-01-14  Michael Olson  <mwolson@gnu.org>
1269         * AUTHORS: Bookkeeping.
1271         * lisp/muse-latex2png.el: Associate <math> tag with
1272         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
1273         Klymak for the report.
1274         (muse-publish-math-tag): Use muse-insert-markup for the "$"
1275         characters, so they don't get escaped.
1277         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
1278         make muse-style-derived-p easier to implement.
1279         (muse-style-derived-p): If the style is not provided, fetch it and
1280         check to see if the car is a string.  This should fix the other
1281         problem that was reported.
1283         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
1284         explains a case where setting muse-file-extension to nil can cause
1285         unexpected behavior.
1287 2007-01-09  Michael Olson  <mwolson@gnu.org>
1289         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
1290         comments higher priority than tags.  Thanks to Stefan van der Walt
1291         for the report.
1293 2007-01-08  Michael Olson  <mwolson@gnu.org>
1295         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
1296         argument rather than calling match-string.  Thanks to Stefan van
1297         der Walt for the report.  This should fix a bug with publishing
1298         <include file="..." markup="example">.
1300 2007-01-06  Michael Olson  <mwolson@gnu.org>
1302         * Makefile (debclean): New rule split from debrevision and
1303         debrelease.
1304         (debbuild): Take distributor into account.
1306         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1307         vendor/distributor we are building for.
1309 2007-01-04  Michael Olson  <mwolson@gnu.org>
1311         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1312         line.
1314         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1315         point to muse-publish-src-tag by default, since <src> and
1316         <example> have different parameters.
1317         (muse-publish-src-tag): New barebones publishing function for
1318         <src>, which is superseded when publishing in an HTML-based style.
1320 2007-01-03  Michael Olson  <mwolson@gnu.org>
1322         * lisp/muse-html.el (muse-html-src-tag): Document.
1324         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1325         command that calls a given tag on the current buffer.  Attributes
1326         may be passed.
1327         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1328         it.
1329         (muse-publish-srcify-buffer): New function that allows
1330         markup="src" in the <include> tag.
1331         (muse-publish-get-and-delete-attr): New macro that gets an
1332         attribute from a list and removes the first instance of that
1333         attribute from said list.
1334         (muse-publish-markup-attribute): Handle markup="src".
1335         (muse-publish-command-tag, muse-publish-include-tag): Use
1336         muse-publish-get-and-delete-attr.  This allows the remaining
1337         attributes to be passed.
1339         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1340         as changes to <command> and <include>.
1342 2006-12-30  Michael Olson  <mwolson@gnu.org>
1344         * NEWS: Update.
1346         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1347         from muse-publish-math-tag to avoid conflict with
1348         muse-latex2png.el.
1350 2006-12-23  Michael Olson  <mwolson@gnu.org>
1352         * lisp/muse-latex2png.el: Update header, since this has been
1353         rewritten sufficiently to not need an assignment from the original
1354         author.
1355         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1356         (muse-latex2png): Use two underscores to separate prefix and hash.
1357         (muse-latex2png-region): New function split from
1358         muse-publish-latex-tag that can be used easily by other code.
1359         Detect whether we are using an HTML-based publishing style, and
1360         insert a simpler markup if we are not.  If we are using a
1361         Latex-based publishing style, do not generate an image, and leave
1362         the region alone.  Return the path of the generated image, in case
1363         other functions want to use this programmatically.
1364         (muse-publish-latex-tag): Set a default prefix based on the name
1365         of the current file.
1366         (muse-publish-math-tag): New tag that surrounds the region with
1367         "$" characters, so that it becomes a Latex math region, and then
1368         publishes it.
1370         * lisp/muse-publish.el (muse-style-derived-p): New function that
1371         returns non-nil if a given style, or the current style if omitted,
1372         is equal to or derived from the given base style.  This is useful
1373         in <lisp> tags, because it allows the user to specify markup that
1374         is only to be inserted for one particular style.
1376 2006-12-22  Michael Olson  <mwolson@gnu.org>
1378         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1379         (muse-html-src-tag): New function which publishes the <src> tag.
1380         Thanks to Clinton Ebadi and Charles Wang for the initial
1381         implementations.
1383         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1385 2006-12-21  Michael Olson  <mwolson@gnu.org>
1387         * examples/johnw/muse-johnw.el: Update for preferred
1388         muse-derive-style usage.  Rename to muse-init.el.
1390         * examples/mwolson/muse-init.el: Update.
1392         * lisp/muse-book.el (muse-book-publish): New function split from
1393         muse-book-publish-project.  This is used in the definitions for
1394         the book-latex and book-pdf styles.
1395         (muse-book-publish-p): New function split from muse-book-publish.
1396         (muse-book-get-directives): New function that retrieves the
1397         publishing directives from the given file.
1398         (muse-book-publish): Use muse-book-get-directives to set the title
1399         if no title was specified.
1401         * lisp/muse-project.el (muse-project): Add :publish-project entry
1402         to widget.
1403         (muse-read-project, muse-project-find-file): Message fix.
1404         (muse-project-publish-file-default): New function split from
1405         muse-project-publish-file.
1406         (muse-project-publish-file): Allow file-level publishing function
1407         to be specified by the :publish element.  The default is
1408         muse-project-publish-file-default.
1409         (muse-project-publish-default): New function split from
1410         muse-project-publish.
1411         (muse-project-publish): Allow project-level publishing function to
1412         be specified by :publish-project element.  The default is
1413         muse-project-publish-default.
1415         * lisp/muse-publish.el (muse-publish-file): Message fix.
1417         * texi/muse.texi (Book): Mention new way to publish books and
1418         provide an example, since the process may be non-obvious.
1420 2006-12-20  Michael Olson  <mwolson@gnu.org>
1422         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1423         content-modifying code from the rest of
1424         muse-docbook-finalize-buffer.
1426         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1427         muse-groff-finalize-buffer, since it adds content to the buffer.
1429         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1430         content-modifying code from the rest of muse-html-finalize-buffer.
1431         This fixes a bug when using <include> with <content> tags.
1433         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1434         (muse-journal-latex-munge-buffer)
1435         (muse-journal-rss-munge-buffer): Rename, since they add content to
1436         the buffer.
1438         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1439         muse-latex-finalize-buffer, since it adds content to the buffer.
1441         * lisp/muse-mode.el:
1442         * lisp/muse-project.el:
1443         * lisp/muse-publish.el:
1444         * lisp/muse.el: Fix recursive load error.
1446         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1447         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1449         * lisp/muse-wiki.el: Comment cleanup.
1451         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1453 2006-12-17  Michael Olson  <mwolson@gnu.org>
1455         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1456         Remove the definition of \comment, since Latex already has comment
1457         syntax.
1458         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1459         than our own.  Thanks to Ryan Stutsman for pointing this out.
1461 2006-12-02  Michael Olson  <mwolson@gnu.org>
1463         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1464         that this can generate a proper table of contents for Planner HTML
1465         publishing.
1467 2006-12-01  Michael Olson  <mwolson@gnu.org>
1469         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1470         using a very old Emacs, avoid an infinite loop that could occur
1471         when the regexp is an empty string.
1473 2006-11-26  Michael Olson  <mwolson@gnu.org>
1475         * NEWS: Bring up to date.
1477         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1478         list issues and multiple-stanza verse issues.  This takes care of
1479         all of the markup issues I was worried about.
1481         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1482         (muse-project-publish-private-files): New option that indicates
1483         whether files with private filesystem permissions should be
1484         published.  The default is to publish them, since it avoids
1485         confusion in new users.
1486         (muse-project-private-p): Use it.
1488 2006-11-19  Michael Olson  <mwolson@gnu.org>
1490         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1491         style is found, which means that the link is not a Muse page, do
1492         not add a suffix or prefix to it.  This should fix the
1493         "[[thing.owl]]" bug that Phillip Lord reported.
1495         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1496         removing unused 2nd argument.
1498 2006-11-17  Michael Olson  <mwolson@gnu.org>
1500         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1501         latex publishing where nested enumerated lists would be squashed
1502         together at the end.
1504 2006-11-16  Michael Olson  <mwolson@gnu.org>
1506         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1507         list embedded in a definition list look right.  This also allows
1508         for definitions to be separated from their terms, much like the
1509         way HTML does it by default, if the user puts a blank line or a
1510         line break between the term and the definition.  If the term and
1511         definition are on the same line, they will be that way in the
1512         output as well.
1514 2006-11-11  Michael Olson  <mwolson@gnu.org>
1516         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1517         for the report.
1518         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1520 2006-11-07  Michael Olson  <mwolson@gnu.org>
1522         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1523         release candidate for Muse 3.03, available.
1525         * NEWS: Update.
1527 2006-11-06  Michael Olson  <mwolson@gnu.org>
1529         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1530         following a relative link worked even when the path was incorrect.
1532 2006-11-04  John Sullivan  <john@wjsullivan.net>
1534         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1535         muse-follow-name-at-point to reduce collisions with other
1536         modes (Planner).
1538         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1540 2006-11-04  Michael Olson  <mwolson@gnu.org>
1542         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1543         optional, and make interwiki delimiter a regular rather than shy
1544         group.
1545         (muse-wiki-handle-implicit-interwiki): Rename from
1546         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1547         (muse-wiki-handle-explicit-interwiki): New function that is
1548         smarter about where an explicit link ends in a buffer.  This
1549         allows you to refer to page names with invalid Wiki characters,
1550         such as underscores and dashes, merely by enclosing them in double
1551         brackets.  Also, a bug with recognizing project names too loosely
1552         has been fixed.
1554 2006-11-03  Michael Olson  <mwolson@gnu.org>
1556         * lisp/muse-project.el (muse-project-page-file): Make relative
1557         links work as expected, hopefully.
1559         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1560         output style manually, since it will differ from anything in the
1561         publishing style list.
1563 2006-10-30  Michael Olson  <mwolson@gnu.org>
1565         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1566         grouping elements, since that no longer applies.
1567         (muse-colors-custom-tags): Explicitly match against
1568         muse-tag-regexp to get the match-data set the way we want.  This
1569         really fixes the <example> highlighting bug that Stefan reported.
1570         (muse-configure-highlighting): Set the original value to the
1571         symbol, not the modified value.  Re-use modified rules properly.
1573         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1574         introduced yesterday.
1576 2006-10-29  Michael Olson  <mwolson@gnu.org>
1578         * examples/mwolson: Update my example configuration.
1580         * NEWS: Update.
1582         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1583         without a regexp in the first position before iterating through
1584         them to build muse-colors-vector.  This fixes a bug with the
1585         display of <example> tags.  Thanks to Stefan Reichör for the
1586         report.
1588         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1589         files in projects to be linked to.
1591         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1592         to serve as a description for a URL, as long as it differs from
1593         the destination URL.  This fixes the description of WikPage links
1594         in PDF output.
1595         (muse-publish-link-file): Check to see whether the given link
1596         points at a valid file.  If so, return it.  Otherwise, apply other
1597         transforms like prefix and link suffix.
1599         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1600         "/", it is a file or directory, not a Muse page.  Thanks to
1601         Phillip Lord for the suggestion.
1603         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1604         of the current page as the local path, instead of duplicating the
1605         remote file's path.  This probably fixes at least one reported
1606         bug. since it's quite major.
1607         (muse-wiki-update-project-file-regexp)
1608         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1609         passed to regexp-opt, since that can cause Emacs 21 to throw an
1610         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1611         DOT edu for the report.
1612         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1614 2006-10-28  Michael Olson  <mwolson@gnu.org>
1616         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1617         (muse-project-resolve-link): If the given style does not have a
1618         link-suffix, default to suffix.  This fixes a bug I was noticing
1619         when linking to a file that was published in both PDF and HTML
1620         form.
1622         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1623         function that is used as a callback to determine the initial
1624         amount of indentation that the current dl item has.
1625         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1626         and the post-indent value, instead of trying to determine them
1627         both.
1628         (muse-publish-strip-list-indentation): New function stripped from
1629         `muse-publish-surround-text' for readability.
1630         (muse-publish-surround-text): Instead of taking a determine-indent
1631         value, take a determine-indent-func function, which is called just
1632         after finding the next list item.  If we are asked to determine
1633         the amount of indentation, concatenate indent and post-indent the
1634         first time around.  This effectively fixes all known definition
1635         list issues.
1637 2006-10-16  Michael Olson  <mwolson@gnu.org>
1639         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1640         other software -- namely, Planner -- can detect whether they are
1641         using a version of Muse that supports nested tags.
1642         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1643         muse-publish-goto-tag-end.
1645         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1646         Adapt for nested tags.
1648         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1649         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1650         this.
1652         * lisp/muse-publish.el (muse-publish-markup-tag)
1653         (muse-publish-quote-tag): Use muse-goto-tag-end.
1655         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1657 2006-10-15  Michael Olson  <mwolson@gnu.org>
1659         * AUTHORS: Bookkeeping.
1661         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1662         tag.
1664         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1665         tags.
1667         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1669         * lisp/muse-import-docbook.el (muse-import-docbook)
1670         (muse-import-docbook-files): Docfix.
1671         (muse-import-docbook-get-title): Remove cl.el-ism.
1673         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1675         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1677         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1679         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1680         (muse-next-reference, muse-previous-reference): Minor whitespace
1681         changes.
1682         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1683         the suggestion.
1685         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1687         * lisp/muse-publish.el (muse-publish-markup-tags)
1688         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1689         element and make 4th element determine whether tags are nestable.
1690         (muse-publish-goto-tag-end): New function that moves to the end of
1691         a tag.  Handle nested tags when NESTED is non-nil.
1692         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1693         5th element for function.
1694         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1695         this on several scenarios, and it seems to work.
1696         (muse-publish-surround-text): Accept new optional argument
1697         LIST-ITEM which determines the regexp to use for list items.  The
1698         default is to use muse-list-item-regexp.
1700         * muse.texi (Markup Tags): Mention nestable tags.
1702         * NEWS: Mention new files.
1704 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1706         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1707         into Muse format.
1709         * lisp/muse-import-xml.el: New file that provides helper routines
1710         for converting XML-ish files to Muse format.
1712 2006-10-10  Michael Olson  <mwolson@gnu.org>
1714         * NEWS: Update for 3.02.7 bugfix release.
1716 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1718         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1719         using the value in the muse #date directive.
1720         (muse-blosxom-use-metadate): New option that determines whether or
1721         not to use the #postdate directive.
1722         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1723         metadate plugin format.
1725 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1727         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1728         recognised URLs.
1730         * muse.texi: Clarify handling of implicit links by mentioning
1731         which characters can prevent Muse from recognizing something as an
1732         implicit link.
1734 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1736         * lisp/muse-mode.el (muse-next-reference)
1737         (muse-previous-reference): Fix bug #6367 by moving point to the
1738         beginning of the link.
1740 2006-09-26  Michael Olson  <mwolson@gnu.org>
1742         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1743         beginning-of-line.  This should fix a bug that was noticed in
1744         recent Emacs 22 builds.
1746         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1747         eval-and-compile block to avoid a compiler warning.
1749 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1751         * lisp/muse-backlink.el (muse-backlink-split-string):
1752         Compatibility with Emacs versions < 22
1753         (muse-backlink-pending): New internal variable
1754         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1755         that backlinks are inserted at the right time.
1756         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1757         for pending backlink, and that this is the targe page.
1758         (muse-backlink-handle-link): Don’t handle the link if we are
1759         already handling one. Return the link as well as the parent links.
1761 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1763         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1764         #6942 - muse-blosxom-new-entry fails when using tags.
1766 2006-09-14  Michael Olson  <mwolson@gnu.org>
1768         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1769         compiler warning.
1771 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1773         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1774         function: Protect all wikiwords from START to END from further
1775         processing.
1776         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1778 2006-09-13  Michael Olson  <mwolson@gnu.org>
1780         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1781         adopted from Jim Ottaway's patch.  It removes links from the
1782         heading, and then marks the region read-only to inhibit WikiWord
1783         detection.
1785 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1787         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1788         special handling for headings.
1789         (muse-texinfo-remove-links): New function that removes explicit
1790         links from the given strings, replacing them with a description.
1792 2006-09-11  Michael Olson  <mwolson@gnu.org>
1794         * muse.texi (Getting Help and Reporting Bugs): Mention the
1795         muse-el-internationalization mailing list.
1797         * lisp/muse.el (muse-path-sans-extension): New function that acts
1798         like file-name-sans-extension, but guarantees to never modify the
1799         directory part of the path.  Thanks to Evan Monroig for
1800         investigating this.
1802         * lisp/muse-book.el (muse-book-publish-project): Use
1803         muse-path-sans-extension instead of file-name-sans-extension.
1805         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1806         Ditto.
1808 2006-08-30  Michael Olson  <mwolson@gnu.org>
1810         * muse.texi (Blosxom Requirements): Fix typo.
1812         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1813         directories for bzr and darcs.
1815         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1816         contrib/pyblosxom/getstamps.py: Update version and headers.
1818 2006-08-27  Michael Olson  <mwolson@gnu.org>
1820         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1821         nil values before they get to mapconcat.  This fixes a lockup when
1822         muse-wiki-match-all-project-files is nil.
1824         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1825         (muse-wiki-ignore-implicit-links-to-current-page)
1826         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1827         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1828         (muse-wiki-publish-small-title-words)
1829         (muse-wiki-publish-pretty-title): Docfix.
1830         (muse-wiki-update-local-wikiword-regexp): Rename from
1831         muse-wiki-update-local-wikiword-regexp.  Set
1832         muse-wiki-project-file-regexp instead of
1833         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1834         take muse-wiki-use-wikiword into account, since this is a
1835         different concept now.
1836         (muse-wiki-update-wikiword-regexp): Remove.
1837         (muse-wiki-wikiword-regexp): In-line the :set function.
1838         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1840 2006-08-26  Michael Olson  <mwolson@gnu.org>
1842         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1843         for indented list items, ignore blank lines.
1845         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1846         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1847         mapconcat.  This should hopefully fix a problem with large amounts
1848         of files with spaces in their name.  Thanks to Greg Detre for the
1849         report.
1851 2006-08-24  Michael Olson  <mwolson@gnu.org>
1853         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1854         numbers from the argument to format-time-string.  This fixes an
1855         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1857 2006-08-18  Michael Olson  <mwolson@gnu.org>
1859         * lisp/muse-project.el (muse-project-file-entries): Since we are
1860         given a full path, match against the filename as well.  This fixes
1861         an issue where backup files were being added to the file alist.
1863         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1864         from muse-html.el.
1866 2006-08-12  Michael Olson  <mwolson@gnu.org>
1868         * Makefile (.PHONY): Don't use line continuations.
1869         (realclean fullclean): Call realclean in subdirs, not distclean.
1870         (distclean): Don't call realclean, since this would wipe out our
1871         autoloads file.
1872         (dist): Use correct path to autoloads file.
1874         * NEWS: Catch up with the latest changes.
1876         * experimental/Makefile (.PHONY): Wrap long line.
1878         * lisp/Makefile (distclean): Do the same thing as "clean", not
1879         "realclean".
1881         * lisp/muse-project.el (muse-project-get-applicable-style):
1882         Indentation tweak.
1883         (muse-project-ignore-regexp, muse-project-recurse-directory):
1884         Docfix.
1885         (muse-project-of-file): Try the ignored files regexp against the
1886         base filename as well as the entire path.
1888         * lisp/muse-publish.el (muse-publish-this-file): Display message
1889         if the buffer is not associated with any file, so that we avoid
1890         errors later on.
1891         (muse-publish-url-desc): New function taken from muse-publish-url
1892         that causes a URL description to be transformed.
1893         (muse-publish-url): Call muse-publish-url-desc on either the
1894         description or the original URL if it will be used as a
1895         description.  Accept the original URL as an argument, in case it
1896         was transformed earlier.
1897         (muse-publish-insert-url): Pass original URL as an argument.
1898         (muse-publish-markup-link): Make this somewhat easier to follow.
1899         Pass original URL as argument.
1900         (muse-publish-get-style): If the same style is used to publish to
1901         two different directories, prompt the user for which directory to
1902         use.
1903         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1904         latest changes.
1905         (muse-publish-markup-url): Pass original URL as an argument.  This
1906         fixes the "nil" description for bare URLs that was in 3.02.91.
1907         Nothing like finding a bug just after completing the announcement
1908         of a release.
1910         * lisp/muse.el: Use defalias whenever convenient.
1911         (muse-version): Set version to 3.02.92 (3.03 RC2).
1913 2006-08-10  Michael Olson  <mwolson@gnu.org>
1915         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1916         style does not derive from any other class, return `t' here.
1917         This, along with the corresponding change to muse-publish.el,
1918         fixes a problem with the table of contents getting inserted
1919         multiple times for custom html-based styles.
1920         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1921         smarter method for table centering that works with XHTML.
1923         * lisp/muse-latex2png.el Rename all functions to have a
1924         "muse-latex2png" prefix.  Turn all variables into customizable
1925         options in the muse-latex2png group.
1926         (muse-latex2png-img-dest): New option specifying where to place
1927         the images.
1928         (muse-latex2png-template): New option containing the template to
1929         use for the surrounding LaTeX code.
1930         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1931         compliance.
1932         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1933         messages when something else goes wrong.  Create the image
1934         subdirectory if it doesn't exist already -- thanks to Christian
1935         Straßer for the report.  Expand the filename properly.
1936         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1937         and filename expansion.
1938         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1939         the default directory properly.
1941         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1942         do not run the same function twice.
1944 2006-08-08  Michael Olson  <mwolson@gnu.org>
1946         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1947         introduced wrong-type-argument error.
1949         * lisp/muse-html.el (muse-html-markup-strings)
1950         (muse-xhtml-markup-string): Cause table definition that contains
1951         image to be center-aligned.  This should fix an issue with images
1952         not being centered when captions are very long.
1954         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1955         whitespace from fields once we have split them up.
1957         * lisp/muse.el (muse-trim-whitespace): New function that strips
1958         leading and trailing whitespace from a string.
1960 2006-08-07  Michael Olson  <mwolson@gnu.org>
1962         * NEWS: Update through patch-95.
1964         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1965         to match the tags.
1966         (muse-colors-explicit-link): Show images in link descriptions if
1967         inlined images are enabled.
1969         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1970         definitions for 'image-with-desc, 'image, and 'image-link.
1971         (muse-docbook-markup-paragraph): If an inlined image begins a
1972         paragraph, insert <para> before it.
1973         (muse-docbook-fixup-images): New function that upper-cases the
1974         "format" attribute of the <imagedata> tag.
1975         (muse-docbook-finalize-buffer): Call it.
1977         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1978         with descriptions as centered tables, with a centered caption
1979         underneath.  The resulting look is consistent with the way that
1980         they are published in the LaTeX style.  Thanks to Jody Klymak for
1981         the suggestion.
1982         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1983         valid way to center a table.
1984         (muse-html-markup-paragraph): Use class="image" instead of
1985         "image-link" for paragraphs that start with an embedded image.
1987         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1988         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1989         suggestion.
1990         (muse-latex-markup-specials-image): New option that enables
1991         escaping of specials in images.  This was split from the URL
1992         specials.
1993         (muse-latex-decide-specials): Handle 'image context.
1994         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1995         of relying on caller to do this for us.
1997         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1998         'image context.
1999         (muse-publish-url): Use 'image context for images.  Use 'image
2000         instead of 'image-link and 'image-link in place of
2001         'url-with-image.  Separate the image file from its extension so
2002         that docbook and texinfo can publish images correctly.
2003         (muse-publish-markup-link): Don't force a description if one is
2004         not given.  This fixes a bug where images without descriptions
2005         were being published as 'image-with-desc instead of 'image.
2007         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
2008         images the same as URLs.
2009         (muse-texinfo-markup-strings): Improve image markup to achieve an
2010         effect similar to that of the LaTeX publishing style.  Simplify
2011         'url string.
2013         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
2015         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
2016         when we have to use the custom version of this function.
2018         * muse.texi (Images): Explain how to toggle inlining of images and
2019         give better examples.  Mention captions and that captioned images
2020         should not be used inside of text paragraphs.
2021         (Markup Strings): Bring up-to-date with the changes made since
2022         3.02.
2024 2006-08-06  Michael Olson  <mwolson@gnu.org>
2026         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
2027         in the Emacs source tree.
2029         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
2030         in the Emacs source tree.
2032         * ChangeLog.3: New file created from the old ChangeLog.
2034         * Makefile.defs (VERSION): Set to 3.02.91.
2036         * NEWS: Update through patch-84.
2038         * lisp/muse.el (muse-version): Set to 3.02.91.
2040         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
2041         attributes.
2042         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
2043         delimiter are instead of hard-coding it.
2045         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
2046         (muse-mode): Make filling definition lists work better.  This
2047         should fix #5359.
2049         * lisp/muse-publish.el (muse-style-run-hooks): Use
2050         `muse-style-element' instead of `muse-get-keyword' here.  This
2051         should fix #6399.
2053         * muse.texi: Set version to 3.02.91 (3.02 RC2).
2055 See ChangeLog.3 for earlier changes.
2057 ;; Local Variables:
2058 ;; coding: utf-8
2059 ;; End: