examples/mwolson: Update my example settings
[muse-el.git] / ChangeLog
blob0a903a2d4135904082a8011c4e2a420a6b566dd1
1 2007-08-19  Michael Olson  <mwolson@gnu.org>
3         * examples/mwolson: Update my example settings.
5         * lisp/muse-html.el (muse-html-src-tag): Use
6         muse-delete-and-extract-region.
8         * lisp/muse-import-xml.el: Add require statement.
9         (muse-import-xml-parse-node): Use muse-replace-regexp-in-string.
11         * lisp/muse-protocols.el (muse-browse-url-man): Add require
12         statement.
13         (muse-browse-url-woman): Add require statement.
15         * lisp/muse-publish.el (muse-publish-surround-text): Fix serious
16         bug in definition list publishing.  We were skipping past the
17         initial indented line, and that was causing an erroneous
18         blockquote to be inserted.  This alone merits a new release.
20         * lisp/muse.el (muse-delete-and-extract-region): New compatibility
21         function to deal with XEmacs' lack of the
22         delete-and-extract-region function.
24 2007-08-18  Michael Olson  <mwolson@gnu.org>
26         * AUTHORS: Update.
28         * lisp/muse-publish.el (muse-publish-include-tag): Switch from
29         copy-tree to copy-alist, since Emacs21 does not have the former,
30         and the latter does what we want.
32         * lisp/muse.el: Force-require 'derived, since Emacs21 does not
33         have derived-mode-p in subr.el like Emacs22 does.
35 2007-08-17  Michael Olson  <mwolson@gnu.org>
37         * etc/muse.rnc: Add the <cite> tag.
39         * lisp/muse-context.el (muse-context-slides-header): Clarify what
40         "mystyle" is.
42         * lisp/muse-xml.el (muse-xml-markup-strings): Mark up citations as
43         <cite type="something">.  We'll leave it to the post processing
44         tools to interpret that.
46         * texi/muse.texi (Directives, Blosxom Entries): Use @code{} for
47         directives.
48         (Citations): New section that explains further how to use the
49         <cite> tag.  The text was taken from Marcus Hoenicka's
50         documentation at http://refdb.sourceforge.net/muse.html and
51         modified.
52         (Tag Summary): Link to the Citations section in the entry for
53         <cite>.
54         (ConTeXt): Update the documentation for
55         muse-context-slides-header.
57 2007-08-17  Jean Magnan de Bornier  <jean@bornier.net>
59         * lisp/muse-context.el (muse-context-slides-header): Use #module
60         directive, if it is provided.
61         (muse-context-slides-header): Mention how to use #module.
63 2007-08-16  Michael Olson  <mwolson@gnu.org>
65         * Release Emacs Muse 3.10.
67         * Makefile (dist, debprepare): Pass HEAD argument to git-archive.
68         (upload): Don't depend on release rule.
70         * NEWS: Document remaining changes.
72 2007-08-15  Michael Olson  <mwolson@gnu.org>
74         * NEWS: Document items through 2007-08-12.
76         * lisp/muse-colors.el: Split the muse-directive-or-comment
77         property into two separate properties that are muse-directive and
78         muse-comment.
79         (muse-colors-region-end): Make buffer-local.
80         (muse-colors-delayed-commands): New variable that contains a list
81         of commands to run immediately after highlighting.  This is meant
82         to allow highlighting functions to delay code until later.
83         (muse-colors-region): Apply commands in
84         muse-colors-delayed-commands.
85         (muse-colors-inhibit-tags-in-directives): New variable that
86         determines whether tags are allowed in directives.
87         (muse-colors-custom-tags): Take
88         muse-colors-inhibit-tags-in-directives into account.
89         (muse-unhighlight-region): Remove muse-directive and muse-comment
90         properties.
91         (muse-colors-title): Modify muse-colors-delayed-commands.
92         (muse-colors-title-lisp): New command that gets called after
93         highlighting other things.  This interprets <lisp> tags, and is
94         passed arguments specifying the beginning and end of the region.
95         Thanks to Junichi Uekawa for the report.  The reason we want to do
96         things this way is because this is the behavior we get already
97         when publishing the page.
99         * lisp/muse.el (muse-goto-tag-end): Change to use muse-comment
100         property rather than muse-directive-or-comment.
102 2007-08-14  Michael Olson  <mwolson@gnu.org>
104         * lisp/muse-colors.el: Document all functions and variables.
105         (muse-colors-emphasized, muse-colors-underlined)
106         (muse-colors-verbatim, muse-colors-custom-tags)
107         (muse-colors-explicit-link, muse-colors-implicit-link): Don't trod
108         on comments or the #title directive.
109         (muse-colors-markup): Add comment rule.
110         (muse-colors-implicit-link): Only remove flyspell overlay after we
111         decide whether this is an implicit link, rather than before.
112         (muse-colors-title): Add the muse-directive-or-comment property.
113         (muse-colors-comment): New function that colorizes comments using
114         font-lock-comment-face.
115         (muse-colors-region-end): New variable indicating the end of the
116         region that is currently being font-locked.  This removes the need
117         for an ugly "defvar end" hack.
118         (muse-colors-emphasized, muse-colors-underlined)
119         (muse-colors-verbatim): Use it.
120         (muse-colors-region): Let-bind it.
122         * lisp/muse-mode.el (muse-list-edit-minor-mode): Grammar fix in
123         docstring.
125         * lisp/muse-publish.el (muse-publish-markup-heading): Escape
126         specials in heading now, rather than waiting on the whole-document
127         pass later on.  This lets <contents> generation work without
128         validation errors.  Thanks to Reid van Melle for the report.
130         * texi/muse.texi (Tag Summary): Document <cite> tag.
131         (Miscellaneous): New chapter containing "Muse List Edit Minor
132         Mode" section.
133         (Muse List Edit Minor Mode): New section that documents
134         muse-list-edit-minor-mode.
135         (Development): Mention the MuseDevlopment page on emacswiki.org.
137         * lisp/muse.el (muse-goto-tag-end): Deal with case where we are
138         font-locking and the end or beginning of a tag is in a comment or
139         directive.
141 2007-08-12  Michael Olson  <mwolson@gnu.org>
143         * lisp/muse-html.el (muse-html-strip-links): New function that
144         strips HTML links from a string.
145         (muse-html-insert-contents): Use it, instead of
146         muse-publish-strip-tags.  This fixes a bug reported by Xin Shi
147         involving the use of <sup> in section titles.
149         * lisp/muse-project.el (muse-project-resolve-directory): New
150         function that figures out the directory part of the path that
151         provides a link to a page.
152         (muse-project-resolve-link): Expand docstring.  Use the new
153         function.  Don't call muse-publish-link-file, because that does
154         the wrong thing when we have muse-file-extension set to nil.
155         Thanks to Sebastian Obermanns for the report.
156         (muse-project-publish-this-file): Let-bind muse-current-project.
157         Also, if the file is not associated with a project, fall back to
158         muse-publish-this-file.
159         (muse-project-set-variables): Add this to
160         muse-before-publish-hook, so that it gets called.  This fixes a
161         bug where project-specific variables were being used in Muse mode,
162         but ignored when publishing.
164         * lisp/muse-publish.el (muse-publish-link-name)
165         (muse-publish-link-file, muse-publish-link-page): Add docstrings
166         so that I can remember what each of these things do.
167         (muse-publish-strip-tags): Remove, since it is no longer used.
168         (muse-publish-cite-tag): Don't let-bind
169         muse-publishing-directives, because there is no need to do so.
170         Fix code indentation.
171         (muse-publish-markup-attribute): Avoid multiple evaluation of
172         attrs argument, in case it is list value instead of a symbol.  Use
173         sexp instead of form in the edebug-form-spec.
174         (muse-publish-include-tag): Make a full copy of
175         muse-publishing-directives, since it can be modified with setcdr.
176         This fixes a bug where #title and some other directives were
177         leaking out of an included region.
178         (muse-publish-mark-up-tag): Don't let-bind
179         muse-publishing-directives, because there is no need to do so.
181         * lisp/muse.el (muse-page-name): Improve docstring.
183         * texi/muse.texi (Development): Mention the http method for
184         anonymous git access to the shared repo.
186 2007-08-10  Michael Olson  <mwolson@gnu.org>
188         * Makefile (dist, debprepare): Use git instead of tla.
190         * contrib/httpd.el (httpd-send-file): Use insert-file-contents.
192         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
193         Use muse-insert-file-contents.
195         * experimental/muse-split.el (muse-publish-file)
196         (muse-publish-presplit-publish, muse-publish-no-split-function)
197         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
198         muse-insert-file-contents.
200         * lisp/muse-book.el (muse-book-publish-chapter)
201         (muse-book-get-directives): Use muse-insert-file-contents.
203         * lisp/muse-http.el (muse-http-render-page): Use
204         muse-insert-file-contents.
206         * lisp/muse-poem.el (muse-poem-markup-tag): Use
207         muse-insert-file-contents.
209         * lisp/muse-publish.el (muse-insert-file-or-string)
210         (muse-publish-file, muse-publish-include-tag)
211         (muse-published-contents): Use muse-insert-file-contents.
213         * lisp/muse.el (muse-insert-file-contents): New function that
214         inserts a file with character code conversion, but none of the
215         other frivolities.  Since insert-file-contents-literally does not
216         do character code conversion, it is not suitable for us.
217         (muse-with-temp-buffer): Mention muse-insert-file-contents rather
218         than insert-file-contents-literally.
220 2007-08-09  Michael Olson  <mwolson@gnu.org>
222         * lisp/muse.el (muse-write-file): Pay attention to
223         coding-system-for-write and save-buffer-coding-system.  This
224         should fix a recently-introduced bug with writing Muse pages in
225         different coding systems.
227 2007-08-08  Michael Olson  <mwolson@gnu.org>
229         * README (Prerequisites): Fix typo.
230         (Compilation, Installation): Update.
231         (Documentation, Further Documentation): Update URLs.
232         (Further Documentation): Add quick blurb on how to participate in
233         Muse development or track changes.
235         * texi/muse.texi (Releases): Use gna.org URL for downloading the
236         latest release, rather than my website.
237         (Development): Change instructions to use git instead of
238         Arch. Mention where to get a Windows binary for git.  Improve the
239         look of the listing.  Add section with instructions for Becoming a
240         Muse developer.
241         (Installation): Update instructions for Makefile.defs.default and
242         XEmacs.  Add index entries.  Add section for ELPA, since Muse
243         ought to be distributed in ELPA after the 3.10 release.  Fix typo
244         and clarify wording.
246 2007-08-06  Michael Olson  <mwolson@gnu.org>
248         * texi/muse.texi: Make sure that attributes are marked up with
249         @option{} rather than @code{} or @samp{} for consistency.
250         (Journal): Add "muse-project-alist-considerations" subheading,
251         along with a mention of :base-url.
253 2007-08-05  Michael Olson  <mwolson@gnu.org>
255         * .gitignore: Add texi/muse.html and the DVC log edit file.
257         * Makefile.defs.default (install_info): Rename from INSTALLINFO.
258         Turn this into something that can be called like a command, due to
259         needing to deal with XEmacs, which has different argument order.
260         Thanks to Terrence Brannon for the report.
262         * lisp/muse-project.el (muse-project-of-file): Simplify by using
263         catch, throw, and dolist.  Look for exact matches before
264         considering any subdirectories.  If no exact matches are found,
265         then pick the longest match.
267         * lisp/muse.el (muse-sort-by-rating): Mention default test in
268         documentation.
270         * scripts/muse-build.el: Avoid interference from VC.el in the
271         build process.
273         * texi/Makefile (install): Call install_info.
275 2007-08-03  Michael Olson  <mwolson@gnu.org>
277         * lisp/muse-project.el (muse-project-applicable-styles): Remove
278         useless argument ignore-regexp.  Use saner logic.  This fixes a
279         bug where a file could potentially not exist but still appear in
280         the used-styles list.  Thanks to John Wiegley for the fix.
281         (muse-project-publish-file): Don't take ignore-reegxp argument.
283 2007-08-02  Michael Olson  <mwolson@gnu.org>
285         * lisp/muse-publish.el (muse-batch-publish-files): Don't activate
286         VC when publishing files in batch.  This avoids some annoying
287         messages when building QuickStart in the examples directory.
289         * lisp/muse-mode.el (muse-mode): Don't try to indent line before
290         inserting a comment.
292 2007-07-31  Michael Olson  <mwolson@gnu.org>
294         * lisp/Makefile: Add dependencies between Emacs Lisp files, so
295         that Muse can be recompiled without running "make clean" after an
296         update.
298         * lisp/muse-publish.el (muse-publish-verse-tag): Unconditionally
299         delete forward one character, since we are guaranteed to be on a
300         blank line.  Don't delete all initial whitespace of the first
301         line.  This fixes an issue where the output from the verse tag did
302         not match the output from Muse's verse syntax.
304 2007-07-29  Michael Olson  <mwolson@gnu.org>
306         * Relicense to GPLv3.
308         * Makefile.defs.default: Rename from Makefile.defs.  This allows
309         people to copy this file to Makefile.defs and make changes,
310         without having the changes be accidentally committed.  If
311         Makefile.defs does not exist, this file is read instead, in order
312         to minimize inconvenience to the casual user.
314         * Makefile, contrib/Makefile, examples/Makefile,
315         experimental/Makefile, lisp/Makefile, texi/Makefile: Use either
316         Makefile.defs.default or Makefile.defs.
318         * lisp/muse-mode.el (muse-list-edit-minor-mode-map): Use new
319         function names.
320         (muse-l-e-m-m-insert-list-item): Add real documentation.
321         (muse-l-e-m-m-increase-list-item-indent)
322         (muse-l-e-m-m-decrease-list-item-indent): Rename for clarity.  Add
323         real documentation.
324         (muse-list-edit-minor-mode): Improve documentation.
326         * texi/doclicense.texi (GNU Free Documentation License): Use
327         pristine copy from Emacs source tree.
329         * texi/muse.texi (Contributors): Move node and appendix indicators
330         here, rather than doclicense.texi.
332 2007-07-29  Jean Magnan de Bornier  <jean@bornier.net>
334         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
335         command which did not work correctly
337         * lisp/muse-context.el (muse-context-markup-strings): Change rule
338         command which did not work correctly; defined verse commands
339         (muse-context-markup-specials-literal): Eliminate all unuseful entries
341 2007-07-29  Michael Olson  <mwolson@gnu.org>
343         * contrib/httpd.el (httpd-send-file): Use
344         insert-file-contents-literally instead of insert-file-contents.
346         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
347         Use insert-file-contents-literally instead of
348         insert-file-contents.
350         * experimental/muse-split.el (muse-publish-file)
351         (muse-publish-presplit-publish, muse-publish-no-split-function)
352         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
353         insert-file-contents-literally instead of insert-file-contents.
355         * lisp/muse-book.el (muse-book-publish-chapter)
356         (muse-book-get-directives): Use insert-file-contents-literally
357         instead of insert-file-contents.
359         * lisp/muse-http.el (muse-http-render-page): Use
360         insert-file-contents-literally instead of insert-file-contents.
362         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
363         nowhere when done, since they can slow things down.
365         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
366         marker to nowhere when done, since they can slow things down.
368         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
369         when done, since they can slow things down.  Use
370         insert-file-contents-literally instead of insert-file-contents.
372         * lisp/muse-publish.el (muse-publish-markup-tag)
373         (muse-publish-markup-word, muse-publish-markup-footnote)
374         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
375         done, since they can slow things down.
376         (muse-insert-file-or-string, muse-publish-file)
377         (muse-publish-include-tag, muse-published-contents): Use
378         insert-file-contents-literally instead of insert-file-contents.
379         (muse-publish-surround-dl): Remove unused variable.  Track whether
380         a term has been found, and handle that case well.
381         (muse-publish-ensure-blank-line): Use a marker, so that we don't
382         lose our place when adding a newline.  This really fixes the
383         definition list item bug.
384         (muse-publish-markup-list): Since people do seem to want
385         definition lists with no terms, allow this.
386         (muse-batch-publish-files): Set muse-current-output-style.
388         * lisp/muse.el (muse-with-temp-buffer): Mention
389         `insert-file-contents-literally'.
391 2007-07-28  Michael Olson  <mwolson@gnu.org>
393         * lisp/muse-mode.el (muse-browse-result): Set
394         muse-current-output-style.
395         (muse-mode): Don't duplicate the paragraph-start regexp
396         unnecessarily.
397         (muse-list-edit-minor-mode-map): New variable containing the
398         keymap for Muse list edit minor mode.
399         (muse-l-e-m-m-list-item-regexp): New variable that matches list
400         items for Muse list edit minor mode.
401         (muse-l-e-m-m-insert-list-item,
402         muse-l-e-m-m-i-list-item-indentation)
403         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
404         item functions that change the list item regexp before calling the
405         existing function.
406         (muse-l-e-m-m-data): New variable that keeps track of the fill
407         data that we overwrite when activating Muse list edit minor mode,
408         so that we can restore it if the minor mode is toggled off.
409         (muse-list-edit-minor-mode): New minor mode that is useful for
410         editing lists in other major modes.
411         (turn-on-muse-list-edit-minor-mode)
412         (turn-off-muse-list-edit-minor-mode): New interactive functions
413         that turn Muse list edit minor mode on and off, respectively.
414         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
415         regexps.
417         * lisp/muse-project.el (muse-project-publish-this-file): Set
418         muse-current-output-style.  This fixes a bug when publishing to a
419         style that is not first in the list of styles.  Thanks to Jean
420         Magnan de Bornier for the report.
422         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
423         function that ensures that a blank line exists in the line before
424         point.
425         (muse-publish-markup-list): Use it, rather than
426         `muse-publish-ensure-block'.  This fixes a bug with definition
427         list publishing.  Thanks to meandtheshell for reporting this.
429         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
430         project argument is nil, default to the current project instead of
431         the first project entry in muse-project-alist.  This seems much
432         more sane to me.
434         * lisp/muse.el (muse-forward-list-item): Only check the 'face
435         property if we are in Muse mode or one of its derivatives.  This
436         allows movement on nested lists to work in other modes, and fixes
437         an issue with altering list indentation in
438         muse-list-edit-minor-mode.
440 2007-07-27  Michael Olson  <mwolson@gnu.org>
442         * AUTHORS: Add new authors.
444         * README: Permit Muse to be called "Emacs-Muse".
446         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
448         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
449         involving list items that have an extra blank line in front.
451         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
452         and Emacs-Muse are the same thing.
454 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
456         * lisp/muse-context.el (muse-context-header): Put
457         starttext after the modules who must be in preamble.
458         (muse-context-markup-strings): Fixed mistake in begin-example and
459         end-example.
461         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
462         math environment in ConTeXt when centered: "$$ $$" has to be
463         "\startformula \stopformula".
465 2007-07-26  Michael Olson  <mwolson@gnu.org>
467         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
468         parentheses in URLs.
470 2007-07-24  Michael Olson  <mwolson@gnu.org>
472         * examples/QuickStart.muse (Images): Fix typo where some text
473         existed in the output but not in the example region.
474         (Source Code): Fix another typo.  Explain that publishing from
475         console or X can make a difference.
477         * lisp/muse-context.el (muse-context-pdf-program): New option that
478         determines the program to use for generating PDF files for
479         ConTeXt.
480         (muse-context-pdf-cruft): New option that specifies the extensions
481         of files to remove after generating PDF output successfully.
482         (muse-context-slides-header): Docfix.
483         (muse-context-pdf-generate): Use new options.
485         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
486         save-restriction call.  This was causing a world of hurt when
487         using <lisp> inside of <include>.
489         * texi/muse.texi (ConTeXt): New section that documents how to use
490         the ConTeXt publishing styles.
492 2007-07-23  Michael Olson  <mwolson@gnu.org>
494         * lisp/muse-context.el: New file that provides support for
495         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
496         de Bornier for his work on this.
498         * lisp/muse-docbook.el (muse-docbook-entities)
499         (muse-docbook-bibliography): Remove unneeded save-restriction use.
501         * lisp/muse-latex2png.el (muse-publish-latex-tag):
502         s/contex/context/.
504         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
505         (muse-latex-bibliography): Remove call to `widen', since it is not
506         needed anymore.  Remove unneeded save-restriction use.
507         ("slides", "slides-pdf"): Indent elements uniformly.
509 2007-07-22  Michael Olson  <mwolson@gnu.org>
511         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
512         * lisp/muse-mode.el (muse-insert-tag):
513         * lisp/muse-project.el (muse-read-project)
514         (muse-read-project-file):
515         * lisp/muse-publish.el (muse-publish-get-style): Use
516         muse-completing-read-function.
518         * lisp/muse-latex2png.el (muse-publish-latex-tag)
519         (muse-publish-math-tag): Allow the context style -- which I plan
520         to include soon -- to work with these tags.
522         * lisp/muse.el (muse-completing-read-function): New option that
523         determines which function to call when doing a completing-read.
525 2007-07-15  Michael Olson  <mwolson@gnu.org>
527         * lisp/muse-journal.el (muse-journal-html-entry-template)
528         (muse-journal-rdf-entry-template)
529         (muse-journal-rss-entry-template): Mention that this can be text
530         or a filename.
531         (muse-journal-rdf-entry-template, muse-journal-rss-header)
532         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
533         newlines to make the output look nicer.
534         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
535         Use muse-insert-file-or-string for the entry templates, rather
536         than muse-insert-markup.  This allows <lisp> and <markup> tags to
537         be acted on.  Thanks to Scott Hyde for the report.
538         (muse-journal-html-munge-buffer): Escape quote of the day using
539         entire-document specials before snarfing it.  Mark entire template
540         as read-only -- this fixes an incorrect escaping bug.  Remove
541         read-only properties before replacing template matches so that
542         they can still be escaped with entire-document specials later on.
543         (muse-journal-rss-munge-buffer): Make sure that title is escaped
544         properly.
545         (muse-journal-markup-tags): Rename from
546         muse-journal-latex-markup-tags, because we will use it for
547         journal-rss-entry as well.
548         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
549         end-quote-item.
550         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
551         html.
552         ("journal-latex", "journal-pdf", "journal-book-latex")
553         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
554         muse-journal-latex-markup-tags.
555         ("journal-rss-entry"): New style that is used by journal-rss and
556         journal-rdf to mark up individual entries.  It is needed so that
557         we can do something meaningful with the qotd tag.
558         (muse-journal-rdf-summarize-entries): Set this to nil by default,
559         because it is annoying.  Update docs to mention this.
560         (muse-journal-rss-summarize-entries): Docfix.
562         * lisp/muse-publish.el (muse-insert-file-or-string): Use
563         muse-publish-markup-header-footer-tags.  I'm not quite sure how
564         this change got reverted.
565         (muse-markup-tag-info): Make into a function.  Move common code
566         here, rather than duplicating it in two places.  Deal with case
567         where muse-publish-use-header-footer-tags is non-nil.
568         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
569         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
570         warning.
571         (muse-publish-use-header-footer-tags): New variable that indicates
572         whether we should use just the header and footer tags, rather than
573         the full set.
574         (muse-insert-file-or-string): Bind
575         muse-publish-use-header-footer-tags to t.
576         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
577         Simplify call to muse-markup-tag-info.
578         (muse-publish-mark-up-tag): Bind
579         muse-publish-use-header-footer-tags to nil.
581         * texi/muse.texi (Journal): Update for recent changes.
583 2007-07-14  Michael Olson  <mwolson@gnu.org>
585         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
586         delete the remainder of the buffer, since this causes the
587         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
588         the report and the suggested fix.
590         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
591         beginning of table-el regexp.  This fixes a bug where Muse stalls
592         when trying to publish a malformed table.  Thanks to Ye Wenbin for
593         the report and the suggested fix.
595 2007-07-12  Michael Olson  <mwolson@gnu.org>
597         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
598         default, rather than the empty string.  This really fixes the bug
599         that occurred when using Muse with muse-project-alist set to nil.
600         Thanks to Jonathan Underwood for the report.
601         (muse-wiki-update-interwiki-regexp): Set
602         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
603         defined.
604         (muse-wiki-handle-implicit-interwiki)
605         (muse-wiki-handle-explicit-interwiki): Handle case where
606         muse-wiki-interwiki-regexp is nil.
608 2007-07-10  Michael Olson  <mwolson@gnu.org>
610         * lisp/muse-mode.el (muse-grep): Abort search if the current
611         project contains no directories.
613         * lisp/muse-project.el (muse-project-file-alist): If
614         muse-project-alist is not defined, or project is nil, return nil
615         right away.  This ought to fix a bug that occurred when using Muse
616         with muse-project-alist set to nil.
617         (muse-project-of-file): Make sure muse-project-alist is not nil.
618         (muse-project-save-buffers): Make sure project is not nil.
620         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
621         case where muse-project-alist is nil.
623         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
624         for XEmacs, since color-theme.el is poorly behaved, and defines
625         its own replace-in-string.  Bad color-theme.el -- no cookie for
626         you.
628 2007-07-01  Michael Olson  <mwolson@gnu.org>
630         * Makefile (.PHONY): Update for new debian package rules.
632         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
634         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
635         Use save-restriction properly.
636         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
638         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
639         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
640         properly.
641         (muse-latex-bibliography): Re-indent.
643         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
644         higher.  This fixes an error at startup with some versions of
645         Emacs.
646         (muse-publish-cite-tag): Re-indent.
648         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
649         to the end of the link part, so as to exclude the description from
650         the match.  This fixes a bug with three-part links that have
651         descriptions.  Thanks to everyone who pointed it out.
653 2007-06-18  Michael Olson  <mwolson@gnu.org>
655         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
656         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
657         1.1 specific markup strings.
658         (muse-html-insert-anchor): Use 'anchor string, rather than
659         hard-coding it.  Thanks to Chris Corsair for the suggestion.
660         ("xhtml1.0"): New style that is an alias for the xhtml style.
661         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
663 2007-06-17  Michael Olson  <mwolson@gnu.org>
665         * examples/QuickStart.muse: Make images local so that the Info
666         version of this document works.  Add <example> for the Literal
667         paragraphs chapter, so that it is clear what is happening.
669         * Makefile: Add elpa target, which is used for building an ELPA
670         package for Muse.
672         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
673         building ELPA packages.
675         * examples/Makefile (%.html, %.pdf, %.info): Add message to
676         indicate what we are publishing.
677         (realclean distclean fullclean): Remove all TeX crud.
679         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
680         that the Info version of QuickStart can publish correctly.
682         * lisp/muse-latex.el (muse-latex-slides-header)
683         (muse-latex-lecture-notes-header): Docfix.
685         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
686         the list of things to ignore.
688         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
689         variable.
691         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
692         default to nil, since texinfmt.el is a serious nuisance.
693         (muse-texinfo-markup-strings): Add newlines to begin-example and
694         end-example.
695         (muse-texinfo-decide-specials): Also escape URL-type specials in a
696         whole slew of other contexts.
698         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
699         muse-xml.
701         * lisp/muse-xml.el (muse-xml-footer): Docfix.
703         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
705 2007-06-16  Michael Olson  <mwolson@gnu.org>
707         * etc/IDEAS.muse: Add some ideas from David D. Smith.
709         * examples/QuickStart.muse: Overhaul.
711         * lisp/muse-project.el (muse-project): Call the last part of a
712         muse-project-alist entry "Output styles" rather than "styles".
714         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
715         where we have a pipe character at the beginning of line.
717         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
718         causing tables to not be sorted at all.
720         * texi/muse.texi: Overhaul.  It would be too time-consuming to
721         list all of the changes here.  The "Getting Started" and
722         "Projects" chapters, in particular, were heavily revised.
724 2007-06-15  Michael Olson  <mwolson@gnu.org>
726         * NEWS: Update.
728         * examples/QuickStart.muse: Mention new features.
730         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
731         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
732         terminal, and C-c TAB is more important.  Most people will not
733         want to toggle images on and off that often.
735         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
736         C-i as well, so that it works in the terminal.
738         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
739         look a bit tidier when removing the region.
741         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
742         list regexp part before other parts.
743         (muse-ol-item-regexp): New regexp that specifies how to match an
744         ordered list item.
745         (muse-ul-item-regexp): New regexp that specifies how to match an
746         unordered list item.
747         (muse-table-field-regexp): New regexp that specifies how to match
748         a definition list entry.
750         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
751         lack of support for @headitem in texinfmt.el.
753         * lisp/muse.el: Wrap muse-line-beginning-position and
754         muse-line-end-position in `eval-and-compile', since they are now
755         used in muse.el.
756         (muse-list-item-type): Use a simpler algorithm for detecting which
757         kind of list item we have.  This fixes a bug where a number in a
758         definition list term was being detected incorrectly as an ordered
759         list item.  Fixes bug #6250.
760         (muse-forward-list-item): Get the entire line with the list item.
761         For some reason, Emacs 21 was not populating match 2 correctly,
762         unlike Emacs 22, so this workaround was needed.
764         * texi/muse.texi: (Keystroke Summary): Remove C-c
765         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
766         alternative keybinding to the C-c TAB stuff.  Mention
767         muse-colors-toggle-inline-images.
769 2007-06-14  Michael Olson  <mwolson@gnu.org>
771         * README: Mention that RelaxNG schema is in etc/ directory.
773         * etc/emacs-wiki-migration.txt: New document that explains how to
774         migrate from emacs-wiki to Muse.
776         * etc/muse.rnc: Increment version number to 1.0.  Fix several
777         nested emphasis and nested lists edge cases.  Move here from
778         examples/.
780         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
781         same thing as C-c C-S-t, since the former works better in the
782         console.  Thanks to Leo for the suggestion.
784         * lisp/muse-publish.el (muse-publish-markup-table)
785         (muse-publish-markup-table-el): Include a newline in the return
786         string, so that paragraph detection does not get confused.
788         * lisp/muse.el (muse-with-temp-buffer): Docfix.
790         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
791         keybinding.
793 2007-06-13  Michael Olson  <mwolson@gnu.org>
795         * etc/IDEAS.muse: Mark three-part-links item as done.
797         * experimental/muse-message.el: Remove guard for muse-define-style
798         calls.
800         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
801         markup rules were being interpreted in reverse order.  This should
802         make implicit interwiki links work properly again.
803         (muse-link-face): Strip anchor from end of a path, so that this
804         works with anchors in interwiki links.
805         (muse-colors-insert-image): Catch error that occurs in Emacs 21
806         when an image does not exist.
808         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
809         anchors.
810         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
811         interwiki links work.  Thanks to Jim Ottaway for the initial
812         implementation.
813         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
814         links work.
816         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
817         about match 0.
818         (muse-handle-explicit-link): Docfix: this does not modify the
819         match data.
820         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
821         that has the regexp in its car.
823 2007-06-12  Michael Olson  <mwolson@gnu.org>
825         * README: Document new etc/ directory.
827         * etc/IDEAS.muse: Install things from new contributors just after
828         the 3.03 release, since I won't have time to review the code
829         before the release.  Move to new etc/ directory.  Slides
830         publishing has been installed.
832         * lisp/muse-latex.el (muse-latex-slides-header): New option that
833         determines the header to use for publishing slides.
834         (muse-latex-lecture-notes-header): New option that determines the
835         header to use for publishing lecture notes.
836         (muse-latex-slides-markup-tags): New option containing tags to use
837         when publishing slides.
838         (muse-latex-permit-contents-tag): Move higher in file.
839         (muse-latex-slide-tag): New function to publish the <slide> tag.
840         ("slides", "slides-pdf"): New publishing styles that create slides
841         using Beamer.
842         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
843         create lecture notes using Beamer.
845         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
846         since otherwise Planner is not happy when `plan' is called during
847         init.  Remove stray quote from autoload snippet.
849 2007-06-11  Michael Olson  <mwolson@gnu.org>
851         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
852         autoload, rather than having it exist at top-level.  Thanks to Leo
853         for the suggestion.
854         (muse-update-file-extension): Docfix.
856 2007-06-10  Michael Olson  <mwolson@gnu.org>
858         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
859         URLs were being removed during publishing.  Thanks to everyone who
860         reported this.
862 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
864         * lisp/muse-book.el
865         * lisp/muse-docbook.el
866         * lisp/muse-latex.el
867         * lisp/muse-publish.el: added support for <cite> element which
868         denotes in-text citations
870         * lisp/muse-html.el
871         * lisp/muse-groff.el
872         * lisp/muse-texinfo.el
873         * lisp/muse-xml.el: added support for <cite> element (stub)
875 2007-06-06  Michael Olson  <mwolson@gnu.org>
877         * lisp/muse-regexps.el (muse-table-line-regexp)
878         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
879         regexps so that they work with XEmacs 21.  Thanks to Adrian
880         Tritschler for the report.
882         * texi/muse.texi: Update copyright years.
883         (HTML): Document muse-xhtml-style-sheet.  Thanks
884         to thorne for noticing.
885         (Development): Change archive year to 2006.  Thanks to Adrian
886         Tritschler for noticing.  So *that's* why some people had the 2005
887         version ....
889 2007-06-05  Michael Olson  <mwolson@gnu.org>
891         * Makefile (install-info): Remove $(MANUAL).info part, since this
892         is taken care of already by texi/Makefile.  Thanks to Leo for the
893         report.
895         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
896         read-only properties to qotd contents, so that they don't get
897         double-escaped.  Thanks to Leo for the report.
899 2007-06-04  Michael Olson  <mwolson@gnu.org>
901         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
902         -- that is, Tramp or ange-ftp -- file, then do not call
903         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
904         Fixes bug #5115.
906         * lisp/muse-html.el (muse-html-insert-contents): Add
907         documentation.  Handle case where heading is read-only, but has
908         muse-contents property.  Remove the muse-contents property for any
909         heading we come across so as to avoid double-including an item in
910         an outer table of contents.
911         (muse-html-denote-headings): New function that denotes whether a
912         heading is not read-only by adding the muse-contents property to
913         it.
914         (muse-html-munge-buffer): If we are not to generate contents,
915         still denote headings, in case some outer layer wants to generate
916         contents for our headings.  This should fix a bug with table of
917         contents and the <include> tag.  Thanks to thorne for the report.
919         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
920         muse-publish-generate-contents and set it to nil.  This should
921         do the right thing when using <include> tags.
923 2007-06-02  Michael Olson  <mwolson@gnu.org>
925         * NEWS: Update for non-inlined image change and support for
926         table.el style tables.
928         * examples/Makefile (clean): Clean backup files.
930         * examples/QuickStart.muse (Images): New section that describes
931         how to inline and not inline images.
933         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
934         touch images that have "URL:" in front of them.
936         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
937         "URL:".  Use the identity function to resolve, since we don't want
938         to rip "URL:" out while publishing, due to some magic that depends
939         on that text.
940         (muse-browse-url-url): New function that browses URLs that have
941         "URL:" in front of them, by removing the "URL:" part and
942         reprocessing the remainder.
944         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
945         (muse-publish-url): Recognize images in the description before
946         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
947         for the suggested workaround.
948         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
949         default value.
950         (muse-publish-classify-url): If target begins with "URL:" return
951         type url.
952         (muse-publish-strip-URL): New function that strips "URL:" from the
953         beginning of a string.  This is used to remove URL: from the link
954         description.  * texi/muse.texi (Markup Strings): Clarify the
955         meanings of image-link, link, and link-and-anchor.
956         (muse-publish-markup-regexps): Move normal table rule to 2350.
957         Rule 2300 is now a regexp that matches table.el-style tables.
958         (muse-publish-markup-functions): Add table-el entry.
959         (muse-publish-table-el-table): New function that given a variant,
960         publishes a table.el-style table using the table in the matched
961         region.
962         (muse-publish-markup-table-el): New function that determines
963         whether the table.el-style table can be published, and what
964         variant to use.
966         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
967         the borders of table.el-style tables.
969         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
970         the table has sufficient whitespace in front of it.
972         * texi/muse.texi (Images): Update for new non-inlined image
973         ability and provide example.
975 2007-05-31  Michael Olson  <mwolson@gnu.org>
977         * NEWS: Add example for setting `muse-html-table-attributes'.
979         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
980         Publish multiple tbody tags if there is a horizontal separator
981         after the heading, because that is valid HTML after all.
983 2007-05-30  Michael Olson  <mwolson@gnu.org>
985         * NEWS: Update.
987         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
988         horizontal separators in tables.
990         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
991         horizontal separators in tables.
992         (muse-publish-trim-table): New function to remove initial and
993         final blank columns from a table.
994         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
995         with horizontal separators, aka "hlines".
997         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
998         defines the syntax of a horizontal separator in a table.
1000         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
1001         horizontal separators.  Publish header lines correctly.
1003         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
1004         where we have nonnumbers as a row type.  This ignores sorting for
1005         hlines.
1006         (muse-xml-markup-table): Deal with horizontal separators.  If the
1007         markup supports table groups, make hlines separate table groups.
1008         Otherwise, ignore them, since they cannot be marked up.  Together,
1009         these changes allow us to support orgtbl-mode tables.  Thanks to
1010         Carsten Dominik for the suggestion.
1012 2007-05-26  Michael Olson  <mwolson@gnu.org>
1014         * lisp/muse-project.el (muse-project-alist-styles): Allow for
1015         other things to be added to each generated style as well.  For
1016         example, this permits me to add
1017         :base-url "http://blog.mwolson.org/"
1018         for my blog.
1020 2007-05-25  Michael Olson  <mwolson@gnu.org>
1022         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
1023         way of building Debian packages that preserves the original
1024         release tarball and is more modular.
1025         (debrevision, debrelease): Remove.
1026         (dist): No need to remove the debian/ directory, since it is now
1027         in its own branch.
1028         (debprepare): Copy over debian/ directory properly.
1030         * NEWS: Update.
1032         * examples/Makefile (clean): Remove QuickStart.texi, in case
1033         something went wrong during the build.
1034         (%.pdf): Publish the example using the normal pdf style, rather
1035         than info-pdf.
1037         * examples/QuickStart.muse: Add myself to the authors list.
1039         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
1040         sufficient blank lines before the tag.
1042         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
1043         we have sufficient blank lines before the tag.
1045         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
1046         specifies the program to call in order to generate PDF content
1047         from LaTeX content.
1048         (muse-latex-pdf-cruft): New option that specifies the extensions
1049         of files to remove after generating PDF output successfully.
1050         (muse-latex-pdf-generate): Use these new options.  Work around the
1051         annoying edge case where a tilde character exists in the filename
1052         or directory path -- now this can only error out when the relative
1053         path from the output file to the source file contains a tilde,
1054         which is far less likely.
1056         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
1057         muse-publish-ensure-block here after all, because <lisp> et al may
1058         occur inline as part of other things.
1060         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
1061         occur after full-document escaping, rather than before.  This
1062         prevents automatically-inserted Texinfo code from being escaped.
1063         (muse-texinfo-pdf-generate): Rewrite to call
1064         `muse-latex-pdf-generate' with pdftex as the generating binary,
1065         because texi2pdf suffers irredeemably from the tilde edge case
1066         mentioned above.
1068 2007-05-24  Michael Olson  <mwolson@gnu.org>
1070         * NEWS: Drop vague entries and position interesting entries closer
1071         to the top of each section.  Update for new changes.
1073         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
1074         and bzr metadata directories to the list of things to ignore.
1076         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
1077         `muse-publish-ensure-block-tag', since we will use it for more
1078         than just tags.
1079         (muse-publish-markup-list, muse-publish-verse-tag)
1080         (muse-publish-quote-tag, muse-publish-example-tag)
1081         (muse-publish-markup-attribute): Use it.  This fixes a bug that
1082         can occur when these types of markup occur immediately after a
1083         paragraph.  It's good to have defined behavior!
1085         * texi/muse.texi (Markup Strings): Mention new argument for
1086         link-and-anchor.
1088 2007-05-19  Michael Olson  <mwolson@gnu.org>
1090         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
1091         published footnotes and footnote references.  Thanks to Scott
1092         Jaderholm for the idea.
1094         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
1095         link-and-anchor, on the recommendation of the original submitter.
1097 2007-05-14  Michael Olson  <mwolson@gnu.org>
1099         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
1100         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
1101         suggestion.
1103         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
1104         file extension as the fourth argument.
1106         * README, texi/muse.texi (Getting Help and Reporting Bugs):
1107         Mention the new muse-el-logs mailing list.
1109 2007-05-13  Michael Olson  <mwolson@gnu.org>
1111         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
1112         "\`" here.  This fixes a problem with publishing custom URLs.
1114 2007-05-12  Michael Olson  <mwolson@gnu.org>
1116         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
1117         update the list if the current buffer is associated with a file.
1118         This fixes a bug with M-x muse-publish-region in a temporary
1119         buffer.
1121 2007-05-01  Michael Olson  <mwolson@gnu.org>
1123         * lisp/muse-publish.el (muse-publish-region): Remove read-only
1124         properties from the published buffer, so that the results can be
1125         manually tweaked.
1127 2007-04-23  Michael Olson  <mwolson@gnu.org>
1129         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
1130         find the footnote that goes with a reference, leave the reference
1131         as-is.  This fixes an error where control characters could be
1132         placed in a published document.
1134 2007-04-22  Michael Olson  <mwolson@gnu.org>
1136         * IDEAS.muse: Add muse-slides.el to list of things to include
1137         before release.
1139         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
1140         character.
1141         (muse-protocol-find): Find protocols correctly.  Rewrite to use
1142         catch/throw.
1143         (muse-browse-url): Don't concatenate "\`" here.  Together, this
1144         fixes a bug with browsing woman:// links.
1146         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
1147         where entry-dir has a trailing backslash.
1148         (muse-project-publish-file): If a style is malformed, skip it and
1149         display a warning message.  This should help people figure out
1150         where the problem is.
1152 2007-04-21  Michael Olson  <mwolson@gnu.org>
1154         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
1155         yet-to-be-included "contex" publishing style, use "$$" rather
1156         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
1157         this out.
1159 2007-04-20  Michael Olson  <mwolson@gnu.org>
1161         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
1162         variable that causes the :before and :before-end hooks to be
1163         ignored when non-nil.
1164         (muse-publish-markup-region): Use it.  Also, guarantee that point
1165         is at end of region after publishing.
1166         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
1167         variable.
1169 2007-04-19  Michael Olson  <mwolson@gnu.org>
1171         * IDEAS.muse: New file containing a list of ideas we have for new
1172         features, or patches that have yet to be applied.
1174         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
1175         be so confusing.
1177         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
1178         docstring.
1180         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
1181         <literal> tags with muse-publish-literal-tag, rather than
1182         muse-publish-mark-read-only.
1183         (muse-publish-literal-tag): New function that publishes the
1184         <literal> tag.  It adds the ability to add the optional "style"
1185         and "exact" elements, which cause text to only be included if the
1186         current publishing style matches some criteria.  The text will be
1187         removed otherwise.  Thanks to Jim Ottaway for the implementation.
1188         (muse-publish-mark-up-tag): Let the <markup> tag take the
1189         additional optional elements "style" and "exact", with much the
1190         same effect as the <literal> improvements, but after calling
1191         "function" or publishing the region first.  Make it possible to
1192         put <content> tags in <markup> regions in HTML publishing.
1194 2007-04-12  Michael Olson  <mwolson@gnu.org>
1196         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
1197         that a blank line always exists after a heading.  This fixes a bug
1198         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
1199         for the report.
1201         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
1202         detection regexp to that which is used in Docbook and HTML
1203         publishing styles.
1205 2007-04-02  Michael Olson  <mwolson@gnu.org>
1207         * README (muse-el-announce): Make a listing of mailing lists,
1208         rather than pointing to the old EmacsWikiMailingList page.  Thanks
1209         to Andreas Roehler for noticing.
1211 2007-04-01  Michael Olson  <mwolson@gnu.org>
1213         * lisp/muse-publish.el (muse-publish-date-format): Add
1214 `       customization type and group.
1215         (muse-publish-region): New interactive function that publishes a
1216         region to a new buffer.
1218         * texi/muse.texi: Use "document" rather than "manual".
1220 2007-03-31  Michael Olson  <mwolson@gnu.org>
1222         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
1223         expression (muse-style-derived-p "latex" (muse-style "latex"))
1224         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
1225         for the catch.
1227 2007-02-25  Michael Olson  <mwolson@gnu.org>
1229         * lisp/muse-publish.el (muse-publish-date-format): New option that
1230         specifies how to format the date when publishing Muse pages.
1231         Thanks to Thomas Gehrlein for the suggestion.
1232         (muse-publish-markup-buffer): Use it.
1234 2007-02-23  Michael Olson  <mwolson@gnu.org>
1236         * README: Add Prerequisites section to mention which versions of
1237         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
1238         the suggestion.  Update link destination for Muse's page on
1239         emacswiki.org.
1241 2007-02-15  Michael Olson  <mwolson@gnu.org>
1243         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
1244         be not just at beginning of line.  This fixes an error with the
1245         <class> tag.  Thanks to Jim Pivarski for the report.
1247 2007-02-14  Michael Olson  <mwolson@gnu.org>
1249         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
1250         whether something is an image before checking to see if it is a
1251         URL.  Thanks to ITSUMI ken-ichi for the report.
1253 2007-02-13  Michael Olson  <mwolson@gnu.org>
1255         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
1256         comments that have no text better.  Thanks to fang.lungang for the
1257         report.
1258         (muse-publish-markup-comment): Deal with case where no comment
1259         text is provided.
1261 2007-01-23  Michael Olson  <mwolson@gnu.org>
1263         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
1264         that ensures that at least one blank line exists at the given
1265         position.  This is used to avoid paragraph detection problems when
1266         block-level tags like <example> immediately follow a paragraph.
1267         Thanks to Hans Ekbrand for the report.
1268         (muse-publish-example-tag): Use it.
1270 2007-01-19  Michael Olson  <mwolson@gnu.org>
1272         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
1273         previous blank line if we are publishing in Latex.  Otherwise,
1274         that wouldn't be the right thing, so leave it be.
1276 2007-01-17  Michael Olson  <mwolson@gnu.org>
1278         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
1279         multiple centered math lines on the same line; keep them on
1280         different lines.  Use \[ math-text \] instead of $$math-text$$,
1281         since the latter seems to be deprecated.  Thanks to Jody Klymak
1282         for the pointer.
1284 2007-01-15  Michael Olson  <mwolson@gnu.org>
1286         * lisp/muse-latex2png.el (muse-publish-latex-tag)
1287         (muse-publish-math-tag): Publish region read-only when current
1288         style is Latex-derived, so that Muse does not escape it.
1289         (muse-publish-math-tag): If 6 or more spaces come before the tag,
1290         surround the region with "$$" rather than "$".  This is the Muse
1291         syntax for something centered, so it should be a good fit.
1293 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
1295         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
1296         protocol.
1297         (muse-browse-url-man): Change man page URL format.  The code is
1298         simpler when the section is left inside parentheses.
1299         (muse-browse-url-woman): New function.
1301 2007-01-14  Michael Olson  <mwolson@gnu.org>
1303         * AUTHORS: Bookkeeping.
1305         * lisp/muse-latex2png.el: Associate <math> tag with
1306         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
1307         Klymak for the report.
1308         (muse-publish-math-tag): Use muse-insert-markup for the "$"
1309         characters, so they don't get escaped.
1311         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
1312         make muse-style-derived-p easier to implement.
1313         (muse-style-derived-p): If the style is not provided, fetch it and
1314         check to see if the car is a string.  This should fix the other
1315         problem that was reported.
1317         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
1318         explains a case where setting muse-file-extension to nil can cause
1319         unexpected behavior.
1321 2007-01-09  Michael Olson  <mwolson@gnu.org>
1323         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
1324         comments higher priority than tags.  Thanks to Stefan van der Walt
1325         for the report.
1327 2007-01-08  Michael Olson  <mwolson@gnu.org>
1329         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
1330         argument rather than calling match-string.  Thanks to Stefan van
1331         der Walt for the report.  This should fix a bug with publishing
1332         <include file="..." markup="example">.
1334 2007-01-06  Michael Olson  <mwolson@gnu.org>
1336         * Makefile (debclean): New rule split from debrevision and
1337         debrelease.
1338         (debbuild): Take distributor into account.
1340         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1341         vendor/distributor we are building for.
1343 2007-01-04  Michael Olson  <mwolson@gnu.org>
1345         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1346         line.
1348         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1349         point to muse-publish-src-tag by default, since <src> and
1350         <example> have different parameters.
1351         (muse-publish-src-tag): New barebones publishing function for
1352         <src>, which is superseded when publishing in an HTML-based style.
1354 2007-01-03  Michael Olson  <mwolson@gnu.org>
1356         * lisp/muse-html.el (muse-html-src-tag): Document.
1358         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1359         command that calls a given tag on the current buffer.  Attributes
1360         may be passed.
1361         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1362         it.
1363         (muse-publish-srcify-buffer): New function that allows
1364         markup="src" in the <include> tag.
1365         (muse-publish-get-and-delete-attr): New macro that gets an
1366         attribute from a list and removes the first instance of that
1367         attribute from said list.
1368         (muse-publish-markup-attribute): Handle markup="src".
1369         (muse-publish-command-tag, muse-publish-include-tag): Use
1370         muse-publish-get-and-delete-attr.  This allows the remaining
1371         attributes to be passed.
1373         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1374         as changes to <command> and <include>.
1376 2006-12-30  Michael Olson  <mwolson@gnu.org>
1378         * NEWS: Update.
1380         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1381         from muse-publish-math-tag to avoid conflict with
1382         muse-latex2png.el.
1384 2006-12-23  Michael Olson  <mwolson@gnu.org>
1386         * lisp/muse-latex2png.el: Update header, since this has been
1387         rewritten sufficiently to not need an assignment from the original
1388         author.
1389         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1390         (muse-latex2png): Use two underscores to separate prefix and hash.
1391         (muse-latex2png-region): New function split from
1392         muse-publish-latex-tag that can be used easily by other code.
1393         Detect whether we are using an HTML-based publishing style, and
1394         insert a simpler markup if we are not.  If we are using a
1395         Latex-based publishing style, do not generate an image, and leave
1396         the region alone.  Return the path of the generated image, in case
1397         other functions want to use this programmatically.
1398         (muse-publish-latex-tag): Set a default prefix based on the name
1399         of the current file.
1400         (muse-publish-math-tag): New tag that surrounds the region with
1401         "$" characters, so that it becomes a Latex math region, and then
1402         publishes it.
1404         * lisp/muse-publish.el (muse-style-derived-p): New function that
1405         returns non-nil if a given style, or the current style if omitted,
1406         is equal to or derived from the given base style.  This is useful
1407         in <lisp> tags, because it allows the user to specify markup that
1408         is only to be inserted for one particular style.
1410 2006-12-22  Michael Olson  <mwolson@gnu.org>
1412         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1413         (muse-html-src-tag): New function which publishes the <src> tag.
1414         Thanks to Clinton Ebadi and Charles Wang for the initial
1415         implementations.
1417         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1419 2006-12-21  Michael Olson  <mwolson@gnu.org>
1421         * examples/johnw/muse-johnw.el: Update for preferred
1422         muse-derive-style usage.  Rename to muse-init.el.
1424         * examples/mwolson/muse-init.el: Update.
1426         * lisp/muse-book.el (muse-book-publish): New function split from
1427         muse-book-publish-project.  This is used in the definitions for
1428         the book-latex and book-pdf styles.
1429         (muse-book-publish-p): New function split from muse-book-publish.
1430         (muse-book-get-directives): New function that retrieves the
1431         publishing directives from the given file.
1432         (muse-book-publish): Use muse-book-get-directives to set the title
1433         if no title was specified.
1435         * lisp/muse-project.el (muse-project): Add :publish-project entry
1436         to widget.
1437         (muse-read-project, muse-project-find-file): Message fix.
1438         (muse-project-publish-file-default): New function split from
1439         muse-project-publish-file.
1440         (muse-project-publish-file): Allow file-level publishing function
1441         to be specified by the :publish element.  The default is
1442         muse-project-publish-file-default.
1443         (muse-project-publish-default): New function split from
1444         muse-project-publish.
1445         (muse-project-publish): Allow project-level publishing function to
1446         be specified by :publish-project element.  The default is
1447         muse-project-publish-default.
1449         * lisp/muse-publish.el (muse-publish-file): Message fix.
1451         * texi/muse.texi (Book): Mention new way to publish books and
1452         provide an example, since the process may be non-obvious.
1454 2006-12-20  Michael Olson  <mwolson@gnu.org>
1456         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1457         content-modifying code from the rest of
1458         muse-docbook-finalize-buffer.
1460         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1461         muse-groff-finalize-buffer, since it adds content to the buffer.
1463         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1464         content-modifying code from the rest of muse-html-finalize-buffer.
1465         This fixes a bug when using <include> with <content> tags.
1467         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1468         (muse-journal-latex-munge-buffer)
1469         (muse-journal-rss-munge-buffer): Rename, since they add content to
1470         the buffer.
1472         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1473         muse-latex-finalize-buffer, since it adds content to the buffer.
1475         * lisp/muse-mode.el:
1476         * lisp/muse-project.el:
1477         * lisp/muse-publish.el:
1478         * lisp/muse.el: Fix recursive load error.
1480         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1481         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1483         * lisp/muse-wiki.el: Comment cleanup.
1485         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1487 2006-12-17  Michael Olson  <mwolson@gnu.org>
1489         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1490         Remove the definition of \comment, since Latex already has comment
1491         syntax.
1492         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1493         than our own.  Thanks to Ryan Stutsman for pointing this out.
1495 2006-12-02  Michael Olson  <mwolson@gnu.org>
1497         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1498         that this can generate a proper table of contents for Planner HTML
1499         publishing.
1501 2006-12-01  Michael Olson  <mwolson@gnu.org>
1503         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1504         using a very old Emacs, avoid an infinite loop that could occur
1505         when the regexp is an empty string.
1507 2006-11-26  Michael Olson  <mwolson@gnu.org>
1509         * NEWS: Bring up to date.
1511         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1512         list issues and multiple-stanza verse issues.  This takes care of
1513         all of the markup issues I was worried about.
1515         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1516         (muse-project-publish-private-files): New option that indicates
1517         whether files with private filesystem permissions should be
1518         published.  The default is to publish them, since it avoids
1519         confusion in new users.
1520         (muse-project-private-p): Use it.
1522 2006-11-19  Michael Olson  <mwolson@gnu.org>
1524         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1525         style is found, which means that the link is not a Muse page, do
1526         not add a suffix or prefix to it.  This should fix the
1527         "[[thing.owl]]" bug that Phillip Lord reported.
1529         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1530         removing unused 2nd argument.
1532 2006-11-17  Michael Olson  <mwolson@gnu.org>
1534         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1535         latex publishing where nested enumerated lists would be squashed
1536         together at the end.
1538 2006-11-16  Michael Olson  <mwolson@gnu.org>
1540         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1541         list embedded in a definition list look right.  This also allows
1542         for definitions to be separated from their terms, much like the
1543         way HTML does it by default, if the user puts a blank line or a
1544         line break between the term and the definition.  If the term and
1545         definition are on the same line, they will be that way in the
1546         output as well.
1548 2006-11-11  Michael Olson  <mwolson@gnu.org>
1550         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1551         for the report.
1552         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1554 2006-11-07  Michael Olson  <mwolson@gnu.org>
1556         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1557         release candidate for Muse 3.03, available.
1559         * NEWS: Update.
1561 2006-11-06  Michael Olson  <mwolson@gnu.org>
1563         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1564         following a relative link worked even when the path was incorrect.
1566 2006-11-04  John Sullivan  <john@wjsullivan.net>
1568         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1569         muse-follow-name-at-point to reduce collisions with other
1570         modes (Planner).
1572         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1574 2006-11-04  Michael Olson  <mwolson@gnu.org>
1576         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1577         optional, and make interwiki delimiter a regular rather than shy
1578         group.
1579         (muse-wiki-handle-implicit-interwiki): Rename from
1580         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1581         (muse-wiki-handle-explicit-interwiki): New function that is
1582         smarter about where an explicit link ends in a buffer.  This
1583         allows you to refer to page names with invalid Wiki characters,
1584         such as underscores and dashes, merely by enclosing them in double
1585         brackets.  Also, a bug with recognizing project names too loosely
1586         has been fixed.
1588 2006-11-03  Michael Olson  <mwolson@gnu.org>
1590         * lisp/muse-project.el (muse-project-page-file): Make relative
1591         links work as expected, hopefully.
1593         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1594         output style manually, since it will differ from anything in the
1595         publishing style list.
1597 2006-10-30  Michael Olson  <mwolson@gnu.org>
1599         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1600         grouping elements, since that no longer applies.
1601         (muse-colors-custom-tags): Explicitly match against
1602         muse-tag-regexp to get the match-data set the way we want.  This
1603         really fixes the <example> highlighting bug that Stefan reported.
1604         (muse-configure-highlighting): Set the original value to the
1605         symbol, not the modified value.  Re-use modified rules properly.
1607         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1608         introduced yesterday.
1610 2006-10-29  Michael Olson  <mwolson@gnu.org>
1612         * examples/mwolson: Update my example configuration.
1614         * NEWS: Update.
1616         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1617         without a regexp in the first position before iterating through
1618         them to build muse-colors-vector.  This fixes a bug with the
1619         display of <example> tags.  Thanks to Stefan Reichör for the
1620         report.
1622         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1623         files in projects to be linked to.
1625         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1626         to serve as a description for a URL, as long as it differs from
1627         the destination URL.  This fixes the description of WikPage links
1628         in PDF output.
1629         (muse-publish-link-file): Check to see whether the given link
1630         points at a valid file.  If so, return it.  Otherwise, apply other
1631         transforms like prefix and link suffix.
1633         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1634         "/", it is a file or directory, not a Muse page.  Thanks to
1635         Phillip Lord for the suggestion.
1637         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1638         of the current page as the local path, instead of duplicating the
1639         remote file's path.  This probably fixes at least one reported
1640         bug. since it's quite major.
1641         (muse-wiki-update-project-file-regexp)
1642         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1643         passed to regexp-opt, since that can cause Emacs 21 to throw an
1644         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1645         DOT edu for the report.
1646         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1648 2006-10-28  Michael Olson  <mwolson@gnu.org>
1650         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1651         (muse-project-resolve-link): If the given style does not have a
1652         link-suffix, default to suffix.  This fixes a bug I was noticing
1653         when linking to a file that was published in both PDF and HTML
1654         form.
1656         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1657         function that is used as a callback to determine the initial
1658         amount of indentation that the current dl item has.
1659         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1660         and the post-indent value, instead of trying to determine them
1661         both.
1662         (muse-publish-strip-list-indentation): New function stripped from
1663         `muse-publish-surround-text' for readability.
1664         (muse-publish-surround-text): Instead of taking a determine-indent
1665         value, take a determine-indent-func function, which is called just
1666         after finding the next list item.  If we are asked to determine
1667         the amount of indentation, concatenate indent and post-indent the
1668         first time around.  This effectively fixes all known definition
1669         list issues.
1671 2006-10-16  Michael Olson  <mwolson@gnu.org>
1673         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1674         other software -- namely, Planner -- can detect whether they are
1675         using a version of Muse that supports nested tags.
1676         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1677         muse-publish-goto-tag-end.
1679         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1680         Adapt for nested tags.
1682         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1683         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1684         this.
1686         * lisp/muse-publish.el (muse-publish-markup-tag)
1687         (muse-publish-quote-tag): Use muse-goto-tag-end.
1689         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1691 2006-10-15  Michael Olson  <mwolson@gnu.org>
1693         * AUTHORS: Bookkeeping.
1695         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1696         tag.
1698         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1699         tags.
1701         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1703         * lisp/muse-import-docbook.el (muse-import-docbook)
1704         (muse-import-docbook-files): Docfix.
1705         (muse-import-docbook-get-title): Remove cl.el-ism.
1707         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1709         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1711         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1713         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1714         (muse-next-reference, muse-previous-reference): Minor whitespace
1715         changes.
1716         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1717         the suggestion.
1719         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1721         * lisp/muse-publish.el (muse-publish-markup-tags)
1722         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1723         element and make 4th element determine whether tags are nestable.
1724         (muse-publish-goto-tag-end): New function that moves to the end of
1725         a tag.  Handle nested tags when NESTED is non-nil.
1726         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1727         5th element for function.
1728         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1729         this on several scenarios, and it seems to work.
1730         (muse-publish-surround-text): Accept new optional argument
1731         LIST-ITEM which determines the regexp to use for list items.  The
1732         default is to use muse-list-item-regexp.
1734         * muse.texi (Markup Tags): Mention nestable tags.
1736         * NEWS: Mention new files.
1738 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1740         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1741         into Muse format.
1743         * lisp/muse-import-xml.el: New file that provides helper routines
1744         for converting XML-ish files to Muse format.
1746 2006-10-10  Michael Olson  <mwolson@gnu.org>
1748         * NEWS: Update for 3.02.7 bugfix release.
1750 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1752         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1753         using the value in the muse #date directive.
1754         (muse-blosxom-use-metadate): New option that determines whether or
1755         not to use the #postdate directive.
1756         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1757         metadate plugin format.
1759 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1761         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1762         recognised URLs.
1764         * muse.texi: Clarify handling of implicit links by mentioning
1765         which characters can prevent Muse from recognizing something as an
1766         implicit link.
1768 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1770         * lisp/muse-mode.el (muse-next-reference)
1771         (muse-previous-reference): Fix bug #6367 by moving point to the
1772         beginning of the link.
1774 2006-09-26  Michael Olson  <mwolson@gnu.org>
1776         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1777         beginning-of-line.  This should fix a bug that was noticed in
1778         recent Emacs 22 builds.
1780         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1781         eval-and-compile block to avoid a compiler warning.
1783 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1785         * lisp/muse-backlink.el (muse-backlink-split-string):
1786         Compatibility with Emacs versions < 22
1787         (muse-backlink-pending): New internal variable
1788         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1789         that backlinks are inserted at the right time.
1790         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1791         for pending backlink, and that this is the targe page.
1792         (muse-backlink-handle-link): Don’t handle the link if we are
1793         already handling one. Return the link as well as the parent links.
1795 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1797         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1798         #6942 - muse-blosxom-new-entry fails when using tags.
1800 2006-09-14  Michael Olson  <mwolson@gnu.org>
1802         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1803         compiler warning.
1805 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1807         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1808         function: Protect all wikiwords from START to END from further
1809         processing.
1810         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1812 2006-09-13  Michael Olson  <mwolson@gnu.org>
1814         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1815         adopted from Jim Ottaway's patch.  It removes links from the
1816         heading, and then marks the region read-only to inhibit WikiWord
1817         detection.
1819 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1821         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1822         special handling for headings.
1823         (muse-texinfo-remove-links): New function that removes explicit
1824         links from the given strings, replacing them with a description.
1826 2006-09-11  Michael Olson  <mwolson@gnu.org>
1828         * muse.texi (Getting Help and Reporting Bugs): Mention the
1829         muse-el-internationalization mailing list.
1831         * lisp/muse.el (muse-path-sans-extension): New function that acts
1832         like file-name-sans-extension, but guarantees to never modify the
1833         directory part of the path.  Thanks to Evan Monroig for
1834         investigating this.
1836         * lisp/muse-book.el (muse-book-publish-project): Use
1837         muse-path-sans-extension instead of file-name-sans-extension.
1839         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1840         Ditto.
1842 2006-08-30  Michael Olson  <mwolson@gnu.org>
1844         * muse.texi (Blosxom Requirements): Fix typo.
1846         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1847         directories for bzr and darcs.
1849         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1850         contrib/pyblosxom/getstamps.py: Update version and headers.
1852 2006-08-27  Michael Olson  <mwolson@gnu.org>
1854         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1855         nil values before they get to mapconcat.  This fixes a lockup when
1856         muse-wiki-match-all-project-files is nil.
1858         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1859         (muse-wiki-ignore-implicit-links-to-current-page)
1860         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1861         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1862         (muse-wiki-publish-small-title-words)
1863         (muse-wiki-publish-pretty-title): Docfix.
1864         (muse-wiki-update-local-wikiword-regexp): Rename from
1865         muse-wiki-update-local-wikiword-regexp.  Set
1866         muse-wiki-project-file-regexp instead of
1867         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1868         take muse-wiki-use-wikiword into account, since this is a
1869         different concept now.
1870         (muse-wiki-update-wikiword-regexp): Remove.
1871         (muse-wiki-wikiword-regexp): In-line the :set function.
1872         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1874 2006-08-26  Michael Olson  <mwolson@gnu.org>
1876         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1877         for indented list items, ignore blank lines.
1879         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1880         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1881         mapconcat.  This should hopefully fix a problem with large amounts
1882         of files with spaces in their name.  Thanks to Greg Detre for the
1883         report.
1885 2006-08-24  Michael Olson  <mwolson@gnu.org>
1887         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1888         numbers from the argument to format-time-string.  This fixes an
1889         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1891 2006-08-18  Michael Olson  <mwolson@gnu.org>
1893         * lisp/muse-project.el (muse-project-file-entries): Since we are
1894         given a full path, match against the filename as well.  This fixes
1895         an issue where backup files were being added to the file alist.
1897         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1898         from muse-html.el.
1900 2006-08-12  Michael Olson  <mwolson@gnu.org>
1902         * Makefile (.PHONY): Don't use line continuations.
1903         (realclean fullclean): Call realclean in subdirs, not distclean.
1904         (distclean): Don't call realclean, since this would wipe out our
1905         autoloads file.
1906         (dist): Use correct path to autoloads file.
1908         * NEWS: Catch up with the latest changes.
1910         * experimental/Makefile (.PHONY): Wrap long line.
1912         * lisp/Makefile (distclean): Do the same thing as "clean", not
1913         "realclean".
1915         * lisp/muse-project.el (muse-project-get-applicable-style):
1916         Indentation tweak.
1917         (muse-project-ignore-regexp, muse-project-recurse-directory):
1918         Docfix.
1919         (muse-project-of-file): Try the ignored files regexp against the
1920         base filename as well as the entire path.
1922         * lisp/muse-publish.el (muse-publish-this-file): Display message
1923         if the buffer is not associated with any file, so that we avoid
1924         errors later on.
1925         (muse-publish-url-desc): New function taken from muse-publish-url
1926         that causes a URL description to be transformed.
1927         (muse-publish-url): Call muse-publish-url-desc on either the
1928         description or the original URL if it will be used as a
1929         description.  Accept the original URL as an argument, in case it
1930         was transformed earlier.
1931         (muse-publish-insert-url): Pass original URL as an argument.
1932         (muse-publish-markup-link): Make this somewhat easier to follow.
1933         Pass original URL as argument.
1934         (muse-publish-get-style): If the same style is used to publish to
1935         two different directories, prompt the user for which directory to
1936         use.
1937         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1938         latest changes.
1939         (muse-publish-markup-url): Pass original URL as an argument.  This
1940         fixes the "nil" description for bare URLs that was in 3.02.91.
1941         Nothing like finding a bug just after completing the announcement
1942         of a release.
1944         * lisp/muse.el: Use defalias whenever convenient.
1945         (muse-version): Set version to 3.02.92 (3.03 RC2).
1947 2006-08-10  Michael Olson  <mwolson@gnu.org>
1949         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1950         style does not derive from any other class, return `t' here.
1951         This, along with the corresponding change to muse-publish.el,
1952         fixes a problem with the table of contents getting inserted
1953         multiple times for custom html-based styles.
1954         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1955         smarter method for table centering that works with XHTML.
1957         * lisp/muse-latex2png.el Rename all functions to have a
1958         "muse-latex2png" prefix.  Turn all variables into customizable
1959         options in the muse-latex2png group.
1960         (muse-latex2png-img-dest): New option specifying where to place
1961         the images.
1962         (muse-latex2png-template): New option containing the template to
1963         use for the surrounding LaTeX code.
1964         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1965         compliance.
1966         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1967         messages when something else goes wrong.  Create the image
1968         subdirectory if it doesn't exist already -- thanks to Christian
1969         Straßer for the report.  Expand the filename properly.
1970         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1971         and filename expansion.
1972         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1973         the default directory properly.
1975         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1976         do not run the same function twice.
1978 2006-08-08  Michael Olson  <mwolson@gnu.org>
1980         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1981         introduced wrong-type-argument error.
1983         * lisp/muse-html.el (muse-html-markup-strings)
1984         (muse-xhtml-markup-string): Cause table definition that contains
1985         image to be center-aligned.  This should fix an issue with images
1986         not being centered when captions are very long.
1988         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1989         whitespace from fields once we have split them up.
1991         * lisp/muse.el (muse-trim-whitespace): New function that strips
1992         leading and trailing whitespace from a string.
1994 2006-08-07  Michael Olson  <mwolson@gnu.org>
1996         * NEWS: Update through patch-95.
1998         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1999         to match the tags.
2000         (muse-colors-explicit-link): Show images in link descriptions if
2001         inlined images are enabled.
2003         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
2004         definitions for 'image-with-desc, 'image, and 'image-link.
2005         (muse-docbook-markup-paragraph): If an inlined image begins a
2006         paragraph, insert <para> before it.
2007         (muse-docbook-fixup-images): New function that upper-cases the
2008         "format" attribute of the <imagedata> tag.
2009         (muse-docbook-finalize-buffer): Call it.
2011         * lisp/muse-html.el (muse-html-markup-strings): Publish images
2012         with descriptions as centered tables, with a centered caption
2013         underneath.  The resulting look is consistent with the way that
2014         they are published in the LaTeX style.  Thanks to Jody Klymak for
2015         the suggestion.
2016         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
2017         valid way to center a table.
2018         (muse-html-markup-paragraph): Use class="image" instead of
2019         "image-link" for paragraphs that start with an embedded image.
2021         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
2022         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
2023         suggestion.
2024         (muse-latex-markup-specials-image): New option that enables
2025         escaping of specials in images.  This was split from the URL
2026         specials.
2027         (muse-latex-decide-specials): Handle 'image context.
2028         (muse-latex-fixup-dquotes): Go to beginning of document, instead
2029         of relying on caller to do this for us.
2031         * lisp/muse-publish.el (muse-publish-escape-specials): Document
2032         'image context.
2033         (muse-publish-url): Use 'image context for images.  Use 'image
2034         instead of 'image-link and 'image-link in place of
2035         'url-with-image.  Separate the image file from its extension so
2036         that docbook and texinfo can publish images correctly.
2037         (muse-publish-markup-link): Don't force a description if one is
2038         not given.  This fixes a bug where images without descriptions
2039         were being published as 'image-with-desc instead of 'image.
2041         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
2042         images the same as URLs.
2043         (muse-texinfo-markup-strings): Improve image markup to achieve an
2044         effect similar to that of the LaTeX publishing style.  Simplify
2045         'url string.
2047         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
2049         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
2050         when we have to use the custom version of this function.
2052         * muse.texi (Images): Explain how to toggle inlining of images and
2053         give better examples.  Mention captions and that captioned images
2054         should not be used inside of text paragraphs.
2055         (Markup Strings): Bring up-to-date with the changes made since
2056         3.02.
2058 2006-08-06  Michael Olson  <mwolson@gnu.org>
2060         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
2061         in the Emacs source tree.
2063         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
2064         in the Emacs source tree.
2066         * ChangeLog.3: New file created from the old ChangeLog.
2068         * Makefile.defs (VERSION): Set to 3.02.91.
2070         * NEWS: Update through patch-84.
2072         * lisp/muse.el (muse-version): Set to 3.02.91.
2074         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
2075         attributes.
2076         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
2077         delimiter are instead of hard-coding it.
2079         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
2080         (muse-mode): Make filling definition lists work better.  This
2081         should fix #5359.
2083         * lisp/muse-publish.el (muse-style-run-hooks): Use
2084         `muse-style-element' instead of `muse-get-keyword' here.  This
2085         should fix #6399.
2087         * muse.texi: Set version to 3.02.91 (3.02 RC2).
2089 See ChangeLog.3 for earlier changes.
2091 ;; Local Variables:
2092 ;; coding: utf-8
2093 ;; End: