Make C-c C-i do the same thing as C-c TAB
[muse-el.git] / ChangeLog
blobe26d40042b2eee22ccd4dffb283305bf0fea7f8c
1 2007-06-15  Michael Olson  <mwolson@gnu.org>
3         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
4         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
5         terminal, and C-c TAB is more important.  Most people will not
6         want to toggle images on and off that often.
8         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
9         C-i as well, so that it works in the terminal.
11         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
12         list regexp part before other parts.
13         (muse-ol-item-regexp): New regexp that specifies how to match an
14         ordered list item.
15         (muse-ul-item-regexp): New regexp that specifies how to match an
16         unordered list item.
17         (muse-table-field-regexp): New regexp that specifies how to match
18         a definition list entry.
20         * lisp/muse.el: Wrap muse-line-beginning-position and
21         muse-line-end-position in `eval-and-compile', since they are now
22         used in muse.el.
23         (muse-list-item-type): Use a simpler algorithm for detecting which
24         kind of list item we have.  This fixes a bug where a number in a
25         definition list term was being detected incorrectly as an ordered
26         list item.  Fixes bug #6250.
27         (muse-forward-list-item): Get the entire line with the list item.
28         For some reason, Emacs 21 was not populating match 2 correctly,
29         unlike Emacs 22, so this workaround was needed.
31         * texi/muse.texi: (Keystroke Summary): Remove C-c
32         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
33         alternative keybinding to the C-c TAB stuff.  Mention
34         muse-colors-toggle-inline-images.
36 2007-06-14  Michael Olson  <mwolson@gnu.org>
38         * README: Mention that RelaxNG schema is in etc/ directory.
40         * etc/emacs-wiki-migration.txt: New document that explains how to
41         migrate from emacs-wiki to Muse.
43         * etc/muse.rnc: Increment version number to 1.0.  Fix several
44         nested emphasis and nested lists edge cases.  Move here from
45         examples/.
47         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
48         same thing as C-c C-S-t, since the former works better in the
49         console.  Thanks to Leo for the suggestion.
51         * lisp/muse-publish.el (muse-publish-markup-table)
52         (muse-publish-markup-table-el): Include a newline in the return
53         string, so that paragraph detection does not get confused.
55         * lisp/muse.el (muse-with-temp-buffer): Docfix.
57         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
58         keybinding.
60 2007-06-13  Michael Olson  <mwolson@gnu.org>
62         * etc/IDEAS.muse: Mark three-part-links item as done.
64         * experimental/muse-message.el: Remove guard for muse-define-style
65         calls.
67         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
68         markup rules were being interpreted in reverse order.  This should
69         make implicit interwiki links work properly again.
70         (muse-link-face): Strip anchor from end of a path, so that this
71         works with anchors in interwiki links.
72         (muse-colors-insert-image): Catch error that occurs in Emacs 21
73         when an image does not exist.
75         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
76         anchors.
77         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
78         interwiki links work.  Thanks to Jim Ottaway for the initial
79         implementation.
80         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
81         links work.
83         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
84         about match 0.
85         (muse-handle-explicit-link): Docfix: this does not modify the
86         match data.
87         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
88         that has the regexp in its car.
90 2007-06-12  Michael Olson  <mwolson@gnu.org>
92         * README: Document new etc/ directory.
94         * etc/IDEAS.muse: Install things from new contributors just after
95         the 3.03 release, since I won't have time to review the code
96         before the release.  Move to new etc/ directory.  Slides
97         publishing has been installed.
99         * lisp/muse-latex.el (muse-latex-slides-header): New option that
100         determines the header to use for publishing slides.
101         (muse-latex-lecture-notes-header): New option that determines the
102         header to use for publishing lecture notes.
103         (muse-latex-slides-markup-tags): New option containing tags to use
104         when publishing slides.
105         (muse-latex-permit-contents-tag): Move higher in file.
106         (muse-latex-slide-tag): New function to publish the <slide> tag.
107         ("slides", "slides-pdf"): New publishing styles that create slides
108         using Beamer.
109         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
110         create lecture notes using Beamer.
112         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
113         since otherwise Planner is not happy when `plan' is called during
114         init.  Remove stray quote from autoload snippet.
116 2007-06-11  Michael Olson  <mwolson@gnu.org>
118         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
119         autoload, rather than having it exist at top-level.  Thanks to Leo
120         for the suggestion.
121         (muse-update-file-extension): Docfix.
123 2007-06-10  Michael Olson  <mwolson@gnu.org>
125         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
126         URLs were being removed during publishing.  Thanks to everyone who
127         reported this.
129 2007-06-06  Michael Olson  <mwolson@gnu.org>
131         * lisp/muse-regexps.el (muse-table-line-regexp)
132         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
133         regexps so that they work with XEmacs 21.  Thanks to Adrian
134         Tritschler for the report.
136         * texi/muse.texi: Update copyright years.
137         (HTML): Document muse-xhtml-style-sheet.  Thanks
138         to thorne for noticing.
139         (Development): Change archive year to 2006.  Thanks to Adrian
140         Tritschler for noticing.  So *that's* why some people had the 2005
141         version ....
143 2007-06-05  Michael Olson  <mwolson@gnu.org>
145         * Makefile (install-info): Remove $(MANUAL).info part, since this
146         is taken care of already by texi/Makefile.  Thanks to Leo for the
147         report.
149         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
150         read-only properties to qotd contents, so that they don't get
151         double-escaped.  Thanks to Leo for the report.
153 2007-06-04  Michael Olson  <mwolson@gnu.org>
155         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
156         -- that is, Tramp or ange-ftp -- file, then do not call
157         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
158         Fixes bug #5115.
160         * lisp/muse-html.el (muse-html-insert-contents): Add
161         documentation.  Handle case where heading is read-only, but has
162         muse-contents property.  Remove the muse-contents property for any
163         heading we come across so as to avoid double-including an item in
164         an outer table of contents.
165         (muse-html-denote-headings): New function that denotes whether a
166         heading is not read-only by adding the muse-contents property to
167         it.
168         (muse-html-munge-buffer): If we are not to generate contents,
169         still denote headings, in case some outer layer wants to generate
170         contents for our headings.  This should fix a bug with table of
171         contents and the <include> tag.  Thanks to thorne for the report.
173         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
174         muse-publish-generate-contents and set it to nil.  This should
175         do the right thing when using <include> tags.
177 2007-06-02  Michael Olson  <mwolson@gnu.org>
179         * NEWS: Update for non-inlined image change and support for
180         table.el style tables.
182         * examples/Makefile (clean): Clean backup files.
184         * examples/QuickStart.muse (Images): New section that describes
185         how to inline and not inline images.
187         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
188         touch images that have "URL:" in front of them.
190         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
191         "URL:".  Use the identity function to resolve, since we don't want
192         to rip "URL:" out while publishing, due to some magic that depends
193         on that text.
194         (muse-browse-url-url): New function that browses URLs that have
195         "URL:" in front of them, by removing the "URL:" part and
196         reprocessing the remainder.
198         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
199         (muse-publish-url): Recognize images in the description before
200         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
201         for the suggested workaround.
202         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
203         default value.
204         (muse-publish-classify-url): If target begins with "URL:" return
205         type url.
206         (muse-publish-strip-URL): New function that strips "URL:" from the
207         beginning of a string.  This is used to remove URL: from the link
208         description.  * texi/muse.texi (Markup Strings): Clarify the
209         meanings of image-link, link, and link-and-anchor.
210         (muse-publish-markup-regexps): Move normal table rule to 2350.
211         Rule 2300 is now a regexp that matches table.el-style tables.
212         (muse-publish-markup-functions): Add table-el entry.
213         (muse-publish-table-el-table): New function that given a variant,
214         publishes a table.el-style table using the table in the matched
215         region.
216         (muse-publish-markup-table-el): New function that determines
217         whether the table.el-style table can be published, and what
218         variant to use.
220         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
221         the borders of table.el-style tables.
223         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
224         the table has sufficient whitespace in front of it.
226         * texi/muse.texi (Images): Update for new non-inlined image
227         ability and provide example.
229 2007-05-31  Michael Olson  <mwolson@gnu.org>
231         * NEWS: Add example for setting `muse-html-table-attributes'.
233         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
234         Publish multiple tbody tags if there is a horizontal separator
235         after the heading, because that is valid HTML after all.
237 2007-05-30  Michael Olson  <mwolson@gnu.org>
239         * NEWS: Update.
241         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
242         horizontal separators in tables.
244         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
245         horizontal separators in tables.
246         (muse-publish-trim-table): New function to remove initial and
247         final blank columns from a table.
248         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
249         with horizontal separators, aka "hlines".
251         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
252         defines the syntax of a horizontal separator in a table.
254         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
255         horizontal separators.  Publish header lines correctly.
257         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
258         where we have nonnumbers as a row type.  This ignores sorting for
259         hlines.
260         (muse-xml-markup-table): Deal with horizontal separators.  If the
261         markup supports table groups, make hlines separate table groups.
262         Otherwise, ignore them, since they cannot be marked up.  Together,
263         these changes allow us to support orgtbl-mode tables.  Thanks to
264         Carsten Dominik for the suggestion.
266 2007-05-26  Michael Olson  <mwolson@gnu.org>
268         * lisp/muse-project.el (muse-project-alist-styles): Allow for
269         other things to be added to each generated style as well.  For
270         example, this permits me to add
271         :base-url "http://blog.mwolson.org/"
272         for my blog.
274 2007-05-25  Michael Olson  <mwolson@gnu.org>
276         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
277         way of building Debian packages that preserves the original
278         release tarball and is more modular.
279         (debrevision, debrelease): Remove.
280         (dist): No need to remove the debian/ directory, since it is now
281         in its own branch.
282         (debprepare): Copy over debian/ directory properly.
284         * NEWS: Update.
286         * examples/Makefile (clean): Remove QuickStart.texi, in case
287         something went wrong during the build.
288         (%.pdf): Publish the example using the normal pdf style, rather
289         than info-pdf.
291         * examples/QuickStart.muse: Add myself to the authors list.
293         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
294         sufficient blank lines before the tag.
296         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
297         we have sufficient blank lines before the tag.
299         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
300         specifies the program to call in order to generate PDF content
301         from LaTeX content.
302         (muse-latex-pdf-cruft): New option that specifies the extensions
303         of files to remove after generating PDF output successfully.
304         (muse-latex-pdf-generate): Use these new options.  Work around the
305         annoying edge case where a tilde character exists in the filename
306         or directory path -- now this can only error out when the relative
307         path from the output file to the source file contains a tilde,
308         which is far less likely.
310         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
311         muse-publish-ensure-block here after all, because <lisp> et al may
312         occur inline as part of other things.
314         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
315         occur after full-document escaping, rather than before.  This
316         prevents automatically-inserted Texinfo code from being escaped.
317         (muse-texinfo-pdf-generate): Rewrite to call
318         `muse-latex-pdf-generate' with pdftex as the generating binary,
319         because texi2pdf suffers irredeemably from the tilde edge case
320         mentioned above.
322 2007-05-24  Michael Olson  <mwolson@gnu.org>
324         * NEWS: Drop vague entries and position interesting entries closer
325         to the top of each section.  Update for new changes.
327         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
328         and bzr metadata directories to the list of things to ignore.
330         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
331         `muse-publish-ensure-block-tag', since we will use it for more
332         than just tags.
333         (muse-publish-markup-list, muse-publish-verse-tag)
334         (muse-publish-quote-tag, muse-publish-example-tag)
335         (muse-publish-markup-attribute): Use it.  This fixes a bug that
336         can occur when these types of markup occur immediately after a
337         paragraph.  It's good to have defined behavior!
339         * texi/muse.texi (Markup Strings): Mention new argument for
340         link-and-anchor.
342 2007-05-19  Michael Olson  <mwolson@gnu.org>
344         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
345         published footnotes and footnote references.  Thanks to Scott
346         Jaderholm for the idea.
348         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
349         link-and-anchor, on the recommendation of the original submitter.
351 2007-05-14  Michael Olson  <mwolson@gnu.org>
353         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
354         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
355         suggestion.
357         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
358         file extension as the fourth argument.
360         * README, texi/muse.texi (Getting Help and Reporting Bugs):
361         Mention the new muse-el-logs mailing list.
363 2007-05-13  Michael Olson  <mwolson@gnu.org>
365         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
366         "\`" here.  This fixes a problem with publishing custom URLs.
368 2007-05-12  Michael Olson  <mwolson@gnu.org>
370         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
371         update the list if the current buffer is associated with a file.
372         This fixes a bug with M-x muse-publish-region in a temporary
373         buffer.
375 2007-05-01  Michael Olson  <mwolson@gnu.org>
377         * lisp/muse-publish.el (muse-publish-region): Remove read-only
378         properties from the published buffer, so that the results can be
379         manually tweaked.
381 2007-04-23  Michael Olson  <mwolson@gnu.org>
383         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
384         find the footnote that goes with a reference, leave the reference
385         as-is.  This fixes an error where control characters could be
386         placed in a published document.
388 2007-04-22  Michael Olson  <mwolson@gnu.org>
390         * IDEAS.muse: Add muse-slides.el to list of things to include
391         before release.
393         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
394         character.
395         (muse-protocol-find): Find protocols correctly.  Rewrite to use
396         catch/throw.
397         (muse-browse-url): Don't concatenate "\`" here.  Together, this
398         fixes a bug with browsing woman:// links.
400         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
401         where entry-dir has a trailing backslash.
402         (muse-project-publish-file): If a style is malformed, skip it and
403         display a warning message.  This should help people figure out
404         where the problem is.
406 2007-04-21  Michael Olson  <mwolson@gnu.org>
408         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
409         yet-to-be-included "contex" publishing style, use "$$" rather
410         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
411         this out.
413 2007-04-20  Michael Olson  <mwolson@gnu.org>
415         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
416         variable that causes the :before and :before-end hooks to be
417         ignored when non-nil.
418         (muse-publish-markup-region): Use it.  Also, guarantee that point
419         is at end of region after publishing.
420         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
421         variable.
423 2007-04-19  Michael Olson  <mwolson@gnu.org>
425         * IDEAS.muse: New file containing a list of ideas we have for new
426         features, or patches that have yet to be applied.
428         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
429         be so confusing.
431         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
432         docstring.
434         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
435         <literal> tags with muse-publish-literal-tag, rather than
436         muse-publish-mark-read-only.
437         (muse-publish-literal-tag): New function that publishes the
438         <literal> tag.  It adds the ability to add the optional "style"
439         and "exact" elements, which cause text to only be included if the
440         current publishing style matches some criteria.  The text will be
441         removed otherwise.  Thanks to Jim Ottaway for the implementation.
442         (muse-publish-mark-up-tag): Let the <markup> tag take the
443         additional optional elements "style" and "exact", with much the
444         same effect as the <literal> improvements, but after calling
445         "function" or publishing the region first.  Make it possible to
446         put <content> tags in <markup> regions in HTML publishing.
448 2007-04-12  Michael Olson  <mwolson@gnu.org>
450         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
451         that a blank line always exists after a heading.  This fixes a bug
452         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
453         for the report.
455         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
456         detection regexp to that which is used in Docbook and HTML
457         publishing styles.
459 2007-04-02  Michael Olson  <mwolson@gnu.org>
461         * README (muse-el-announce): Make a listing of mailing lists,
462         rather than pointing to the old EmacsWikiMailingList page.  Thanks
463         to Andreas Roehler for noticing.
465 2007-04-01  Michael Olson  <mwolson@gnu.org>
467         * lisp/muse-publish.el (muse-publish-date-format): Add
468 `       customization type and group.
469         (muse-publish-region): New interactive function that publishes a
470         region to a new buffer.
472         * texi/muse.texi: Use "document" rather than "manual".
474 2007-03-31  Michael Olson  <mwolson@gnu.org>
476         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
477         expression (muse-style-derived-p "latex" (muse-style "latex"))
478         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
479         for the catch.
481 2007-02-25  Michael Olson  <mwolson@gnu.org>
483         * lisp/muse-publish.el (muse-publish-date-format): New option that
484         specifies how to format the date when publishing Muse pages.
485         Thanks to Thomas Gehrlein for the suggestion.
486         (muse-publish-markup-buffer): Use it.
488 2007-02-23  Michael Olson  <mwolson@gnu.org>
490         * README: Add Prerequisites section to mention which versions of
491         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
492         the suggestion.  Update link destination for Muse's page on
493         emacswiki.org.
495 2007-02-15  Michael Olson  <mwolson@gnu.org>
497         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
498         be not just at beginning of line.  This fixes an error with the
499         <class> tag.  Thanks to Jim Pivarski for the report.
501 2007-02-14  Michael Olson  <mwolson@gnu.org>
503         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
504         whether something is an image before checking to see if it is a
505         URL.  Thanks to ITSUMI ken-ichi for the report.
507 2007-02-13  Michael Olson  <mwolson@gnu.org>
509         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
510         comments that have no text better.  Thanks to fang.lungang for the
511         report.
512         (muse-publish-markup-comment): Deal with case where no comment
513         text is provided.
515 2007-01-23  Michael Olson  <mwolson@gnu.org>
517         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
518         that ensures that at least one blank line exists at the given
519         position.  This is used to avoid paragraph detection problems when
520         block-level tags like <example> immediately follow a paragraph.
521         Thanks to Hans Ekbrand for the report.
522         (muse-publish-example-tag): Use it.
524 2007-01-19  Michael Olson  <mwolson@gnu.org>
526         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
527         previous blank line if we are publishing in Latex.  Otherwise,
528         that wouldn't be the right thing, so leave it be.
530 2007-01-17  Michael Olson  <mwolson@gnu.org>
532         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
533         multiple centered math lines on the same line; keep them on
534         different lines.  Use \[ math-text \] instead of $$math-text$$,
535         since the latter seems to be deprecated.  Thanks to Jody Klymak
536         for the pointer.
538 2007-01-15  Michael Olson  <mwolson@gnu.org>
540         * lisp/muse-latex2png.el (muse-publish-latex-tag)
541         (muse-publish-math-tag): Publish region read-only when current
542         style is Latex-derived, so that Muse does not escape it.
543         (muse-publish-math-tag): If 6 or more spaces come before the tag,
544         surround the region with "$$" rather than "$".  This is the Muse
545         syntax for something centered, so it should be a good fit.
547 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
549         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
550         protocol.
551         (muse-browse-url-man): Change man page URL format.  The code is
552         simpler when the section is left inside parentheses.
553         (muse-browse-url-woman): New function.
555 2007-01-14  Michael Olson  <mwolson@gnu.org>
557         * AUTHORS: Bookkeeping.
559         * lisp/muse-latex2png.el: Associate <math> tag with
560         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
561         Klymak for the report.
562         (muse-publish-math-tag): Use muse-insert-markup for the "$"
563         characters, so they don't get escaped.
565         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
566         make muse-style-derived-p easier to implement.
567         (muse-style-derived-p): If the style is not provided, fetch it and
568         check to see if the car is a string.  This should fix the other
569         problem that was reported.
571         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
572         explains a case where setting muse-file-extension to nil can cause
573         unexpected behavior.
575 2007-01-09  Michael Olson  <mwolson@gnu.org>
577         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
578         comments higher priority than tags.  Thanks to Stefan van der Walt
579         for the report.
581 2007-01-08  Michael Olson  <mwolson@gnu.org>
583         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
584         argument rather than calling match-string.  Thanks to Stefan van
585         der Walt for the report.  This should fix a bug with publishing
586         <include file="..." markup="example">.
588 2007-01-06  Michael Olson  <mwolson@gnu.org>
590         * Makefile (debclean): New rule split from debrevision and
591         debrelease.
592         (debbuild): Take distributor into account.
594         * Makefile.defs (DISTRIBUTOR): New field that tracks what
595         vendor/distributor we are building for.
597 2007-01-04  Michael Olson  <mwolson@gnu.org>
599         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
600         line.
602         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
603         point to muse-publish-src-tag by default, since <src> and
604         <example> have different parameters.
605         (muse-publish-src-tag): New barebones publishing function for
606         <src>, which is superseded when publishing in an HTML-based style.
608 2007-01-03  Michael Olson  <mwolson@gnu.org>
610         * lisp/muse-html.el (muse-html-src-tag): Document.
612         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
613         command that calls a given tag on the current buffer.  Attributes
614         may be passed.
615         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
616         it.
617         (muse-publish-srcify-buffer): New function that allows
618         markup="src" in the <include> tag.
619         (muse-publish-get-and-delete-attr): New macro that gets an
620         attribute from a list and removes the first instance of that
621         attribute from said list.
622         (muse-publish-markup-attribute): Handle markup="src".
623         (muse-publish-command-tag, muse-publish-include-tag): Use
624         muse-publish-get-and-delete-attr.  This allows the remaining
625         attributes to be passed.
627         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
628         as changes to <command> and <include>.
630 2006-12-30  Michael Olson  <mwolson@gnu.org>
632         * NEWS: Update.
634         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
635         from muse-publish-math-tag to avoid conflict with
636         muse-latex2png.el.
638 2006-12-23  Michael Olson  <mwolson@gnu.org>
640         * lisp/muse-latex2png.el: Update header, since this has been
641         rewritten sufficiently to not need an assignment from the original
642         author.
643         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
644         (muse-latex2png): Use two underscores to separate prefix and hash.
645         (muse-latex2png-region): New function split from
646         muse-publish-latex-tag that can be used easily by other code.
647         Detect whether we are using an HTML-based publishing style, and
648         insert a simpler markup if we are not.  If we are using a
649         Latex-based publishing style, do not generate an image, and leave
650         the region alone.  Return the path of the generated image, in case
651         other functions want to use this programmatically.
652         (muse-publish-latex-tag): Set a default prefix based on the name
653         of the current file.
654         (muse-publish-math-tag): New tag that surrounds the region with
655         "$" characters, so that it becomes a Latex math region, and then
656         publishes it.
658         * lisp/muse-publish.el (muse-style-derived-p): New function that
659         returns non-nil if a given style, or the current style if omitted,
660         is equal to or derived from the given base style.  This is useful
661         in <lisp> tags, because it allows the user to specify markup that
662         is only to be inserted for one particular style.
664 2006-12-22  Michael Olson  <mwolson@gnu.org>
666         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
667         (muse-html-src-tag): New function which publishes the <src> tag.
668         Thanks to Clinton Ebadi and Charles Wang for the initial
669         implementations.
671         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
673 2006-12-21  Michael Olson  <mwolson@gnu.org>
675         * examples/johnw/muse-johnw.el: Update for preferred
676         muse-derive-style usage.  Rename to muse-init.el.
678         * examples/mwolson/muse-init.el: Update.
680         * lisp/muse-book.el (muse-book-publish): New function split from
681         muse-book-publish-project.  This is used in the definitions for
682         the book-latex and book-pdf styles.
683         (muse-book-publish-p): New function split from muse-book-publish.
684         (muse-book-get-directives): New function that retrieves the
685         publishing directives from the given file.
686         (muse-book-publish): Use muse-book-get-directives to set the title
687         if no title was specified.
689         * lisp/muse-project.el (muse-project): Add :publish-project entry
690         to widget.
691         (muse-read-project, muse-project-find-file): Message fix.
692         (muse-project-publish-file-default): New function split from
693         muse-project-publish-file.
694         (muse-project-publish-file): Allow file-level publishing function
695         to be specified by the :publish element.  The default is
696         muse-project-publish-file-default.
697         (muse-project-publish-default): New function split from
698         muse-project-publish.
699         (muse-project-publish): Allow project-level publishing function to
700         be specified by :publish-project element.  The default is
701         muse-project-publish-default.
703         * lisp/muse-publish.el (muse-publish-file): Message fix.
705         * texi/muse.texi (Book): Mention new way to publish books and
706         provide an example, since the process may be non-obvious.
708 2006-12-20  Michael Olson  <mwolson@gnu.org>
710         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
711         content-modifying code from the rest of
712         muse-docbook-finalize-buffer.
714         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
715         muse-groff-finalize-buffer, since it adds content to the buffer.
717         * lisp/muse-html.el (muse-html-munge-buffer): Split out
718         content-modifying code from the rest of muse-html-finalize-buffer.
719         This fixes a bug when using <include> with <content> tags.
721         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
722         (muse-journal-latex-munge-buffer)
723         (muse-journal-rss-munge-buffer): Rename, since they add content to
724         the buffer.
726         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
727         muse-latex-finalize-buffer, since it adds content to the buffer.
729         * lisp/muse-mode.el:
730         * lisp/muse-project.el:
731         * lisp/muse-publish.el:
732         * lisp/muse.el: Fix recursive load error.
734         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
735         muse-texinfo-finalize-buffer, since it adds content to the buffer.
737         * lisp/muse-wiki.el: Comment cleanup.
739         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
741 2006-12-17  Michael Olson  <mwolson@gnu.org>
743         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
744         Remove the definition of \comment, since Latex already has comment
745         syntax.
746         (muse-latex-markup-strings): Use the Latex comment syntax, rather
747         than our own.  Thanks to Ryan Stutsman for pointing this out.
749 2006-12-02  Michael Olson  <mwolson@gnu.org>
751         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
752         that this can generate a proper table of contents for Planner HTML
753         publishing.
755 2006-12-01  Michael Olson  <mwolson@gnu.org>
757         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
758         using a very old Emacs, avoid an infinite loop that could occur
759         when the regexp is an empty string.
761 2006-11-26  Michael Olson  <mwolson@gnu.org>
763         * NEWS: Bring up to date.
765         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
766         list issues and multiple-stanza verse issues.  This takes care of
767         all of the markup issues I was worried about.
769         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
770         (muse-project-publish-private-files): New option that indicates
771         whether files with private filesystem permissions should be
772         published.  The default is to publish them, since it avoids
773         confusion in new users.
774         (muse-project-private-p): Use it.
776 2006-11-19  Michael Olson  <mwolson@gnu.org>
778         * lisp/muse-project.el (muse-project-resolve-link): If no remote
779         style is found, which means that the link is not a Muse page, do
780         not add a suffix or prefix to it.  This should fix the
781         "[[thing.owl]]" bug that Phillip Lord reported.
783         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
784         removing unused 2nd argument.
786 2006-11-17  Michael Olson  <mwolson@gnu.org>
788         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
789         latex publishing where nested enumerated lists would be squashed
790         together at the end.
792 2006-11-16  Michael Olson  <mwolson@gnu.org>
794         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
795         list embedded in a definition list look right.  This also allows
796         for definitions to be separated from their terms, much like the
797         way HTML does it by default, if the user puts a blank line or a
798         line break between the term and the definition.  If the term and
799         definition are on the same line, they will be that way in the
800         output as well.
802 2006-11-11  Michael Olson  <mwolson@gnu.org>
804         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
805         for the report.
806         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
808 2006-11-07  Michael Olson  <mwolson@gnu.org>
810         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
811         release candidate for Muse 3.03, available.
813         * NEWS: Update.
815 2006-11-06  Michael Olson  <mwolson@gnu.org>
817         * lisp/muse-project.el (muse-project-find-file): Fix bug when
818         following a relative link worked even when the path was incorrect.
820 2006-11-04  John Sullivan  <john@wjsullivan.net>
822         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
823         muse-follow-name-at-point to reduce collisions with other
824         modes (Planner).
826         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
828 2006-11-04  Michael Olson  <mwolson@gnu.org>
830         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
831         optional, and make interwiki delimiter a regular rather than shy
832         group.
833         (muse-wiki-handle-implicit-interwiki): Rename from
834         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
835         (muse-wiki-handle-explicit-interwiki): New function that is
836         smarter about where an explicit link ends in a buffer.  This
837         allows you to refer to page names with invalid Wiki characters,
838         such as underscores and dashes, merely by enclosing them in double
839         brackets.  Also, a bug with recognizing project names too loosely
840         has been fixed.
842 2006-11-03  Michael Olson  <mwolson@gnu.org>
844         * lisp/muse-project.el (muse-project-page-file): Make relative
845         links work as expected, hopefully.
847         * lisp/muse-publish.el (muse-publish-this-file): Set the current
848         output style manually, since it will differ from anything in the
849         publishing style list.
851 2006-10-30  Michael Olson  <mwolson@gnu.org>
853         * lisp/muse-colors.el (muse-colors-markup): Remove note about
854         grouping elements, since that no longer applies.
855         (muse-colors-custom-tags): Explicitly match against
856         muse-tag-regexp to get the match-data set the way we want.  This
857         really fixes the <example> highlighting bug that Stefan reported.
858         (muse-configure-highlighting): Set the original value to the
859         symbol, not the modified value.  Re-use modified rules properly.
861         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
862         introduced yesterday.
864 2006-10-29  Michael Olson  <mwolson@gnu.org>
866         * examples/mwolson: Update my example configuration.
868         * NEWS: Update.
870         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
871         without a regexp in the first position before iterating through
872         them to build muse-colors-vector.  This fixes a bug with the
873         display of <example> tags.  Thanks to Stefan Reichör for the
874         report.
876         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
877         files in projects to be linked to.
879         * lisp/muse-publish.el (muse-publish-url): Allow the original link
880         to serve as a description for a URL, as long as it differs from
881         the destination URL.  This fixes the description of WikPage links
882         in PDF output.
883         (muse-publish-link-file): Check to see whether the given link
884         points at a valid file.  If so, return it.  Otherwise, apply other
885         transforms like prefix and link suffix.
887         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
888         "/", it is a file or directory, not a Muse page.  Thanks to
889         Phillip Lord for the suggestion.
891         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
892         of the current page as the local path, instead of duplicating the
893         remote file's path.  This probably fixes at least one reported
894         bug. since it's quite major.
895         (muse-wiki-update-project-file-regexp)
896         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
897         passed to regexp-opt, since that can cause Emacs 21 to throw an
898         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
899         DOT edu for the report.
900         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
902 2006-10-28  Michael Olson  <mwolson@gnu.org>
904         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
905         (muse-project-resolve-link): If the given style does not have a
906         link-suffix, default to suffix.  This fixes a bug I was noticing
907         when linking to a file that was published in both PDF and HTML
908         form.
910         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
911         function that is used as a callback to determine the initial
912         amount of indentation that the current dl item has.
913         (muse-publish-surround-dl): Use it.  Pass the initial indent value
914         and the post-indent value, instead of trying to determine them
915         both.
916         (muse-publish-strip-list-indentation): New function stripped from
917         `muse-publish-surround-text' for readability.
918         (muse-publish-surround-text): Instead of taking a determine-indent
919         value, take a determine-indent-func function, which is called just
920         after finding the next list item.  If we are asked to determine
921         the amount of indentation, concatenate indent and post-indent the
922         first time around.  This effectively fixes all known definition
923         list issues.
925 2006-10-16  Michael Olson  <mwolson@gnu.org>
927         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
928         other software -- namely, Planner -- can detect whether they are
929         using a version of Muse that supports nested tags.
930         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
931         muse-publish-goto-tag-end.
933         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
934         Adapt for nested tags.
936         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
937         <class> tag is nestable.  Thanks to Phillip Lord for noticing
938         this.
940         * lisp/muse-publish.el (muse-publish-markup-tag)
941         (muse-publish-quote-tag): Use muse-goto-tag-end.
943         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
945 2006-10-15  Michael Olson  <mwolson@gnu.org>
947         * AUTHORS: Bookkeeping.
949         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
950         tag.
952         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
953         tags.
955         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
957         * lisp/muse-import-docbook.el (muse-import-docbook)
958         (muse-import-docbook-files): Docfix.
959         (muse-import-docbook-get-title): Remove cl.el-ism.
961         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
963         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
965         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
967         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
968         (muse-next-reference, muse-previous-reference): Minor whitespace
969         changes.
970         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
971         the suggestion.
973         * lisp/muse-poem.el (muse-poem-tag): Ditto.
975         * lisp/muse-publish.el (muse-publish-markup-tags)
976         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
977         element and make 4th element determine whether tags are nestable.
978         (muse-publish-goto-tag-end): New function that moves to the end of
979         a tag.  Handle nested tags when NESTED is non-nil.
980         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
981         5th element for function.
982         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
983         this on several scenarios, and it seems to work.
984         (muse-publish-surround-text): Accept new optional argument
985         LIST-ITEM which determines the regexp to use for list items.  The
986         default is to use muse-list-item-regexp.
988         * muse.texi (Markup Tags): Mention nestable tags.
990         * NEWS: Mention new files.
992 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
994         * lisp/muse-import-docbook.el: New file that converts Docbook XML
995         into Muse format.
997         * lisp/muse-import-xml.el: New file that provides helper routines
998         for converting XML-ish files to Muse format.
1000 2006-10-10  Michael Olson  <mwolson@gnu.org>
1002         * NEWS: Update for 3.02.7 bugfix release.
1004 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1006         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1007         using the value in the muse #date directive.
1008         (muse-blosxom-use-metadate): New option that determines whether or
1009         not to use the #postdate directive.
1010         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1011         metadate plugin format.
1013 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1015         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1016         recognised URLs.
1018         * muse.texi: Clarify handling of implicit links by mentioning
1019         which characters can prevent Muse from recognizing something as an
1020         implicit link.
1022 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1024         * lisp/muse-mode.el (muse-next-reference)
1025         (muse-previous-reference): Fix bug #6367 by moving point to the
1026         beginning of the link.
1028 2006-09-26  Michael Olson  <mwolson@gnu.org>
1030         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1031         beginning-of-line.  This should fix a bug that was noticed in
1032         recent Emacs 22 builds.
1034         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1035         eval-and-compile block to avoid a compiler warning.
1037 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1039         * lisp/muse-backlink.el (muse-backlink-split-string):
1040         Compatibility with Emacs versions < 22
1041         (muse-backlink-pending): New internal variable
1042         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1043         that backlinks are inserted at the right time.
1044         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1045         for pending backlink, and that this is the targe page.
1046         (muse-backlink-handle-link): Don’t handle the link if we are
1047         already handling one. Return the link as well as the parent links.
1049 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1051         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1052         #6942 - muse-blosxom-new-entry fails when using tags.
1054 2006-09-14  Michael Olson  <mwolson@gnu.org>
1056         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1057         compiler warning.
1059 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1061         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1062         function: Protect all wikiwords from START to END from further
1063         processing.
1064         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1066 2006-09-13  Michael Olson  <mwolson@gnu.org>
1068         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1069         adopted from Jim Ottaway's patch.  It removes links from the
1070         heading, and then marks the region read-only to inhibit WikiWord
1071         detection.
1073 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1075         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1076         special handling for headings.
1077         (muse-texinfo-remove-links): New function that removes explicit
1078         links from the given strings, replacing them with a description.
1080 2006-09-11  Michael Olson  <mwolson@gnu.org>
1082         * muse.texi (Getting Help and Reporting Bugs): Mention the
1083         muse-el-internationalization mailing list.
1085         * lisp/muse.el (muse-path-sans-extension): New function that acts
1086         like file-name-sans-extension, but guarantees to never modify the
1087         directory part of the path.  Thanks to Evan Monroig for
1088         investigating this.
1090         * lisp/muse-book.el (muse-book-publish-project): Use
1091         muse-path-sans-extension instead of file-name-sans-extension.
1093         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1094         Ditto.
1096 2006-08-30  Michael Olson  <mwolson@gnu.org>
1098         * muse.texi (Blosxom Requirements): Fix typo.
1100         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1101         directories for bzr and darcs.
1103         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1104         contrib/pyblosxom/getstamps.py: Update version and headers.
1106 2006-08-27  Michael Olson  <mwolson@gnu.org>
1108         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1109         nil values before they get to mapconcat.  This fixes a lockup when
1110         muse-wiki-match-all-project-files is nil.
1112         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1113         (muse-wiki-ignore-implicit-links-to-current-page)
1114         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1115         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1116         (muse-wiki-publish-small-title-words)
1117         (muse-wiki-publish-pretty-title): Docfix.
1118         (muse-wiki-update-local-wikiword-regexp): Rename from
1119         muse-wiki-update-local-wikiword-regexp.  Set
1120         muse-wiki-project-file-regexp instead of
1121         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1122         take muse-wiki-use-wikiword into account, since this is a
1123         different concept now.
1124         (muse-wiki-update-wikiword-regexp): Remove.
1125         (muse-wiki-wikiword-regexp): In-line the :set function.
1126         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1128 2006-08-26  Michael Olson  <mwolson@gnu.org>
1130         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1131         for indented list items, ignore blank lines.
1133         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1134         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1135         mapconcat.  This should hopefully fix a problem with large amounts
1136         of files with spaces in their name.  Thanks to Greg Detre for the
1137         report.
1139 2006-08-24  Michael Olson  <mwolson@gnu.org>
1141         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1142         numbers from the argument to format-time-string.  This fixes an
1143         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1145 2006-08-18  Michael Olson  <mwolson@gnu.org>
1147         * lisp/muse-project.el (muse-project-file-entries): Since we are
1148         given a full path, match against the filename as well.  This fixes
1149         an issue where backup files were being added to the file alist.
1151         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1152         from muse-html.el.
1154 2006-08-12  Michael Olson  <mwolson@gnu.org>
1156         * Makefile (.PHONY): Don't use line continuations.
1157         (realclean fullclean): Call realclean in subdirs, not distclean.
1158         (distclean): Don't call realclean, since this would wipe out our
1159         autoloads file.
1160         (dist): Use correct path to autoloads file.
1162         * NEWS: Catch up with the latest changes.
1164         * experimental/Makefile (.PHONY): Wrap long line.
1166         * lisp/Makefile (distclean): Do the same thing as "clean", not
1167         "realclean".
1169         * lisp/muse-project.el (muse-project-get-applicable-style):
1170         Indentation tweak.
1171         (muse-project-ignore-regexp, muse-project-recurse-directory):
1172         Docfix.
1173         (muse-project-of-file): Try the ignored files regexp against the
1174         base filename as well as the entire path.
1176         * lisp/muse-publish.el (muse-publish-this-file): Display message
1177         if the buffer is not associated with any file, so that we avoid
1178         errors later on.
1179         (muse-publish-url-desc): New function taken from muse-publish-url
1180         that causes a URL description to be transformed.
1181         (muse-publish-url): Call muse-publish-url-desc on either the
1182         description or the original URL if it will be used as a
1183         description.  Accept the original URL as an argument, in case it
1184         was transformed earlier.
1185         (muse-publish-insert-url): Pass original URL as an argument.
1186         (muse-publish-markup-link): Make this somewhat easier to follow.
1187         Pass original URL as argument.
1188         (muse-publish-get-style): If the same style is used to publish to
1189         two different directories, prompt the user for which directory to
1190         use.
1191         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1192         latest changes.
1193         (muse-publish-markup-url): Pass original URL as an argument.  This
1194         fixes the "nil" description for bare URLs that was in 3.02.91.
1195         Nothing like finding a bug just after completing the announcement
1196         of a release.
1198         * lisp/muse.el: Use defalias whenever convenient.
1199         (muse-version): Set version to 3.02.92 (3.03 RC2).
1201 2006-08-10  Michael Olson  <mwolson@gnu.org>
1203         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1204         style does not derive from any other class, return `t' here.
1205         This, along with the corresponding change to muse-publish.el,
1206         fixes a problem with the table of contents getting inserted
1207         multiple times for custom html-based styles.
1208         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1209         smarter method for table centering that works with XHTML.
1211         * lisp/muse-latex2png.el Rename all functions to have a
1212         "muse-latex2png" prefix.  Turn all variables into customizable
1213         options in the muse-latex2png group.
1214         (muse-latex2png-img-dest): New option specifying where to place
1215         the images.
1216         (muse-latex2png-template): New option containing the template to
1217         use for the surrounding LaTeX code.
1218         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1219         compliance.
1220         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1221         messages when something else goes wrong.  Create the image
1222         subdirectory if it doesn't exist already -- thanks to Christian
1223         Straßer for the report.  Expand the filename properly.
1224         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1225         and filename expansion.
1226         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1227         the default directory properly.
1229         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1230         do not run the same function twice.
1232 2006-08-08  Michael Olson  <mwolson@gnu.org>
1234         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1235         introduced wrong-type-argument error.
1237         * lisp/muse-html.el (muse-html-markup-strings)
1238         (muse-xhtml-markup-string): Cause table definition that contains
1239         image to be center-aligned.  This should fix an issue with images
1240         not being centered when captions are very long.
1242         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1243         whitespace from fields once we have split them up.
1245         * lisp/muse.el (muse-trim-whitespace): New function that strips
1246         leading and trailing whitespace from a string.
1248 2006-08-07  Michael Olson  <mwolson@gnu.org>
1250         * NEWS: Update through patch-95.
1252         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1253         to match the tags.
1254         (muse-colors-explicit-link): Show images in link descriptions if
1255         inlined images are enabled.
1257         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1258         definitions for 'image-with-desc, 'image, and 'image-link.
1259         (muse-docbook-markup-paragraph): If an inlined image begins a
1260         paragraph, insert <para> before it.
1261         (muse-docbook-fixup-images): New function that upper-cases the
1262         "format" attribute of the <imagedata> tag.
1263         (muse-docbook-finalize-buffer): Call it.
1265         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1266         with descriptions as centered tables, with a centered caption
1267         underneath.  The resulting look is consistent with the way that
1268         they are published in the LaTeX style.  Thanks to Jody Klymak for
1269         the suggestion.
1270         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1271         valid way to center a table.
1272         (muse-html-markup-paragraph): Use class="image" instead of
1273         "image-link" for paragraphs that start with an embedded image.
1275         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1276         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1277         suggestion.
1278         (muse-latex-markup-specials-image): New option that enables
1279         escaping of specials in images.  This was split from the URL
1280         specials.
1281         (muse-latex-decide-specials): Handle 'image context.
1282         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1283         of relying on caller to do this for us.
1285         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1286         'image context.
1287         (muse-publish-url): Use 'image context for images.  Use 'image
1288         instead of 'image-link and 'image-link in place of
1289         'url-with-image.  Separate the image file from its extension so
1290         that docbook and texinfo can publish images correctly.
1291         (muse-publish-markup-link): Don't force a description if one is
1292         not given.  This fixes a bug where images without descriptions
1293         were being published as 'image-with-desc instead of 'image.
1295         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1296         images the same as URLs.
1297         (muse-texinfo-markup-strings): Improve image markup to achieve an
1298         effect similar to that of the LaTeX publishing style.  Simplify
1299         'url string.
1301         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1303         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1304         when we have to use the custom version of this function.
1306         * muse.texi (Images): Explain how to toggle inlining of images and
1307         give better examples.  Mention captions and that captioned images
1308         should not be used inside of text paragraphs.
1309         (Markup Strings): Bring up-to-date with the changes made since
1310         3.02.
1312 2006-08-06  Michael Olson  <mwolson@gnu.org>
1314         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1315         in the Emacs source tree.
1317         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1318         in the Emacs source tree.
1320         * ChangeLog.3: New file created from the old ChangeLog.
1322         * Makefile.defs (VERSION): Set to 3.02.91.
1324         * NEWS: Update through patch-84.
1326         * lisp/muse.el (muse-version): Set to 3.02.91.
1328         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1329         attributes.
1330         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1331         delimiter are instead of hard-coding it.
1333         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1334         (muse-mode): Make filling definition lists work better.  This
1335         should fix #5359.
1337         * lisp/muse-publish.el (muse-style-run-hooks): Use
1338         `muse-style-element' instead of `muse-get-keyword' here.  This
1339         should fix #6399.
1341         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1343 See ChangeLog.3 for earlier changes.
1345 ;; Local Variables:
1346 ;; coding: utf-8
1347 ;; End: