Update copyright years
[muse-el.git] / ChangeLog
blobbd7143f6167c318aade55afb5e05a75eaf4f80dd
1 2007-06-13  Michael Olson  <mwolson@gnu.org>
3         * etc/IDEAS.muse: Mark three-part-links item as done.
5         * experimental/muse-message.el: Remove guard for muse-define-style
6         calls.
8         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
9         markup rules were being interpreted in reverse order.  This should
10         make implicit interwiki links work properly again.
11         (muse-link-face): Strip anchor from end of a path, so that this
12         works with anchors in interwiki links.
13         (muse-colors-insert-image): Catch error that occurs in Emacs 21
14         when an image does not exist.
16         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
17         anchors.
18         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
19         interwiki links work.  Thanks to Jim Ottaway for the initial
20         implementation.
21         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
22         links work.
24         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
25         about match 0.
26         (muse-handle-explicit-link): Docfix: this does not modify the
27         match data.
28         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
29         that has the regexp in its car.
31 2007-06-12  Michael Olson  <mwolson@gnu.org>
33         * README: Document new etc/ directory.
35         * etc/IDEAS.muse: Install things from new contributors just after
36         the 3.03 release, since I won't have time to review the code
37         before the release.  Move to new etc/ directory.  Slides
38         publishing has been installed.
40         * lisp/muse-latex.el (muse-latex-slides-header): New option that
41         determines the header to use for publishing slides.
42         (muse-latex-lecture-notes-header): New option that determines the
43         header to use for publishing lecture notes.
44         (muse-latex-slides-markup-tags): New option containing tags to use
45         when publishing slides.
46         (muse-latex-permit-contents-tag): Move higher in file.
47         (muse-latex-slide-tag): New function to publish the <slide> tag.
48         ("slides", "slides-pdf"): New publishing styles that create slides
49         using Beamer.
50         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
51         create lecture notes using Beamer.
53         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
54         since otherwise Planner is not happy when `plan' is called during
55         init.  Remove stray quote from autoload snippet.
57 2007-06-11  Michael Olson  <mwolson@gnu.org>
59         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
60         autoload, rather than having it exist at top-level.  Thanks to Leo
61         for the suggestion.
62         (muse-update-file-extension): Docfix.
64 2007-06-10  Michael Olson  <mwolson@gnu.org>
66         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
67         URLs were being removed during publishing.  Thanks to everyone who
68         reported this.
70 2007-06-06  Michael Olson  <mwolson@gnu.org>
72         * lisp/muse-regexps.el (muse-table-line-regexp)
73         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
74         regexps so that they work with XEmacs 21.  Thanks to Adrian
75         Tritschler for the report.
77         * texi/muse.texi: Update copyright years.
78         (HTML): Document muse-xhtml-style-sheet.  Thanks
79         to thorne for noticing.
80         (Development): Change archive year to 2006.  Thanks to Adrian
81         Tritschler for noticing.  So *that's* why some people had the 2005
82         version ....
84 2007-06-05  Michael Olson  <mwolson@gnu.org>
86         * Makefile (install-info): Remove $(MANUAL).info part, since this
87         is taken care of already by texi/Makefile.  Thanks to Leo for the
88         report.
90         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
91         read-only properties to qotd contents, so that they don't get
92         double-escaped.  Thanks to Leo for the report.
94 2007-06-04  Michael Olson  <mwolson@gnu.org>
96         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
97         -- that is, Tramp or ange-ftp -- file, then do not call
98         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
99         Fixes bug #5115.
101         * lisp/muse-html.el (muse-html-insert-contents): Add
102         documentation.  Handle case where heading is read-only, but has
103         muse-contents property.  Remove the muse-contents property for any
104         heading we come across so as to avoid double-including an item in
105         an outer table of contents.
106         (muse-html-denote-headings): New function that denotes whether a
107         heading is not read-only by adding the muse-contents property to
108         it.
109         (muse-html-munge-buffer): If we are not to generate contents,
110         still denote headings, in case some outer layer wants to generate
111         contents for our headings.  This should fix a bug with table of
112         contents and the <include> tag.  Thanks to thorne for the report.
114         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
115         muse-publish-generate-contents and set it to nil.  This should
116         do the right thing when using <include> tags.
118 2007-06-02  Michael Olson  <mwolson@gnu.org>
120         * NEWS: Update for non-inlined image change and support for
121         table.el style tables.
123         * examples/Makefile (clean): Clean backup files.
125         * examples/QuickStart.muse (Images): New section that describes
126         how to inline and not inline images.
128         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
129         touch images that have "URL:" in front of them.
131         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
132         "URL:".  Use the identity function to resolve, since we don't want
133         to rip "URL:" out while publishing, due to some magic that depends
134         on that text.
135         (muse-browse-url-url): New function that browses URLs that have
136         "URL:" in front of them, by removing the "URL:" part and
137         reprocessing the remainder.
139         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
140         (muse-publish-url): Recognize images in the description before
141         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
142         for the suggested workaround.
143         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
144         default value.
145         (muse-publish-classify-url): If target begins with "URL:" return
146         type url.
147         (muse-publish-strip-URL): New function that strips "URL:" from the
148         beginning of a string.  This is used to remove URL: from the link
149         description.  * texi/muse.texi (Markup Strings): Clarify the
150         meanings of image-link, link, and link-and-anchor.
151         (muse-publish-markup-regexps): Move normal table rule to 2350.
152         Rule 2300 is now a regexp that matches table.el-style tables.
153         (muse-publish-markup-functions): Add table-el entry.
154         (muse-publish-table-el-table): New function that given a variant,
155         publishes a table.el-style table using the table in the matched
156         region.
157         (muse-publish-markup-table-el): New function that determines
158         whether the table.el-style table can be published, and what
159         variant to use.
161         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
162         the borders of table.el-style tables.
164         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
165         the table has sufficient whitespace in front of it.
167         * texi/muse.texi (Images): Update for new non-inlined image
168         ability and provide example.
170 2007-05-31  Michael Olson  <mwolson@gnu.org>
172         * NEWS: Add example for setting `muse-html-table-attributes'.
174         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
175         Publish multiple tbody tags if there is a horizontal separator
176         after the heading, because that is valid HTML after all.
178 2007-05-30  Michael Olson  <mwolson@gnu.org>
180         * NEWS: Update.
182         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
183         horizontal separators in tables.
185         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
186         horizontal separators in tables.
187         (muse-publish-trim-table): New function to remove initial and
188         final blank columns from a table.
189         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
190         with horizontal separators, aka "hlines".
192         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
193         defines the syntax of a horizontal separator in a table.
195         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
196         horizontal separators.  Publish header lines correctly.
198         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
199         where we have nonnumbers as a row type.  This ignores sorting for
200         hlines.
201         (muse-xml-markup-table): Deal with horizontal separators.  If the
202         markup supports table groups, make hlines separate table groups.
203         Otherwise, ignore them, since they cannot be marked up.  Together,
204         these changes allow us to support orgtbl-mode tables.  Thanks to
205         Carsten Dominik for the suggestion.
207 2007-05-26  Michael Olson  <mwolson@gnu.org>
209         * lisp/muse-project.el (muse-project-alist-styles): Allow for
210         other things to be added to each generated style as well.  For
211         example, this permits me to add
212         :base-url "http://blog.mwolson.org/"
213         for my blog.
215 2007-05-25  Michael Olson  <mwolson@gnu.org>
217         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
218         way of building Debian packages that preserves the original
219         release tarball and is more modular.
220         (debrevision, debrelease): Remove.
221         (dist): No need to remove the debian/ directory, since it is now
222         in its own branch.
223         (debprepare): Copy over debian/ directory properly.
225         * NEWS: Update.
227         * examples/Makefile (clean): Remove QuickStart.texi, in case
228         something went wrong during the build.
229         (%.pdf): Publish the example using the normal pdf style, rather
230         than info-pdf.
232         * examples/QuickStart.muse: Add myself to the authors list.
234         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
235         sufficient blank lines before the tag.
237         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
238         we have sufficient blank lines before the tag.
240         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
241         specifies the program to call in order to generate PDF content
242         from LaTeX content.
243         (muse-latex-pdf-cruft): New option that specifies the extensions
244         of files to remove after generating PDF output successfully.
245         (muse-latex-pdf-generate): Use these new options.  Work around the
246         annoying edge case where a tilde character exists in the filename
247         or directory path -- now this can only error out when the relative
248         path from the output file to the source file contains a tilde,
249         which is far less likely.
251         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
252         muse-publish-ensure-block here after all, because <lisp> et al may
253         occur inline as part of other things.
255         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
256         occur after full-document escaping, rather than before.  This
257         prevents automatically-inserted Texinfo code from being escaped.
258         (muse-texinfo-pdf-generate): Rewrite to call
259         `muse-latex-pdf-generate' with pdftex as the generating binary,
260         because texi2pdf suffers irredeemably from the tilde edge case
261         mentioned above.
263 2007-05-24  Michael Olson  <mwolson@gnu.org>
265         * NEWS: Drop vague entries and position interesting entries closer
266         to the top of each section.  Update for new changes.
268         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
269         and bzr metadata directories to the list of things to ignore.
271         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
272         `muse-publish-ensure-block-tag', since we will use it for more
273         than just tags.
274         (muse-publish-markup-list, muse-publish-verse-tag)
275         (muse-publish-quote-tag, muse-publish-example-tag)
276         (muse-publish-markup-attribute): Use it.  This fixes a bug that
277         can occur when these types of markup occur immediately after a
278         paragraph.  It's good to have defined behavior!
280         * texi/muse.texi (Markup Strings): Mention new argument for
281         link-and-anchor.
283 2007-05-19  Michael Olson  <mwolson@gnu.org>
285         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
286         published footnotes and footnote references.  Thanks to Scott
287         Jaderholm for the idea.
289         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
290         link-and-anchor, on the recommendation of the original submitter.
292 2007-05-14  Michael Olson  <mwolson@gnu.org>
294         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
295         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
296         suggestion.
298         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
299         file extension as the fourth argument.
301         * README, texi/muse.texi (Getting Help and Reporting Bugs):
302         Mention the new muse-el-logs mailing list.
304 2007-05-13  Michael Olson  <mwolson@gnu.org>
306         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
307         "\`" here.  This fixes a problem with publishing custom URLs.
309 2007-05-12  Michael Olson  <mwolson@gnu.org>
311         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
312         update the list if the current buffer is associated with a file.
313         This fixes a bug with M-x muse-publish-region in a temporary
314         buffer.
316 2007-05-01  Michael Olson  <mwolson@gnu.org>
318         * lisp/muse-publish.el (muse-publish-region): Remove read-only
319         properties from the published buffer, so that the results can be
320         manually tweaked.
322 2007-04-23  Michael Olson  <mwolson@gnu.org>
324         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
325         find the footnote that goes with a reference, leave the reference
326         as-is.  This fixes an error where control characters could be
327         placed in a published document.
329 2007-04-22  Michael Olson  <mwolson@gnu.org>
331         * IDEAS.muse: Add muse-slides.el to list of things to include
332         before release.
334         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
335         character.
336         (muse-protocol-find): Find protocols correctly.  Rewrite to use
337         catch/throw.
338         (muse-browse-url): Don't concatenate "\`" here.  Together, this
339         fixes a bug with browsing woman:// links.
341         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
342         where entry-dir has a trailing backslash.
343         (muse-project-publish-file): If a style is malformed, skip it and
344         display a warning message.  This should help people figure out
345         where the problem is.
347 2007-04-21  Michael Olson  <mwolson@gnu.org>
349         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
350         yet-to-be-included "contex" publishing style, use "$$" rather
351         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
352         this out.
354 2007-04-20  Michael Olson  <mwolson@gnu.org>
356         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
357         variable that causes the :before and :before-end hooks to be
358         ignored when non-nil.
359         (muse-publish-markup-region): Use it.  Also, guarantee that point
360         is at end of region after publishing.
361         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
362         variable.
364 2007-04-19  Michael Olson  <mwolson@gnu.org>
366         * IDEAS.muse: New file containing a list of ideas we have for new
367         features, or patches that have yet to be applied.
369         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
370         be so confusing.
372         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
373         docstring.
375         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
376         <literal> tags with muse-publish-literal-tag, rather than
377         muse-publish-mark-read-only.
378         (muse-publish-literal-tag): New function that publishes the
379         <literal> tag.  It adds the ability to add the optional "style"
380         and "exact" elements, which cause text to only be included if the
381         current publishing style matches some criteria.  The text will be
382         removed otherwise.  Thanks to Jim Ottaway for the implementation.
383         (muse-publish-mark-up-tag): Let the <markup> tag take the
384         additional optional elements "style" and "exact", with much the
385         same effect as the <literal> improvements, but after calling
386         "function" or publishing the region first.  Make it possible to
387         put <content> tags in <markup> regions in HTML publishing.
389 2007-04-12  Michael Olson  <mwolson@gnu.org>
391         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
392         that a blank line always exists after a heading.  This fixes a bug
393         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
394         for the report.
396         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
397         detection regexp to that which is used in Docbook and HTML
398         publishing styles.
400 2007-04-02  Michael Olson  <mwolson@gnu.org>
402         * README (muse-el-announce): Make a listing of mailing lists,
403         rather than pointing to the old EmacsWikiMailingList page.  Thanks
404         to Andreas Roehler for noticing.
406 2007-04-01  Michael Olson  <mwolson@gnu.org>
408         * lisp/muse-publish.el (muse-publish-date-format): Add
409 `       customization type and group.
410         (muse-publish-region): New interactive function that publishes a
411         region to a new buffer.
413         * texi/muse.texi: Use "document" rather than "manual".
415 2007-03-31  Michael Olson  <mwolson@gnu.org>
417         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
418         expression (muse-style-derived-p "latex" (muse-style "latex"))
419         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
420         for the catch.
422 2007-02-25  Michael Olson  <mwolson@gnu.org>
424         * lisp/muse-publish.el (muse-publish-date-format): New option that
425         specifies how to format the date when publishing Muse pages.
426         Thanks to Thomas Gehrlein for the suggestion.
427         (muse-publish-markup-buffer): Use it.
429 2007-02-23  Michael Olson  <mwolson@gnu.org>
431         * README: Add Prerequisites section to mention which versions of
432         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
433         the suggestion.  Update link destination for Muse's page on
434         emacswiki.org.
436 2007-02-15  Michael Olson  <mwolson@gnu.org>
438         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
439         be not just at beginning of line.  This fixes an error with the
440         <class> tag.  Thanks to Jim Pivarski for the report.
442 2007-02-14  Michael Olson  <mwolson@gnu.org>
444         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
445         whether something is an image before checking to see if it is a
446         URL.  Thanks to ITSUMI ken-ichi for the report.
448 2007-02-13  Michael Olson  <mwolson@gnu.org>
450         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
451         comments that have no text better.  Thanks to fang.lungang for the
452         report.
453         (muse-publish-markup-comment): Deal with case where no comment
454         text is provided.
456 2007-01-23  Michael Olson  <mwolson@gnu.org>
458         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
459         that ensures that at least one blank line exists at the given
460         position.  This is used to avoid paragraph detection problems when
461         block-level tags like <example> immediately follow a paragraph.
462         Thanks to Hans Ekbrand for the report.
463         (muse-publish-example-tag): Use it.
465 2007-01-19  Michael Olson  <mwolson@gnu.org>
467         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
468         previous blank line if we are publishing in Latex.  Otherwise,
469         that wouldn't be the right thing, so leave it be.
471 2007-01-17  Michael Olson  <mwolson@gnu.org>
473         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
474         multiple centered math lines on the same line; keep them on
475         different lines.  Use \[ math-text \] instead of $$math-text$$,
476         since the latter seems to be deprecated.  Thanks to Jody Klymak
477         for the pointer.
479 2007-01-15  Michael Olson  <mwolson@gnu.org>
481         * lisp/muse-latex2png.el (muse-publish-latex-tag)
482         (muse-publish-math-tag): Publish region read-only when current
483         style is Latex-derived, so that Muse does not escape it.
484         (muse-publish-math-tag): If 6 or more spaces come before the tag,
485         surround the region with "$$" rather than "$".  This is the Muse
486         syntax for something centered, so it should be a good fit.
488 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
490         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
491         protocol.
492         (muse-browse-url-man): Change man page URL format.  The code is
493         simpler when the section is left inside parentheses.
494         (muse-browse-url-woman): New function.
496 2007-01-14  Michael Olson  <mwolson@gnu.org>
498         * AUTHORS: Bookkeeping.
500         * lisp/muse-latex2png.el: Associate <math> tag with
501         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
502         Klymak for the report.
503         (muse-publish-math-tag): Use muse-insert-markup for the "$"
504         characters, so they don't get escaped.
506         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
507         make muse-style-derived-p easier to implement.
508         (muse-style-derived-p): If the style is not provided, fetch it and
509         check to see if the car is a string.  This should fix the other
510         problem that was reported.
512         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
513         explains a case where setting muse-file-extension to nil can cause
514         unexpected behavior.
516 2007-01-09  Michael Olson  <mwolson@gnu.org>
518         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
519         comments higher priority than tags.  Thanks to Stefan van der Walt
520         for the report.
522 2007-01-08  Michael Olson  <mwolson@gnu.org>
524         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
525         argument rather than calling match-string.  Thanks to Stefan van
526         der Walt for the report.  This should fix a bug with publishing
527         <include file="..." markup="example">.
529 2007-01-06  Michael Olson  <mwolson@gnu.org>
531         * Makefile (debclean): New rule split from debrevision and
532         debrelease.
533         (debbuild): Take distributor into account.
535         * Makefile.defs (DISTRIBUTOR): New field that tracks what
536         vendor/distributor we are building for.
538 2007-01-04  Michael Olson  <mwolson@gnu.org>
540         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
541         line.
543         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
544         point to muse-publish-src-tag by default, since <src> and
545         <example> have different parameters.
546         (muse-publish-src-tag): New barebones publishing function for
547         <src>, which is superseded when publishing in an HTML-based style.
549 2007-01-03  Michael Olson  <mwolson@gnu.org>
551         * lisp/muse-html.el (muse-html-src-tag): Document.
553         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
554         command that calls a given tag on the current buffer.  Attributes
555         may be passed.
556         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
557         it.
558         (muse-publish-srcify-buffer): New function that allows
559         markup="src" in the <include> tag.
560         (muse-publish-get-and-delete-attr): New macro that gets an
561         attribute from a list and removes the first instance of that
562         attribute from said list.
563         (muse-publish-markup-attribute): Handle markup="src".
564         (muse-publish-command-tag, muse-publish-include-tag): Use
565         muse-publish-get-and-delete-attr.  This allows the remaining
566         attributes to be passed.
568         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
569         as changes to <command> and <include>.
571 2006-12-30  Michael Olson  <mwolson@gnu.org>
573         * NEWS: Update.
575         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
576         from muse-publish-math-tag to avoid conflict with
577         muse-latex2png.el.
579 2006-12-23  Michael Olson  <mwolson@gnu.org>
581         * lisp/muse-latex2png.el: Update header, since this has been
582         rewritten sufficiently to not need an assignment from the original
583         author.
584         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
585         (muse-latex2png): Use two underscores to separate prefix and hash.
586         (muse-latex2png-region): New function split from
587         muse-publish-latex-tag that can be used easily by other code.
588         Detect whether we are using an HTML-based publishing style, and
589         insert a simpler markup if we are not.  If we are using a
590         Latex-based publishing style, do not generate an image, and leave
591         the region alone.  Return the path of the generated image, in case
592         other functions want to use this programmatically.
593         (muse-publish-latex-tag): Set a default prefix based on the name
594         of the current file.
595         (muse-publish-math-tag): New tag that surrounds the region with
596         "$" characters, so that it becomes a Latex math region, and then
597         publishes it.
599         * lisp/muse-publish.el (muse-style-derived-p): New function that
600         returns non-nil if a given style, or the current style if omitted,
601         is equal to or derived from the given base style.  This is useful
602         in <lisp> tags, because it allows the user to specify markup that
603         is only to be inserted for one particular style.
605 2006-12-22  Michael Olson  <mwolson@gnu.org>
607         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
608         (muse-html-src-tag): New function which publishes the <src> tag.
609         Thanks to Clinton Ebadi and Charles Wang for the initial
610         implementations.
612         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
614 2006-12-21  Michael Olson  <mwolson@gnu.org>
616         * examples/johnw/muse-johnw.el: Update for preferred
617         muse-derive-style usage.  Rename to muse-init.el.
619         * examples/mwolson/muse-init.el: Update.
621         * lisp/muse-book.el (muse-book-publish): New function split from
622         muse-book-publish-project.  This is used in the definitions for
623         the book-latex and book-pdf styles.
624         (muse-book-publish-p): New function split from muse-book-publish.
625         (muse-book-get-directives): New function that retrieves the
626         publishing directives from the given file.
627         (muse-book-publish): Use muse-book-get-directives to set the title
628         if no title was specified.
630         * lisp/muse-project.el (muse-project): Add :publish-project entry
631         to widget.
632         (muse-read-project, muse-project-find-file): Message fix.
633         (muse-project-publish-file-default): New function split from
634         muse-project-publish-file.
635         (muse-project-publish-file): Allow file-level publishing function
636         to be specified by the :publish element.  The default is
637         muse-project-publish-file-default.
638         (muse-project-publish-default): New function split from
639         muse-project-publish.
640         (muse-project-publish): Allow project-level publishing function to
641         be specified by :publish-project element.  The default is
642         muse-project-publish-default.
644         * lisp/muse-publish.el (muse-publish-file): Message fix.
646         * texi/muse.texi (Book): Mention new way to publish books and
647         provide an example, since the process may be non-obvious.
649 2006-12-20  Michael Olson  <mwolson@gnu.org>
651         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
652         content-modifying code from the rest of
653         muse-docbook-finalize-buffer.
655         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
656         muse-groff-finalize-buffer, since it adds content to the buffer.
658         * lisp/muse-html.el (muse-html-munge-buffer): Split out
659         content-modifying code from the rest of muse-html-finalize-buffer.
660         This fixes a bug when using <include> with <content> tags.
662         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
663         (muse-journal-latex-munge-buffer)
664         (muse-journal-rss-munge-buffer): Rename, since they add content to
665         the buffer.
667         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
668         muse-latex-finalize-buffer, since it adds content to the buffer.
670         * lisp/muse-mode.el:
671         * lisp/muse-project.el:
672         * lisp/muse-publish.el:
673         * lisp/muse.el: Fix recursive load error.
675         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
676         muse-texinfo-finalize-buffer, since it adds content to the buffer.
678         * lisp/muse-wiki.el: Comment cleanup.
680         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
682 2006-12-17  Michael Olson  <mwolson@gnu.org>
684         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
685         Remove the definition of \comment, since Latex already has comment
686         syntax.
687         (muse-latex-markup-strings): Use the Latex comment syntax, rather
688         than our own.  Thanks to Ryan Stutsman for pointing this out.
690 2006-12-02  Michael Olson  <mwolson@gnu.org>
692         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
693         that this can generate a proper table of contents for Planner HTML
694         publishing.
696 2006-12-01  Michael Olson  <mwolson@gnu.org>
698         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
699         using a very old Emacs, avoid an infinite loop that could occur
700         when the regexp is an empty string.
702 2006-11-26  Michael Olson  <mwolson@gnu.org>
704         * NEWS: Bring up to date.
706         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
707         list issues and multiple-stanza verse issues.  This takes care of
708         all of the markup issues I was worried about.
710         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
711         (muse-project-publish-private-files): New option that indicates
712         whether files with private filesystem permissions should be
713         published.  The default is to publish them, since it avoids
714         confusion in new users.
715         (muse-project-private-p): Use it.
717 2006-11-19  Michael Olson  <mwolson@gnu.org>
719         * lisp/muse-project.el (muse-project-resolve-link): If no remote
720         style is found, which means that the link is not a Muse page, do
721         not add a suffix or prefix to it.  This should fix the
722         "[[thing.owl]]" bug that Phillip Lord reported.
724         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
725         removing unused 2nd argument.
727 2006-11-17  Michael Olson  <mwolson@gnu.org>
729         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
730         latex publishing where nested enumerated lists would be squashed
731         together at the end.
733 2006-11-16  Michael Olson  <mwolson@gnu.org>
735         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
736         list embedded in a definition list look right.  This also allows
737         for definitions to be separated from their terms, much like the
738         way HTML does it by default, if the user puts a blank line or a
739         line break between the term and the definition.  If the term and
740         definition are on the same line, they will be that way in the
741         output as well.
743 2006-11-11  Michael Olson  <mwolson@gnu.org>
745         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
746         for the report.
747         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
749 2006-11-07  Michael Olson  <mwolson@gnu.org>
751         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
752         release candidate for Muse 3.03, available.
754         * NEWS: Update.
756 2006-11-06  Michael Olson  <mwolson@gnu.org>
758         * lisp/muse-project.el (muse-project-find-file): Fix bug when
759         following a relative link worked even when the path was incorrect.
761 2006-11-04  John Sullivan  <john@wjsullivan.net>
763         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
764         muse-follow-name-at-point to reduce collisions with other
765         modes (Planner).
767         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
769 2006-11-04  Michael Olson  <mwolson@gnu.org>
771         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
772         optional, and make interwiki delimiter a regular rather than shy
773         group.
774         (muse-wiki-handle-implicit-interwiki): Rename from
775         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
776         (muse-wiki-handle-explicit-interwiki): New function that is
777         smarter about where an explicit link ends in a buffer.  This
778         allows you to refer to page names with invalid Wiki characters,
779         such as underscores and dashes, merely by enclosing them in double
780         brackets.  Also, a bug with recognizing project names too loosely
781         has been fixed.
783 2006-11-03  Michael Olson  <mwolson@gnu.org>
785         * lisp/muse-project.el (muse-project-page-file): Make relative
786         links work as expected, hopefully.
788         * lisp/muse-publish.el (muse-publish-this-file): Set the current
789         output style manually, since it will differ from anything in the
790         publishing style list.
792 2006-10-30  Michael Olson  <mwolson@gnu.org>
794         * lisp/muse-colors.el (muse-colors-markup): Remove note about
795         grouping elements, since that no longer applies.
796         (muse-colors-custom-tags): Explicitly match against
797         muse-tag-regexp to get the match-data set the way we want.  This
798         really fixes the <example> highlighting bug that Stefan reported.
799         (muse-configure-highlighting): Set the original value to the
800         symbol, not the modified value.  Re-use modified rules properly.
802         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
803         introduced yesterday.
805 2006-10-29  Michael Olson  <mwolson@gnu.org>
807         * examples/mwolson: Update my example configuration.
809         * NEWS: Update.
811         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
812         without a regexp in the first position before iterating through
813         them to build muse-colors-vector.  This fixes a bug with the
814         display of <example> tags.  Thanks to Stefan Reichör for the
815         report.
817         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
818         files in projects to be linked to.
820         * lisp/muse-publish.el (muse-publish-url): Allow the original link
821         to serve as a description for a URL, as long as it differs from
822         the destination URL.  This fixes the description of WikPage links
823         in PDF output.
824         (muse-publish-link-file): Check to see whether the given link
825         points at a valid file.  If so, return it.  Otherwise, apply other
826         transforms like prefix and link suffix.
828         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
829         "/", it is a file or directory, not a Muse page.  Thanks to
830         Phillip Lord for the suggestion.
832         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
833         of the current page as the local path, instead of duplicating the
834         remote file's path.  This probably fixes at least one reported
835         bug. since it's quite major.
836         (muse-wiki-update-project-file-regexp)
837         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
838         passed to regexp-opt, since that can cause Emacs 21 to throw an
839         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
840         DOT edu for the report.
841         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
843 2006-10-28  Michael Olson  <mwolson@gnu.org>
845         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
846         (muse-project-resolve-link): If the given style does not have a
847         link-suffix, default to suffix.  This fixes a bug I was noticing
848         when linking to a file that was published in both PDF and HTML
849         form.
851         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
852         function that is used as a callback to determine the initial
853         amount of indentation that the current dl item has.
854         (muse-publish-surround-dl): Use it.  Pass the initial indent value
855         and the post-indent value, instead of trying to determine them
856         both.
857         (muse-publish-strip-list-indentation): New function stripped from
858         `muse-publish-surround-text' for readability.
859         (muse-publish-surround-text): Instead of taking a determine-indent
860         value, take a determine-indent-func function, which is called just
861         after finding the next list item.  If we are asked to determine
862         the amount of indentation, concatenate indent and post-indent the
863         first time around.  This effectively fixes all known definition
864         list issues.
866 2006-10-16  Michael Olson  <mwolson@gnu.org>
868         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
869         other software -- namely, Planner -- can detect whether they are
870         using a version of Muse that supports nested tags.
871         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
872         muse-publish-goto-tag-end.
874         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
875         Adapt for nested tags.
877         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
878         <class> tag is nestable.  Thanks to Phillip Lord for noticing
879         this.
881         * lisp/muse-publish.el (muse-publish-markup-tag)
882         (muse-publish-quote-tag): Use muse-goto-tag-end.
884         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
886 2006-10-15  Michael Olson  <mwolson@gnu.org>
888         * AUTHORS: Bookkeeping.
890         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
891         tag.
893         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
894         tags.
896         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
898         * lisp/muse-import-docbook.el (muse-import-docbook)
899         (muse-import-docbook-files): Docfix.
900         (muse-import-docbook-get-title): Remove cl.el-ism.
902         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
904         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
906         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
908         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
909         (muse-next-reference, muse-previous-reference): Minor whitespace
910         changes.
911         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
912         the suggestion.
914         * lisp/muse-poem.el (muse-poem-tag): Ditto.
916         * lisp/muse-publish.el (muse-publish-markup-tags)
917         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
918         element and make 4th element determine whether tags are nestable.
919         (muse-publish-goto-tag-end): New function that moves to the end of
920         a tag.  Handle nested tags when NESTED is non-nil.
921         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
922         5th element for function.
923         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
924         this on several scenarios, and it seems to work.
925         (muse-publish-surround-text): Accept new optional argument
926         LIST-ITEM which determines the regexp to use for list items.  The
927         default is to use muse-list-item-regexp.
929         * muse.texi (Markup Tags): Mention nestable tags.
931         * NEWS: Mention new files.
933 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
935         * lisp/muse-import-docbook.el: New file that converts Docbook XML
936         into Muse format.
938         * lisp/muse-import-xml.el: New file that provides helper routines
939         for converting XML-ish files to Muse format.
941 2006-10-10  Michael Olson  <mwolson@gnu.org>
943         * NEWS: Update for 3.02.7 bugfix release.
945 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
947         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
948         using the value in the muse #date directive.
949         (muse-blosxom-use-metadate): New option that determines whether or
950         not to use the #postdate directive.
951         (muse-blosxom-format-date): Convert a date string to PyBlosxom
952         metadate plugin format.
954 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
956         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
957         recognised URLs.
959         * muse.texi: Clarify handling of implicit links by mentioning
960         which characters can prevent Muse from recognizing something as an
961         implicit link.
963 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
965         * lisp/muse-mode.el (muse-next-reference)
966         (muse-previous-reference): Fix bug #6367 by moving point to the
967         beginning of the link.
969 2006-09-26  Michael Olson  <mwolson@gnu.org>
971         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
972         beginning-of-line.  This should fix a bug that was noticed in
973         recent Emacs 22 builds.
975         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
976         eval-and-compile block to avoid a compiler warning.
978 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
980         * lisp/muse-backlink.el (muse-backlink-split-string):
981         Compatibility with Emacs versions < 22
982         (muse-backlink-pending): New internal variable
983         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
984         that backlinks are inserted at the right time.
985         (muse-backlink-insert-hook-func): Remove unwind-protection; check
986         for pending backlink, and that this is the targe page.
987         (muse-backlink-handle-link): Don’t handle the link if we are
988         already handling one. Return the link as well as the parent links.
990 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
992         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
993         #6942 - muse-blosxom-new-entry fails when using tags.
995 2006-09-14  Michael Olson  <mwolson@gnu.org>
997         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
998         compiler warning.
1000 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1002         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1003         function: Protect all wikiwords from START to END from further
1004         processing.
1005         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1007 2006-09-13  Michael Olson  <mwolson@gnu.org>
1009         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1010         adopted from Jim Ottaway's patch.  It removes links from the
1011         heading, and then marks the region read-only to inhibit WikiWord
1012         detection.
1014 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1016         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1017         special handling for headings.
1018         (muse-texinfo-remove-links): New function that removes explicit
1019         links from the given strings, replacing them with a description.
1021 2006-09-11  Michael Olson  <mwolson@gnu.org>
1023         * muse.texi (Getting Help and Reporting Bugs): Mention the
1024         muse-el-internationalization mailing list.
1026         * lisp/muse.el (muse-path-sans-extension): New function that acts
1027         like file-name-sans-extension, but guarantees to never modify the
1028         directory part of the path.  Thanks to Evan Monroig for
1029         investigating this.
1031         * lisp/muse-book.el (muse-book-publish-project): Use
1032         muse-path-sans-extension instead of file-name-sans-extension.
1034         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1035         Ditto.
1037 2006-08-30  Michael Olson  <mwolson@gnu.org>
1039         * muse.texi (Blosxom Requirements): Fix typo.
1041         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1042         directories for bzr and darcs.
1044         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1045         contrib/pyblosxom/getstamps.py: Update version and headers.
1047 2006-08-27  Michael Olson  <mwolson@gnu.org>
1049         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1050         nil values before they get to mapconcat.  This fixes a lockup when
1051         muse-wiki-match-all-project-files is nil.
1053         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1054         (muse-wiki-ignore-implicit-links-to-current-page)
1055         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1056         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1057         (muse-wiki-publish-small-title-words)
1058         (muse-wiki-publish-pretty-title): Docfix.
1059         (muse-wiki-update-local-wikiword-regexp): Rename from
1060         muse-wiki-update-local-wikiword-regexp.  Set
1061         muse-wiki-project-file-regexp instead of
1062         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1063         take muse-wiki-use-wikiword into account, since this is a
1064         different concept now.
1065         (muse-wiki-update-wikiword-regexp): Remove.
1066         (muse-wiki-wikiword-regexp): In-line the :set function.
1067         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1069 2006-08-26  Michael Olson  <mwolson@gnu.org>
1071         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1072         for indented list items, ignore blank lines.
1074         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1075         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1076         mapconcat.  This should hopefully fix a problem with large amounts
1077         of files with spaces in their name.  Thanks to Greg Detre for the
1078         report.
1080 2006-08-24  Michael Olson  <mwolson@gnu.org>
1082         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1083         numbers from the argument to format-time-string.  This fixes an
1084         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1086 2006-08-18  Michael Olson  <mwolson@gnu.org>
1088         * lisp/muse-project.el (muse-project-file-entries): Since we are
1089         given a full path, match against the filename as well.  This fixes
1090         an issue where backup files were being added to the file alist.
1092         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1093         from muse-html.el.
1095 2006-08-12  Michael Olson  <mwolson@gnu.org>
1097         * Makefile (.PHONY): Don't use line continuations.
1098         (realclean fullclean): Call realclean in subdirs, not distclean.
1099         (distclean): Don't call realclean, since this would wipe out our
1100         autoloads file.
1101         (dist): Use correct path to autoloads file.
1103         * NEWS: Catch up with the latest changes.
1105         * experimental/Makefile (.PHONY): Wrap long line.
1107         * lisp/Makefile (distclean): Do the same thing as "clean", not
1108         "realclean".
1110         * lisp/muse-project.el (muse-project-get-applicable-style):
1111         Indentation tweak.
1112         (muse-project-ignore-regexp, muse-project-recurse-directory):
1113         Docfix.
1114         (muse-project-of-file): Try the ignored files regexp against the
1115         base filename as well as the entire path.
1117         * lisp/muse-publish.el (muse-publish-this-file): Display message
1118         if the buffer is not associated with any file, so that we avoid
1119         errors later on.
1120         (muse-publish-url-desc): New function taken from muse-publish-url
1121         that causes a URL description to be transformed.
1122         (muse-publish-url): Call muse-publish-url-desc on either the
1123         description or the original URL if it will be used as a
1124         description.  Accept the original URL as an argument, in case it
1125         was transformed earlier.
1126         (muse-publish-insert-url): Pass original URL as an argument.
1127         (muse-publish-markup-link): Make this somewhat easier to follow.
1128         Pass original URL as argument.
1129         (muse-publish-get-style): If the same style is used to publish to
1130         two different directories, prompt the user for which directory to
1131         use.
1132         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1133         latest changes.
1134         (muse-publish-markup-url): Pass original URL as an argument.  This
1135         fixes the "nil" description for bare URLs that was in 3.02.91.
1136         Nothing like finding a bug just after completing the announcement
1137         of a release.
1139         * lisp/muse.el: Use defalias whenever convenient.
1140         (muse-version): Set version to 3.02.92 (3.03 RC2).
1142 2006-08-10  Michael Olson  <mwolson@gnu.org>
1144         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1145         style does not derive from any other class, return `t' here.
1146         This, along with the corresponding change to muse-publish.el,
1147         fixes a problem with the table of contents getting inserted
1148         multiple times for custom html-based styles.
1149         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1150         smarter method for table centering that works with XHTML.
1152         * lisp/muse-latex2png.el Rename all functions to have a
1153         "muse-latex2png" prefix.  Turn all variables into customizable
1154         options in the muse-latex2png group.
1155         (muse-latex2png-img-dest): New option specifying where to place
1156         the images.
1157         (muse-latex2png-template): New option containing the template to
1158         use for the surrounding LaTeX code.
1159         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1160         compliance.
1161         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1162         messages when something else goes wrong.  Create the image
1163         subdirectory if it doesn't exist already -- thanks to Christian
1164         Straßer for the report.  Expand the filename properly.
1165         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1166         and filename expansion.
1167         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1168         the default directory properly.
1170         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1171         do not run the same function twice.
1173 2006-08-08  Michael Olson  <mwolson@gnu.org>
1175         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1176         introduced wrong-type-argument error.
1178         * lisp/muse-html.el (muse-html-markup-strings)
1179         (muse-xhtml-markup-string): Cause table definition that contains
1180         image to be center-aligned.  This should fix an issue with images
1181         not being centered when captions are very long.
1183         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1184         whitespace from fields once we have split them up.
1186         * lisp/muse.el (muse-trim-whitespace): New function that strips
1187         leading and trailing whitespace from a string.
1189 2006-08-07  Michael Olson  <mwolson@gnu.org>
1191         * NEWS: Update through patch-95.
1193         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1194         to match the tags.
1195         (muse-colors-explicit-link): Show images in link descriptions if
1196         inlined images are enabled.
1198         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1199         definitions for 'image-with-desc, 'image, and 'image-link.
1200         (muse-docbook-markup-paragraph): If an inlined image begins a
1201         paragraph, insert <para> before it.
1202         (muse-docbook-fixup-images): New function that upper-cases the
1203         "format" attribute of the <imagedata> tag.
1204         (muse-docbook-finalize-buffer): Call it.
1206         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1207         with descriptions as centered tables, with a centered caption
1208         underneath.  The resulting look is consistent with the way that
1209         they are published in the LaTeX style.  Thanks to Jody Klymak for
1210         the suggestion.
1211         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1212         valid way to center a table.
1213         (muse-html-markup-paragraph): Use class="image" instead of
1214         "image-link" for paragraphs that start with an embedded image.
1216         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1217         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1218         suggestion.
1219         (muse-latex-markup-specials-image): New option that enables
1220         escaping of specials in images.  This was split from the URL
1221         specials.
1222         (muse-latex-decide-specials): Handle 'image context.
1223         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1224         of relying on caller to do this for us.
1226         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1227         'image context.
1228         (muse-publish-url): Use 'image context for images.  Use 'image
1229         instead of 'image-link and 'image-link in place of
1230         'url-with-image.  Separate the image file from its extension so
1231         that docbook and texinfo can publish images correctly.
1232         (muse-publish-markup-link): Don't force a description if one is
1233         not given.  This fixes a bug where images without descriptions
1234         were being published as 'image-with-desc instead of 'image.
1236         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1237         images the same as URLs.
1238         (muse-texinfo-markup-strings): Improve image markup to achieve an
1239         effect similar to that of the LaTeX publishing style.  Simplify
1240         'url string.
1242         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1244         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1245         when we have to use the custom version of this function.
1247         * muse.texi (Images): Explain how to toggle inlining of images and
1248         give better examples.  Mention captions and that captioned images
1249         should not be used inside of text paragraphs.
1250         (Markup Strings): Bring up-to-date with the changes made since
1251         3.02.
1253 2006-08-06  Michael Olson  <mwolson@gnu.org>
1255         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1256         in the Emacs source tree.
1258         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1259         in the Emacs source tree.
1261         * ChangeLog.3: New file created from the old ChangeLog.
1263         * Makefile.defs (VERSION): Set to 3.02.91.
1265         * NEWS: Update through patch-84.
1267         * lisp/muse.el (muse-version): Set to 3.02.91.
1269         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1270         attributes.
1271         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1272         delimiter are instead of hard-coding it.
1274         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1275         (muse-mode): Make filling definition lists work better.  This
1276         should fix #5359.
1278         * lisp/muse-publish.el (muse-style-run-hooks): Use
1279         `muse-style-element' instead of `muse-get-keyword' here.  This
1280         should fix #6399.
1282         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1284 See ChangeLog.3 for earlier changes.
1286 ;; Local Variables:
1287 ;; coding: utf-8
1288 ;; End: