muse-html: Add xhtml1.1 style
[muse-el.git] / ChangeLog
blobbffba19fa2a89414ff25d8c8fa2cc12775463684
1 2007-06-18  Michael Olson  <mwolson@gnu.org>
3         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
4         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
5         1.1 specific markup strings.
6         (muse-html-insert-anchor): Use 'anchor string, rather than
7         hard-coding it.  Thanks to Chris Corsair for the suggestion.
8         ("xhtml1.0"): New style that is an alias for the xhtml style.
9         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
11 2007-06-17  Michael Olson  <mwolson@gnu.org>
13         * examples/QuickStart.muse: Make images local so that the Info
14         version of this document works.  Add <example> for the Literal
15         paragraphs chapter, so that it is clear what is happening.
17         * Makefile: Add elpa target, which is used for building an ELPA
18         package for Muse.
20         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
21         building ELPA packages.
23         * examples/Makefile (%.html, %.pdf, %.info): Add message to
24         indicate what we are publishing.
25         (realclean distclean fullclean): Remove all TeX crud.
27         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
28         that the Info version of QuickStart can publish correctly.
30         * lisp/muse-latex.el (muse-latex-slides-header)
31         (muse-latex-lecture-notes-header): Docfix.
33         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
34         the list of things to ignore.
36         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
37         variable.
39         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
40         default to nil, since texinfmt.el is a serious nuisance.
41         (muse-texinfo-markup-strings): Add newlines to begin-example and
42         end-example.
43         (muse-texinfo-decide-specials): Also escape URL-type specials in a
44         whole slew of other contexts.
46         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
47         muse-xml.
49         * lisp/muse-xml.el (muse-xml-footer): Docfix.
51         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
53 2007-06-16  Michael Olson  <mwolson@gnu.org>
55         * etc/IDEAS.muse: Add some ideas from David D. Smith.
57         * examples/QuickStart.muse: Overhaul.
59         * lisp/muse-project.el (muse-project): Call the last part of a
60         muse-project-alist entry "Output styles" rather than "styles".
62         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
63         where we have a pipe character at the beginning of line.
65         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
66         causing tables to not be sorted at all.
68         * texi/muse.texi: Overhaul.  It would be too time-consuming to
69         list all of the changes here.  The "Getting Started" and
70         "Projects" chapters, in particular, were heavily revised.
72 2007-06-15  Michael Olson  <mwolson@gnu.org>
74         * NEWS: Update.
76         * examples/QuickStart.muse: Mention new features.
78         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
79         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
80         terminal, and C-c TAB is more important.  Most people will not
81         want to toggle images on and off that often.
83         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
84         C-i as well, so that it works in the terminal.
86         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
87         look a bit tidier when removing the region.
89         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
90         list regexp part before other parts.
91         (muse-ol-item-regexp): New regexp that specifies how to match an
92         ordered list item.
93         (muse-ul-item-regexp): New regexp that specifies how to match an
94         unordered list item.
95         (muse-table-field-regexp): New regexp that specifies how to match
96         a definition list entry.
98         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
99         lack of support for @headitem in texinfmt.el.
101         * lisp/muse.el: Wrap muse-line-beginning-position and
102         muse-line-end-position in `eval-and-compile', since they are now
103         used in muse.el.
104         (muse-list-item-type): Use a simpler algorithm for detecting which
105         kind of list item we have.  This fixes a bug where a number in a
106         definition list term was being detected incorrectly as an ordered
107         list item.  Fixes bug #6250.
108         (muse-forward-list-item): Get the entire line with the list item.
109         For some reason, Emacs 21 was not populating match 2 correctly,
110         unlike Emacs 22, so this workaround was needed.
112         * texi/muse.texi: (Keystroke Summary): Remove C-c
113         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
114         alternative keybinding to the C-c TAB stuff.  Mention
115         muse-colors-toggle-inline-images.
117 2007-06-14  Michael Olson  <mwolson@gnu.org>
119         * README: Mention that RelaxNG schema is in etc/ directory.
121         * etc/emacs-wiki-migration.txt: New document that explains how to
122         migrate from emacs-wiki to Muse.
124         * etc/muse.rnc: Increment version number to 1.0.  Fix several
125         nested emphasis and nested lists edge cases.  Move here from
126         examples/.
128         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
129         same thing as C-c C-S-t, since the former works better in the
130         console.  Thanks to Leo for the suggestion.
132         * lisp/muse-publish.el (muse-publish-markup-table)
133         (muse-publish-markup-table-el): Include a newline in the return
134         string, so that paragraph detection does not get confused.
136         * lisp/muse.el (muse-with-temp-buffer): Docfix.
138         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
139         keybinding.
141 2007-06-13  Michael Olson  <mwolson@gnu.org>
143         * etc/IDEAS.muse: Mark three-part-links item as done.
145         * experimental/muse-message.el: Remove guard for muse-define-style
146         calls.
148         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
149         markup rules were being interpreted in reverse order.  This should
150         make implicit interwiki links work properly again.
151         (muse-link-face): Strip anchor from end of a path, so that this
152         works with anchors in interwiki links.
153         (muse-colors-insert-image): Catch error that occurs in Emacs 21
154         when an image does not exist.
156         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
157         anchors.
158         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
159         interwiki links work.  Thanks to Jim Ottaway for the initial
160         implementation.
161         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
162         links work.
164         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
165         about match 0.
166         (muse-handle-explicit-link): Docfix: this does not modify the
167         match data.
168         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
169         that has the regexp in its car.
171 2007-06-12  Michael Olson  <mwolson@gnu.org>
173         * README: Document new etc/ directory.
175         * etc/IDEAS.muse: Install things from new contributors just after
176         the 3.03 release, since I won't have time to review the code
177         before the release.  Move to new etc/ directory.  Slides
178         publishing has been installed.
180         * lisp/muse-latex.el (muse-latex-slides-header): New option that
181         determines the header to use for publishing slides.
182         (muse-latex-lecture-notes-header): New option that determines the
183         header to use for publishing lecture notes.
184         (muse-latex-slides-markup-tags): New option containing tags to use
185         when publishing slides.
186         (muse-latex-permit-contents-tag): Move higher in file.
187         (muse-latex-slide-tag): New function to publish the <slide> tag.
188         ("slides", "slides-pdf"): New publishing styles that create slides
189         using Beamer.
190         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
191         create lecture notes using Beamer.
193         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
194         since otherwise Planner is not happy when `plan' is called during
195         init.  Remove stray quote from autoload snippet.
197 2007-06-11  Michael Olson  <mwolson@gnu.org>
199         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
200         autoload, rather than having it exist at top-level.  Thanks to Leo
201         for the suggestion.
202         (muse-update-file-extension): Docfix.
204 2007-06-10  Michael Olson  <mwolson@gnu.org>
206         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
207         URLs were being removed during publishing.  Thanks to everyone who
208         reported this.
210 2007-06-06  Michael Olson  <mwolson@gnu.org>
212         * lisp/muse-regexps.el (muse-table-line-regexp)
213         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
214         regexps so that they work with XEmacs 21.  Thanks to Adrian
215         Tritschler for the report.
217         * texi/muse.texi: Update copyright years.
218         (HTML): Document muse-xhtml-style-sheet.  Thanks
219         to thorne for noticing.
220         (Development): Change archive year to 2006.  Thanks to Adrian
221         Tritschler for noticing.  So *that's* why some people had the 2005
222         version ....
224 2007-06-05  Michael Olson  <mwolson@gnu.org>
226         * Makefile (install-info): Remove $(MANUAL).info part, since this
227         is taken care of already by texi/Makefile.  Thanks to Leo for the
228         report.
230         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
231         read-only properties to qotd contents, so that they don't get
232         double-escaped.  Thanks to Leo for the report.
234 2007-06-04  Michael Olson  <mwolson@gnu.org>
236         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
237         -- that is, Tramp or ange-ftp -- file, then do not call
238         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
239         Fixes bug #5115.
241         * lisp/muse-html.el (muse-html-insert-contents): Add
242         documentation.  Handle case where heading is read-only, but has
243         muse-contents property.  Remove the muse-contents property for any
244         heading we come across so as to avoid double-including an item in
245         an outer table of contents.
246         (muse-html-denote-headings): New function that denotes whether a
247         heading is not read-only by adding the muse-contents property to
248         it.
249         (muse-html-munge-buffer): If we are not to generate contents,
250         still denote headings, in case some outer layer wants to generate
251         contents for our headings.  This should fix a bug with table of
252         contents and the <include> tag.  Thanks to thorne for the report.
254         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
255         muse-publish-generate-contents and set it to nil.  This should
256         do the right thing when using <include> tags.
258 2007-06-02  Michael Olson  <mwolson@gnu.org>
260         * NEWS: Update for non-inlined image change and support for
261         table.el style tables.
263         * examples/Makefile (clean): Clean backup files.
265         * examples/QuickStart.muse (Images): New section that describes
266         how to inline and not inline images.
268         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
269         touch images that have "URL:" in front of them.
271         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
272         "URL:".  Use the identity function to resolve, since we don't want
273         to rip "URL:" out while publishing, due to some magic that depends
274         on that text.
275         (muse-browse-url-url): New function that browses URLs that have
276         "URL:" in front of them, by removing the "URL:" part and
277         reprocessing the remainder.
279         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
280         (muse-publish-url): Recognize images in the description before
281         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
282         for the suggested workaround.
283         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
284         default value.
285         (muse-publish-classify-url): If target begins with "URL:" return
286         type url.
287         (muse-publish-strip-URL): New function that strips "URL:" from the
288         beginning of a string.  This is used to remove URL: from the link
289         description.  * texi/muse.texi (Markup Strings): Clarify the
290         meanings of image-link, link, and link-and-anchor.
291         (muse-publish-markup-regexps): Move normal table rule to 2350.
292         Rule 2300 is now a regexp that matches table.el-style tables.
293         (muse-publish-markup-functions): Add table-el entry.
294         (muse-publish-table-el-table): New function that given a variant,
295         publishes a table.el-style table using the table in the matched
296         region.
297         (muse-publish-markup-table-el): New function that determines
298         whether the table.el-style table can be published, and what
299         variant to use.
301         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
302         the borders of table.el-style tables.
304         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
305         the table has sufficient whitespace in front of it.
307         * texi/muse.texi (Images): Update for new non-inlined image
308         ability and provide example.
310 2007-05-31  Michael Olson  <mwolson@gnu.org>
312         * NEWS: Add example for setting `muse-html-table-attributes'.
314         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
315         Publish multiple tbody tags if there is a horizontal separator
316         after the heading, because that is valid HTML after all.
318 2007-05-30  Michael Olson  <mwolson@gnu.org>
320         * NEWS: Update.
322         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
323         horizontal separators in tables.
325         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
326         horizontal separators in tables.
327         (muse-publish-trim-table): New function to remove initial and
328         final blank columns from a table.
329         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
330         with horizontal separators, aka "hlines".
332         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
333         defines the syntax of a horizontal separator in a table.
335         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
336         horizontal separators.  Publish header lines correctly.
338         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
339         where we have nonnumbers as a row type.  This ignores sorting for
340         hlines.
341         (muse-xml-markup-table): Deal with horizontal separators.  If the
342         markup supports table groups, make hlines separate table groups.
343         Otherwise, ignore them, since they cannot be marked up.  Together,
344         these changes allow us to support orgtbl-mode tables.  Thanks to
345         Carsten Dominik for the suggestion.
347 2007-05-26  Michael Olson  <mwolson@gnu.org>
349         * lisp/muse-project.el (muse-project-alist-styles): Allow for
350         other things to be added to each generated style as well.  For
351         example, this permits me to add
352         :base-url "http://blog.mwolson.org/"
353         for my blog.
355 2007-05-25  Michael Olson  <mwolson@gnu.org>
357         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
358         way of building Debian packages that preserves the original
359         release tarball and is more modular.
360         (debrevision, debrelease): Remove.
361         (dist): No need to remove the debian/ directory, since it is now
362         in its own branch.
363         (debprepare): Copy over debian/ directory properly.
365         * NEWS: Update.
367         * examples/Makefile (clean): Remove QuickStart.texi, in case
368         something went wrong during the build.
369         (%.pdf): Publish the example using the normal pdf style, rather
370         than info-pdf.
372         * examples/QuickStart.muse: Add myself to the authors list.
374         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
375         sufficient blank lines before the tag.
377         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
378         we have sufficient blank lines before the tag.
380         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
381         specifies the program to call in order to generate PDF content
382         from LaTeX content.
383         (muse-latex-pdf-cruft): New option that specifies the extensions
384         of files to remove after generating PDF output successfully.
385         (muse-latex-pdf-generate): Use these new options.  Work around the
386         annoying edge case where a tilde character exists in the filename
387         or directory path -- now this can only error out when the relative
388         path from the output file to the source file contains a tilde,
389         which is far less likely.
391         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
392         muse-publish-ensure-block here after all, because <lisp> et al may
393         occur inline as part of other things.
395         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
396         occur after full-document escaping, rather than before.  This
397         prevents automatically-inserted Texinfo code from being escaped.
398         (muse-texinfo-pdf-generate): Rewrite to call
399         `muse-latex-pdf-generate' with pdftex as the generating binary,
400         because texi2pdf suffers irredeemably from the tilde edge case
401         mentioned above.
403 2007-05-24  Michael Olson  <mwolson@gnu.org>
405         * NEWS: Drop vague entries and position interesting entries closer
406         to the top of each section.  Update for new changes.
408         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
409         and bzr metadata directories to the list of things to ignore.
411         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
412         `muse-publish-ensure-block-tag', since we will use it for more
413         than just tags.
414         (muse-publish-markup-list, muse-publish-verse-tag)
415         (muse-publish-quote-tag, muse-publish-example-tag)
416         (muse-publish-markup-attribute): Use it.  This fixes a bug that
417         can occur when these types of markup occur immediately after a
418         paragraph.  It's good to have defined behavior!
420         * texi/muse.texi (Markup Strings): Mention new argument for
421         link-and-anchor.
423 2007-05-19  Michael Olson  <mwolson@gnu.org>
425         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
426         published footnotes and footnote references.  Thanks to Scott
427         Jaderholm for the idea.
429         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
430         link-and-anchor, on the recommendation of the original submitter.
432 2007-05-14  Michael Olson  <mwolson@gnu.org>
434         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
435         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
436         suggestion.
438         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
439         file extension as the fourth argument.
441         * README, texi/muse.texi (Getting Help and Reporting Bugs):
442         Mention the new muse-el-logs mailing list.
444 2007-05-13  Michael Olson  <mwolson@gnu.org>
446         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
447         "\`" here.  This fixes a problem with publishing custom URLs.
449 2007-05-12  Michael Olson  <mwolson@gnu.org>
451         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
452         update the list if the current buffer is associated with a file.
453         This fixes a bug with M-x muse-publish-region in a temporary
454         buffer.
456 2007-05-01  Michael Olson  <mwolson@gnu.org>
458         * lisp/muse-publish.el (muse-publish-region): Remove read-only
459         properties from the published buffer, so that the results can be
460         manually tweaked.
462 2007-04-23  Michael Olson  <mwolson@gnu.org>
464         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
465         find the footnote that goes with a reference, leave the reference
466         as-is.  This fixes an error where control characters could be
467         placed in a published document.
469 2007-04-22  Michael Olson  <mwolson@gnu.org>
471         * IDEAS.muse: Add muse-slides.el to list of things to include
472         before release.
474         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
475         character.
476         (muse-protocol-find): Find protocols correctly.  Rewrite to use
477         catch/throw.
478         (muse-browse-url): Don't concatenate "\`" here.  Together, this
479         fixes a bug with browsing woman:// links.
481         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
482         where entry-dir has a trailing backslash.
483         (muse-project-publish-file): If a style is malformed, skip it and
484         display a warning message.  This should help people figure out
485         where the problem is.
487 2007-04-21  Michael Olson  <mwolson@gnu.org>
489         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
490         yet-to-be-included "contex" publishing style, use "$$" rather
491         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
492         this out.
494 2007-04-20  Michael Olson  <mwolson@gnu.org>
496         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
497         variable that causes the :before and :before-end hooks to be
498         ignored when non-nil.
499         (muse-publish-markup-region): Use it.  Also, guarantee that point
500         is at end of region after publishing.
501         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
502         variable.
504 2007-04-19  Michael Olson  <mwolson@gnu.org>
506         * IDEAS.muse: New file containing a list of ideas we have for new
507         features, or patches that have yet to be applied.
509         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
510         be so confusing.
512         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
513         docstring.
515         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
516         <literal> tags with muse-publish-literal-tag, rather than
517         muse-publish-mark-read-only.
518         (muse-publish-literal-tag): New function that publishes the
519         <literal> tag.  It adds the ability to add the optional "style"
520         and "exact" elements, which cause text to only be included if the
521         current publishing style matches some criteria.  The text will be
522         removed otherwise.  Thanks to Jim Ottaway for the implementation.
523         (muse-publish-mark-up-tag): Let the <markup> tag take the
524         additional optional elements "style" and "exact", with much the
525         same effect as the <literal> improvements, but after calling
526         "function" or publishing the region first.  Make it possible to
527         put <content> tags in <markup> regions in HTML publishing.
529 2007-04-12  Michael Olson  <mwolson@gnu.org>
531         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
532         that a blank line always exists after a heading.  This fixes a bug
533         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
534         for the report.
536         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
537         detection regexp to that which is used in Docbook and HTML
538         publishing styles.
540 2007-04-02  Michael Olson  <mwolson@gnu.org>
542         * README (muse-el-announce): Make a listing of mailing lists,
543         rather than pointing to the old EmacsWikiMailingList page.  Thanks
544         to Andreas Roehler for noticing.
546 2007-04-01  Michael Olson  <mwolson@gnu.org>
548         * lisp/muse-publish.el (muse-publish-date-format): Add
549 `       customization type and group.
550         (muse-publish-region): New interactive function that publishes a
551         region to a new buffer.
553         * texi/muse.texi: Use "document" rather than "manual".
555 2007-03-31  Michael Olson  <mwolson@gnu.org>
557         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
558         expression (muse-style-derived-p "latex" (muse-style "latex"))
559         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
560         for the catch.
562 2007-02-25  Michael Olson  <mwolson@gnu.org>
564         * lisp/muse-publish.el (muse-publish-date-format): New option that
565         specifies how to format the date when publishing Muse pages.
566         Thanks to Thomas Gehrlein for the suggestion.
567         (muse-publish-markup-buffer): Use it.
569 2007-02-23  Michael Olson  <mwolson@gnu.org>
571         * README: Add Prerequisites section to mention which versions of
572         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
573         the suggestion.  Update link destination for Muse's page on
574         emacswiki.org.
576 2007-02-15  Michael Olson  <mwolson@gnu.org>
578         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
579         be not just at beginning of line.  This fixes an error with the
580         <class> tag.  Thanks to Jim Pivarski for the report.
582 2007-02-14  Michael Olson  <mwolson@gnu.org>
584         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
585         whether something is an image before checking to see if it is a
586         URL.  Thanks to ITSUMI ken-ichi for the report.
588 2007-02-13  Michael Olson  <mwolson@gnu.org>
590         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
591         comments that have no text better.  Thanks to fang.lungang for the
592         report.
593         (muse-publish-markup-comment): Deal with case where no comment
594         text is provided.
596 2007-01-23  Michael Olson  <mwolson@gnu.org>
598         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
599         that ensures that at least one blank line exists at the given
600         position.  This is used to avoid paragraph detection problems when
601         block-level tags like <example> immediately follow a paragraph.
602         Thanks to Hans Ekbrand for the report.
603         (muse-publish-example-tag): Use it.
605 2007-01-19  Michael Olson  <mwolson@gnu.org>
607         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
608         previous blank line if we are publishing in Latex.  Otherwise,
609         that wouldn't be the right thing, so leave it be.
611 2007-01-17  Michael Olson  <mwolson@gnu.org>
613         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
614         multiple centered math lines on the same line; keep them on
615         different lines.  Use \[ math-text \] instead of $$math-text$$,
616         since the latter seems to be deprecated.  Thanks to Jody Klymak
617         for the pointer.
619 2007-01-15  Michael Olson  <mwolson@gnu.org>
621         * lisp/muse-latex2png.el (muse-publish-latex-tag)
622         (muse-publish-math-tag): Publish region read-only when current
623         style is Latex-derived, so that Muse does not escape it.
624         (muse-publish-math-tag): If 6 or more spaces come before the tag,
625         surround the region with "$$" rather than "$".  This is the Muse
626         syntax for something centered, so it should be a good fit.
628 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
630         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
631         protocol.
632         (muse-browse-url-man): Change man page URL format.  The code is
633         simpler when the section is left inside parentheses.
634         (muse-browse-url-woman): New function.
636 2007-01-14  Michael Olson  <mwolson@gnu.org>
638         * AUTHORS: Bookkeeping.
640         * lisp/muse-latex2png.el: Associate <math> tag with
641         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
642         Klymak for the report.
643         (muse-publish-math-tag): Use muse-insert-markup for the "$"
644         characters, so they don't get escaped.
646         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
647         make muse-style-derived-p easier to implement.
648         (muse-style-derived-p): If the style is not provided, fetch it and
649         check to see if the car is a string.  This should fix the other
650         problem that was reported.
652         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
653         explains a case where setting muse-file-extension to nil can cause
654         unexpected behavior.
656 2007-01-09  Michael Olson  <mwolson@gnu.org>
658         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
659         comments higher priority than tags.  Thanks to Stefan van der Walt
660         for the report.
662 2007-01-08  Michael Olson  <mwolson@gnu.org>
664         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
665         argument rather than calling match-string.  Thanks to Stefan van
666         der Walt for the report.  This should fix a bug with publishing
667         <include file="..." markup="example">.
669 2007-01-06  Michael Olson  <mwolson@gnu.org>
671         * Makefile (debclean): New rule split from debrevision and
672         debrelease.
673         (debbuild): Take distributor into account.
675         * Makefile.defs (DISTRIBUTOR): New field that tracks what
676         vendor/distributor we are building for.
678 2007-01-04  Michael Olson  <mwolson@gnu.org>
680         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
681         line.
683         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
684         point to muse-publish-src-tag by default, since <src> and
685         <example> have different parameters.
686         (muse-publish-src-tag): New barebones publishing function for
687         <src>, which is superseded when publishing in an HTML-based style.
689 2007-01-03  Michael Olson  <mwolson@gnu.org>
691         * lisp/muse-html.el (muse-html-src-tag): Document.
693         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
694         command that calls a given tag on the current buffer.  Attributes
695         may be passed.
696         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
697         it.
698         (muse-publish-srcify-buffer): New function that allows
699         markup="src" in the <include> tag.
700         (muse-publish-get-and-delete-attr): New macro that gets an
701         attribute from a list and removes the first instance of that
702         attribute from said list.
703         (muse-publish-markup-attribute): Handle markup="src".
704         (muse-publish-command-tag, muse-publish-include-tag): Use
705         muse-publish-get-and-delete-attr.  This allows the remaining
706         attributes to be passed.
708         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
709         as changes to <command> and <include>.
711 2006-12-30  Michael Olson  <mwolson@gnu.org>
713         * NEWS: Update.
715         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
716         from muse-publish-math-tag to avoid conflict with
717         muse-latex2png.el.
719 2006-12-23  Michael Olson  <mwolson@gnu.org>
721         * lisp/muse-latex2png.el: Update header, since this has been
722         rewritten sufficiently to not need an assignment from the original
723         author.
724         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
725         (muse-latex2png): Use two underscores to separate prefix and hash.
726         (muse-latex2png-region): New function split from
727         muse-publish-latex-tag that can be used easily by other code.
728         Detect whether we are using an HTML-based publishing style, and
729         insert a simpler markup if we are not.  If we are using a
730         Latex-based publishing style, do not generate an image, and leave
731         the region alone.  Return the path of the generated image, in case
732         other functions want to use this programmatically.
733         (muse-publish-latex-tag): Set a default prefix based on the name
734         of the current file.
735         (muse-publish-math-tag): New tag that surrounds the region with
736         "$" characters, so that it becomes a Latex math region, and then
737         publishes it.
739         * lisp/muse-publish.el (muse-style-derived-p): New function that
740         returns non-nil if a given style, or the current style if omitted,
741         is equal to or derived from the given base style.  This is useful
742         in <lisp> tags, because it allows the user to specify markup that
743         is only to be inserted for one particular style.
745 2006-12-22  Michael Olson  <mwolson@gnu.org>
747         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
748         (muse-html-src-tag): New function which publishes the <src> tag.
749         Thanks to Clinton Ebadi and Charles Wang for the initial
750         implementations.
752         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
754 2006-12-21  Michael Olson  <mwolson@gnu.org>
756         * examples/johnw/muse-johnw.el: Update for preferred
757         muse-derive-style usage.  Rename to muse-init.el.
759         * examples/mwolson/muse-init.el: Update.
761         * lisp/muse-book.el (muse-book-publish): New function split from
762         muse-book-publish-project.  This is used in the definitions for
763         the book-latex and book-pdf styles.
764         (muse-book-publish-p): New function split from muse-book-publish.
765         (muse-book-get-directives): New function that retrieves the
766         publishing directives from the given file.
767         (muse-book-publish): Use muse-book-get-directives to set the title
768         if no title was specified.
770         * lisp/muse-project.el (muse-project): Add :publish-project entry
771         to widget.
772         (muse-read-project, muse-project-find-file): Message fix.
773         (muse-project-publish-file-default): New function split from
774         muse-project-publish-file.
775         (muse-project-publish-file): Allow file-level publishing function
776         to be specified by the :publish element.  The default is
777         muse-project-publish-file-default.
778         (muse-project-publish-default): New function split from
779         muse-project-publish.
780         (muse-project-publish): Allow project-level publishing function to
781         be specified by :publish-project element.  The default is
782         muse-project-publish-default.
784         * lisp/muse-publish.el (muse-publish-file): Message fix.
786         * texi/muse.texi (Book): Mention new way to publish books and
787         provide an example, since the process may be non-obvious.
789 2006-12-20  Michael Olson  <mwolson@gnu.org>
791         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
792         content-modifying code from the rest of
793         muse-docbook-finalize-buffer.
795         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
796         muse-groff-finalize-buffer, since it adds content to the buffer.
798         * lisp/muse-html.el (muse-html-munge-buffer): Split out
799         content-modifying code from the rest of muse-html-finalize-buffer.
800         This fixes a bug when using <include> with <content> tags.
802         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
803         (muse-journal-latex-munge-buffer)
804         (muse-journal-rss-munge-buffer): Rename, since they add content to
805         the buffer.
807         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
808         muse-latex-finalize-buffer, since it adds content to the buffer.
810         * lisp/muse-mode.el:
811         * lisp/muse-project.el:
812         * lisp/muse-publish.el:
813         * lisp/muse.el: Fix recursive load error.
815         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
816         muse-texinfo-finalize-buffer, since it adds content to the buffer.
818         * lisp/muse-wiki.el: Comment cleanup.
820         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
822 2006-12-17  Michael Olson  <mwolson@gnu.org>
824         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
825         Remove the definition of \comment, since Latex already has comment
826         syntax.
827         (muse-latex-markup-strings): Use the Latex comment syntax, rather
828         than our own.  Thanks to Ryan Stutsman for pointing this out.
830 2006-12-02  Michael Olson  <mwolson@gnu.org>
832         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
833         that this can generate a proper table of contents for Planner HTML
834         publishing.
836 2006-12-01  Michael Olson  <mwolson@gnu.org>
838         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
839         using a very old Emacs, avoid an infinite loop that could occur
840         when the regexp is an empty string.
842 2006-11-26  Michael Olson  <mwolson@gnu.org>
844         * NEWS: Bring up to date.
846         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
847         list issues and multiple-stanza verse issues.  This takes care of
848         all of the markup issues I was worried about.
850         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
851         (muse-project-publish-private-files): New option that indicates
852         whether files with private filesystem permissions should be
853         published.  The default is to publish them, since it avoids
854         confusion in new users.
855         (muse-project-private-p): Use it.
857 2006-11-19  Michael Olson  <mwolson@gnu.org>
859         * lisp/muse-project.el (muse-project-resolve-link): If no remote
860         style is found, which means that the link is not a Muse page, do
861         not add a suffix or prefix to it.  This should fix the
862         "[[thing.owl]]" bug that Phillip Lord reported.
864         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
865         removing unused 2nd argument.
867 2006-11-17  Michael Olson  <mwolson@gnu.org>
869         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
870         latex publishing where nested enumerated lists would be squashed
871         together at the end.
873 2006-11-16  Michael Olson  <mwolson@gnu.org>
875         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
876         list embedded in a definition list look right.  This also allows
877         for definitions to be separated from their terms, much like the
878         way HTML does it by default, if the user puts a blank line or a
879         line break between the term and the definition.  If the term and
880         definition are on the same line, they will be that way in the
881         output as well.
883 2006-11-11  Michael Olson  <mwolson@gnu.org>
885         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
886         for the report.
887         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
889 2006-11-07  Michael Olson  <mwolson@gnu.org>
891         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
892         release candidate for Muse 3.03, available.
894         * NEWS: Update.
896 2006-11-06  Michael Olson  <mwolson@gnu.org>
898         * lisp/muse-project.el (muse-project-find-file): Fix bug when
899         following a relative link worked even when the path was incorrect.
901 2006-11-04  John Sullivan  <john@wjsullivan.net>
903         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
904         muse-follow-name-at-point to reduce collisions with other
905         modes (Planner).
907         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
909 2006-11-04  Michael Olson  <mwolson@gnu.org>
911         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
912         optional, and make interwiki delimiter a regular rather than shy
913         group.
914         (muse-wiki-handle-implicit-interwiki): Rename from
915         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
916         (muse-wiki-handle-explicit-interwiki): New function that is
917         smarter about where an explicit link ends in a buffer.  This
918         allows you to refer to page names with invalid Wiki characters,
919         such as underscores and dashes, merely by enclosing them in double
920         brackets.  Also, a bug with recognizing project names too loosely
921         has been fixed.
923 2006-11-03  Michael Olson  <mwolson@gnu.org>
925         * lisp/muse-project.el (muse-project-page-file): Make relative
926         links work as expected, hopefully.
928         * lisp/muse-publish.el (muse-publish-this-file): Set the current
929         output style manually, since it will differ from anything in the
930         publishing style list.
932 2006-10-30  Michael Olson  <mwolson@gnu.org>
934         * lisp/muse-colors.el (muse-colors-markup): Remove note about
935         grouping elements, since that no longer applies.
936         (muse-colors-custom-tags): Explicitly match against
937         muse-tag-regexp to get the match-data set the way we want.  This
938         really fixes the <example> highlighting bug that Stefan reported.
939         (muse-configure-highlighting): Set the original value to the
940         symbol, not the modified value.  Re-use modified rules properly.
942         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
943         introduced yesterday.
945 2006-10-29  Michael Olson  <mwolson@gnu.org>
947         * examples/mwolson: Update my example configuration.
949         * NEWS: Update.
951         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
952         without a regexp in the first position before iterating through
953         them to build muse-colors-vector.  This fixes a bug with the
954         display of <example> tags.  Thanks to Stefan Reichör for the
955         report.
957         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
958         files in projects to be linked to.
960         * lisp/muse-publish.el (muse-publish-url): Allow the original link
961         to serve as a description for a URL, as long as it differs from
962         the destination URL.  This fixes the description of WikPage links
963         in PDF output.
964         (muse-publish-link-file): Check to see whether the given link
965         points at a valid file.  If so, return it.  Otherwise, apply other
966         transforms like prefix and link suffix.
968         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
969         "/", it is a file or directory, not a Muse page.  Thanks to
970         Phillip Lord for the suggestion.
972         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
973         of the current page as the local path, instead of duplicating the
974         remote file's path.  This probably fixes at least one reported
975         bug. since it's quite major.
976         (muse-wiki-update-project-file-regexp)
977         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
978         passed to regexp-opt, since that can cause Emacs 21 to throw an
979         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
980         DOT edu for the report.
981         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
983 2006-10-28  Michael Olson  <mwolson@gnu.org>
985         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
986         (muse-project-resolve-link): If the given style does not have a
987         link-suffix, default to suffix.  This fixes a bug I was noticing
988         when linking to a file that was published in both PDF and HTML
989         form.
991         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
992         function that is used as a callback to determine the initial
993         amount of indentation that the current dl item has.
994         (muse-publish-surround-dl): Use it.  Pass the initial indent value
995         and the post-indent value, instead of trying to determine them
996         both.
997         (muse-publish-strip-list-indentation): New function stripped from
998         `muse-publish-surround-text' for readability.
999         (muse-publish-surround-text): Instead of taking a determine-indent
1000         value, take a determine-indent-func function, which is called just
1001         after finding the next list item.  If we are asked to determine
1002         the amount of indentation, concatenate indent and post-indent the
1003         first time around.  This effectively fixes all known definition
1004         list issues.
1006 2006-10-16  Michael Olson  <mwolson@gnu.org>
1008         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1009         other software -- namely, Planner -- can detect whether they are
1010         using a version of Muse that supports nested tags.
1011         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1012         muse-publish-goto-tag-end.
1014         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1015         Adapt for nested tags.
1017         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1018         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1019         this.
1021         * lisp/muse-publish.el (muse-publish-markup-tag)
1022         (muse-publish-quote-tag): Use muse-goto-tag-end.
1024         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1026 2006-10-15  Michael Olson  <mwolson@gnu.org>
1028         * AUTHORS: Bookkeeping.
1030         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1031         tag.
1033         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1034         tags.
1036         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1038         * lisp/muse-import-docbook.el (muse-import-docbook)
1039         (muse-import-docbook-files): Docfix.
1040         (muse-import-docbook-get-title): Remove cl.el-ism.
1042         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1044         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1046         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
1048         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
1049         (muse-next-reference, muse-previous-reference): Minor whitespace
1050         changes.
1051         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
1052         the suggestion.
1054         * lisp/muse-poem.el (muse-poem-tag): Ditto.
1056         * lisp/muse-publish.el (muse-publish-markup-tags)
1057         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
1058         element and make 4th element determine whether tags are nestable.
1059         (muse-publish-goto-tag-end): New function that moves to the end of
1060         a tag.  Handle nested tags when NESTED is non-nil.
1061         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
1062         5th element for function.
1063         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
1064         this on several scenarios, and it seems to work.
1065         (muse-publish-surround-text): Accept new optional argument
1066         LIST-ITEM which determines the regexp to use for list items.  The
1067         default is to use muse-list-item-regexp.
1069         * muse.texi (Markup Tags): Mention nestable tags.
1071         * NEWS: Mention new files.
1073 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
1075         * lisp/muse-import-docbook.el: New file that converts Docbook XML
1076         into Muse format.
1078         * lisp/muse-import-xml.el: New file that provides helper routines
1079         for converting XML-ish files to Muse format.
1081 2006-10-10  Michael Olson  <mwolson@gnu.org>
1083         * NEWS: Update for 3.02.7 bugfix release.
1085 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
1087         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
1088         using the value in the muse #date directive.
1089         (muse-blosxom-use-metadate): New option that determines whether or
1090         not to use the #postdate directive.
1091         (muse-blosxom-format-date): Convert a date string to PyBlosxom
1092         metadate plugin format.
1094 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
1096         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
1097         recognised URLs.
1099         * muse.texi: Clarify handling of implicit links by mentioning
1100         which characters can prevent Muse from recognizing something as an
1101         implicit link.
1103 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
1105         * lisp/muse-mode.el (muse-next-reference)
1106         (muse-previous-reference): Fix bug #6367 by moving point to the
1107         beginning of the link.
1109 2006-09-26  Michael Olson  <mwolson@gnu.org>
1111         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
1112         beginning-of-line.  This should fix a bug that was noticed in
1113         recent Emacs 22 builds.
1115         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
1116         eval-and-compile block to avoid a compiler warning.
1118 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
1120         * lisp/muse-backlink.el (muse-backlink-split-string):
1121         Compatibility with Emacs versions < 22
1122         (muse-backlink-pending): New internal variable
1123         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
1124         that backlinks are inserted at the right time.
1125         (muse-backlink-insert-hook-func): Remove unwind-protection; check
1126         for pending backlink, and that this is the targe page.
1127         (muse-backlink-handle-link): Don’t handle the link if we are
1128         already handling one. Return the link as well as the parent links.
1130 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
1132         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
1133         #6942 - muse-blosxom-new-entry fails when using tags.
1135 2006-09-14  Michael Olson  <mwolson@gnu.org>
1137         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
1138         compiler warning.
1140 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
1142         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
1143         function: Protect all wikiwords from START to END from further
1144         processing.
1145         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
1147 2006-09-13  Michael Olson  <mwolson@gnu.org>
1149         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
1150         adopted from Jim Ottaway's patch.  It removes links from the
1151         heading, and then marks the region read-only to inhibit WikiWord
1152         detection.
1154 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
1156         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
1157         special handling for headings.
1158         (muse-texinfo-remove-links): New function that removes explicit
1159         links from the given strings, replacing them with a description.
1161 2006-09-11  Michael Olson  <mwolson@gnu.org>
1163         * muse.texi (Getting Help and Reporting Bugs): Mention the
1164         muse-el-internationalization mailing list.
1166         * lisp/muse.el (muse-path-sans-extension): New function that acts
1167         like file-name-sans-extension, but guarantees to never modify the
1168         directory part of the path.  Thanks to Evan Monroig for
1169         investigating this.
1171         * lisp/muse-book.el (muse-book-publish-project): Use
1172         muse-path-sans-extension instead of file-name-sans-extension.
1174         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
1175         Ditto.
1177 2006-08-30  Michael Olson  <mwolson@gnu.org>
1179         * muse.texi (Blosxom Requirements): Fix typo.
1181         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
1182         directories for bzr and darcs.
1184         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
1185         contrib/pyblosxom/getstamps.py: Update version and headers.
1187 2006-08-27  Michael Olson  <mwolson@gnu.org>
1189         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
1190         nil values before they get to mapconcat.  This fixes a lockup when
1191         muse-wiki-match-all-project-files is nil.
1193         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
1194         (muse-wiki-ignore-implicit-links-to-current-page)
1195         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
1196         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
1197         (muse-wiki-publish-small-title-words)
1198         (muse-wiki-publish-pretty-title): Docfix.
1199         (muse-wiki-update-local-wikiword-regexp): Rename from
1200         muse-wiki-update-local-wikiword-regexp.  Set
1201         muse-wiki-project-file-regexp instead of
1202         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
1203         take muse-wiki-use-wikiword into account, since this is a
1204         different concept now.
1205         (muse-wiki-update-wikiword-regexp): Remove.
1206         (muse-wiki-wikiword-regexp): In-line the :set function.
1207         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
1209 2006-08-26  Michael Olson  <mwolson@gnu.org>
1211         * lisp/muse-publish.el (muse-publish-surround-text): When looking
1212         for indented list items, ignore blank lines.
1214         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
1215         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
1216         mapconcat.  This should hopefully fix a problem with large amounts
1217         of files with spaces in their name.  Thanks to Greg Detre for the
1218         report.
1220 2006-08-24  Michael Olson  <mwolson@gnu.org>
1222         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
1223         numbers from the argument to format-time-string.  This fixes an
1224         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
1226 2006-08-18  Michael Olson  <mwolson@gnu.org>
1228         * lisp/muse-project.el (muse-project-file-entries): Since we are
1229         given a full path, match against the filename as well.  This fixes
1230         an issue where backup files were being added to the file alist.
1232         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
1233         from muse-html.el.
1235 2006-08-12  Michael Olson  <mwolson@gnu.org>
1237         * Makefile (.PHONY): Don't use line continuations.
1238         (realclean fullclean): Call realclean in subdirs, not distclean.
1239         (distclean): Don't call realclean, since this would wipe out our
1240         autoloads file.
1241         (dist): Use correct path to autoloads file.
1243         * NEWS: Catch up with the latest changes.
1245         * experimental/Makefile (.PHONY): Wrap long line.
1247         * lisp/Makefile (distclean): Do the same thing as "clean", not
1248         "realclean".
1250         * lisp/muse-project.el (muse-project-get-applicable-style):
1251         Indentation tweak.
1252         (muse-project-ignore-regexp, muse-project-recurse-directory):
1253         Docfix.
1254         (muse-project-of-file): Try the ignored files regexp against the
1255         base filename as well as the entire path.
1257         * lisp/muse-publish.el (muse-publish-this-file): Display message
1258         if the buffer is not associated with any file, so that we avoid
1259         errors later on.
1260         (muse-publish-url-desc): New function taken from muse-publish-url
1261         that causes a URL description to be transformed.
1262         (muse-publish-url): Call muse-publish-url-desc on either the
1263         description or the original URL if it will be used as a
1264         description.  Accept the original URL as an argument, in case it
1265         was transformed earlier.
1266         (muse-publish-insert-url): Pass original URL as an argument.
1267         (muse-publish-markup-link): Make this somewhat easier to follow.
1268         Pass original URL as argument.
1269         (muse-publish-get-style): If the same style is used to publish to
1270         two different directories, prompt the user for which directory to
1271         use.
1272         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
1273         latest changes.
1274         (muse-publish-markup-url): Pass original URL as an argument.  This
1275         fixes the "nil" description for bare URLs that was in 3.02.91.
1276         Nothing like finding a bug just after completing the announcement
1277         of a release.
1279         * lisp/muse.el: Use defalias whenever convenient.
1280         (muse-version): Set version to 3.02.92 (3.03 RC2).
1282 2006-08-10  Michael Olson  <mwolson@gnu.org>
1284         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
1285         style does not derive from any other class, return `t' here.
1286         This, along with the corresponding change to muse-publish.el,
1287         fixes a problem with the table of contents getting inserted
1288         multiple times for custom html-based styles.
1289         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
1290         smarter method for table centering that works with XHTML.
1292         * lisp/muse-latex2png.el Rename all functions to have a
1293         "muse-latex2png" prefix.  Turn all variables into customizable
1294         options in the muse-latex2png group.
1295         (muse-latex2png-img-dest): New option specifying where to place
1296         the images.
1297         (muse-latex2png-template): New option containing the template to
1298         use for the surrounding LaTeX code.
1299         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
1300         compliance.
1301         (muse-latex2png-move2pubdir): Avoid multiple redundant error
1302         messages when something else goes wrong.  Create the image
1303         subdirectory if it doesn't exist already -- thanks to Christian
1304         Straßer for the report.  Expand the filename properly.
1305         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
1306         and filename expansion.
1307         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
1308         the default directory properly.
1310         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
1311         do not run the same function twice.
1313 2006-08-08  Michael Olson  <mwolson@gnu.org>
1315         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
1316         introduced wrong-type-argument error.
1318         * lisp/muse-html.el (muse-html-markup-strings)
1319         (muse-xhtml-markup-string): Cause table definition that contains
1320         image to be center-aligned.  This should fix an issue with images
1321         not being centered when captions are very long.
1323         * lisp/muse-publish.el (muse-publish-table-fields): Trim
1324         whitespace from fields once we have split them up.
1326         * lisp/muse.el (muse-trim-whitespace): New function that strips
1327         leading and trailing whitespace from a string.
1329 2006-08-07  Michael Olson  <mwolson@gnu.org>
1331         * NEWS: Update through patch-95.
1333         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
1334         to match the tags.
1335         (muse-colors-explicit-link): Show images in link descriptions if
1336         inlined images are enabled.
1338         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
1339         definitions for 'image-with-desc, 'image, and 'image-link.
1340         (muse-docbook-markup-paragraph): If an inlined image begins a
1341         paragraph, insert <para> before it.
1342         (muse-docbook-fixup-images): New function that upper-cases the
1343         "format" attribute of the <imagedata> tag.
1344         (muse-docbook-finalize-buffer): Call it.
1346         * lisp/muse-html.el (muse-html-markup-strings): Publish images
1347         with descriptions as centered tables, with a centered caption
1348         underneath.  The resulting look is consistent with the way that
1349         they are published in the LaTeX style.  Thanks to Jody Klymak for
1350         the suggestion.
1351         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
1352         valid way to center a table.
1353         (muse-html-markup-paragraph): Use class="image" instead of
1354         "image-link" for paragraphs that start with an embedded image.
1356         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
1357         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
1358         suggestion.
1359         (muse-latex-markup-specials-image): New option that enables
1360         escaping of specials in images.  This was split from the URL
1361         specials.
1362         (muse-latex-decide-specials): Handle 'image context.
1363         (muse-latex-fixup-dquotes): Go to beginning of document, instead
1364         of relying on caller to do this for us.
1366         * lisp/muse-publish.el (muse-publish-escape-specials): Document
1367         'image context.
1368         (muse-publish-url): Use 'image context for images.  Use 'image
1369         instead of 'image-link and 'image-link in place of
1370         'url-with-image.  Separate the image file from its extension so
1371         that docbook and texinfo can publish images correctly.
1372         (muse-publish-markup-link): Don't force a description if one is
1373         not given.  This fixes a bug where images without descriptions
1374         were being published as 'image-with-desc instead of 'image.
1376         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
1377         images the same as URLs.
1378         (muse-texinfo-markup-strings): Improve image markup to achieve an
1379         effect similar to that of the LaTeX publishing style.  Simplify
1380         'url string.
1382         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
1384         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
1385         when we have to use the custom version of this function.
1387         * muse.texi (Images): Explain how to toggle inlining of images and
1388         give better examples.  Mention captions and that captioned images
1389         should not be used inside of text paragraphs.
1390         (Markup Strings): Bring up-to-date with the changes made since
1391         3.02.
1393 2006-08-06  Michael Olson  <mwolson@gnu.org>
1395         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
1396         in the Emacs source tree.
1398         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
1399         in the Emacs source tree.
1401         * ChangeLog.3: New file created from the old ChangeLog.
1403         * Makefile.defs (VERSION): Set to 3.02.91.
1405         * NEWS: Update through patch-84.
1407         * lisp/muse.el (muse-version): Set to 3.02.91.
1409         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
1410         attributes.
1411         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
1412         delimiter are instead of hard-coding it.
1414         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
1415         (muse-mode): Make filling definition lists work better.  This
1416         should fix #5359.
1418         * lisp/muse-publish.el (muse-style-run-hooks): Use
1419         `muse-style-element' instead of `muse-get-keyword' here.  This
1420         should fix #6399.
1422         * muse.texi: Set version to 3.02.91 (3.02 RC2).
1424 See ChangeLog.3 for earlier changes.
1426 ;; Local Variables:
1427 ;; coding: utf-8
1428 ;; End: