Fix bug in class tag when name attribute not specified
[muse-el.git] / ChangeLog
blob69af3b8df2051c26385c25573097f24b240c41c2
1 2007-09-06  Michael Olson  <mwolson@gnu.org>
3         * lisp/muse-html.el (muse-html-class-tag): Fix bug where nested
4         class tags were not working.  We move to just after the beginning
5         of the first class tag, so that we can detect any remaining class
6         tags.  Thanks to Florian Beck for the report.  Fix error that
7         occurred when class tag has no name element.  Thanks to Peter
8         Baranyi for the report.  The correct behavior in this case is to
9         not publish the tag at all.
11         * lisp/muse.el (muse-goto-tag-end): Fix bug where nested tags with
12         arguments were not being detected properly.
14 2007-09-05  Michael Olson  <mwolson@gnu.org>
16         * lisp/muse-context.el (muse-context-decide-specials): Add
17         footnote.
19         * lisp/muse-latex.el (muse-latex-decide-specials): Add footnote.
21         * lisp/muse-publish.el (muse-publish-escape-specials): Mention
22         'footnote in docstring.
23         (muse-publish-markup-footnote): Minor docstring fix.  Escape
24         footnote text properly.  Thanks to Jean Magnan de Bornier for
25         noticing.
26         (muse-publish-url): When checking to see if this is just a plain
27         URL without a description, compare the strings as they were before
28         doing escaping.  This fixes a bug where plain URLs could sometimes
29         be published as if they were URLs with descriptions.
31         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Add
32         footnote.
34 2007-08-29  Michael Olson  <mwolson@gnu.org>
36         * lisp/muse.el (muse-update-values): Reset the value of
37         muse-current-project in all Muse buffers.  This updates the rules
38         in case you want to publish a file after changing its associated
39         muse-project-alist entry.
41 2007-08-27  Michael Olson  <mwolson@gnu.org>
43         * lisp/muse.el (muse-update-values): New function that the user
44         can call after changing muse-project-alist, in order to update
45         various autogenerated values.
47         * texi/muse.texi (Keystroke Summary): Document it.
49 2007-08-25  Michael Olson  <mwolson@gnu.org>
51         * examples/QuickStart.muse: Fix typo in first paragraph.  Thanks
52         to Karl Berry for reporting this.
54         * lisp/muse-mode.el (muse-visit-link-default): Fix bug with
55         browsing anchors that come after a link to them.
57         * texi/muse.texi (Poem): Fix typo in spelling of LaTeX.  Thanks to
58         Karl Berry for reporting this.
60 2007-08-24  Michael Olson  <mwolson@gnu.org>
62         * Release Emacs Muse 3.11.
64         * AUTHORS: Add new authors for contrib files.
66         * NEWS: Add entries for Muse 3.11.
68         * README: Mention that contents of contrib/blosxom and
69         contrib/pyblosxom have different licenses than the rest of Muse.
71         * contrib/blosxom/getstamps.pl: New file that implements fetching
72         timestamps from published Muse files and placing them in a single
73         timestamps file.  That file can then be used by blosxom's metadate
74         plugin.  Thanks to Michael Welle for providing this file, as well
75         as instructions on how to use Muse with Blosxom.
77         * contrib/blosxom/metadate_0_0_3: New file implementing the
78         metadate plugin for blosxom.
80         * contrib/pyblosxom/getstamps.py: Add license text.  It seems safe
81         to assume that the original author wanted this to be distributed
82         with Pyblosxom, and hence use the MIT license like the rest of
83         Pyblosxom.
85         * contrib/pyblosxom/hardcodedates.py: Add license text.
87         * contrib/pyblosxom/make-blog: Change license text to be "This
88         file may be used, distributed, and modified without restriction."
90         * contrib/pyblosxom/metadate.py: New file that implements the
91         PyBlosxom metadate plugin.  Since this can no longer be found at
92         the original author's website, I have included it with Muse.
94         * lisp/muse-blosxom.el: Update location of metadate plugin in
95         header.
97         * lisp/muse-wiki.el (muse-wiki-project-file-regexp): Fix typo in
98         docstring.
100         * texi/muse.texi (Blosxom Requirements): Organize information by
101         subheading and subsubheading, and document how to use the metadate
102         plugin.  Briefly document using Blosxom to serve Muse entries.
104 2007-08-23  Michael Olson  <mwolson@gnu.org>
106         * lisp/muse-html.el (muse-html-insert-contents): Escape heading
107         title just before extracting it.
109         * lisp/muse-latex.el (muse-latex-fixup-headings): New function
110         that removes footnotes from headers, since they are invalid in
111         LaTeX.
112         (muse-latex-munge-buffer): Call it.
114         * lisp/muse-publish.el (muse-publish-markup-heading): Don't escape
115         specials here.  This fixes a bug involving links in headings.
117         * lisp/muse.el (muse-update-file-extension): Simplify, and handle
118         some edge cases.
119         (muse-update-file-extension-after-init): Temporarily bind
120         muse-file-extension to "muse", so that muse-update-file-extension
121         knows what the old value was.  This should fix a bug reported by
122         Jean Magnan de Bornier.
124 2007-08-21  Michael Olson  <mwolson@gnu.org>
126         * lisp/muse-texinfo.el (muse-texinfo-markup-strings): Try to make
127         url, link, and link-and-anchor look better in texi2html output.
128         Thanks to thorne for the report.
130 2007-08-20  Michael Olson  <mwolson@gnu.org>
132         * lisp/muse-journal.el (muse-journal-anchorize-title): Revamp to
133         escape characters rather than discard them.  Use muse-regexp-alnum
134         rather than listing out the characters and numbers.  Thanks to
135         Shunsuke OKANO for the report.
136         (muse-journal-rss-munge-buffer): Make sure that <![CDATA[ stuff is
137         used when generating a summary.
139 2007-08-19  Michael Olson  <mwolson@gnu.org>
141         * examples/mwolson: Update my example settings.
143         * lisp/muse-colors.el (muse-colors-region): Bind
144         muse-colors-region-end to the end of the last line.  This avoids a
145         bug where lines that had emphasis would suddenly become
146         unhighlighted when moving around the buffer.
148         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix bug
149         involving paragraphs after literallayout markup, which is used in
150         <verse> tags.  Thanks to Shunsuke OKANO for the report.
152         * lisp/muse-html.el (muse-html-src-tag): Use
153         muse-delete-and-extract-region.
155         * lisp/muse-import-xml.el: Add require statement.
156         (muse-import-xml-parse-node): Use muse-replace-regexp-in-string.
158         * lisp/muse-protocols.el (muse-browse-url-man): Add require
159         statement.
160         (muse-browse-url-woman): Add require statement.
162         * lisp/muse-publish.el (muse-publish-surround-text): Fix serious
163         bug in definition list publishing.  We were skipping past the
164         initial indented line, and that was causing an erroneous
165         blockquote to be inserted.  This alone merits a new release.
167         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Fix bug with
168         XEmacs' return value for shell-command.
170         * lisp/muse.el (muse-delete-and-extract-region): New compatibility
171         function to deal with XEmacs' lack of the
172         delete-and-extract-region function.
174 2007-08-18  Michael Olson  <mwolson@gnu.org>
176         * AUTHORS: Update.
178         * lisp/muse-publish.el (muse-publish-include-tag): Switch from
179         copy-tree to copy-alist, since Emacs21 does not have the former,
180         and the latter does what we want.
182         * lisp/muse.el: Force-require 'derived, since Emacs21 does not
183         have derived-mode-p in subr.el like Emacs22 does.
185 2007-08-17  Michael Olson  <mwolson@gnu.org>
187         * etc/muse.rnc: Add the <cite> tag.
189         * lisp/muse-context.el (muse-context-slides-header): Clarify what
190         "mystyle" is.
192         * lisp/muse-xml.el (muse-xml-markup-strings): Mark up citations as
193         <cite type="something">.  We'll leave it to the post processing
194         tools to interpret that.
196         * texi/muse.texi (Directives, Blosxom Entries): Use @code{} for
197         directives.
198         (Citations): New section that explains further how to use the
199         <cite> tag.  The text was taken from Marcus Hoenicka's
200         documentation at http://refdb.sourceforge.net/muse.html and
201         modified.
202         (Tag Summary): Link to the Citations section in the entry for
203         <cite>.
204         (ConTeXt): Update the documentation for
205         muse-context-slides-header.
207 2007-08-17  Jean Magnan de Bornier  <jean@bornier.net>
209         * lisp/muse-context.el (muse-context-slides-header): Use #module
210         directive, if it is provided.
211         (muse-context-slides-header): Mention how to use #module.
213 2007-08-16  Michael Olson  <mwolson@gnu.org>
215         * Release Emacs Muse 3.10.
217         * Makefile (dist, debprepare): Pass HEAD argument to git-archive.
218         (upload): Don't depend on release rule.
220         * NEWS: Document remaining changes.
222 2007-08-15  Michael Olson  <mwolson@gnu.org>
224         * NEWS: Document items through 2007-08-12.
226         * lisp/muse-colors.el: Split the muse-directive-or-comment
227         property into two separate properties that are muse-directive and
228         muse-comment.
229         (muse-colors-region-end): Make buffer-local.
230         (muse-colors-delayed-commands): New variable that contains a list
231         of commands to run immediately after highlighting.  This is meant
232         to allow highlighting functions to delay code until later.
233         (muse-colors-region): Apply commands in
234         muse-colors-delayed-commands.
235         (muse-colors-inhibit-tags-in-directives): New variable that
236         determines whether tags are allowed in directives.
237         (muse-colors-custom-tags): Take
238         muse-colors-inhibit-tags-in-directives into account.
239         (muse-unhighlight-region): Remove muse-directive and muse-comment
240         properties.
241         (muse-colors-title): Modify muse-colors-delayed-commands.
242         (muse-colors-title-lisp): New command that gets called after
243         highlighting other things.  This interprets <lisp> tags, and is
244         passed arguments specifying the beginning and end of the region.
245         Thanks to Junichi Uekawa for the report.  The reason we want to do
246         things this way is because this is the behavior we get already
247         when publishing the page.
249         * lisp/muse.el (muse-goto-tag-end): Change to use muse-comment
250         property rather than muse-directive-or-comment.
252 2007-08-14  Michael Olson  <mwolson@gnu.org>
254         * lisp/muse-colors.el: Document all functions and variables.
255         (muse-colors-emphasized, muse-colors-underlined)
256         (muse-colors-verbatim, muse-colors-custom-tags)
257         (muse-colors-explicit-link, muse-colors-implicit-link): Don't trod
258         on comments or the #title directive.
259         (muse-colors-markup): Add comment rule.
260         (muse-colors-implicit-link): Only remove flyspell overlay after we
261         decide whether this is an implicit link, rather than before.
262         (muse-colors-title): Add the muse-directive-or-comment property.
263         (muse-colors-comment): New function that colorizes comments using
264         font-lock-comment-face.
265         (muse-colors-region-end): New variable indicating the end of the
266         region that is currently being font-locked.  This removes the need
267         for an ugly "defvar end" hack.
268         (muse-colors-emphasized, muse-colors-underlined)
269         (muse-colors-verbatim): Use it.
270         (muse-colors-region): Let-bind it.
272         * lisp/muse-mode.el (muse-list-edit-minor-mode): Grammar fix in
273         docstring.
275         * lisp/muse-publish.el (muse-publish-markup-heading): Escape
276         specials in heading now, rather than waiting on the whole-document
277         pass later on.  This lets <contents> generation work without
278         validation errors.  Thanks to Reid van Melle for the report.
280         * texi/muse.texi (Tag Summary): Document <cite> tag.
281         (Miscellaneous): New chapter containing "Muse List Edit Minor
282         Mode" section.
283         (Muse List Edit Minor Mode): New section that documents
284         muse-list-edit-minor-mode.
285         (Development): Mention the MuseDevlopment page on emacswiki.org.
287         * lisp/muse.el (muse-goto-tag-end): Deal with case where we are
288         font-locking and the end or beginning of a tag is in a comment or
289         directive.
291 2007-08-12  Michael Olson  <mwolson@gnu.org>
293         * lisp/muse-html.el (muse-html-strip-links): New function that
294         strips HTML links from a string.
295         (muse-html-insert-contents): Use it, instead of
296         muse-publish-strip-tags.  This fixes a bug reported by Xin Shi
297         involving the use of <sup> in section titles.
299         * lisp/muse-project.el (muse-project-resolve-directory): New
300         function that figures out the directory part of the path that
301         provides a link to a page.
302         (muse-project-resolve-link): Expand docstring.  Use the new
303         function.  Don't call muse-publish-link-file, because that does
304         the wrong thing when we have muse-file-extension set to nil.
305         Thanks to Sebastian Obermanns for the report.
306         (muse-project-publish-this-file): Let-bind muse-current-project.
307         Also, if the file is not associated with a project, fall back to
308         muse-publish-this-file.
309         (muse-project-set-variables): Add this to
310         muse-before-publish-hook, so that it gets called.  This fixes a
311         bug where project-specific variables were being used in Muse mode,
312         but ignored when publishing.
314         * lisp/muse-publish.el (muse-publish-link-name)
315         (muse-publish-link-file, muse-publish-link-page): Add docstrings
316         so that I can remember what each of these things do.
317         (muse-publish-strip-tags): Remove, since it is no longer used.
318         (muse-publish-cite-tag): Don't let-bind
319         muse-publishing-directives, because there is no need to do so.
320         Fix code indentation.
321         (muse-publish-markup-attribute): Avoid multiple evaluation of
322         attrs argument, in case it is list value instead of a symbol.  Use
323         sexp instead of form in the edebug-form-spec.
324         (muse-publish-include-tag): Make a full copy of
325         muse-publishing-directives, since it can be modified with setcdr.
326         This fixes a bug where #title and some other directives were
327         leaking out of an included region.
328         (muse-publish-mark-up-tag): Don't let-bind
329         muse-publishing-directives, because there is no need to do so.
331         * lisp/muse.el (muse-page-name): Improve docstring.
333         * texi/muse.texi (Development): Mention the http method for
334         anonymous git access to the shared repo.
336 2007-08-10  Michael Olson  <mwolson@gnu.org>
338         * Makefile (dist, debprepare): Use git instead of tla.
340         * contrib/httpd.el (httpd-send-file): Use insert-file-contents.
342         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
343         Use muse-insert-file-contents.
345         * experimental/muse-split.el (muse-publish-file)
346         (muse-publish-presplit-publish, muse-publish-no-split-function)
347         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
348         muse-insert-file-contents.
350         * lisp/muse-book.el (muse-book-publish-chapter)
351         (muse-book-get-directives): Use muse-insert-file-contents.
353         * lisp/muse-http.el (muse-http-render-page): Use
354         muse-insert-file-contents.
356         * lisp/muse-poem.el (muse-poem-markup-tag): Use
357         muse-insert-file-contents.
359         * lisp/muse-publish.el (muse-insert-file-or-string)
360         (muse-publish-file, muse-publish-include-tag)
361         (muse-published-contents): Use muse-insert-file-contents.
363         * lisp/muse.el (muse-insert-file-contents): New function that
364         inserts a file with character code conversion, but none of the
365         other frivolities.  Since insert-file-contents-literally does not
366         do character code conversion, it is not suitable for us.
367         (muse-with-temp-buffer): Mention muse-insert-file-contents rather
368         than insert-file-contents-literally.
370 2007-08-09  Michael Olson  <mwolson@gnu.org>
372         * lisp/muse.el (muse-write-file): Pay attention to
373         coding-system-for-write and save-buffer-coding-system.  This
374         should fix a recently-introduced bug with writing Muse pages in
375         different coding systems.
377 2007-08-08  Michael Olson  <mwolson@gnu.org>
379         * README (Prerequisites): Fix typo.
380         (Compilation, Installation): Update.
381         (Documentation, Further Documentation): Update URLs.
382         (Further Documentation): Add quick blurb on how to participate in
383         Muse development or track changes.
385         * texi/muse.texi (Releases): Use gna.org URL for downloading the
386         latest release, rather than my website.
387         (Development): Change instructions to use git instead of
388         Arch. Mention where to get a Windows binary for git.  Improve the
389         look of the listing.  Add section with instructions for Becoming a
390         Muse developer.
391         (Installation): Update instructions for Makefile.defs.default and
392         XEmacs.  Add index entries.  Add section for ELPA, since Muse
393         ought to be distributed in ELPA after the 3.10 release.  Fix typo
394         and clarify wording.
396 2007-08-06  Michael Olson  <mwolson@gnu.org>
398         * texi/muse.texi: Make sure that attributes are marked up with
399         @option{} rather than @code{} or @samp{} for consistency.
400         (Journal): Add "muse-project-alist-considerations" subheading,
401         along with a mention of :base-url.
403 2007-08-05  Michael Olson  <mwolson@gnu.org>
405         * .gitignore: Add texi/muse.html and the DVC log edit file.
407         * Makefile.defs.default (install_info): Rename from INSTALLINFO.
408         Turn this into something that can be called like a command, due to
409         needing to deal with XEmacs, which has different argument order.
410         Thanks to Terrence Brannon for the report.
412         * lisp/muse-project.el (muse-project-of-file): Simplify by using
413         catch, throw, and dolist.  Look for exact matches before
414         considering any subdirectories.  If no exact matches are found,
415         then pick the longest match.
417         * lisp/muse.el (muse-sort-by-rating): Mention default test in
418         documentation.
420         * scripts/muse-build.el: Avoid interference from VC.el in the
421         build process.
423         * texi/Makefile (install): Call install_info.
425 2007-08-03  Michael Olson  <mwolson@gnu.org>
427         * lisp/muse-project.el (muse-project-applicable-styles): Remove
428         useless argument ignore-regexp.  Use saner logic.  This fixes a
429         bug where a file could potentially not exist but still appear in
430         the used-styles list.  Thanks to John Wiegley for the fix.
431         (muse-project-publish-file): Don't take ignore-reegxp argument.
433 2007-08-02  Michael Olson  <mwolson@gnu.org>
435         * lisp/muse-publish.el (muse-batch-publish-files): Don't activate
436         VC when publishing files in batch.  This avoids some annoying
437         messages when building QuickStart in the examples directory.
439         * lisp/muse-mode.el (muse-mode): Don't try to indent line before
440         inserting a comment.
442 2007-07-31  Michael Olson  <mwolson@gnu.org>
444         * lisp/Makefile: Add dependencies between Emacs Lisp files, so
445         that Muse can be recompiled without running "make clean" after an
446         update.
448         * lisp/muse-publish.el (muse-publish-verse-tag): Unconditionally
449         delete forward one character, since we are guaranteed to be on a
450         blank line.  Don't delete all initial whitespace of the first
451         line.  This fixes an issue where the output from the verse tag did
452         not match the output from Muse's verse syntax.
454 2007-07-29  Michael Olson  <mwolson@gnu.org>
456         * Relicense to GPLv3.
458         * Makefile.defs.default: Rename from Makefile.defs.  This allows
459         people to copy this file to Makefile.defs and make changes,
460         without having the changes be accidentally committed.  If
461         Makefile.defs does not exist, this file is read instead, in order
462         to minimize inconvenience to the casual user.
464         * Makefile, contrib/Makefile, examples/Makefile,
465         experimental/Makefile, lisp/Makefile, texi/Makefile: Use either
466         Makefile.defs.default or Makefile.defs.
468         * lisp/muse-mode.el (muse-list-edit-minor-mode-map): Use new
469         function names.
470         (muse-l-e-m-m-insert-list-item): Add real documentation.
471         (muse-l-e-m-m-increase-list-item-indent)
472         (muse-l-e-m-m-decrease-list-item-indent): Rename for clarity.  Add
473         real documentation.
474         (muse-list-edit-minor-mode): Improve documentation.
476         * texi/doclicense.texi (GNU Free Documentation License): Use
477         pristine copy from Emacs source tree.
479         * texi/muse.texi (Contributors): Move node and appendix indicators
480         here, rather than doclicense.texi.
482 2007-07-29  Jean Magnan de Bornier  <jean@bornier.net>
484         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
485         command which did not work correctly
487         * lisp/muse-context.el (muse-context-markup-strings): Change rule
488         command which did not work correctly; defined verse commands
489         (muse-context-markup-specials-literal): Eliminate all unuseful entries
491 2007-07-29  Michael Olson  <mwolson@gnu.org>
493         * contrib/httpd.el (httpd-send-file): Use
494         insert-file-contents-literally instead of insert-file-contents.
496         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
497         Use insert-file-contents-literally instead of
498         insert-file-contents.
500         * experimental/muse-split.el (muse-publish-file)
501         (muse-publish-presplit-publish, muse-publish-no-split-function)
502         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
503         insert-file-contents-literally instead of insert-file-contents.
505         * lisp/muse-book.el (muse-book-publish-chapter)
506         (muse-book-get-directives): Use insert-file-contents-literally
507         instead of insert-file-contents.
509         * lisp/muse-http.el (muse-http-render-page): Use
510         insert-file-contents-literally instead of insert-file-contents.
512         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
513         nowhere when done, since they can slow things down.
515         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
516         marker to nowhere when done, since they can slow things down.
518         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
519         when done, since they can slow things down.  Use
520         insert-file-contents-literally instead of insert-file-contents.
522         * lisp/muse-publish.el (muse-publish-markup-tag)
523         (muse-publish-markup-word, muse-publish-markup-footnote)
524         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
525         done, since they can slow things down.
526         (muse-insert-file-or-string, muse-publish-file)
527         (muse-publish-include-tag, muse-published-contents): Use
528         insert-file-contents-literally instead of insert-file-contents.
529         (muse-publish-surround-dl): Remove unused variable.  Track whether
530         a term has been found, and handle that case well.
531         (muse-publish-ensure-blank-line): Use a marker, so that we don't
532         lose our place when adding a newline.  This really fixes the
533         definition list item bug.
534         (muse-publish-markup-list): Since people do seem to want
535         definition lists with no terms, allow this.
536         (muse-batch-publish-files): Set muse-current-output-style.
538         * lisp/muse.el (muse-with-temp-buffer): Mention
539         `insert-file-contents-literally'.
541 2007-07-28  Michael Olson  <mwolson@gnu.org>
543         * lisp/muse-mode.el (muse-browse-result): Set
544         muse-current-output-style.
545         (muse-mode): Don't duplicate the paragraph-start regexp
546         unnecessarily.
547         (muse-list-edit-minor-mode-map): New variable containing the
548         keymap for Muse list edit minor mode.
549         (muse-l-e-m-m-list-item-regexp): New variable that matches list
550         items for Muse list edit minor mode.
551         (muse-l-e-m-m-insert-list-item,
552         muse-l-e-m-m-i-list-item-indentation)
553         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
554         item functions that change the list item regexp before calling the
555         existing function.
556         (muse-l-e-m-m-data): New variable that keeps track of the fill
557         data that we overwrite when activating Muse list edit minor mode,
558         so that we can restore it if the minor mode is toggled off.
559         (muse-list-edit-minor-mode): New minor mode that is useful for
560         editing lists in other major modes.
561         (turn-on-muse-list-edit-minor-mode)
562         (turn-off-muse-list-edit-minor-mode): New interactive functions
563         that turn Muse list edit minor mode on and off, respectively.
564         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
565         regexps.
567         * lisp/muse-project.el (muse-project-publish-this-file): Set
568         muse-current-output-style.  This fixes a bug when publishing to a
569         style that is not first in the list of styles.  Thanks to Jean
570         Magnan de Bornier for the report.
572         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
573         function that ensures that a blank line exists in the line before
574         point.
575         (muse-publish-markup-list): Use it, rather than
576         `muse-publish-ensure-block'.  This fixes a bug with definition
577         list publishing.  Thanks to meandtheshell for reporting this.
579         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
580         project argument is nil, default to the current project instead of
581         the first project entry in muse-project-alist.  This seems much
582         more sane to me.
584         * lisp/muse.el (muse-forward-list-item): Only check the 'face
585         property if we are in Muse mode or one of its derivatives.  This
586         allows movement on nested lists to work in other modes, and fixes
587         an issue with altering list indentation in
588         muse-list-edit-minor-mode.
590 2007-07-27  Michael Olson  <mwolson@gnu.org>
592         * AUTHORS: Add new authors.
594         * README: Permit Muse to be called "Emacs-Muse".
596         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
598         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
599         involving list items that have an extra blank line in front.
601         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
602         and Emacs-Muse are the same thing.
604 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
606         * lisp/muse-context.el (muse-context-header): Put
607         starttext after the modules who must be in preamble.
608         (muse-context-markup-strings): Fixed mistake in begin-example and
609         end-example.
611         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
612         math environment in ConTeXt when centered: "$$ $$" has to be
613         "\startformula \stopformula".
615 2007-07-26  Michael Olson  <mwolson@gnu.org>
617         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
618         parentheses in URLs.
620 2007-07-24  Michael Olson  <mwolson@gnu.org>
622         * examples/QuickStart.muse (Images): Fix typo where some text
623         existed in the output but not in the example region.
624         (Source Code): Fix another typo.  Explain that publishing from
625         console or X can make a difference.
627         * lisp/muse-context.el (muse-context-pdf-program): New option that
628         determines the program to use for generating PDF files for
629         ConTeXt.
630         (muse-context-pdf-cruft): New option that specifies the extensions
631         of files to remove after generating PDF output successfully.
632         (muse-context-slides-header): Docfix.
633         (muse-context-pdf-generate): Use new options.
635         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
636         save-restriction call.  This was causing a world of hurt when
637         using <lisp> inside of <include>.
639         * texi/muse.texi (ConTeXt): New section that documents how to use
640         the ConTeXt publishing styles.
642 2007-07-23  Michael Olson  <mwolson@gnu.org>
644         * lisp/muse-context.el: New file that provides support for
645         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
646         de Bornier for his work on this.
648         * lisp/muse-docbook.el (muse-docbook-entities)
649         (muse-docbook-bibliography): Remove unneeded save-restriction use.
651         * lisp/muse-latex2png.el (muse-publish-latex-tag):
652         s/contex/context/.
654         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
655         (muse-latex-bibliography): Remove call to `widen', since it is not
656         needed anymore.  Remove unneeded save-restriction use.
657         ("slides", "slides-pdf"): Indent elements uniformly.
659 2007-07-22  Michael Olson  <mwolson@gnu.org>
661         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
662         * lisp/muse-mode.el (muse-insert-tag):
663         * lisp/muse-project.el (muse-read-project)
664         (muse-read-project-file):
665         * lisp/muse-publish.el (muse-publish-get-style): Use
666         muse-completing-read-function.
668         * lisp/muse-latex2png.el (muse-publish-latex-tag)
669         (muse-publish-math-tag): Allow the context style -- which I plan
670         to include soon -- to work with these tags.
672         * lisp/muse.el (muse-completing-read-function): New option that
673         determines which function to call when doing a completing-read.
675 2007-07-15  Michael Olson  <mwolson@gnu.org>
677         * lisp/muse-journal.el (muse-journal-html-entry-template)
678         (muse-journal-rdf-entry-template)
679         (muse-journal-rss-entry-template): Mention that this can be text
680         or a filename.
681         (muse-journal-rdf-entry-template, muse-journal-rss-header)
682         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
683         newlines to make the output look nicer.
684         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
685         Use muse-insert-file-or-string for the entry templates, rather
686         than muse-insert-markup.  This allows <lisp> and <markup> tags to
687         be acted on.  Thanks to Scott Hyde for the report.
688         (muse-journal-html-munge-buffer): Escape quote of the day using
689         entire-document specials before snarfing it.  Mark entire template
690         as read-only -- this fixes an incorrect escaping bug.  Remove
691         read-only properties before replacing template matches so that
692         they can still be escaped with entire-document specials later on.
693         (muse-journal-rss-munge-buffer): Make sure that title is escaped
694         properly.
695         (muse-journal-markup-tags): Rename from
696         muse-journal-latex-markup-tags, because we will use it for
697         journal-rss-entry as well.
698         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
699         end-quote-item.
700         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
701         html.
702         ("journal-latex", "journal-pdf", "journal-book-latex")
703         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
704         muse-journal-latex-markup-tags.
705         ("journal-rss-entry"): New style that is used by journal-rss and
706         journal-rdf to mark up individual entries.  It is needed so that
707         we can do something meaningful with the qotd tag.
708         (muse-journal-rdf-summarize-entries): Set this to nil by default,
709         because it is annoying.  Update docs to mention this.
710         (muse-journal-rss-summarize-entries): Docfix.
712         * lisp/muse-publish.el (muse-insert-file-or-string): Use
713         muse-publish-markup-header-footer-tags.  I'm not quite sure how
714         this change got reverted.
715         (muse-markup-tag-info): Make into a function.  Move common code
716         here, rather than duplicating it in two places.  Deal with case
717         where muse-publish-use-header-footer-tags is non-nil.
718         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
719         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
720         warning.
721         (muse-publish-use-header-footer-tags): New variable that indicates
722         whether we should use just the header and footer tags, rather than
723         the full set.
724         (muse-insert-file-or-string): Bind
725         muse-publish-use-header-footer-tags to t.
726         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
727         Simplify call to muse-markup-tag-info.
728         (muse-publish-mark-up-tag): Bind
729         muse-publish-use-header-footer-tags to nil.
731         * texi/muse.texi (Journal): Update for recent changes.
733 2007-07-14  Michael Olson  <mwolson@gnu.org>
735         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
736         delete the remainder of the buffer, since this causes the
737         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
738         the report and the suggested fix.
740         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
741         beginning of table-el regexp.  This fixes a bug where Muse stalls
742         when trying to publish a malformed table.  Thanks to Ye Wenbin for
743         the report and the suggested fix.
745 2007-07-12  Michael Olson  <mwolson@gnu.org>
747         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
748         default, rather than the empty string.  This really fixes the bug
749         that occurred when using Muse with muse-project-alist set to nil.
750         Thanks to Jonathan Underwood for the report.
751         (muse-wiki-update-interwiki-regexp): Set
752         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
753         defined.
754         (muse-wiki-handle-implicit-interwiki)
755         (muse-wiki-handle-explicit-interwiki): Handle case where
756         muse-wiki-interwiki-regexp is nil.
758 2007-07-10  Michael Olson  <mwolson@gnu.org>
760         * lisp/muse-mode.el (muse-grep): Abort search if the current
761         project contains no directories.
763         * lisp/muse-project.el (muse-project-file-alist): If
764         muse-project-alist is not defined, or project is nil, return nil
765         right away.  This ought to fix a bug that occurred when using Muse
766         with muse-project-alist set to nil.
767         (muse-project-of-file): Make sure muse-project-alist is not nil.
768         (muse-project-save-buffers): Make sure project is not nil.
770         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
771         case where muse-project-alist is nil.
773         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
774         for XEmacs, since color-theme.el is poorly behaved, and defines
775         its own replace-in-string.  Bad color-theme.el -- no cookie for
776         you.
778 2007-07-01  Michael Olson  <mwolson@gnu.org>
780         * Makefile (.PHONY): Update for new debian package rules.
782         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
784         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
785         Use save-restriction properly.
786         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
788         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
789         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
790         properly.
791         (muse-latex-bibliography): Re-indent.
793         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
794         higher.  This fixes an error at startup with some versions of
795         Emacs.
796         (muse-publish-cite-tag): Re-indent.
798         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
799         to the end of the link part, so as to exclude the description from
800         the match.  This fixes a bug with three-part links that have
801         descriptions.  Thanks to everyone who pointed it out.
803 2007-06-18  Michael Olson  <mwolson@gnu.org>
805         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
806         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
807         1.1 specific markup strings.
808         (muse-html-insert-anchor): Use 'anchor string, rather than
809         hard-coding it.  Thanks to Chris Corsair for the suggestion.
810         ("xhtml1.0"): New style that is an alias for the xhtml style.
811         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
813 2007-06-17  Michael Olson  <mwolson@gnu.org>
815         * examples/QuickStart.muse: Make images local so that the Info
816         version of this document works.  Add <example> for the Literal
817         paragraphs chapter, so that it is clear what is happening.
819         * Makefile: Add elpa target, which is used for building an ELPA
820         package for Muse.
822         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
823         building ELPA packages.
825         * examples/Makefile (%.html, %.pdf, %.info): Add message to
826         indicate what we are publishing.
827         (realclean distclean fullclean): Remove all TeX crud.
829         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
830         that the Info version of QuickStart can publish correctly.
832         * lisp/muse-latex.el (muse-latex-slides-header)
833         (muse-latex-lecture-notes-header): Docfix.
835         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
836         the list of things to ignore.
838         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
839         variable.
841         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
842         default to nil, since texinfmt.el is a serious nuisance.
843         (muse-texinfo-markup-strings): Add newlines to begin-example and
844         end-example.
845         (muse-texinfo-decide-specials): Also escape URL-type specials in a
846         whole slew of other contexts.
848         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
849         muse-xml.
851         * lisp/muse-xml.el (muse-xml-footer): Docfix.
853         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
855 2007-06-16  Michael Olson  <mwolson@gnu.org>
857         * etc/IDEAS.muse: Add some ideas from David D. Smith.
859         * examples/QuickStart.muse: Overhaul.
861         * lisp/muse-project.el (muse-project): Call the last part of a
862         muse-project-alist entry "Output styles" rather than "styles".
864         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
865         where we have a pipe character at the beginning of line.
867         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
868         causing tables to not be sorted at all.
870         * texi/muse.texi: Overhaul.  It would be too time-consuming to
871         list all of the changes here.  The "Getting Started" and
872         "Projects" chapters, in particular, were heavily revised.
874 2007-06-15  Michael Olson  <mwolson@gnu.org>
876         * NEWS: Update.
878         * examples/QuickStart.muse: Mention new features.
880         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
881         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
882         terminal, and C-c TAB is more important.  Most people will not
883         want to toggle images on and off that often.
885         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
886         C-i as well, so that it works in the terminal.
888         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
889         look a bit tidier when removing the region.
891         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
892         list regexp part before other parts.
893         (muse-ol-item-regexp): New regexp that specifies how to match an
894         ordered list item.
895         (muse-ul-item-regexp): New regexp that specifies how to match an
896         unordered list item.
897         (muse-table-field-regexp): New regexp that specifies how to match
898         a definition list entry.
900         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
901         lack of support for @headitem in texinfmt.el.
903         * lisp/muse.el: Wrap muse-line-beginning-position and
904         muse-line-end-position in `eval-and-compile', since they are now
905         used in muse.el.
906         (muse-list-item-type): Use a simpler algorithm for detecting which
907         kind of list item we have.  This fixes a bug where a number in a
908         definition list term was being detected incorrectly as an ordered
909         list item.  Fixes bug #6250.
910         (muse-forward-list-item): Get the entire line with the list item.
911         For some reason, Emacs 21 was not populating match 2 correctly,
912         unlike Emacs 22, so this workaround was needed.
914         * texi/muse.texi: (Keystroke Summary): Remove C-c
915         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
916         alternative keybinding to the C-c TAB stuff.  Mention
917         muse-colors-toggle-inline-images.
919 2007-06-14  Michael Olson  <mwolson@gnu.org>
921         * README: Mention that RelaxNG schema is in etc/ directory.
923         * etc/emacs-wiki-migration.txt: New document that explains how to
924         migrate from emacs-wiki to Muse.
926         * etc/muse.rnc: Increment version number to 1.0.  Fix several
927         nested emphasis and nested lists edge cases.  Move here from
928         examples/.
930         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
931         same thing as C-c C-S-t, since the former works better in the
932         console.  Thanks to Leo for the suggestion.
934         * lisp/muse-publish.el (muse-publish-markup-table)
935         (muse-publish-markup-table-el): Include a newline in the return
936         string, so that paragraph detection does not get confused.
938         * lisp/muse.el (muse-with-temp-buffer): Docfix.
940         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
941         keybinding.
943 2007-06-13  Michael Olson  <mwolson@gnu.org>
945         * etc/IDEAS.muse: Mark three-part-links item as done.
947         * experimental/muse-message.el: Remove guard for muse-define-style
948         calls.
950         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
951         markup rules were being interpreted in reverse order.  This should
952         make implicit interwiki links work properly again.
953         (muse-link-face): Strip anchor from end of a path, so that this
954         works with anchors in interwiki links.
955         (muse-colors-insert-image): Catch error that occurs in Emacs 21
956         when an image does not exist.
958         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
959         anchors.
960         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
961         interwiki links work.  Thanks to Jim Ottaway for the initial
962         implementation.
963         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
964         links work.
966         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
967         about match 0.
968         (muse-handle-explicit-link): Docfix: this does not modify the
969         match data.
970         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
971         that has the regexp in its car.
973 2007-06-12  Michael Olson  <mwolson@gnu.org>
975         * README: Document new etc/ directory.
977         * etc/IDEAS.muse: Install things from new contributors just after
978         the 3.03 release, since I won't have time to review the code
979         before the release.  Move to new etc/ directory.  Slides
980         publishing has been installed.
982         * lisp/muse-latex.el (muse-latex-slides-header): New option that
983         determines the header to use for publishing slides.
984         (muse-latex-lecture-notes-header): New option that determines the
985         header to use for publishing lecture notes.
986         (muse-latex-slides-markup-tags): New option containing tags to use
987         when publishing slides.
988         (muse-latex-permit-contents-tag): Move higher in file.
989         (muse-latex-slide-tag): New function to publish the <slide> tag.
990         ("slides", "slides-pdf"): New publishing styles that create slides
991         using Beamer.
992         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
993         create lecture notes using Beamer.
995         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
996         since otherwise Planner is not happy when `plan' is called during
997         init.  Remove stray quote from autoload snippet.
999 2007-06-11  Michael Olson  <mwolson@gnu.org>
1001         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
1002         autoload, rather than having it exist at top-level.  Thanks to Leo
1003         for the suggestion.
1004         (muse-update-file-extension): Docfix.
1006 2007-06-10  Michael Olson  <mwolson@gnu.org>
1008         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
1009         URLs were being removed during publishing.  Thanks to everyone who
1010         reported this.
1012 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
1014         * lisp/muse-book.el
1015         * lisp/muse-docbook.el
1016         * lisp/muse-latex.el
1017         * lisp/muse-publish.el: added support for <cite> element which
1018         denotes in-text citations
1020         * lisp/muse-html.el
1021         * lisp/muse-groff.el
1022         * lisp/muse-texinfo.el
1023         * lisp/muse-xml.el: added support for <cite> element (stub)
1025 2007-06-06  Michael Olson  <mwolson@gnu.org>
1027         * lisp/muse-regexps.el (muse-table-line-regexp)
1028         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
1029         regexps so that they work with XEmacs 21.  Thanks to Adrian
1030         Tritschler for the report.
1032         * texi/muse.texi: Update copyright years.
1033         (HTML): Document muse-xhtml-style-sheet.  Thanks
1034         to thorne for noticing.
1035         (Development): Change archive year to 2006.  Thanks to Adrian
1036         Tritschler for noticing.  So *that's* why some people had the 2005
1037         version ....
1039 2007-06-05  Michael Olson  <mwolson@gnu.org>
1041         * Makefile (install-info): Remove $(MANUAL).info part, since this
1042         is taken care of already by texi/Makefile.  Thanks to Leo for the
1043         report.
1045         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
1046         read-only properties to qotd contents, so that they don't get
1047         double-escaped.  Thanks to Leo for the report.
1049 2007-06-04  Michael Olson  <mwolson@gnu.org>
1051         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
1052         -- that is, Tramp or ange-ftp -- file, then do not call
1053         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
1054         Fixes bug #5115.
1056         * lisp/muse-html.el (muse-html-insert-contents): Add
1057         documentation.  Handle case where heading is read-only, but has
1058         muse-contents property.  Remove the muse-contents property for any
1059         heading we come across so as to avoid double-including an item in
1060         an outer table of contents.
1061         (muse-html-denote-headings): New function that denotes whether a
1062         heading is not read-only by adding the muse-contents property to
1063         it.
1064         (muse-html-munge-buffer): If we are not to generate contents,
1065         still denote headings, in case some outer layer wants to generate
1066         contents for our headings.  This should fix a bug with table of
1067         contents and the <include> tag.  Thanks to thorne for the report.
1069         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
1070         muse-publish-generate-contents and set it to nil.  This should
1071         do the right thing when using <include> tags.
1073 2007-06-02  Michael Olson  <mwolson@gnu.org>
1075         * NEWS: Update for non-inlined image change and support for
1076         table.el style tables.
1078         * examples/Makefile (clean): Clean backup files.
1080         * examples/QuickStart.muse (Images): New section that describes
1081         how to inline and not inline images.
1083         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
1084         touch images that have "URL:" in front of them.
1086         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
1087         "URL:".  Use the identity function to resolve, since we don't want
1088         to rip "URL:" out while publishing, due to some magic that depends
1089         on that text.
1090         (muse-browse-url-url): New function that browses URLs that have
1091         "URL:" in front of them, by removing the "URL:" part and
1092         reprocessing the remainder.
1094         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
1095         (muse-publish-url): Recognize images in the description before
1096         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
1097         for the suggested workaround.
1098         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
1099         default value.
1100         (muse-publish-classify-url): If target begins with "URL:" return
1101         type url.
1102         (muse-publish-strip-URL): New function that strips "URL:" from the
1103         beginning of a string.  This is used to remove URL: from the link
1104         description.  * texi/muse.texi (Markup Strings): Clarify the
1105         meanings of image-link, link, and link-and-anchor.
1106         (muse-publish-markup-regexps): Move normal table rule to 2350.
1107         Rule 2300 is now a regexp that matches table.el-style tables.
1108         (muse-publish-markup-functions): Add table-el entry.
1109         (muse-publish-table-el-table): New function that given a variant,
1110         publishes a table.el-style table using the table in the matched
1111         region.
1112         (muse-publish-markup-table-el): New function that determines
1113         whether the table.el-style table can be published, and what
1114         variant to use.
1116         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
1117         the borders of table.el-style tables.
1119         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
1120         the table has sufficient whitespace in front of it.
1122         * texi/muse.texi (Images): Update for new non-inlined image
1123         ability and provide example.
1125 2007-05-31  Michael Olson  <mwolson@gnu.org>
1127         * NEWS: Add example for setting `muse-html-table-attributes'.
1129         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
1130         Publish multiple tbody tags if there is a horizontal separator
1131         after the heading, because that is valid HTML after all.
1133 2007-05-30  Michael Olson  <mwolson@gnu.org>
1135         * NEWS: Update.
1137         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
1138         horizontal separators in tables.
1140         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
1141         horizontal separators in tables.
1142         (muse-publish-trim-table): New function to remove initial and
1143         final blank columns from a table.
1144         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
1145         with horizontal separators, aka "hlines".
1147         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
1148         defines the syntax of a horizontal separator in a table.
1150         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
1151         horizontal separators.  Publish header lines correctly.
1153         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
1154         where we have nonnumbers as a row type.  This ignores sorting for
1155         hlines.
1156         (muse-xml-markup-table): Deal with horizontal separators.  If the
1157         markup supports table groups, make hlines separate table groups.
1158         Otherwise, ignore them, since they cannot be marked up.  Together,
1159         these changes allow us to support orgtbl-mode tables.  Thanks to
1160         Carsten Dominik for the suggestion.
1162 2007-05-26  Michael Olson  <mwolson@gnu.org>
1164         * lisp/muse-project.el (muse-project-alist-styles): Allow for
1165         other things to be added to each generated style as well.  For
1166         example, this permits me to add
1167         :base-url "http://blog.mwolson.org/"
1168         for my blog.
1170 2007-05-25  Michael Olson  <mwolson@gnu.org>
1172         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
1173         way of building Debian packages that preserves the original
1174         release tarball and is more modular.
1175         (debrevision, debrelease): Remove.
1176         (dist): No need to remove the debian/ directory, since it is now
1177         in its own branch.
1178         (debprepare): Copy over debian/ directory properly.
1180         * NEWS: Update.
1182         * examples/Makefile (clean): Remove QuickStart.texi, in case
1183         something went wrong during the build.
1184         (%.pdf): Publish the example using the normal pdf style, rather
1185         than info-pdf.
1187         * examples/QuickStart.muse: Add myself to the authors list.
1189         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
1190         sufficient blank lines before the tag.
1192         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
1193         we have sufficient blank lines before the tag.
1195         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
1196         specifies the program to call in order to generate PDF content
1197         from LaTeX content.
1198         (muse-latex-pdf-cruft): New option that specifies the extensions
1199         of files to remove after generating PDF output successfully.
1200         (muse-latex-pdf-generate): Use these new options.  Work around the
1201         annoying edge case where a tilde character exists in the filename
1202         or directory path -- now this can only error out when the relative
1203         path from the output file to the source file contains a tilde,
1204         which is far less likely.
1206         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
1207         muse-publish-ensure-block here after all, because <lisp> et al may
1208         occur inline as part of other things.
1210         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
1211         occur after full-document escaping, rather than before.  This
1212         prevents automatically-inserted Texinfo code from being escaped.
1213         (muse-texinfo-pdf-generate): Rewrite to call
1214         `muse-latex-pdf-generate' with pdftex as the generating binary,
1215         because texi2pdf suffers irredeemably from the tilde edge case
1216         mentioned above.
1218 2007-05-24  Michael Olson  <mwolson@gnu.org>
1220         * NEWS: Drop vague entries and position interesting entries closer
1221         to the top of each section.  Update for new changes.
1223         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
1224         and bzr metadata directories to the list of things to ignore.
1226         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
1227         `muse-publish-ensure-block-tag', since we will use it for more
1228         than just tags.
1229         (muse-publish-markup-list, muse-publish-verse-tag)
1230         (muse-publish-quote-tag, muse-publish-example-tag)
1231         (muse-publish-markup-attribute): Use it.  This fixes a bug that
1232         can occur when these types of markup occur immediately after a
1233         paragraph.  It's good to have defined behavior!
1235         * texi/muse.texi (Markup Strings): Mention new argument for
1236         link-and-anchor.
1238 2007-05-19  Michael Olson  <mwolson@gnu.org>
1240         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
1241         published footnotes and footnote references.  Thanks to Scott
1242         Jaderholm for the idea.
1244         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
1245         link-and-anchor, on the recommendation of the original submitter.
1247 2007-05-14  Michael Olson  <mwolson@gnu.org>
1249         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
1250         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
1251         suggestion.
1253         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
1254         file extension as the fourth argument.
1256         * README, texi/muse.texi (Getting Help and Reporting Bugs):
1257         Mention the new muse-el-logs mailing list.
1259 2007-05-13  Michael Olson  <mwolson@gnu.org>
1261         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
1262         "\`" here.  This fixes a problem with publishing custom URLs.
1264 2007-05-12  Michael Olson  <mwolson@gnu.org>
1266         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
1267         update the list if the current buffer is associated with a file.
1268         This fixes a bug with M-x muse-publish-region in a temporary
1269         buffer.
1271 2007-05-01  Michael Olson  <mwolson@gnu.org>
1273         * lisp/muse-publish.el (muse-publish-region): Remove read-only
1274         properties from the published buffer, so that the results can be
1275         manually tweaked.
1277 2007-04-23  Michael Olson  <mwolson@gnu.org>
1279         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
1280         find the footnote that goes with a reference, leave the reference
1281         as-is.  This fixes an error where control characters could be
1282         placed in a published document.
1284 2007-04-22  Michael Olson  <mwolson@gnu.org>
1286         * IDEAS.muse: Add muse-slides.el to list of things to include
1287         before release.
1289         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
1290         character.
1291         (muse-protocol-find): Find protocols correctly.  Rewrite to use
1292         catch/throw.
1293         (muse-browse-url): Don't concatenate "\`" here.  Together, this
1294         fixes a bug with browsing woman:// links.
1296         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
1297         where entry-dir has a trailing backslash.
1298         (muse-project-publish-file): If a style is malformed, skip it and
1299         display a warning message.  This should help people figure out
1300         where the problem is.
1302 2007-04-21  Michael Olson  <mwolson@gnu.org>
1304         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
1305         yet-to-be-included "contex" publishing style, use "$$" rather
1306         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
1307         this out.
1309 2007-04-20  Michael Olson  <mwolson@gnu.org>
1311         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
1312         variable that causes the :before and :before-end hooks to be
1313         ignored when non-nil.
1314         (muse-publish-markup-region): Use it.  Also, guarantee that point
1315         is at end of region after publishing.
1316         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
1317         variable.
1319 2007-04-19  Michael Olson  <mwolson@gnu.org>
1321         * IDEAS.muse: New file containing a list of ideas we have for new
1322         features, or patches that have yet to be applied.
1324         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
1325         be so confusing.
1327         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
1328         docstring.
1330         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
1331         <literal> tags with muse-publish-literal-tag, rather than
1332         muse-publish-mark-read-only.
1333         (muse-publish-literal-tag): New function that publishes the
1334         <literal> tag.  It adds the ability to add the optional "style"
1335         and "exact" elements, which cause text to only be included if the
1336         current publishing style matches some criteria.  The text will be
1337         removed otherwise.  Thanks to Jim Ottaway for the implementation.
1338         (muse-publish-mark-up-tag): Let the <markup> tag take the
1339         additional optional elements "style" and "exact", with much the
1340         same effect as the <literal> improvements, but after calling
1341         "function" or publishing the region first.  Make it possible to
1342         put <content> tags in <markup> regions in HTML publishing.
1344 2007-04-12  Michael Olson  <mwolson@gnu.org>
1346         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
1347         that a blank line always exists after a heading.  This fixes a bug
1348         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
1349         for the report.
1351         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
1352         detection regexp to that which is used in Docbook and HTML
1353         publishing styles.
1355 2007-04-02  Michael Olson  <mwolson@gnu.org>
1357         * README (muse-el-announce): Make a listing of mailing lists,
1358         rather than pointing to the old EmacsWikiMailingList page.  Thanks
1359         to Andreas Roehler for noticing.
1361 2007-04-01  Michael Olson  <mwolson@gnu.org>
1363         * lisp/muse-publish.el (muse-publish-date-format): Add
1364 `       customization type and group.
1365         (muse-publish-region): New interactive function that publishes a
1366         region to a new buffer.
1368         * texi/muse.texi: Use "document" rather than "manual".
1370 2007-03-31  Michael Olson  <mwolson@gnu.org>
1372         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
1373         expression (muse-style-derived-p "latex" (muse-style "latex"))
1374         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
1375         for the catch.
1377 2007-02-25  Michael Olson  <mwolson@gnu.org>
1379         * lisp/muse-publish.el (muse-publish-date-format): New option that
1380         specifies how to format the date when publishing Muse pages.
1381         Thanks to Thomas Gehrlein for the suggestion.
1382         (muse-publish-markup-buffer): Use it.
1384 2007-02-23  Michael Olson  <mwolson@gnu.org>
1386         * README: Add Prerequisites section to mention which versions of
1387         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
1388         the suggestion.  Update link destination for Muse's page on
1389         emacswiki.org.
1391 2007-02-15  Michael Olson  <mwolson@gnu.org>
1393         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
1394         be not just at beginning of line.  This fixes an error with the
1395         <class> tag.  Thanks to Jim Pivarski for the report.
1397 2007-02-14  Michael Olson  <mwolson@gnu.org>
1399         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
1400         whether something is an image before checking to see if it is a
1401         URL.  Thanks to ITSUMI ken-ichi for the report.
1403 2007-02-13  Michael Olson  <mwolson@gnu.org>
1405         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
1406         comments that have no text better.  Thanks to fang.lungang for the
1407         report.
1408         (muse-publish-markup-comment): Deal with case where no comment
1409         text is provided.
1411 2007-01-23  Michael Olson  <mwolson@gnu.org>
1413         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
1414         that ensures that at least one blank line exists at the given
1415         position.  This is used to avoid paragraph detection problems when
1416         block-level tags like <example> immediately follow a paragraph.
1417         Thanks to Hans Ekbrand for the report.
1418         (muse-publish-example-tag): Use it.
1420 2007-01-19  Michael Olson  <mwolson@gnu.org>
1422         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
1423         previous blank line if we are publishing in Latex.  Otherwise,
1424         that wouldn't be the right thing, so leave it be.
1426 2007-01-17  Michael Olson  <mwolson@gnu.org>
1428         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
1429         multiple centered math lines on the same line; keep them on
1430         different lines.  Use \[ math-text \] instead of $$math-text$$,
1431         since the latter seems to be deprecated.  Thanks to Jody Klymak
1432         for the pointer.
1434 2007-01-15  Michael Olson  <mwolson@gnu.org>
1436         * lisp/muse-latex2png.el (muse-publish-latex-tag)
1437         (muse-publish-math-tag): Publish region read-only when current
1438         style is Latex-derived, so that Muse does not escape it.
1439         (muse-publish-math-tag): If 6 or more spaces come before the tag,
1440         surround the region with "$$" rather than "$".  This is the Muse
1441         syntax for something centered, so it should be a good fit.
1443 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
1445         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
1446         protocol.
1447         (muse-browse-url-man): Change man page URL format.  The code is
1448         simpler when the section is left inside parentheses.
1449         (muse-browse-url-woman): New function.
1451 2007-01-14  Michael Olson  <mwolson@gnu.org>
1453         * AUTHORS: Bookkeeping.
1455         * lisp/muse-latex2png.el: Associate <math> tag with
1456         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
1457         Klymak for the report.
1458         (muse-publish-math-tag): Use muse-insert-markup for the "$"
1459         characters, so they don't get escaped.
1461         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
1462         make muse-style-derived-p easier to implement.
1463         (muse-style-derived-p): If the style is not provided, fetch it and
1464         check to see if the car is a string.  This should fix the other
1465         problem that was reported.
1467         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
1468         explains a case where setting muse-file-extension to nil can cause
1469         unexpected behavior.
1471 2007-01-09  Michael Olson  <mwolson@gnu.org>
1473         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
1474         comments higher priority than tags.  Thanks to Stefan van der Walt
1475         for the report.
1477 2007-01-08  Michael Olson  <mwolson@gnu.org>
1479         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
1480         argument rather than calling match-string.  Thanks to Stefan van
1481         der Walt for the report.  This should fix a bug with publishing
1482         <include file="..." markup="example">.
1484 2007-01-06  Michael Olson  <mwolson@gnu.org>
1486         * Makefile (debclean): New rule split from debrevision and
1487         debrelease.
1488         (debbuild): Take distributor into account.
1490         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1491         vendor/distributor we are building for.
1493 2007-01-04  Michael Olson  <mwolson@gnu.org>
1495         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1496         line.
1498         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1499         point to muse-publish-src-tag by default, since <src> and
1500         <example> have different parameters.
1501         (muse-publish-src-tag): New barebones publishing function for
1502         <src>, which is superseded when publishing in an HTML-based style.
1504 2007-01-03  Michael Olson  <mwolson@gnu.org>
1506         * lisp/muse-html.el (muse-html-src-tag): Document.
1508         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1509         command that calls a given tag on the current buffer.  Attributes
1510         may be passed.
1511         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1512         it.
1513         (muse-publish-srcify-buffer): New function that allows
1514         markup="src" in the <include> tag.
1515         (muse-publish-get-and-delete-attr): New macro that gets an
1516         attribute from a list and removes the first instance of that
1517         attribute from said list.
1518         (muse-publish-markup-attribute): Handle markup="src".
1519         (muse-publish-command-tag, muse-publish-include-tag): Use
1520         muse-publish-get-and-delete-attr.  This allows the remaining
1521         attributes to be passed.
1523         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1524         as changes to <command> and <include>.
1526 2006-12-30  Michael Olson  <mwolson@gnu.org>
1528         * NEWS: Update.
1530         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1531         from muse-publish-math-tag to avoid conflict with
1532         muse-latex2png.el.
1534 2006-12-23  Michael Olson  <mwolson@gnu.org>
1536         * lisp/muse-latex2png.el: Update header, since this has been
1537         rewritten sufficiently to not need an assignment from the original
1538         author.
1539         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1540         (muse-latex2png): Use two underscores to separate prefix and hash.
1541         (muse-latex2png-region): New function split from
1542         muse-publish-latex-tag that can be used easily by other code.
1543         Detect whether we are using an HTML-based publishing style, and
1544         insert a simpler markup if we are not.  If we are using a
1545         Latex-based publishing style, do not generate an image, and leave
1546         the region alone.  Return the path of the generated image, in case
1547         other functions want to use this programmatically.
1548         (muse-publish-latex-tag): Set a default prefix based on the name
1549         of the current file.
1550         (muse-publish-math-tag): New tag that surrounds the region with
1551         "$" characters, so that it becomes a Latex math region, and then
1552         publishes it.
1554         * lisp/muse-publish.el (muse-style-derived-p): New function that
1555         returns non-nil if a given style, or the current style if omitted,
1556         is equal to or derived from the given base style.  This is useful
1557         in <lisp> tags, because it allows the user to specify markup that
1558         is only to be inserted for one particular style.
1560 2006-12-22  Michael Olson  <mwolson@gnu.org>
1562         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1563         (muse-html-src-tag): New function which publishes the <src> tag.
1564         Thanks to Clinton Ebadi and Charles Wang for the initial
1565         implementations.
1567         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1569 2006-12-21  Michael Olson  <mwolson@gnu.org>
1571         * examples/johnw/muse-johnw.el: Update for preferred
1572         muse-derive-style usage.  Rename to muse-init.el.
1574         * examples/mwolson/muse-init.el: Update.
1576         * lisp/muse-book.el (muse-book-publish): New function split from
1577         muse-book-publish-project.  This is used in the definitions for
1578         the book-latex and book-pdf styles.
1579         (muse-book-publish-p): New function split from muse-book-publish.
1580         (muse-book-get-directives): New function that retrieves the
1581         publishing directives from the given file.
1582         (muse-book-publish): Use muse-book-get-directives to set the title
1583         if no title was specified.
1585         * lisp/muse-project.el (muse-project): Add :publish-project entry
1586         to widget.
1587         (muse-read-project, muse-project-find-file): Message fix.
1588         (muse-project-publish-file-default): New function split from
1589         muse-project-publish-file.
1590         (muse-project-publish-file): Allow file-level publishing function
1591         to be specified by the :publish element.  The default is
1592         muse-project-publish-file-default.
1593         (muse-project-publish-default): New function split from
1594         muse-project-publish.
1595         (muse-project-publish): Allow project-level publishing function to
1596         be specified by :publish-project element.  The default is
1597         muse-project-publish-default.
1599         * lisp/muse-publish.el (muse-publish-file): Message fix.
1601         * texi/muse.texi (Book): Mention new way to publish books and
1602         provide an example, since the process may be non-obvious.
1604 2006-12-20  Michael Olson  <mwolson@gnu.org>
1606         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1607         content-modifying code from the rest of
1608         muse-docbook-finalize-buffer.
1610         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1611         muse-groff-finalize-buffer, since it adds content to the buffer.
1613         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1614         content-modifying code from the rest of muse-html-finalize-buffer.
1615         This fixes a bug when using <include> with <content> tags.
1617         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1618         (muse-journal-latex-munge-buffer)
1619         (muse-journal-rss-munge-buffer): Rename, since they add content to
1620         the buffer.
1622         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1623         muse-latex-finalize-buffer, since it adds content to the buffer.
1625         * lisp/muse-mode.el:
1626         * lisp/muse-project.el:
1627         * lisp/muse-publish.el:
1628         * lisp/muse.el: Fix recursive load error.
1630         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1631         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1633         * lisp/muse-wiki.el: Comment cleanup.
1635         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1637 2006-12-17  Michael Olson  <mwolson@gnu.org>
1639         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1640         Remove the definition of \comment, since Latex already has comment
1641         syntax.
1642         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1643         than our own.  Thanks to Ryan Stutsman for pointing this out.
1645 2006-12-02  Michael Olson  <mwolson@gnu.org>
1647         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1648         that this can generate a proper table of contents for Planner HTML
1649         publishing.
1651 2006-12-01  Michael Olson  <mwolson@gnu.org>
1653         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1654         using a very old Emacs, avoid an infinite loop that could occur
1655         when the regexp is an empty string.
1657 2006-11-26  Michael Olson  <mwolson@gnu.org>
1659         * NEWS: Bring up to date.
1661         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1662         list issues and multiple-stanza verse issues.  This takes care of
1663         all of the markup issues I was worried about.
1665         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1666         (muse-project-publish-private-files): New option that indicates
1667         whether files with private filesystem permissions should be
1668         published.  The default is to publish them, since it avoids
1669         confusion in new users.
1670         (muse-project-private-p): Use it.
1672 2006-11-19  Michael Olson  <mwolson@gnu.org>
1674         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1675         style is found, which means that the link is not a Muse page, do
1676         not add a suffix or prefix to it.  This should fix the
1677         "[[thing.owl]]" bug that Phillip Lord reported.
1679         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1680         removing unused 2nd argument.
1682 2006-11-17  Michael Olson  <mwolson@gnu.org>
1684         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1685         latex publishing where nested enumerated lists would be squashed
1686         together at the end.
1688 2006-11-16  Michael Olson  <mwolson@gnu.org>
1690         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1691         list embedded in a definition list look right.  This also allows
1692         for definitions to be separated from their terms, much like the
1693         way HTML does it by default, if the user puts a blank line or a
1694         line break between the term and the definition.  If the term and
1695         definition are on the same line, they will be that way in the
1696         output as well.
1698 2006-11-11  Michael Olson  <mwolson@gnu.org>
1700         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1701         for the report.
1702         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1704 2006-11-07  Michael Olson  <mwolson@gnu.org>
1706         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1707         release candidate for Muse 3.03, available.
1709         * NEWS: Update.
1711 2006-11-06  Michael Olson  <mwolson@gnu.org>
1713         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1714         following a relative link worked even when the path was incorrect.
1716 2006-11-04  John Sullivan  <john@wjsullivan.net>
1718         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1719         muse-follow-name-at-point to reduce collisions with other
1720         modes (Planner).
1722         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1724 2006-11-04  Michael Olson  <mwolson@gnu.org>
1726         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1727         optional, and make interwiki delimiter a regular rather than shy
1728         group.
1729         (muse-wiki-handle-implicit-interwiki): Rename from
1730         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1731         (muse-wiki-handle-explicit-interwiki): New function that is
1732         smarter about where an explicit link ends in a buffer.  This
1733         allows you to refer to page names with invalid Wiki characters,
1734         such as underscores and dashes, merely by enclosing them in double
1735         brackets.  Also, a bug with recognizing project names too loosely
1736         has been fixed.
1738 2006-11-03  Michael Olson  <mwolson@gnu.org>
1740         * lisp/muse-project.el (muse-project-page-file): Make relative
1741         links work as expected, hopefully.
1743         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1744         output style manually, since it will differ from anything in the
1745         publishing style list.
1747 2006-10-30  Michael Olson  <mwolson@gnu.org>
1749         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1750         grouping elements, since that no longer applies.
1751         (muse-colors-custom-tags): Explicitly match against
1752         muse-tag-regexp to get the match-data set the way we want.  This
1753         really fixes the <example> highlighting bug that Stefan reported.
1754         (muse-configure-highlighting): Set the original value to the
1755         symbol, not the modified value.  Re-use modified rules properly.
1757         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1758         introduced yesterday.
1760 2006-10-29  Michael Olson  <mwolson@gnu.org>
1762         * examples/mwolson: Update my example configuration.
1764         * NEWS: Update.
1766         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1767         without a regexp in the first position before iterating through
1768         them to build muse-colors-vector.  This fixes a bug with the
1769         display of <example> tags.  Thanks to Stefan Reichör for the
1770         report.
1772         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1773         files in projects to be linked to.
1775         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1776         to serve as a description for a URL, as long as it differs from
1777         the destination URL.  This fixes the description of WikPage links
1778         in PDF output.
1779         (muse-publish-link-file): Check to see whether the given link
1780         points at a valid file.  If so, return it.  Otherwise, apply other
1781         transforms like prefix and link suffix.
1783         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1784         "/", it is a file or directory, not a Muse page.  Thanks to
1785         Phillip Lord for the suggestion.
1787         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1788         of the current page as the local path, instead of duplicating the
1789         remote file's path.  This probably fixes at least one reported
1790         bug. since it's quite major.
1791         (muse-wiki-update-project-file-regexp)
1792         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1793         passed to regexp-opt, since that can cause Emacs 21 to throw an
1794         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1795         DOT edu for the report.
1796         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1798 2006-10-28  Michael Olson  <mwolson@gnu.org>
1800         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1801         (muse-project-resolve-link): If the given style does not have a
1802         link-suffix, default to suffix.  This fixes a bug I was noticing
1803         when linking to a file that was published in both PDF and HTML
1804         form.
1806         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1807         function that is used as a callback to determine the initial
1808         amount of indentation that the current dl item has.
1809         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1810         and the post-indent value, instead of trying to determine them
1811         both.
1812         (muse-publish-strip-list-indentation): New function stripped from
1813         `muse-publish-surround-text' for readability.
1814         (muse-publish-surround-text): Instead of taking a determine-indent
1815         value, take a determine-indent-func function, which is called just
1816         after finding the next list item.  If we are asked to determine
1817         the amount of indentation, concatenate indent and post-indent the
1818         first time around.  This effectively fixes all known definition
1819         list issues.
1821 2006-10-16  Michael Olson  <mwolson@gnu.org>
1823         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1824         other software -- namely, Planner -- can detect whether they are
1825         using a version of Muse that supports nested tags.
1826         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1827         muse-publish-goto-tag-end.
1829         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1830         Adapt for nested tags.
1832         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1833         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1834         this.
1836         * lisp/muse-publish.el (muse-publish-markup-tag)
1837         (muse-publish-quote-tag): Use muse-goto-tag-end.
1839         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1841 2006-10-15  Michael Olson  <mwolson@gnu.org>
1843         * AUTHORS: Bookkeeping.
1845         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1846         tag.
1848         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1849         tags.
1851         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1853         * lisp/muse-import-docbook.el (muse-import-docbook)
1854         (muse-import-docbook-files): Docfix.
1855         (muse-import-docbook-get-title): Remove cl.el-ism.
1857         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1859         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1861         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1863         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1864         (muse-next-reference, muse-previous-reference): Minor whitespace
1865         changes.
1866         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1867         the suggestion.
1869         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1871         * lisp/muse-publish.el (muse-publish-markup-tags)
1872         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1873         element and make 4th element determine whether tags are nestable.
1874         (muse-publish-goto-tag-end): New function that moves to the end of
1875         a tag.  Handle nested tags when NESTED is non-nil.
1876         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1877         5th element for function.
1878         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1879         this on several scenarios, and it seems to work.
1880         (muse-publish-surround-text): Accept new optional argument
1881         LIST-ITEM which determines the regexp to use for list items.  The
1882         default is to use muse-list-item-regexp.
1884         * muse.texi (Markup Tags): Mention nestable tags.
1886         * NEWS: Mention new files.
1888 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1890         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1891         into Muse format.
1893         * lisp/muse-import-xml.el: New file that provides helper routines
1894         for converting XML-ish files to Muse format.
1896 2006-10-10  Michael Olson  <mwolson@gnu.org>
1898         * NEWS: Update for 3.02.7 bugfix release.
1900 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1902         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1903         using the value in the muse #date directive.
1904         (muse-blosxom-use-metadate): New option that determines whether or
1905         not to use the #postdate directive.
1906         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1907         metadate plugin format.
1909 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1911         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1912         recognised URLs.
1914         * muse.texi: Clarify handling of implicit links by mentioning
1915         which characters can prevent Muse from recognizing something as an
1916         implicit link.
1918 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1920         * lisp/muse-mode.el (muse-next-reference)
1921         (muse-previous-reference): Fix bug #6367 by moving point to the
1922         beginning of the link.
1924 2006-09-26  Michael Olson  <mwolson@gnu.org>
1926         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1927         beginning-of-line.  This should fix a bug that was noticed in
1928         recent Emacs 22 builds.
1930         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1931         eval-and-compile block to avoid a compiler warning.
1933 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1935         * lisp/muse-backlink.el (muse-backlink-split-string):
1936         Compatibility with Emacs versions < 22
1937         (muse-backlink-pending): New internal variable
1938         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1939         that backlinks are inserted at the right time.
1940         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1941         for pending backlink, and that this is the targe page.
1942         (muse-backlink-handle-link): Don’t handle the link if we are
1943         already handling one. Return the link as well as the parent links.
1945 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1947         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1948         #6942 - muse-blosxom-new-entry fails when using tags.
1950 2006-09-14  Michael Olson  <mwolson@gnu.org>
1952         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1953         compiler warning.
1955 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1957         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1958         function: Protect all wikiwords from START to END from further
1959         processing.
1960         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1962 2006-09-13  Michael Olson  <mwolson@gnu.org>
1964         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1965         adopted from Jim Ottaway's patch.  It removes links from the
1966         heading, and then marks the region read-only to inhibit WikiWord
1967         detection.
1969 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1971         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1972         special handling for headings.
1973         (muse-texinfo-remove-links): New function that removes explicit
1974         links from the given strings, replacing them with a description.
1976 2006-09-11  Michael Olson  <mwolson@gnu.org>
1978         * muse.texi (Getting Help and Reporting Bugs): Mention the
1979         muse-el-internationalization mailing list.
1981         * lisp/muse.el (muse-path-sans-extension): New function that acts
1982         like file-name-sans-extension, but guarantees to never modify the
1983         directory part of the path.  Thanks to Evan Monroig for
1984         investigating this.
1986         * lisp/muse-book.el (muse-book-publish-project): Use
1987         muse-path-sans-extension instead of file-name-sans-extension.
1989         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1990         Ditto.
1992 2006-08-30  Michael Olson  <mwolson@gnu.org>
1994         * muse.texi (Blosxom Requirements): Fix typo.
1996         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1997         directories for bzr and darcs.
1999         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
2000         contrib/pyblosxom/getstamps.py: Update version and headers.
2002 2006-08-27  Michael Olson  <mwolson@gnu.org>
2004         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
2005         nil values before they get to mapconcat.  This fixes a lockup when
2006         muse-wiki-match-all-project-files is nil.
2008         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
2009         (muse-wiki-ignore-implicit-links-to-current-page)
2010         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
2011         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
2012         (muse-wiki-publish-small-title-words)
2013         (muse-wiki-publish-pretty-title): Docfix.
2014         (muse-wiki-update-local-wikiword-regexp): Rename from
2015         muse-wiki-update-local-wikiword-regexp.  Set
2016         muse-wiki-project-file-regexp instead of
2017         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
2018         take muse-wiki-use-wikiword into account, since this is a
2019         different concept now.
2020         (muse-wiki-update-wikiword-regexp): Remove.
2021         (muse-wiki-wikiword-regexp): In-line the :set function.
2022         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
2024 2006-08-26  Michael Olson  <mwolson@gnu.org>
2026         * lisp/muse-publish.el (muse-publish-surround-text): When looking
2027         for indented list items, ignore blank lines.
2029         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
2030         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
2031         mapconcat.  This should hopefully fix a problem with large amounts
2032         of files with spaces in their name.  Thanks to Greg Detre for the
2033         report.
2035 2006-08-24  Michael Olson  <mwolson@gnu.org>
2037         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
2038         numbers from the argument to format-time-string.  This fixes an
2039         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
2041 2006-08-18  Michael Olson  <mwolson@gnu.org>
2043         * lisp/muse-project.el (muse-project-file-entries): Since we are
2044         given a full path, match against the filename as well.  This fixes
2045         an issue where backup files were being added to the file alist.
2047         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
2048         from muse-html.el.
2050 2006-08-12  Michael Olson  <mwolson@gnu.org>
2052         * Makefile (.PHONY): Don't use line continuations.
2053         (realclean fullclean): Call realclean in subdirs, not distclean.
2054         (distclean): Don't call realclean, since this would wipe out our
2055         autoloads file.
2056         (dist): Use correct path to autoloads file.
2058         * NEWS: Catch up with the latest changes.
2060         * experimental/Makefile (.PHONY): Wrap long line.
2062         * lisp/Makefile (distclean): Do the same thing as "clean", not
2063         "realclean".
2065         * lisp/muse-project.el (muse-project-get-applicable-style):
2066         Indentation tweak.
2067         (muse-project-ignore-regexp, muse-project-recurse-directory):
2068         Docfix.
2069         (muse-project-of-file): Try the ignored files regexp against the
2070         base filename as well as the entire path.
2072         * lisp/muse-publish.el (muse-publish-this-file): Display message
2073         if the buffer is not associated with any file, so that we avoid
2074         errors later on.
2075         (muse-publish-url-desc): New function taken from muse-publish-url
2076         that causes a URL description to be transformed.
2077         (muse-publish-url): Call muse-publish-url-desc on either the
2078         description or the original URL if it will be used as a
2079         description.  Accept the original URL as an argument, in case it
2080         was transformed earlier.
2081         (muse-publish-insert-url): Pass original URL as an argument.
2082         (muse-publish-markup-link): Make this somewhat easier to follow.
2083         Pass original URL as argument.
2084         (muse-publish-get-style): If the same style is used to publish to
2085         two different directories, prompt the user for which directory to
2086         use.
2087         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
2088         latest changes.
2089         (muse-publish-markup-url): Pass original URL as an argument.  This
2090         fixes the "nil" description for bare URLs that was in 3.02.91.
2091         Nothing like finding a bug just after completing the announcement
2092         of a release.
2094         * lisp/muse.el: Use defalias whenever convenient.
2095         (muse-version): Set version to 3.02.92 (3.03 RC2).
2097 2006-08-10  Michael Olson  <mwolson@gnu.org>
2099         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
2100         style does not derive from any other class, return `t' here.
2101         This, along with the corresponding change to muse-publish.el,
2102         fixes a problem with the table of contents getting inserted
2103         multiple times for custom html-based styles.
2104         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
2105         smarter method for table centering that works with XHTML.
2107         * lisp/muse-latex2png.el Rename all functions to have a
2108         "muse-latex2png" prefix.  Turn all variables into customizable
2109         options in the muse-latex2png group.
2110         (muse-latex2png-img-dest): New option specifying where to place
2111         the images.
2112         (muse-latex2png-template): New option containing the template to
2113         use for the surrounding LaTeX code.
2114         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
2115         compliance.
2116         (muse-latex2png-move2pubdir): Avoid multiple redundant error
2117         messages when something else goes wrong.  Create the image
2118         subdirectory if it doesn't exist already -- thanks to Christian
2119         Straßer for the report.  Expand the filename properly.
2120         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
2121         and filename expansion.
2122         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
2123         the default directory properly.
2125         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
2126         do not run the same function twice.
2128 2006-08-08  Michael Olson  <mwolson@gnu.org>
2130         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
2131         introduced wrong-type-argument error.
2133         * lisp/muse-html.el (muse-html-markup-strings)
2134         (muse-xhtml-markup-string): Cause table definition that contains
2135         image to be center-aligned.  This should fix an issue with images
2136         not being centered when captions are very long.
2138         * lisp/muse-publish.el (muse-publish-table-fields): Trim
2139         whitespace from fields once we have split them up.
2141         * lisp/muse.el (muse-trim-whitespace): New function that strips
2142         leading and trailing whitespace from a string.
2144 2006-08-07  Michael Olson  <mwolson@gnu.org>
2146         * NEWS: Update through patch-95.
2148         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
2149         to match the tags.
2150         (muse-colors-explicit-link): Show images in link descriptions if
2151         inlined images are enabled.
2153         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
2154         definitions for 'image-with-desc, 'image, and 'image-link.
2155         (muse-docbook-markup-paragraph): If an inlined image begins a
2156         paragraph, insert <para> before it.
2157         (muse-docbook-fixup-images): New function that upper-cases the
2158         "format" attribute of the <imagedata> tag.
2159         (muse-docbook-finalize-buffer): Call it.
2161         * lisp/muse-html.el (muse-html-markup-strings): Publish images
2162         with descriptions as centered tables, with a centered caption
2163         underneath.  The resulting look is consistent with the way that
2164         they are published in the LaTeX style.  Thanks to Jody Klymak for
2165         the suggestion.
2166         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
2167         valid way to center a table.
2168         (muse-html-markup-paragraph): Use class="image" instead of
2169         "image-link" for paragraphs that start with an embedded image.
2171         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
2172         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
2173         suggestion.
2174         (muse-latex-markup-specials-image): New option that enables
2175         escaping of specials in images.  This was split from the URL
2176         specials.
2177         (muse-latex-decide-specials): Handle 'image context.
2178         (muse-latex-fixup-dquotes): Go to beginning of document, instead
2179         of relying on caller to do this for us.
2181         * lisp/muse-publish.el (muse-publish-escape-specials): Document
2182         'image context.
2183         (muse-publish-url): Use 'image context for images.  Use 'image
2184         instead of 'image-link and 'image-link in place of
2185         'url-with-image.  Separate the image file from its extension so
2186         that docbook and texinfo can publish images correctly.
2187         (muse-publish-markup-link): Don't force a description if one is
2188         not given.  This fixes a bug where images without descriptions
2189         were being published as 'image-with-desc instead of 'image.
2191         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
2192         images the same as URLs.
2193         (muse-texinfo-markup-strings): Improve image markup to achieve an
2194         effect similar to that of the LaTeX publishing style.  Simplify
2195         'url string.
2197         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
2199         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
2200         when we have to use the custom version of this function.
2202         * muse.texi (Images): Explain how to toggle inlining of images and
2203         give better examples.  Mention captions and that captioned images
2204         should not be used inside of text paragraphs.
2205         (Markup Strings): Bring up-to-date with the changes made since
2206         3.02.
2208 2006-08-06  Michael Olson  <mwolson@gnu.org>
2210         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
2211         in the Emacs source tree.
2213         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
2214         in the Emacs source tree.
2216         * ChangeLog.3: New file created from the old ChangeLog.
2218         * Makefile.defs (VERSION): Set to 3.02.91.
2220         * NEWS: Update through patch-84.
2222         * lisp/muse.el (muse-version): Set to 3.02.91.
2224         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
2225         attributes.
2226         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
2227         delimiter are instead of hard-coding it.
2229         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
2230         (muse-mode): Make filling definition lists work better.  This
2231         should fix #5359.
2233         * lisp/muse-publish.el (muse-style-run-hooks): Use
2234         `muse-style-element' instead of `muse-get-keyword' here.  This
2235         should fix #6399.
2237         * muse.texi: Set version to 3.02.91 (3.02 RC2).
2239 See ChangeLog.3 for earlier changes.
2241 ;; Local Variables:
2242 ;; coding: utf-8
2243 ;; End: