Revert "Test my new setup"
[muse-el.git] / ChangeLog
blob5fce7699dde6c5944f4d62076633d3d9d887c8f1
1 2007-10-29  Michael Olson  <mwolson@gnu.org>
3         * lisp/muse-regexps.el (muse-tag-regexp): Permit tag attributes to
4         span more than one line.  Thanks to Florian Beck for the fix.
6 2007-10-24  Michael Olson  <mwolson@gnu.org>
8         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
9         "---" as a valid mdash.  Before, it was doing mdash followed by a
10         single dash.  Thanks to jordanb for the suggestion.
12 2007-10-12  Michael Olson  <mwolson@gnu.org>
14         * lisp/muse-mode.el (muse-insert-url-initial-input): New option
15         that specifies the initial text to use when reading a URL.  Thanks
16         to Seweryn Kokot for the suggestion.
17         (muse-insert-url): Use it.
18         (muse-mode-fill-paragraph): Take into account any indentation that
19         is already in front of the term.
21         * lisp/muse-project.el (muse-project-determine-last-mod): New
22         function split from muse-project-file-alist.
23         (muse-project-file-alist): Improve docstring.
24         (muse-project-add-to-alist): New function that ensures that the
25         current file is added the its project file-alist.
26         (muse-project-after-save-hook): Call muse-project-add-to-alist
27         instead of muse-project-file-alist.  This fixes an issue where if
28         several files were being saved at once, only the first would make
29         it into the project file-alist.
31 2007-10-11  Michael Olson  <mwolson@gnu.org>
33         * lisp/muse-latex.el (muse-latex-markup-specials-literal): Escape
34         backslash as "\textbackslash{}".  Thanks to Joost Kremers for the
35         report.
37 2007-10-08  Michael Olson  <mwolson@gnu.org>
39         * lisp/muse-mode.el (muse-mode): Set fill-paragraph-function.
40         (muse-mode-fill-paragraph): New function that fills the paragraph
41         at point.  If a definition list term is on the same line, then
42         prefix subsequent lines with two spaces when filling.  Otherwise,
43         return nil, so that normal filling can take place.
45 2007-10-03  Michael Olson  <mwolson@gnu.org>
47         * lisp/muse-colors.el (muse-unhighlight-region): Remove
48         muse-no-implicit link property.
49         (muse-colors-implicit-link): Check for muse-no-implicit-link
50         property.
52         * lisp/muse-wiki.el (muse-wiki-colors-nop-tag): Add the
53         muse-no-implicit-link property.  This makes colorization of <nop>
54         work.  Add docstring.
56 2007-09-24  Michael Olson  <mwolson@gnu.org>
58         * lisp/muse-latex2png.el (muse-publish-math-tag): Fix bug
59         introduced by recent change.  Thanks to Darlan Cavalcante Moreira
60         for the report.
62 2007-09-23  Michael Olson  <mwolson@gnu.org>
64         * lisp/muse-context.el (muse-context-pdf-generate): Change
65         default-directory instead of calling "cd" in the command.
67         * lisp/muse-latex.el (muse-latex-pdf-generate): Change
68         default-directory instead of calling "cd" in the command.  This
69         should fix a bug with Windows.  Thanks to Jia Ye for the report.
71 2007-09-22  Michael Olson  <mwolson@gnu.org>
73         * AUTHORS: Bookkeeping.
75         * NEWS: Add entry for the LaTeX image filename escaping changes.
77         * examples/mwolson/templates/header.tex: Update for recent
78         changes.
80         * lisp/muse-latex2png.el (muse-publish-math-tag): Detect whether
81         the tag ends at the end of a line.  If not, do not use "$$" to
82         publish it.  Thanks to Darlan Cavalcante Moreira for the
83         suggestion.
85         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header)
86         (muse-latex-slides-header, muse-latex-lecture-notes-header):
87         Escape specials in the title.  Define a museincludegraphics
88         command, which is able to handle escaped special characters in
89         image filenames.  Thanks to Karl Berry for providing this.
90         (muse-latex-markup-strings): Use museincludegraphics instead of
91         includegraphics in all image-related markup.  Move the width
92         specification over to the museincludegraphics command, rather than
93         specifying it explicitly.  This allows people to change this
94         information in their headers.
95         (muse-latex-markup-specials-image): Escape backslashes, "#", and
96         pipe characters in image filenames.
98         * lisp/muse-wiki.el (muse-wiki-project-files-with-spaces): Fix
99         byte-compiler warning.
101         * lisp/muse.el (muse-update-values): Fix byte-compiler warning.
102         Also, update the value of muse-current-project for all Muse
103         buffers, even if they are new.  This should be more intuitive.  I
104         don't think there are any cases where developers will want this
105         value to be nil.
106         (muse-replace-regexp-in-string): Fix byte-compiler warning.
108         * texi/muse.texi (LaTeX): Mention grffile.sty.  Thanks to Karl
109         Berry for the tip.
111 2007-09-19  Michael Olson  <mwolson@gnu.org>
113         * lisp/muse.el (muse-replace-regexp-in-string): Remove fallback
114         code, since it is not needed in any version of Emacs we support,
115         and it also has a couple of bugs that I don't want to waste time
116         fixing.
118 2007-09-18  Michael Olson  <mwolson@gnu.org>
120         * lisp/muse-mode.el (muse-mode): Fix bug involving filling and
121         paragraphs next to headings.  Thanks to Gregory Collins for the
122         initial patch, which I modified.
124 2007-09-17  Michael Olson  <mwolson@gnu.org>
126         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Display
127         message about how images are now displayed.
129 2007-09-10  Michael Olson  <mwolson@gnu.org>
131         * Makefile (elpa): Use texi/dir-template rather than echoing lines
132         to the ELPA dir file for Muse.
134         * texi/dir-template: New file containing template to use when
135         making ELPA dir files.  This fixes a corrupt dir file bug for the
136         Muse ELPA package.  Thanks to Tom Tromey for the report.
138 2007-09-06  Michael Olson  <mwolson@gnu.org>
140         * lisp/muse-html.el (muse-html-class-tag): Fix bug where nested
141         class tags were not working.  We move to just after the beginning
142         of the first class tag, so that we can detect any remaining class
143         tags.  Thanks to Florian Beck for the report.  Fix error that
144         occurred when class tag has no name element.  Thanks to Peter
145         Baranyi for the report.  The correct behavior in this case is to
146         not publish the tag at all.
148         * lisp/muse.el (muse-goto-tag-end): Fix bug where nested tags with
149         arguments were not being detected properly.
151 2007-09-05  Michael Olson  <mwolson@gnu.org>
153         * lisp/muse-context.el (muse-context-decide-specials): Add
154         footnote.
156         * lisp/muse-latex.el (muse-latex-decide-specials): Add footnote.
158         * lisp/muse-publish.el (muse-publish-escape-specials): Mention
159         'footnote in docstring.
160         (muse-publish-markup-footnote): Minor docstring fix.  Escape
161         footnote text properly.  Thanks to Jean Magnan de Bornier for
162         noticing.
163         (muse-publish-url): When checking to see if this is just a plain
164         URL without a description, compare the strings as they were before
165         doing escaping.  This fixes a bug where plain URLs could sometimes
166         be published as if they were URLs with descriptions.
168         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Add
169         footnote.
171 2007-08-29  Michael Olson  <mwolson@gnu.org>
173         * lisp/muse.el (muse-update-values): Reset the value of
174         muse-current-project in all Muse buffers.  This updates the rules
175         in case you want to publish a file after changing its associated
176         muse-project-alist entry.
178 2007-08-27  Michael Olson  <mwolson@gnu.org>
180         * lisp/muse.el (muse-update-values): New function that the user
181         can call after changing muse-project-alist, in order to update
182         various autogenerated values.
184         * texi/muse.texi (Keystroke Summary): Document it.
186 2007-08-25  Michael Olson  <mwolson@gnu.org>
188         * examples/QuickStart.muse: Fix typo in first paragraph.  Thanks
189         to Karl Berry for reporting this.
191         * lisp/muse-mode.el (muse-visit-link-default): Fix bug with
192         browsing anchors that come after a link to them.
194         * texi/muse.texi (Poem): Fix typo in spelling of LaTeX.  Thanks to
195         Karl Berry for reporting this.
197 2007-08-24  Michael Olson  <mwolson@gnu.org>
199         * Release Emacs Muse 3.11.
201         * AUTHORS: Add new authors for contrib files.
203         * NEWS: Add entries for Muse 3.11.
205         * README: Mention that contents of contrib/blosxom and
206         contrib/pyblosxom have different licenses than the rest of Muse.
208         * contrib/blosxom/getstamps.pl: New file that implements fetching
209         timestamps from published Muse files and placing them in a single
210         timestamps file.  That file can then be used by blosxom's metadate
211         plugin.  Thanks to Michael Welle for providing this file, as well
212         as instructions on how to use Muse with Blosxom.
214         * contrib/blosxom/metadate_0_0_3: New file implementing the
215         metadate plugin for blosxom.
217         * contrib/pyblosxom/getstamps.py: Add license text.  It seems safe
218         to assume that the original author wanted this to be distributed
219         with Pyblosxom, and hence use the MIT license like the rest of
220         Pyblosxom.
222         * contrib/pyblosxom/hardcodedates.py: Add license text.
224         * contrib/pyblosxom/make-blog: Change license text to be "This
225         file may be used, distributed, and modified without restriction."
227         * contrib/pyblosxom/metadate.py: New file that implements the
228         PyBlosxom metadate plugin.  Since this can no longer be found at
229         the original author's website, I have included it with Muse.
231         * lisp/muse-blosxom.el: Update location of metadate plugin in
232         header.
234         * lisp/muse-wiki.el (muse-wiki-project-file-regexp): Fix typo in
235         docstring.
237         * texi/muse.texi (Blosxom Requirements): Organize information by
238         subheading and subsubheading, and document how to use the metadate
239         plugin.  Briefly document using Blosxom to serve Muse entries.
241 2007-08-23  Michael Olson  <mwolson@gnu.org>
243         * lisp/muse-html.el (muse-html-insert-contents): Escape heading
244         title just before extracting it.
246         * lisp/muse-latex.el (muse-latex-fixup-headings): New function
247         that removes footnotes from headers, since they are invalid in
248         LaTeX.
249         (muse-latex-munge-buffer): Call it.
251         * lisp/muse-publish.el (muse-publish-markup-heading): Don't escape
252         specials here.  This fixes a bug involving links in headings.
254         * lisp/muse.el (muse-update-file-extension): Simplify, and handle
255         some edge cases.
256         (muse-update-file-extension-after-init): Temporarily bind
257         muse-file-extension to "muse", so that muse-update-file-extension
258         knows what the old value was.  This should fix a bug reported by
259         Jean Magnan de Bornier.
261 2007-08-21  Michael Olson  <mwolson@gnu.org>
263         * lisp/muse-texinfo.el (muse-texinfo-markup-strings): Try to make
264         url, link, and link-and-anchor look better in texi2html output.
265         Thanks to thorne for the report.
267 2007-08-20  Michael Olson  <mwolson@gnu.org>
269         * lisp/muse-journal.el (muse-journal-anchorize-title): Revamp to
270         escape characters rather than discard them.  Use muse-regexp-alnum
271         rather than listing out the characters and numbers.  Thanks to
272         Shunsuke OKANO for the report.
273         (muse-journal-rss-munge-buffer): Make sure that <![CDATA[ stuff is
274         used when generating a summary.
276 2007-08-19  Michael Olson  <mwolson@gnu.org>
278         * examples/mwolson: Update my example settings.
280         * lisp/muse-colors.el (muse-colors-region): Bind
281         muse-colors-region-end to the end of the last line.  This avoids a
282         bug where lines that had emphasis would suddenly become
283         unhighlighted when moving around the buffer.
285         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix bug
286         involving paragraphs after literallayout markup, which is used in
287         <verse> tags.  Thanks to Shunsuke OKANO for the report.
289         * lisp/muse-html.el (muse-html-src-tag): Use
290         muse-delete-and-extract-region.
292         * lisp/muse-import-xml.el: Add require statement.
293         (muse-import-xml-parse-node): Use muse-replace-regexp-in-string.
295         * lisp/muse-protocols.el (muse-browse-url-man): Add require
296         statement.
297         (muse-browse-url-woman): Add require statement.
299         * lisp/muse-publish.el (muse-publish-surround-text): Fix serious
300         bug in definition list publishing.  We were skipping past the
301         initial indented line, and that was causing an erroneous
302         blockquote to be inserted.  This alone merits a new release.
304         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Fix bug with
305         XEmacs' return value for shell-command.
307         * lisp/muse.el (muse-delete-and-extract-region): New compatibility
308         function to deal with XEmacs' lack of the
309         delete-and-extract-region function.
311 2007-08-18  Michael Olson  <mwolson@gnu.org>
313         * AUTHORS: Update.
315         * lisp/muse-publish.el (muse-publish-include-tag): Switch from
316         copy-tree to copy-alist, since Emacs21 does not have the former,
317         and the latter does what we want.
319         * lisp/muse.el: Force-require 'derived, since Emacs21 does not
320         have derived-mode-p in subr.el like Emacs22 does.
322 2007-08-17  Michael Olson  <mwolson@gnu.org>
324         * etc/muse.rnc: Add the <cite> tag.
326         * lisp/muse-context.el (muse-context-slides-header): Clarify what
327         "mystyle" is.
329         * lisp/muse-xml.el (muse-xml-markup-strings): Mark up citations as
330         <cite type="something">.  We'll leave it to the post processing
331         tools to interpret that.
333         * texi/muse.texi (Directives, Blosxom Entries): Use @code{} for
334         directives.
335         (Citations): New section that explains further how to use the
336         <cite> tag.  The text was taken from Marcus Hoenicka's
337         documentation at http://refdb.sourceforge.net/muse.html and
338         modified.
339         (Tag Summary): Link to the Citations section in the entry for
340         <cite>.
341         (ConTeXt): Update the documentation for
342         muse-context-slides-header.
344 2007-08-17  Jean Magnan de Bornier  <jean@bornier.net>
346         * lisp/muse-context.el (muse-context-slides-header): Use #module
347         directive, if it is provided.
348         (muse-context-slides-header): Mention how to use #module.
350 2007-08-16  Michael Olson  <mwolson@gnu.org>
352         * Release Emacs Muse 3.10.
354         * Makefile (dist, debprepare): Pass HEAD argument to git-archive.
355         (upload): Don't depend on release rule.
357         * NEWS: Document remaining changes.
359 2007-08-15  Michael Olson  <mwolson@gnu.org>
361         * NEWS: Document items through 2007-08-12.
363         * lisp/muse-colors.el: Split the muse-directive-or-comment
364         property into two separate properties that are muse-directive and
365         muse-comment.
366         (muse-colors-region-end): Make buffer-local.
367         (muse-colors-delayed-commands): New variable that contains a list
368         of commands to run immediately after highlighting.  This is meant
369         to allow highlighting functions to delay code until later.
370         (muse-colors-region): Apply commands in
371         muse-colors-delayed-commands.
372         (muse-colors-inhibit-tags-in-directives): New variable that
373         determines whether tags are allowed in directives.
374         (muse-colors-custom-tags): Take
375         muse-colors-inhibit-tags-in-directives into account.
376         (muse-unhighlight-region): Remove muse-directive and muse-comment
377         properties.
378         (muse-colors-title): Modify muse-colors-delayed-commands.
379         (muse-colors-title-lisp): New command that gets called after
380         highlighting other things.  This interprets <lisp> tags, and is
381         passed arguments specifying the beginning and end of the region.
382         Thanks to Junichi Uekawa for the report.  The reason we want to do
383         things this way is because this is the behavior we get already
384         when publishing the page.
386         * lisp/muse.el (muse-goto-tag-end): Change to use muse-comment
387         property rather than muse-directive-or-comment.
389 2007-08-14  Michael Olson  <mwolson@gnu.org>
391         * lisp/muse-colors.el: Document all functions and variables.
392         (muse-colors-emphasized, muse-colors-underlined)
393         (muse-colors-verbatim, muse-colors-custom-tags)
394         (muse-colors-explicit-link, muse-colors-implicit-link): Don't trod
395         on comments or the #title directive.
396         (muse-colors-markup): Add comment rule.
397         (muse-colors-implicit-link): Only remove flyspell overlay after we
398         decide whether this is an implicit link, rather than before.
399         (muse-colors-title): Add the muse-directive-or-comment property.
400         (muse-colors-comment): New function that colorizes comments using
401         font-lock-comment-face.
402         (muse-colors-region-end): New variable indicating the end of the
403         region that is currently being font-locked.  This removes the need
404         for an ugly "defvar end" hack.
405         (muse-colors-emphasized, muse-colors-underlined)
406         (muse-colors-verbatim): Use it.
407         (muse-colors-region): Let-bind it.
409         * lisp/muse-mode.el (muse-list-edit-minor-mode): Grammar fix in
410         docstring.
412         * lisp/muse-publish.el (muse-publish-markup-heading): Escape
413         specials in heading now, rather than waiting on the whole-document
414         pass later on.  This lets <contents> generation work without
415         validation errors.  Thanks to Reid van Melle for the report.
417         * texi/muse.texi (Tag Summary): Document <cite> tag.
418         (Miscellaneous): New chapter containing "Muse List Edit Minor
419         Mode" section.
420         (Muse List Edit Minor Mode): New section that documents
421         muse-list-edit-minor-mode.
422         (Development): Mention the MuseDevlopment page on emacswiki.org.
424         * lisp/muse.el (muse-goto-tag-end): Deal with case where we are
425         font-locking and the end or beginning of a tag is in a comment or
426         directive.
428 2007-08-12  Michael Olson  <mwolson@gnu.org>
430         * lisp/muse-html.el (muse-html-strip-links): New function that
431         strips HTML links from a string.
432         (muse-html-insert-contents): Use it, instead of
433         muse-publish-strip-tags.  This fixes a bug reported by Xin Shi
434         involving the use of <sup> in section titles.
436         * lisp/muse-project.el (muse-project-resolve-directory): New
437         function that figures out the directory part of the path that
438         provides a link to a page.
439         (muse-project-resolve-link): Expand docstring.  Use the new
440         function.  Don't call muse-publish-link-file, because that does
441         the wrong thing when we have muse-file-extension set to nil.
442         Thanks to Sebastian Obermanns for the report.
443         (muse-project-publish-this-file): Let-bind muse-current-project.
444         Also, if the file is not associated with a project, fall back to
445         muse-publish-this-file.
446         (muse-project-set-variables): Add this to
447         muse-before-publish-hook, so that it gets called.  This fixes a
448         bug where project-specific variables were being used in Muse mode,
449         but ignored when publishing.
451         * lisp/muse-publish.el (muse-publish-link-name)
452         (muse-publish-link-file, muse-publish-link-page): Add docstrings
453         so that I can remember what each of these things do.
454         (muse-publish-strip-tags): Remove, since it is no longer used.
455         (muse-publish-cite-tag): Don't let-bind
456         muse-publishing-directives, because there is no need to do so.
457         Fix code indentation.
458         (muse-publish-markup-attribute): Avoid multiple evaluation of
459         attrs argument, in case it is list value instead of a symbol.  Use
460         sexp instead of form in the edebug-form-spec.
461         (muse-publish-include-tag): Make a full copy of
462         muse-publishing-directives, since it can be modified with setcdr.
463         This fixes a bug where #title and some other directives were
464         leaking out of an included region.
465         (muse-publish-mark-up-tag): Don't let-bind
466         muse-publishing-directives, because there is no need to do so.
468         * lisp/muse.el (muse-page-name): Improve docstring.
470         * texi/muse.texi (Development): Mention the http method for
471         anonymous git access to the shared repo.
473 2007-08-10  Michael Olson  <mwolson@gnu.org>
475         * Makefile (dist, debprepare): Use git instead of tla.
477         * contrib/httpd.el (httpd-send-file): Use insert-file-contents.
479         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
480         Use muse-insert-file-contents.
482         * experimental/muse-split.el (muse-publish-file)
483         (muse-publish-presplit-publish, muse-publish-no-split-function)
484         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
485         muse-insert-file-contents.
487         * lisp/muse-book.el (muse-book-publish-chapter)
488         (muse-book-get-directives): Use muse-insert-file-contents.
490         * lisp/muse-http.el (muse-http-render-page): Use
491         muse-insert-file-contents.
493         * lisp/muse-poem.el (muse-poem-markup-tag): Use
494         muse-insert-file-contents.
496         * lisp/muse-publish.el (muse-insert-file-or-string)
497         (muse-publish-file, muse-publish-include-tag)
498         (muse-published-contents): Use muse-insert-file-contents.
500         * lisp/muse.el (muse-insert-file-contents): New function that
501         inserts a file with character code conversion, but none of the
502         other frivolities.  Since insert-file-contents-literally does not
503         do character code conversion, it is not suitable for us.
504         (muse-with-temp-buffer): Mention muse-insert-file-contents rather
505         than insert-file-contents-literally.
507 2007-08-09  Michael Olson  <mwolson@gnu.org>
509         * lisp/muse.el (muse-write-file): Pay attention to
510         coding-system-for-write and save-buffer-coding-system.  This
511         should fix a recently-introduced bug with writing Muse pages in
512         different coding systems.
514 2007-08-08  Michael Olson  <mwolson@gnu.org>
516         * README (Prerequisites): Fix typo.
517         (Compilation, Installation): Update.
518         (Documentation, Further Documentation): Update URLs.
519         (Further Documentation): Add quick blurb on how to participate in
520         Muse development or track changes.
522         * texi/muse.texi (Releases): Use gna.org URL for downloading the
523         latest release, rather than my website.
524         (Development): Change instructions to use git instead of
525         Arch. Mention where to get a Windows binary for git.  Improve the
526         look of the listing.  Add section with instructions for Becoming a
527         Muse developer.
528         (Installation): Update instructions for Makefile.defs.default and
529         XEmacs.  Add index entries.  Add section for ELPA, since Muse
530         ought to be distributed in ELPA after the 3.10 release.  Fix typo
531         and clarify wording.
533 2007-08-06  Michael Olson  <mwolson@gnu.org>
535         * texi/muse.texi: Make sure that attributes are marked up with
536         @option{} rather than @code{} or @samp{} for consistency.
537         (Journal): Add "muse-project-alist-considerations" subheading,
538         along with a mention of :base-url.
540 2007-08-05  Michael Olson  <mwolson@gnu.org>
542         * .gitignore: Add texi/muse.html and the DVC log edit file.
544         * Makefile.defs.default (install_info): Rename from INSTALLINFO.
545         Turn this into something that can be called like a command, due to
546         needing to deal with XEmacs, which has different argument order.
547         Thanks to Terrence Brannon for the report.
549         * lisp/muse-project.el (muse-project-of-file): Simplify by using
550         catch, throw, and dolist.  Look for exact matches before
551         considering any subdirectories.  If no exact matches are found,
552         then pick the longest match.
554         * lisp/muse.el (muse-sort-by-rating): Mention default test in
555         documentation.
557         * scripts/muse-build.el: Avoid interference from VC.el in the
558         build process.
560         * texi/Makefile (install): Call install_info.
562 2007-08-03  Michael Olson  <mwolson@gnu.org>
564         * lisp/muse-project.el (muse-project-applicable-styles): Remove
565         useless argument ignore-regexp.  Use saner logic.  This fixes a
566         bug where a file could potentially not exist but still appear in
567         the used-styles list.  Thanks to John Wiegley for the fix.
568         (muse-project-publish-file): Don't take ignore-reegxp argument.
570 2007-08-02  Michael Olson  <mwolson@gnu.org>
572         * lisp/muse-publish.el (muse-batch-publish-files): Don't activate
573         VC when publishing files in batch.  This avoids some annoying
574         messages when building QuickStart in the examples directory.
576         * lisp/muse-mode.el (muse-mode): Don't try to indent line before
577         inserting a comment.
579 2007-07-31  Michael Olson  <mwolson@gnu.org>
581         * lisp/Makefile: Add dependencies between Emacs Lisp files, so
582         that Muse can be recompiled without running "make clean" after an
583         update.
585         * lisp/muse-publish.el (muse-publish-verse-tag): Unconditionally
586         delete forward one character, since we are guaranteed to be on a
587         blank line.  Don't delete all initial whitespace of the first
588         line.  This fixes an issue where the output from the verse tag did
589         not match the output from Muse's verse syntax.
591 2007-07-29  Michael Olson  <mwolson@gnu.org>
593         * Relicense to GPLv3.
595         * Makefile.defs.default: Rename from Makefile.defs.  This allows
596         people to copy this file to Makefile.defs and make changes,
597         without having the changes be accidentally committed.  If
598         Makefile.defs does not exist, this file is read instead, in order
599         to minimize inconvenience to the casual user.
601         * Makefile, contrib/Makefile, examples/Makefile,
602         experimental/Makefile, lisp/Makefile, texi/Makefile: Use either
603         Makefile.defs.default or Makefile.defs.
605         * lisp/muse-mode.el (muse-list-edit-minor-mode-map): Use new
606         function names.
607         (muse-l-e-m-m-insert-list-item): Add real documentation.
608         (muse-l-e-m-m-increase-list-item-indent)
609         (muse-l-e-m-m-decrease-list-item-indent): Rename for clarity.  Add
610         real documentation.
611         (muse-list-edit-minor-mode): Improve documentation.
613         * texi/doclicense.texi (GNU Free Documentation License): Use
614         pristine copy from Emacs source tree.
616         * texi/muse.texi (Contributors): Move node and appendix indicators
617         here, rather than doclicense.texi.
619 2007-07-29  Jean Magnan de Bornier  <jean@bornier.net>
621         * lisp/muse-latex.el (muse-latex-markup-strings): Change rule
622         command which did not work correctly
624         * lisp/muse-context.el (muse-context-markup-strings): Change rule
625         command which did not work correctly; defined verse commands
626         (muse-context-markup-specials-literal): Eliminate all unuseful entries
628 2007-07-29  Michael Olson  <mwolson@gnu.org>
630         * contrib/httpd.el (httpd-send-file): Use
631         insert-file-contents-literally instead of insert-file-contents.
633         * examples/mwolson/muse-init.el (my-muse-prepare-entry-for-xanga):
634         Use insert-file-contents-literally instead of
635         insert-file-contents.
637         * experimental/muse-split.el (muse-publish-file)
638         (muse-publish-presplit-publish, muse-publish-no-split-function)
639         (muse-journal-split-by-entry, muse-journal-split-by-month): Use
640         insert-file-contents-literally instead of insert-file-contents.
642         * lisp/muse-book.el (muse-book-publish-chapter)
643         (muse-book-get-directives): Use insert-file-contents-literally
644         instead of insert-file-contents.
646         * lisp/muse-http.el (muse-http-render-page): Use
647         insert-file-contents-literally instead of insert-file-contents.
649         * lisp/muse-import-latex.el (muse-import-latex): Set marker to
650         nowhere when done, since they can slow things down.
652         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Set
653         marker to nowhere when done, since they can slow things down.
655         * lisp/muse-poem.el (muse-poem-markup-tag): Set marker to nowhere
656         when done, since they can slow things down.  Use
657         insert-file-contents-literally instead of insert-file-contents.
659         * lisp/muse-publish.el (muse-publish-markup-tag)
660         (muse-publish-markup-word, muse-publish-markup-footnote)
661         (muse-publish-call-tag-on-buffer): Set markers to nowhere when
662         done, since they can slow things down.
663         (muse-insert-file-or-string, muse-publish-file)
664         (muse-publish-include-tag, muse-published-contents): Use
665         insert-file-contents-literally instead of insert-file-contents.
666         (muse-publish-surround-dl): Remove unused variable.  Track whether
667         a term has been found, and handle that case well.
668         (muse-publish-ensure-blank-line): Use a marker, so that we don't
669         lose our place when adding a newline.  This really fixes the
670         definition list item bug.
671         (muse-publish-markup-list): Since people do seem to want
672         definition lists with no terms, allow this.
673         (muse-batch-publish-files): Set muse-current-output-style.
675         * lisp/muse.el (muse-with-temp-buffer): Mention
676         `insert-file-contents-literally'.
678 2007-07-28  Michael Olson  <mwolson@gnu.org>
680         * lisp/muse-mode.el (muse-browse-result): Set
681         muse-current-output-style.
682         (muse-mode): Don't duplicate the paragraph-start regexp
683         unnecessarily.
684         (muse-list-edit-minor-mode-map): New variable containing the
685         keymap for Muse list edit minor mode.
686         (muse-l-e-m-m-list-item-regexp): New variable that matches list
687         items for Muse list edit minor mode.
688         (muse-l-e-m-m-insert-list-item,
689         muse-l-e-m-m-i-list-item-indentation)
690         (muse-l-e-m-m-d-list-item-indentation): Variants of existing list
691         item functions that change the list item regexp before calling the
692         existing function.
693         (muse-l-e-m-m-data): New variable that keeps track of the fill
694         data that we overwrite when activating Muse list edit minor mode,
695         so that we can restore it if the minor mode is toggled off.
696         (muse-list-edit-minor-mode): New minor mode that is useful for
697         editing lists in other major modes.
698         (turn-on-muse-list-edit-minor-mode)
699         (turn-off-muse-list-edit-minor-mode): New interactive functions
700         that turn Muse list edit minor mode on and off, respectively.
701         (muse-on-blank-line, muse-get-paragraph-start): Simplify some
702         regexps.
704         * lisp/muse-project.el (muse-project-publish-this-file): Set
705         muse-current-output-style.  This fixes a bug when publishing to a
706         style that is not first in the list of styles.  Thanks to Jean
707         Magnan de Bornier for the report.
709         * lisp/muse-publish.el (muse-publish-ensure-blank-line): New
710         function that ensures that a blank line exists in the line before
711         point.
712         (muse-publish-markup-list): Use it, rather than
713         `muse-publish-ensure-block'.  This fixes a bug with definition
714         list publishing.  Thanks to meandtheshell for reporting this.
716         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): If the
717         project argument is nil, default to the current project instead of
718         the first project entry in muse-project-alist.  This seems much
719         more sane to me.
721         * lisp/muse.el (muse-forward-list-item): Only check the 'face
722         property if we are in Muse mode or one of its derivatives.  This
723         allows movement on nested lists to work in other modes, and fixes
724         an issue with altering list indentation in
725         muse-list-edit-minor-mode.
727 2007-07-27  Michael Olson  <mwolson@gnu.org>
729         * AUTHORS: Add new authors.
731         * README: Permit Muse to be called "Emacs-Muse".
733         * etc/IDEAS.muse: Remove now-implemented ideas and duplicate idea.
735         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug
736         involving list items that have an extra blank line in front.
738         * texi/muse.texi (Introduction): Mention that Emacs Muse, Muse,
739         and Emacs-Muse are the same thing.
741 2007-07-27  Jean Magnan de Bornier  <jean@bornier.net>
743         * lisp/muse-context.el (muse-context-header): Put
744         starttext after the modules who must be in preamble.
745         (muse-context-markup-strings): Fixed mistake in begin-example and
746         end-example.
748         * lisp/muse-latex2png.el (muse-publish-math-tag): Replaced the
749         math environment in ConTeXt when centered: "$$ $$" has to be
750         "\startformula \stopformula".
752 2007-07-26  Michael Olson  <mwolson@gnu.org>
754         * lisp/muse-xml-common.el (muse-xml-escape-url): Do not escape
755         parentheses in URLs.
757 2007-07-24  Michael Olson  <mwolson@gnu.org>
759         * examples/QuickStart.muse (Images): Fix typo where some text
760         existed in the output but not in the example region.
761         (Source Code): Fix another typo.  Explain that publishing from
762         console or X can make a difference.
764         * lisp/muse-context.el (muse-context-pdf-program): New option that
765         determines the program to use for generating PDF files for
766         ConTeXt.
767         (muse-context-pdf-cruft): New option that specifies the extensions
768         of files to remove after generating PDF output successfully.
769         (muse-context-slides-header): Docfix.
770         (muse-context-pdf-generate): Use new options.
772         * lisp/muse-publish.el (muse-publish-lisp-tag): Add missing
773         save-restriction call.  This was causing a world of hurt when
774         using <lisp> inside of <include>.
776         * texi/muse.texi (ConTeXt): New section that documents how to use
777         the ConTeXt publishing styles.
779 2007-07-23  Michael Olson  <mwolson@gnu.org>
781         * lisp/muse-context.el: New file that provides support for
782         publishing documents to the ConTeXt format.  Thanks to Jean Magnan
783         de Bornier for his work on this.
785         * lisp/muse-docbook.el (muse-docbook-entities)
786         (muse-docbook-bibliography): Remove unneeded save-restriction use.
788         * lisp/muse-latex2png.el (muse-publish-latex-tag):
789         s/contex/context/.
791         * lisp/muse-latex.el (muse-latex-fixup-citations): Add docstring.
792         (muse-latex-bibliography): Remove call to `widen', since it is not
793         needed anymore.  Remove unneeded save-restriction use.
794         ("slides", "slides-pdf"): Indent elements uniformly.
796 2007-07-22  Michael Olson  <mwolson@gnu.org>
798         * lisp/muse-blosxom.el (muse-blosxom-new-entry):
799         * lisp/muse-mode.el (muse-insert-tag):
800         * lisp/muse-project.el (muse-read-project)
801         (muse-read-project-file):
802         * lisp/muse-publish.el (muse-publish-get-style): Use
803         muse-completing-read-function.
805         * lisp/muse-latex2png.el (muse-publish-latex-tag)
806         (muse-publish-math-tag): Allow the context style -- which I plan
807         to include soon -- to work with these tags.
809         * lisp/muse.el (muse-completing-read-function): New option that
810         determines which function to call when doing a completing-read.
812 2007-07-15  Michael Olson  <mwolson@gnu.org>
814         * lisp/muse-journal.el (muse-journal-html-entry-template)
815         (muse-journal-rdf-entry-template)
816         (muse-journal-rss-entry-template): Mention that this can be text
817         or a filename.
818         (muse-journal-rdf-entry-template, muse-journal-rss-header)
819         (muse-journal-rss-footer, muse-journal-rss-entry-template): Add
820         newlines to make the output look nicer.
821         (muse-journal-html-munge-buffer, muse-journal-rss-munge-buffer):
822         Use muse-insert-file-or-string for the entry templates, rather
823         than muse-insert-markup.  This allows <lisp> and <markup> tags to
824         be acted on.  Thanks to Scott Hyde for the report.
825         (muse-journal-html-munge-buffer): Escape quote of the day using
826         entire-document specials before snarfing it.  Mark entire template
827         as read-only -- this fixes an incorrect escaping bug.  Remove
828         read-only properties before replacing template matches so that
829         they can still be escaped with entire-document specials later on.
830         (muse-journal-rss-munge-buffer): Make sure that title is escaped
831         properly.
832         (muse-journal-markup-tags): Rename from
833         muse-journal-latex-markup-tags, because we will use it for
834         journal-rss-entry as well.
835         (muse-journal-qotd-tag): Move higher.  Use begin-quote-item and
836         end-quote-item.
837         (muse-journal-rss-munge-buffer): Use journal-rss-entry rather than
838         html.
839         ("journal-latex", "journal-pdf", "journal-book-latex")
840         ("journal-book-pdf"): Use muse-journal-markup-tags rather than
841         muse-journal-latex-markup-tags.
842         ("journal-rss-entry"): New style that is used by journal-rss and
843         journal-rdf to mark up individual entries.  It is needed so that
844         we can do something meaningful with the qotd tag.
845         (muse-journal-rdf-summarize-entries): Set this to nil by default,
846         because it is annoying.  Update docs to mention this.
847         (muse-journal-rss-summarize-entries): Docfix.
849         * lisp/muse-publish.el (muse-insert-file-or-string): Use
850         muse-publish-markup-header-footer-tags.  I'm not quite sure how
851         this change got reverted.
852         (muse-markup-tag-info): Make into a function.  Move common code
853         here, rather than duplicating it in two places.  Deal with case
854         where muse-publish-use-header-footer-tags is non-nil.
855         (muse-publish-markup-specials, muse-publish-inhibit-style-hooks)
856         (muse-inhibit-style-tags): Move higher to avoid byte-compiler
857         warning.
858         (muse-publish-use-header-footer-tags): New variable that indicates
859         whether we should use just the header and footer tags, rather than
860         the full set.
861         (muse-insert-file-or-string): Bind
862         muse-publish-use-header-footer-tags to t.
863         (muse-publish-markup-tag, muse-publish-call-tag-on-buffer):
864         Simplify call to muse-markup-tag-info.
865         (muse-publish-mark-up-tag): Bind
866         muse-publish-use-header-footer-tags to nil.
868         * texi/muse.texi (Journal): Update for recent changes.
870 2007-07-14  Michael Olson  <mwolson@gnu.org>
872         * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Don't
873         delete the remainder of the buffer, since this causes the
874         resulting RDF to have invalid syntax.  Thanks to Phillip Lord for
875         the report and the suggested fix.
877         * lisp/muse-publish.el (muse-publish-markup-regexps): Add "^" to
878         beginning of table-el regexp.  This fixes a bug where Muse stalls
879         when trying to publish a malformed table.  Thanks to Ye Wenbin for
880         the report and the suggested fix.
882 2007-07-12  Michael Olson  <mwolson@gnu.org>
884         * lisp/muse-wiki.el (muse-wiki-interwiki-regexp): Set to nil by
885         default, rather than the empty string.  This really fixes the bug
886         that occurred when using Muse with muse-project-alist set to nil.
887         Thanks to Jonathan Underwood for the report.
888         (muse-wiki-update-interwiki-regexp): Set
889         muse-wiki-interwiki-regexp to nil if muse-project-alist is not
890         defined.
891         (muse-wiki-handle-implicit-interwiki)
892         (muse-wiki-handle-explicit-interwiki): Handle case where
893         muse-wiki-interwiki-regexp is nil.
895 2007-07-10  Michael Olson  <mwolson@gnu.org>
897         * lisp/muse-mode.el (muse-grep): Abort search if the current
898         project contains no directories.
900         * lisp/muse-project.el (muse-project-file-alist): If
901         muse-project-alist is not defined, or project is nil, return nil
902         right away.  This ought to fix a bug that occurred when using Muse
903         with muse-project-alist set to nil.
904         (muse-project-of-file): Make sure muse-project-alist is not nil.
905         (muse-project-save-buffers): Make sure project is not nil.
907         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Deal with
908         case where muse-project-alist is nil.
910         * lisp/muse.el (muse-replace-regexp-in-string): Explicitly check
911         for XEmacs, since color-theme.el is poorly behaved, and defines
912         its own replace-in-string.  Bad color-theme.el -- no cookie for
913         you.
915 2007-07-01  Michael Olson  <mwolson@gnu.org>
917         * Makefile (.PHONY): Update for new debian package rules.
919         * lisp/muse-book.el (muse-book-latex-footer): Wrap long line.
921         * lisp/muse-docbook.el (muse-docbook-fixup-citations): Re-indent.
922         Use save-restriction properly.
923         (muse-docbook-entities, muse-docbook-bibliography): : Re-indent.
925         * lisp/muse-latex.el (muse-latex-footer): Wrap long line.
926         (muse-latex-fixup-citations): Re-indent.  Use save-restriction
927         properly.
928         (muse-latex-bibliography): Re-indent.
930         * lisp/muse-publish.el (muse-publish-get-and-delete-attr): Move
931         higher.  This fixes an error at startup with some versions of
932         Emacs.
933         (muse-publish-cite-tag): Re-indent.
935         * lisp/muse-wiki.el (muse-wiki-handle-explicit-interwiki): Narrow
936         to the end of the link part, so as to exclude the description from
937         the match.  This fixes a bug with three-part links that have
938         descriptions.  Thanks to everyone who pointed it out.
940 2007-06-18  Michael Olson  <mwolson@gnu.org>
942         * lisp/muse-html.el (muse-html-markup-strings): Add anchor.
943         (muse-xhtml1.1-markup-strings): New option that specifies XHTML
944         1.1 specific markup strings.
945         (muse-html-insert-anchor): Use 'anchor string, rather than
946         hard-coding it.  Thanks to Chris Corsair for the suggestion.
947         ("xhtml1.0"): New style that is an alias for the xhtml style.
948         ("xhtml1.1"): New style that publishes XHTML 1.1 compliant output.
950 2007-06-17  Michael Olson  <mwolson@gnu.org>
952         * examples/QuickStart.muse: Make images local so that the Info
953         version of this document works.  Add <example> for the Literal
954         paragraphs chapter, so that it is clear what is happening.
956         * Makefile: Add elpa target, which is used for building an ELPA
957         package for Muse.
959         * Makefile.defs (ELPADIR, ELPADESC): New variables used for
960         building ELPA packages.
962         * examples/Makefile (%.html, %.pdf, %.info): Add message to
963         indicate what we are publishing.
964         (realclean distclean fullclean): Remove all TeX crud.
966         * examples/emacs-muse.png, examples/muse-made-with.png: Include so
967         that the Info version of QuickStart can publish correctly.
969         * lisp/muse-latex.el (muse-latex-slides-header)
970         (muse-latex-lecture-notes-header): Docfix.
972         * lisp/muse-project.el (muse-project-ignore-regexp): Add .git to
973         the list of things to ignore.
975         * lisp/muse-publish.el (muse-publish-markup-list): Remove unused
976         variable.
978         * lisp/muse-texinfo.el (muse-texinfo-process-natively): Set
979         default to nil, since texinfmt.el is a serious nuisance.
980         (muse-texinfo-markup-strings): Add newlines to begin-example and
981         end-example.
982         (muse-texinfo-decide-specials): Also escape URL-type specials in a
983         whole slew of other contexts.
985         * lisp/muse-xml-common.el (muse-xml-encoding-map): Change group to
986         muse-xml.
988         * lisp/muse-xml.el (muse-xml-footer): Docfix.
990         * lisp/muse.el (muse-version): Release Emacs Muse version 3.03.
992 2007-06-16  Michael Olson  <mwolson@gnu.org>
994         * etc/IDEAS.muse: Add some ideas from David D. Smith.
996         * examples/QuickStart.muse: Overhaul.
998         * lisp/muse-project.el (muse-project): Call the last part of a
999         muse-project-alist entry "Output styles" rather than "styles".
1001         * lisp/muse-publish.el (muse-publish-table-fields): Handle case
1002         where we have a pipe character at the beginning of line.
1004         * lisp/muse-xml-common.el (muse-xml-sort-table): Fix typo that was
1005         causing tables to not be sorted at all.
1007         * texi/muse.texi: Overhaul.  It would be too time-consuming to
1008         list all of the changes here.  The "Getting Started" and
1009         "Projects" chapters, in particular, were heavily revised.
1011 2007-06-15  Michael Olson  <mwolson@gnu.org>
1013         * NEWS: Update.
1015         * examples/QuickStart.muse: Mention new features.
1017         * lisp/muse-colors.el (muse-colors-toggle-inline-images): Docfix.
1018         Remove C-c C-i keybinding, since it conflicts with C-c TAB in the
1019         terminal, and C-c TAB is more important.  Most people will not
1020         want to toggle images on and off that often.
1022         * lisp/muse-mode.el (muse-mode-map): Bind muse-insert-thing to C-c
1023         C-i as well, so that it works in the terminal.
1025         * lisp/muse-publish.el (muse-publish-literal-tag): Make the output
1026         look a bit tidier when removing the region.
1028         * lisp/muse-regexps.el (muse-list-item-regexp): Put definition
1029         list regexp part before other parts.
1030         (muse-ol-item-regexp): New regexp that specifies how to match an
1031         ordered list item.
1032         (muse-ul-item-regexp): New regexp that specifies how to match an
1033         unordered list item.
1034         (muse-table-field-regexp): New regexp that specifies how to match
1035         a definition list entry.
1037         * lisp/muse-texinfo.el (muse-texinfo-info-generate): Work around
1038         lack of support for @headitem in texinfmt.el.
1040         * lisp/muse.el: Wrap muse-line-beginning-position and
1041         muse-line-end-position in `eval-and-compile', since they are now
1042         used in muse.el.
1043         (muse-list-item-type): Use a simpler algorithm for detecting which
1044         kind of list item we have.  This fixes a bug where a number in a
1045         definition list term was being detected incorrectly as an ordered
1046         list item.  Fixes bug #6250.
1047         (muse-forward-list-item): Get the entire line with the list item.
1048         For some reason, Emacs 21 was not populating match 2 correctly,
1049         unlike Emacs 22, so this workaround was needed.
1051         * texi/muse.texi: (Keystroke Summary): Remove C-c
1052         C-i (`muse-insert-tag') documentation, and mention C-c C-i as an
1053         alternative keybinding to the C-c TAB stuff.  Mention
1054         muse-colors-toggle-inline-images.
1056 2007-06-14  Michael Olson  <mwolson@gnu.org>
1058         * README: Mention that RelaxNG schema is in etc/ directory.
1060         * etc/emacs-wiki-migration.txt: New document that explains how to
1061         migrate from emacs-wiki to Muse.
1063         * etc/muse.rnc: Increment version number to 1.0.  Fix several
1064         nested emphasis and nested lists edge cases.  Move here from
1065         examples/.
1067         * lisp/muse-mode.el (muse-mode-map): Permit C-c C-M-t to do the
1068         same thing as C-c C-S-t, since the former works better in the
1069         console.  Thanks to Leo for the suggestion.
1071         * lisp/muse-publish.el (muse-publish-markup-table)
1072         (muse-publish-markup-table-el): Include a newline in the return
1073         string, so that paragraph detection does not get confused.
1075         * lisp/muse.el (muse-with-temp-buffer): Docfix.
1077         * texi/muse.texi (Keystroke Summary): Document the C-c C-M-t
1078         keybinding.
1080 2007-06-13  Michael Olson  <mwolson@gnu.org>
1082         * etc/IDEAS.muse: Mark three-part-links item as done.
1084         * experimental/muse-message.el: Remove guard for muse-define-style
1085         calls.
1087         * lisp/muse-colors.el (muse-configure-highlighting): Fix bug where
1088         markup rules were being interpreted in reverse order.  This should
1089         make implicit interwiki links work properly again.
1090         (muse-link-face): Strip anchor from end of a path, so that this
1091         works with anchors in interwiki links.
1092         (muse-colors-insert-image): Catch error that occurs in Emacs 21
1093         when an image does not exist.
1095         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Permit
1096         anchors.
1097         (muse-wiki-handle-implicit-interwiki): Docfix.  Make anchors in
1098         interwiki links work.  Thanks to Jim Ottaway for the initial
1099         implementation.
1100         (muse-wiki-handle-explicit-interwiki): Make anchors in interwiki
1101         links work.
1103         * lisp/muse.el (muse-handle-implicit-link): Docfix: only care
1104         about match 0.
1105         (muse-handle-explicit-link): Docfix: this does not modify the
1106         match data.
1107         (muse-file-remote-p): In Emacs 21, ange-ftp-name-format is a list
1108         that has the regexp in its car.
1110 2007-06-12  Michael Olson  <mwolson@gnu.org>
1112         * README: Document new etc/ directory.
1114         * etc/IDEAS.muse: Install things from new contributors just after
1115         the 3.03 release, since I won't have time to review the code
1116         before the release.  Move to new etc/ directory.  Slides
1117         publishing has been installed.
1119         * lisp/muse-latex.el (muse-latex-slides-header): New option that
1120         determines the header to use for publishing slides.
1121         (muse-latex-lecture-notes-header): New option that determines the
1122         header to use for publishing lecture notes.
1123         (muse-latex-slides-markup-tags): New option containing tags to use
1124         when publishing slides.
1125         (muse-latex-permit-contents-tag): Move higher in file.
1126         (muse-latex-slide-tag): New function to publish the <slide> tag.
1127         ("slides", "slides-pdf"): New publishing styles that create slides
1128         using Beamer.
1129         ("lecture-notes", "lecture-notes-pdf"): New publishing styles that
1130         create lecture notes using Beamer.
1132         * lisp/muse.el: Re-add the auto-mode-alist part to top-level,
1133         since otherwise Planner is not happy when `plan' is called during
1134         init.  Remove stray quote from autoload snippet.
1136 2007-06-11  Michael Olson  <mwolson@gnu.org>
1138         * lisp/muse.el: Make the add-to-list 'auto-mode-alist part an
1139         autoload, rather than having it exist at top-level.  Thanks to Leo
1140         for the suggestion.
1141         (muse-update-file-extension): Docfix.
1143 2007-06-10  Michael Olson  <mwolson@gnu.org>
1145         * lisp/muse-publish.el (muse-publish-strip-URL): Fix bug where
1146         URLs were being removed during publishing.  Thanks to everyone who
1147         reported this.
1149 2007-06-09  Markus Hoenicka <markus.hoenicka@mhoenicka.de>
1151         * lisp/muse-book.el
1152         * lisp/muse-docbook.el
1153         * lisp/muse-latex.el
1154         * lisp/muse-publish.el: added support for <cite> element which
1155         denotes in-text citations
1157         * lisp/muse-html.el
1158         * lisp/muse-groff.el
1159         * lisp/muse-texinfo.el
1160         * lisp/muse-xml.el: added support for <cite> element (stub)
1162 2007-06-06  Michael Olson  <mwolson@gnu.org>
1164         * lisp/muse-regexps.el (muse-table-line-regexp)
1165         (muse-table-hline-regexp, muse-table-el-border-regexp): Fix
1166         regexps so that they work with XEmacs 21.  Thanks to Adrian
1167         Tritschler for the report.
1169         * texi/muse.texi: Update copyright years.
1170         (HTML): Document muse-xhtml-style-sheet.  Thanks
1171         to thorne for noticing.
1172         (Development): Change archive year to 2006.  Thanks to Adrian
1173         Tritschler for noticing.  So *that's* why some people had the 2005
1174         version ....
1176 2007-06-05  Michael Olson  <mwolson@gnu.org>
1178         * Makefile (install-info): Remove $(MANUAL).info part, since this
1179         is taken care of already by texi/Makefile.  Thanks to Leo for the
1180         report.
1182         * lisp/muse-journal.el (muse-journal-html-munge-buffer): Add
1183         read-only properties to qotd contents, so that they don't get
1184         double-escaped.  Thanks to Leo for the report.
1186 2007-06-04  Michael Olson  <mwolson@gnu.org>
1188         * lisp/muse-colors.el (muse-link-face): If the link is to a remote
1189         -- that is, Tramp or ange-ftp -- file, then do not call
1190         file-exists-p on it.  Thanks to Jim Ottaway for the suggestion.
1191         Fixes bug #5115.
1193         * lisp/muse-html.el (muse-html-insert-contents): Add
1194         documentation.  Handle case where heading is read-only, but has
1195         muse-contents property.  Remove the muse-contents property for any
1196         heading we come across so as to avoid double-including an item in
1197         an outer table of contents.
1198         (muse-html-denote-headings): New function that denotes whether a
1199         heading is not read-only by adding the muse-contents property to
1200         it.
1201         (muse-html-munge-buffer): If we are not to generate contents,
1202         still denote headings, in case some outer layer wants to generate
1203         contents for our headings.  This should fix a bug with table of
1204         contents and the <include> tag.  Thanks to thorne for the report.
1206         * lisp/muse-publish.el (muse-publish-markup-region): Let-bind
1207         muse-publish-generate-contents and set it to nil.  This should
1208         do the right thing when using <include> tags.
1210 2007-06-02  Michael Olson  <mwolson@gnu.org>
1212         * NEWS: Update for non-inlined image change and support for
1213         table.el style tables.
1215         * examples/Makefile (clean): Clean backup files.
1217         * examples/QuickStart.muse (Images): New section that describes
1218         how to inline and not inline images.
1220         * lisp/muse-colors.el (muse-colors-resolve-image-file): Don't
1221         touch images that have "URL:" in front of them.
1223         * lisp/muse-protocols.el (muse-url-protocols): Add handler for
1224         "URL:".  Use the identity function to resolve, since we don't want
1225         to rip "URL:" out while publishing, due to some magic that depends
1226         on that text.
1227         (muse-browse-url-url): New function that browses URLs that have
1228         "URL:" in front of them, by removing the "URL:" part and
1229         reprocessing the remainder.
1231         * lisp/muse-publish.el (muse-publish-classify-url): Docfix.
1232         (muse-publish-url): Recognize images in the description before
1233         images in the link.  Fixes bug #5112.  Thanks to Thomas Kappler
1234         for the suggested workaround.
1235         (muse-publish-desc-transforms): Add `muse-publish-strip-URL' as a
1236         default value.
1237         (muse-publish-classify-url): If target begins with "URL:" return
1238         type url.
1239         (muse-publish-strip-URL): New function that strips "URL:" from the
1240         beginning of a string.  This is used to remove URL: from the link
1241         description.  * texi/muse.texi (Markup Strings): Clarify the
1242         meanings of image-link, link, and link-and-anchor.
1243         (muse-publish-markup-regexps): Move normal table rule to 2350.
1244         Rule 2300 is now a regexp that matches table.el-style tables.
1245         (muse-publish-markup-functions): Add table-el entry.
1246         (muse-publish-table-el-table): New function that given a variant,
1247         publishes a table.el-style table using the table in the matched
1248         region.
1249         (muse-publish-markup-table-el): New function that determines
1250         whether the table.el-style table can be published, and what
1251         variant to use.
1253         * lisp/muse-regexps.el (muse-tag-regexp): New regexp that matches
1254         the borders of table.el-style tables.
1256         * lisp/muse-xml-common.el (muse-xml-markup-table): Make sure that
1257         the table has sufficient whitespace in front of it.
1259         * texi/muse.texi (Images): Update for new non-inlined image
1260         ability and provide example.
1262 2007-05-31  Michael Olson  <mwolson@gnu.org>
1264         * NEWS: Add example for setting `muse-html-table-attributes'.
1266         * lisp/muse-xml-common.el (muse-xml-markup-table): Add docstring.
1267         Publish multiple tbody tags if there is a horizontal separator
1268         after the heading, because that is valid HTML after all.
1270 2007-05-30  Michael Olson  <mwolson@gnu.org>
1272         * NEWS: Update.
1274         * lisp/muse-latex.el (muse-latex-markup-table): Deal with
1275         horizontal separators in tables.
1277         * lisp/muse-publish.el (muse-publish-markup-regexps): Recognize
1278         horizontal separators in tables.
1279         (muse-publish-trim-table): New function to remove initial and
1280         final blank columns from a table.
1281         (muse-publish-table-fields): Call `muse-publish-trim-table'.  Deal
1282         with horizontal separators, aka "hlines".
1284         * lisp/muse-regexps.el (muse-table-hline-regexp): New regexp that
1285         defines the syntax of a horizontal separator in a table.
1287         * lisp/muse-texinfo.el (muse-texinfo-markup-table): Deal with
1288         horizontal separators.  Publish header lines correctly.
1290         * lisp/muse-xml-common.el (muse-xml-sort-table): Deal with case
1291         where we have nonnumbers as a row type.  This ignores sorting for
1292         hlines.
1293         (muse-xml-markup-table): Deal with horizontal separators.  If the
1294         markup supports table groups, make hlines separate table groups.
1295         Otherwise, ignore them, since they cannot be marked up.  Together,
1296         these changes allow us to support orgtbl-mode tables.  Thanks to
1297         Carsten Dominik for the suggestion.
1299 2007-05-26  Michael Olson  <mwolson@gnu.org>
1301         * lisp/muse-project.el (muse-project-alist-styles): Allow for
1302         other things to be added to each generated style as well.  For
1303         example, this permits me to add
1304         :base-url "http://blog.mwolson.org/"
1305         for my blog.
1307 2007-05-25  Michael Olson  <mwolson@gnu.org>
1309         * Makefile (debclean, debprepare, debbuild, debinstall, deb): New
1310         way of building Debian packages that preserves the original
1311         release tarball and is more modular.
1312         (debrevision, debrelease): Remove.
1313         (dist): No need to remove the debian/ directory, since it is now
1314         in its own branch.
1315         (debprepare): Copy over debian/ directory properly.
1317         * NEWS: Update.
1319         * examples/Makefile (clean): Remove QuickStart.texi, in case
1320         something went wrong during the build.
1321         (%.pdf): Publish the example using the normal pdf style, rather
1322         than info-pdf.
1324         * examples/QuickStart.muse: Add myself to the authors list.
1326         * lisp/muse-html.el (muse-html-src-tag): Ensure that we have
1327         sufficient blank lines before the tag.
1329         * lisp/muse-journal.el (muse-journal-latex-qotd-tag): Ensure that
1330         we have sufficient blank lines before the tag.
1332         * lisp/muse-latex.el (muse-latex-pdf-program): New option that
1333         specifies the program to call in order to generate PDF content
1334         from LaTeX content.
1335         (muse-latex-pdf-cruft): New option that specifies the extensions
1336         of files to remove after generating PDF output successfully.
1337         (muse-latex-pdf-generate): Use these new options.  Work around the
1338         annoying edge case where a tilde character exists in the filename
1339         or directory path -- now this can only error out when the relative
1340         path from the output file to the source file contains a tilde,
1341         which is far less likely.
1343         * lisp/muse-publish.el (muse-publish-markup-attribute): Don't use
1344         muse-publish-ensure-block here after all, because <lisp> et al may
1345         occur inline as part of other things.
1347         * lisp/muse-texinfo.el ("texi"): Make muse-texinfo-munge-buffer
1348         occur after full-document escaping, rather than before.  This
1349         prevents automatically-inserted Texinfo code from being escaped.
1350         (muse-texinfo-pdf-generate): Rewrite to call
1351         `muse-latex-pdf-generate' with pdftex as the generating binary,
1352         because texi2pdf suffers irredeemably from the tilde edge case
1353         mentioned above.
1355 2007-05-24  Michael Olson  <mwolson@gnu.org>
1357         * NEWS: Drop vague entries and position interesting entries closer
1358         to the top of each section.  Update for new changes.
1360         * lisp/muse-project.el (muse-project-ignore-regexp): Add Mercurial
1361         and bzr metadata directories to the list of things to ignore.
1363         * lisp/muse-publish.el (muse-publish-ensure-block): Rename from
1364         `muse-publish-ensure-block-tag', since we will use it for more
1365         than just tags.
1366         (muse-publish-markup-list, muse-publish-verse-tag)
1367         (muse-publish-quote-tag, muse-publish-example-tag)
1368         (muse-publish-markup-attribute): Use it.  This fixes a bug that
1369         can occur when these types of markup occur immediately after a
1370         paragraph.  It's good to have defined behavior!
1372         * texi/muse.texi (Markup Strings): Mention new argument for
1373         link-and-anchor.
1375 2007-05-19  Michael Olson  <mwolson@gnu.org>
1377         * lisp/muse-html.el (muse-html-markup-footnote): Add class tags to
1378         published footnotes and footnote references.  Thanks to Scott
1379         Jaderholm for the idea.
1381         * lisp/muse-latex.el (muse-latex-markup-strings): Revert change to
1382         link-and-anchor, on the recommendation of the original submitter.
1384 2007-05-14  Michael Olson  <mwolson@gnu.org>
1386         * lisp/muse-latex.el (muse-latex-markup-strings): Use better
1387         link-and-anchor markup.  Thanks to Jean Magnan de Bornier for the
1388         suggestion.
1390         * lisp/muse-publish.el (muse-publish-url): Pass the url without a
1391         file extension as the fourth argument.
1393         * README, texi/muse.texi (Getting Help and Reporting Bugs):
1394         Mention the new muse-el-logs mailing list.
1396 2007-05-13  Michael Olson  <mwolson@gnu.org>
1398         * lisp/muse-protocols.el (muse-resolve-url): Don't concatenate
1399         "\`" here.  This fixes a problem with publishing custom URLs.
1401 2007-05-12  Michael Olson  <mwolson@gnu.org>
1403         * lisp/muse-blosxom.el (muse-blosxom-update-page-date-alist): Only
1404         update the list if the current buffer is associated with a file.
1405         This fixes a bug with M-x muse-publish-region in a temporary
1406         buffer.
1408 2007-05-01  Michael Olson  <mwolson@gnu.org>
1410         * lisp/muse-publish.el (muse-publish-region): Remove read-only
1411         properties from the published buffer, so that the results can be
1412         manually tweaked.
1414 2007-04-23  Michael Olson  <mwolson@gnu.org>
1416         * lisp/muse-publish.el (muse-publish-markup-footnote): If we can't
1417         find the footnote that goes with a reference, leave the reference
1418         as-is.  This fixes an error where control characters could be
1419         placed in a published document.
1421 2007-04-22  Michael Olson  <mwolson@gnu.org>
1423         * IDEAS.muse: Add muse-slides.el to list of things to include
1424         before release.
1426         * lisp/muse-protocols.el (muse-url-protocols): Remove stray quote
1427         character.
1428         (muse-protocol-find): Find protocols correctly.  Rewrite to use
1429         catch/throw.
1430         (muse-browse-url): Don't concatenate "\`" here.  Together, this
1431         fixes a bug with browsing woman:// links.
1433         * lisp/muse-project.el (muse-project-alist-styles): Deal with case
1434         where entry-dir has a trailing backslash.
1435         (muse-project-publish-file): If a style is malformed, skip it and
1436         display a warning message.  This should help people figure out
1437         where the problem is.
1439 2007-04-21  Michael Olson  <mwolson@gnu.org>
1441         * lisp/muse-latex2png.el (muse-publish-math-tag): If using the
1442         yet-to-be-included "contex" publishing style, use "$$" rather
1443         than "\[" and "\]".  Thanks to Jean Magnan de Bornier for pointing
1444         this out.
1446 2007-04-20  Michael Olson  <mwolson@gnu.org>
1448         * lisp/muse-publish.el (muse-publish-inhibit-style-hooks): New
1449         variable that causes the :before and :before-end hooks to be
1450         ignored when non-nil.
1451         (muse-publish-markup-region): Use it.  Also, guarantee that point
1452         is at end of region after publishing.
1453         (muse-publish-mark-up-tag): Simplify, taking advantage of the new
1454         variable.
1456 2007-04-19  Michael Olson  <mwolson@gnu.org>
1458         * IDEAS.muse: New file containing a list of ideas we have for new
1459         features, or patches that have yet to be applied.
1461         * README: Call it "Emacs Muse", not "the Emacs Muse".  No need to
1462         be so confusing.
1464         * lisp/muse-html.el (muse-html-table-attributes): Fix typo in
1465         docstring.
1467         * lisp/muse-publish.el (muse-publish-markup-tags): Handle
1468         <literal> tags with muse-publish-literal-tag, rather than
1469         muse-publish-mark-read-only.
1470         (muse-publish-literal-tag): New function that publishes the
1471         <literal> tag.  It adds the ability to add the optional "style"
1472         and "exact" elements, which cause text to only be included if the
1473         current publishing style matches some criteria.  The text will be
1474         removed otherwise.  Thanks to Jim Ottaway for the implementation.
1475         (muse-publish-mark-up-tag): Let the <markup> tag take the
1476         additional optional elements "style" and "exact", with much the
1477         same effect as the <literal> improvements, but after calling
1478         "function" or publishing the region first.  Make it possible to
1479         put <content> tags in <markup> regions in HTML publishing.
1481 2007-04-12  Michael Olson  <mwolson@gnu.org>
1483         * lisp/muse-publish.el (muse-publish-markup-heading): Make sure
1484         that a blank line always exists after a heading.  This fixes a bug
1485         in Docbook paragraph detection.  Thanks to Jean Magnan de Bornier
1486         for the report.
1488         * lisp/muse-xml.el (muse-xml-markup-regexps): Update paragraph
1489         detection regexp to that which is used in Docbook and HTML
1490         publishing styles.
1492 2007-04-02  Michael Olson  <mwolson@gnu.org>
1494         * README (muse-el-announce): Make a listing of mailing lists,
1495         rather than pointing to the old EmacsWikiMailingList page.  Thanks
1496         to Andreas Roehler for noticing.
1498 2007-04-01  Michael Olson  <mwolson@gnu.org>
1500         * lisp/muse-publish.el (muse-publish-date-format): Add
1501 `       customization type and group.
1502         (muse-publish-region): New interactive function that publishes a
1503         region to a new buffer.
1505         * texi/muse.texi: Use "document" rather than "manual".
1507 2007-03-31  Michael Olson  <mwolson@gnu.org>
1509         * lisp/muse-publish.el (muse-style-derived-p): Fix bug where the
1510         expression (muse-style-derived-p "latex" (muse-style "latex"))
1511         yielded nil.  It now yields t, as expected.  Thanks to Jim Ottaway
1512         for the catch.
1514 2007-02-25  Michael Olson  <mwolson@gnu.org>
1516         * lisp/muse-publish.el (muse-publish-date-format): New option that
1517         specifies how to format the date when publishing Muse pages.
1518         Thanks to Thomas Gehrlein for the suggestion.
1519         (muse-publish-markup-buffer): Use it.
1521 2007-02-23  Michael Olson  <mwolson@gnu.org>
1523         * README: Add Prerequisites section to mention which versions of
1524         Emacs work with Muse.  Thanks to Exal de Jesus Garcia Carrillo for
1525         the suggestion.  Update link destination for Muse's page on
1526         emacswiki.org.
1528 2007-02-15  Michael Olson  <mwolson@gnu.org>
1530         * lisp/muse.el (muse-goto-tag-end): Modify regexp to allow tags to
1531         be not just at beginning of line.  This fixes an error with the
1532         <class> tag.  Thanks to Jim Pivarski for the report.
1534 2007-02-14  Michael Olson  <mwolson@gnu.org>
1536         * lisp/muse-publish.el (muse-publish-classify-url): Check to see
1537         whether something is an image before checking to see if it is a
1538         URL.  Thanks to ITSUMI ken-ichi for the report.
1540 2007-02-13  Michael Olson  <mwolson@gnu.org>
1542         * lisp/muse-publish.el (muse-publish-markup-regexps): Handle
1543         comments that have no text better.  Thanks to fang.lungang for the
1544         report.
1545         (muse-publish-markup-comment): Deal with case where no comment
1546         text is provided.
1548 2007-01-23  Michael Olson  <mwolson@gnu.org>
1550         * lisp/muse-publish.el (muse-publish-ensure-block-tag): New macro
1551         that ensures that at least one blank line exists at the given
1552         position.  This is used to avoid paragraph detection problems when
1553         block-level tags like <example> immediately follow a paragraph.
1554         Thanks to Hans Ekbrand for the report.
1555         (muse-publish-example-tag): Use it.
1557 2007-01-19  Michael Olson  <mwolson@gnu.org>
1559         * lisp/muse-latex2png.el (muse-publish-math-tag): Only remove the
1560         previous blank line if we are publishing in Latex.  Otherwise,
1561         that wouldn't be the right thing, so leave it be.
1563 2007-01-17  Michael Olson  <mwolson@gnu.org>
1565         * lisp/muse-latex2png.el (muse-publish-math-tag): Don't put
1566         multiple centered math lines on the same line; keep them on
1567         different lines.  Use \[ math-text \] instead of $$math-text$$,
1568         since the latter seems to be deprecated.  Thanks to Jody Klymak
1569         for the pointer.
1571 2007-01-15  Michael Olson  <mwolson@gnu.org>
1573         * lisp/muse-latex2png.el (muse-publish-latex-tag)
1574         (muse-publish-math-tag): Publish region read-only when current
1575         style is Latex-derived, so that Muse does not escape it.
1576         (muse-publish-math-tag): If 6 or more spaces come before the tag,
1577         surround the region with "$$" rather than "$".  This is the Muse
1578         syntax for something centered, so it should be a good fit.
1580 2007-01-15  Valery V. Vorotyntsev  <valery.vv@gmail.com>
1582         * lisp/muse-protocols.el (muse-url-protocols): Add "woman://"
1583         protocol.
1584         (muse-browse-url-man): Change man page URL format.  The code is
1585         simpler when the section is left inside parentheses.
1586         (muse-browse-url-woman): New function.
1588 2007-01-14  Michael Olson  <mwolson@gnu.org>
1590         * AUTHORS: Bookkeeping.
1592         * lisp/muse-latex2png.el: Associate <math> tag with
1593         muse-publish-math-tag, not muse-publish-latex-tag.  Thanks to Jody
1594         Klymak for the report.
1595         (muse-publish-math-tag): Use muse-insert-markup for the "$"
1596         characters, so they don't get escaped.
1598         * lisp/muse-publish.el (muse-style-derived-p-1): New function to
1599         make muse-style-derived-p easier to implement.
1600         (muse-style-derived-p): If the style is not provided, fetch it and
1601         check to see if the car is a string.  This should fix the other
1602         problem that was reported.
1604         * texi/muse.texi (Projects): Apply patch from Bradley M. Kuhn that
1605         explains a case where setting muse-file-extension to nil can cause
1606         unexpected behavior.
1608 2007-01-09  Michael Olson  <mwolson@gnu.org>
1610         * lisp/muse-publish.el (muse-publish-markup-regexps): Make
1611         comments higher priority than tags.  Thanks to Stefan van der Walt
1612         for the report.
1614 2007-01-08  Michael Olson  <mwolson@gnu.org>
1616         * lisp/muse-publish.el (muse-markup-tag-info): Use the given
1617         argument rather than calling match-string.  Thanks to Stefan van
1618         der Walt for the report.  This should fix a bug with publishing
1619         <include file="..." markup="example">.
1621 2007-01-06  Michael Olson  <mwolson@gnu.org>
1623         * Makefile (debclean): New rule split from debrevision and
1624         debrelease.
1625         (debbuild): Take distributor into account.
1627         * Makefile.defs (DISTRIBUTOR): New field that tracks what
1628         vendor/distributor we are building for.
1630 2007-01-04  Michael Olson  <mwolson@gnu.org>
1632         * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
1633         line.
1635         * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
1636         point to muse-publish-src-tag by default, since <src> and
1637         <example> have different parameters.
1638         (muse-publish-src-tag): New barebones publishing function for
1639         <src>, which is superseded when publishing in an HTML-based style.
1641 2007-01-03  Michael Olson  <mwolson@gnu.org>
1643         * lisp/muse-html.el (muse-html-src-tag): Document.
1645         * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
1646         command that calls a given tag on the current buffer.  Attributes
1647         may be passed.
1648         (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
1649         it.
1650         (muse-publish-srcify-buffer): New function that allows
1651         markup="src" in the <include> tag.
1652         (muse-publish-get-and-delete-attr): New macro that gets an
1653         attribute from a list and removes the first instance of that
1654         attribute from said list.
1655         (muse-publish-markup-attribute): Handle markup="src".
1656         (muse-publish-command-tag, muse-publish-include-tag): Use
1657         muse-publish-get-and-delete-attr.  This allows the remaining
1658         attributes to be passed.
1660         * texi/muse.texi (Tag Summary): Update for new <src> tag as well
1661         as changes to <command> and <include>.
1663 2006-12-30  Michael Olson  <mwolson@gnu.org>
1665         * NEWS: Update.
1667         * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
1668         from muse-publish-math-tag to avoid conflict with
1669         muse-latex2png.el.
1671 2006-12-23  Michael Olson  <mwolson@gnu.org>
1673         * lisp/muse-latex2png.el: Update header, since this has been
1674         rewritten sufficiently to not need an assignment from the original
1675         author.
1676         (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
1677         (muse-latex2png): Use two underscores to separate prefix and hash.
1678         (muse-latex2png-region): New function split from
1679         muse-publish-latex-tag that can be used easily by other code.
1680         Detect whether we are using an HTML-based publishing style, and
1681         insert a simpler markup if we are not.  If we are using a
1682         Latex-based publishing style, do not generate an image, and leave
1683         the region alone.  Return the path of the generated image, in case
1684         other functions want to use this programmatically.
1685         (muse-publish-latex-tag): Set a default prefix based on the name
1686         of the current file.
1687         (muse-publish-math-tag): New tag that surrounds the region with
1688         "$" characters, so that it becomes a Latex math region, and then
1689         publishes it.
1691         * lisp/muse-publish.el (muse-style-derived-p): New function that
1692         returns non-nil if a given style, or the current style if omitted,
1693         is equal to or derived from the given base style.  This is useful
1694         in <lisp> tags, because it allows the user to specify markup that
1695         is only to be inserted for one particular style.
1697 2006-12-22  Michael Olson  <mwolson@gnu.org>
1699         * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
1700         (muse-html-src-tag): New function which publishes the <src> tag.
1701         Thanks to Clinton Ebadi and Charles Wang for the initial
1702         implementations.
1704         * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
1706 2006-12-21  Michael Olson  <mwolson@gnu.org>
1708         * examples/johnw/muse-johnw.el: Update for preferred
1709         muse-derive-style usage.  Rename to muse-init.el.
1711         * examples/mwolson/muse-init.el: Update.
1713         * lisp/muse-book.el (muse-book-publish): New function split from
1714         muse-book-publish-project.  This is used in the definitions for
1715         the book-latex and book-pdf styles.
1716         (muse-book-publish-p): New function split from muse-book-publish.
1717         (muse-book-get-directives): New function that retrieves the
1718         publishing directives from the given file.
1719         (muse-book-publish): Use muse-book-get-directives to set the title
1720         if no title was specified.
1722         * lisp/muse-project.el (muse-project): Add :publish-project entry
1723         to widget.
1724         (muse-read-project, muse-project-find-file): Message fix.
1725         (muse-project-publish-file-default): New function split from
1726         muse-project-publish-file.
1727         (muse-project-publish-file): Allow file-level publishing function
1728         to be specified by the :publish element.  The default is
1729         muse-project-publish-file-default.
1730         (muse-project-publish-default): New function split from
1731         muse-project-publish.
1732         (muse-project-publish): Allow project-level publishing function to
1733         be specified by :publish-project element.  The default is
1734         muse-project-publish-default.
1736         * lisp/muse-publish.el (muse-publish-file): Message fix.
1738         * texi/muse.texi (Book): Mention new way to publish books and
1739         provide an example, since the process may be non-obvious.
1741 2006-12-20  Michael Olson  <mwolson@gnu.org>
1743         * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
1744         content-modifying code from the rest of
1745         muse-docbook-finalize-buffer.
1747         * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
1748         muse-groff-finalize-buffer, since it adds content to the buffer.
1750         * lisp/muse-html.el (muse-html-munge-buffer): Split out
1751         content-modifying code from the rest of muse-html-finalize-buffer.
1752         This fixes a bug when using <include> with <content> tags.
1754         * lisp/muse-journal.el (muse-journal-html-munge-buffer)
1755         (muse-journal-latex-munge-buffer)
1756         (muse-journal-rss-munge-buffer): Rename, since they add content to
1757         the buffer.
1759         * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
1760         muse-latex-finalize-buffer, since it adds content to the buffer.
1762         * lisp/muse-mode.el:
1763         * lisp/muse-project.el:
1764         * lisp/muse-publish.el:
1765         * lisp/muse.el: Fix recursive load error.
1767         * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
1768         muse-texinfo-finalize-buffer, since it adds content to the buffer.
1770         * lisp/muse-wiki.el: Comment cleanup.
1772         * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
1774 2006-12-17  Michael Olson  <mwolson@gnu.org>
1776         * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
1777         Remove the definition of \comment, since Latex already has comment
1778         syntax.
1779         (muse-latex-markup-strings): Use the Latex comment syntax, rather
1780         than our own.  Thanks to Ryan Stutsman for pointing this out.
1782 2006-12-02  Michael Olson  <mwolson@gnu.org>
1784         * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
1785         that this can generate a proper table of contents for Planner HTML
1786         publishing.
1788 2006-12-01  Michael Olson  <mwolson@gnu.org>
1790         * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
1791         using a very old Emacs, avoid an infinite loop that could occur
1792         when the regexp is an empty string.
1794 2006-11-26  Michael Olson  <mwolson@gnu.org>
1796         * NEWS: Bring up to date.
1798         * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
1799         list issues and multiple-stanza verse issues.  This takes care of
1800         all of the markup issues I was worried about.
1802         * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
1803         (muse-project-publish-private-files): New option that indicates
1804         whether files with private filesystem permissions should be
1805         published.  The default is to publish them, since it avoids
1806         confusion in new users.
1807         (muse-project-private-p): Use it.
1809 2006-11-19  Michael Olson  <mwolson@gnu.org>
1811         * lisp/muse-project.el (muse-project-resolve-link): If no remote
1812         style is found, which means that the link is not a Muse page, do
1813         not add a suffix or prefix to it.  This should fix the
1814         "[[thing.owl]]" bug that Phillip Lord reported.
1816         * lisp/muse-publish.el (muse-publish-link-file): Simplify by
1817         removing unused 2nd argument.
1819 2006-11-17  Michael Olson  <mwolson@gnu.org>
1821         * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
1822         latex publishing where nested enumerated lists would be squashed
1823         together at the end.
1825 2006-11-16  Michael Olson  <mwolson@gnu.org>
1827         * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
1828         list embedded in a definition list look right.  This also allows
1829         for definitions to be separated from their terms, much like the
1830         way HTML does it by default, if the user puts a blank line or a
1831         line break between the term and the definition.  If the term and
1832         definition are on the same line, they will be that way in the
1833         output as well.
1835 2006-11-11  Michael Olson  <mwolson@gnu.org>
1837         * muse.texi (Markup Strings): Fix typo.  Thanks to Haiyong Zheng
1838         for the report.
1839         (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
1841 2006-11-07  Michael Olson  <mwolson@gnu.org>
1843         * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
1844         release candidate for Muse 3.03, available.
1846         * NEWS: Update.
1848 2006-11-06  Michael Olson  <mwolson@gnu.org>
1850         * lisp/muse-project.el (muse-project-find-file): Fix bug when
1851         following a relative link worked even when the path was incorrect.
1853 2006-11-04  John Sullivan  <john@wjsullivan.net>
1855         * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
1856         muse-follow-name-at-point to reduce collisions with other
1857         modes (Planner).
1859         * muse.texi (Keystroke Summary): Remove C-c C-c binding.
1861 2006-11-04  Michael Olson  <mwolson@gnu.org>
1863         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
1864         optional, and make interwiki delimiter a regular rather than shy
1865         group.
1866         (muse-wiki-handle-implicit-interwiki): Rename from
1867         muse-wiki-handle-interwiki.  Use match group 3 to get the page.
1868         (muse-wiki-handle-explicit-interwiki): New function that is
1869         smarter about where an explicit link ends in a buffer.  This
1870         allows you to refer to page names with invalid Wiki characters,
1871         such as underscores and dashes, merely by enclosing them in double
1872         brackets.  Also, a bug with recognizing project names too loosely
1873         has been fixed.
1875 2006-11-03  Michael Olson  <mwolson@gnu.org>
1877         * lisp/muse-project.el (muse-project-page-file): Make relative
1878         links work as expected, hopefully.
1880         * lisp/muse-publish.el (muse-publish-this-file): Set the current
1881         output style manually, since it will differ from anything in the
1882         publishing style list.
1884 2006-10-30  Michael Olson  <mwolson@gnu.org>
1886         * lisp/muse-colors.el (muse-colors-markup): Remove note about
1887         grouping elements, since that no longer applies.
1888         (muse-colors-custom-tags): Explicitly match against
1889         muse-tag-regexp to get the match-data set the way we want.  This
1890         really fixes the <example> highlighting bug that Stefan reported.
1891         (muse-configure-highlighting): Set the original value to the
1892         symbol, not the modified value.  Re-use modified rules properly.
1894         * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
1895         introduced yesterday.
1897 2006-10-29  Michael Olson  <mwolson@gnu.org>
1899         * examples/mwolson: Update my example configuration.
1901         * NEWS: Update.
1903         * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
1904         without a regexp in the first position before iterating through
1905         them to build muse-colors-vector.  This fixes a bug with the
1906         display of <example> tags.  Thanks to Stefan Reichör for the
1907         report.
1909         * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
1910         files in projects to be linked to.
1912         * lisp/muse-publish.el (muse-publish-url): Allow the original link
1913         to serve as a description for a URL, as long as it differs from
1914         the destination URL.  This fixes the description of WikPage links
1915         in PDF output.
1916         (muse-publish-link-file): Check to see whether the given link
1917         points at a valid file.  If so, return it.  Otherwise, apply other
1918         transforms like prefix and link suffix.
1920         * lisp/muse-regexps.el (muse-file-regexp): If something ends in
1921         "/", it is a file or directory, not a Muse page.  Thanks to
1922         Phillip Lord for the suggestion.
1924         * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
1925         of the current page as the local path, instead of duplicating the
1926         remote file's path.  This probably fixes at least one reported
1927         bug. since it's quite major.
1928         (muse-wiki-update-project-file-regexp)
1929         (muse-wiki-update-interwiki-regexp): Ensure that nil is never
1930         passed to regexp-opt, since that can cause Emacs 21 to throw an
1931         "maximum binding depth exceeded" error.  Thanks to xs32 AT cornell
1932         DOT edu for the report.
1933         (muse-wiki-handle-wikiword): Avoid a potential stringp error.
1935 2006-10-28  Michael Olson  <mwolson@gnu.org>
1937         * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
1938         (muse-project-resolve-link): If the given style does not have a
1939         link-suffix, default to suffix.  This fixes a bug I was noticing
1940         when linking to a file that was published in both PDF and HTML
1941         form.
1943         * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
1944         function that is used as a callback to determine the initial
1945         amount of indentation that the current dl item has.
1946         (muse-publish-surround-dl): Use it.  Pass the initial indent value
1947         and the post-indent value, instead of trying to determine them
1948         both.
1949         (muse-publish-strip-list-indentation): New function stripped from
1950         `muse-publish-surround-text' for readability.
1951         (muse-publish-surround-text): Instead of taking a determine-indent
1952         value, take a determine-indent-func function, which is called just
1953         after finding the next list item.  If we are asked to determine
1954         the amount of indentation, concatenate indent and post-indent the
1955         first time around.  This effectively fixes all known definition
1956         list issues.
1958 2006-10-16  Michael Olson  <mwolson@gnu.org>
1960         * lisp/muse.el: Provide the 'muse-nested-tags feature so that
1961         other software -- namely, Planner -- can detect whether they are
1962         using a version of Muse that supports nested tags.
1963         (muse-goto-tag-end): Moved from muse-publish.el and renamed from
1964         muse-publish-goto-tag-end.
1966         * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
1967         Adapt for nested tags.
1969         * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
1970         <class> tag is nestable.  Thanks to Phillip Lord for noticing
1971         this.
1973         * lisp/muse-publish.el (muse-publish-markup-tag)
1974         (muse-publish-quote-tag): Use muse-goto-tag-end.
1976         * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
1978 2006-10-15  Michael Olson  <mwolson@gnu.org>
1980         * AUTHORS: Bookkeeping.
1982         * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
1983         tag.
1985         * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
1986         tags.
1988         * lisp/muse-html.el (muse-html-markup-tags): Ditto.
1990         * lisp/muse-import-docbook.el (muse-import-docbook)
1991         (muse-import-docbook-files): Docfix.
1992         (muse-import-docbook-get-title): Remove cl.el-ism.
1994         * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
1996         * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
1998         * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
2000         * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
2001         (muse-next-reference, muse-previous-reference): Minor whitespace
2002         changes.
2003         (muse-mode-choose-mode): Add autoload cookie.  Thanks to Leo for
2004         the suggestion.
2006         * lisp/muse-poem.el (muse-poem-tag): Ditto.
2008         * lisp/muse-publish.el (muse-publish-markup-tags)
2009         (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
2010         element and make 4th element determine whether tags are nestable.
2011         (muse-publish-goto-tag-end): New function that moves to the end of
2012         a tag.  Handle nested tags when NESTED is non-nil.
2013         (muse-publish-markup-tag): Call muse-publish-goto-tag-end.  Use
2014         5th element for function.
2015         (muse-publish-quote-tag): Handle nested quote tags.  I've tested
2016         this on several scenarios, and it seems to work.
2017         (muse-publish-surround-text): Accept new optional argument
2018         LIST-ITEM which determines the regexp to use for list items.  The
2019         default is to use muse-list-item-regexp.
2021         * muse.texi (Markup Tags): Mention nestable tags.
2023         * NEWS: Mention new files.
2025 2006-10-15  Elena Pomohaci  <e.pomohaci@gmail.com>
2027         * lisp/muse-import-docbook.el: New file that converts Docbook XML
2028         into Muse format.
2030         * lisp/muse-import-xml.el: New file that provides helper routines
2031         for converting XML-ish files to Muse format.
2033 2006-10-10  Michael Olson  <mwolson@gnu.org>
2035         * NEWS: Update for 3.02.7 bugfix release.
2037 2006-10-06  Sasha Kovar  <sasha@arcocene.org>
2039         * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
2040         using the value in the muse #date directive.
2041         (muse-blosxom-use-metadate): New option that determines whether or
2042         not to use the #postdate directive.
2043         (muse-blosxom-format-date): Convert a date string to PyBlosxom
2044         metadate plugin format.
2046 2006-09-30  Stefan Schlee  <stefan_schlee@yahoo.com>
2048         * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
2049         recognised URLs.
2051         * muse.texi: Clarify handling of implicit links by mentioning
2052         which characters can prevent Muse from recognizing something as an
2053         implicit link.
2055 2006-09-26  Stefan Schlee  <stefan_schlee@yahoo.com>
2057         * lisp/muse-mode.el (muse-next-reference)
2058         (muse-previous-reference): Fix bug #6367 by moving point to the
2059         beginning of the link.
2061 2006-09-26  Michael Olson  <mwolson@gnu.org>
2063         * lisp/muse-colors.el (muse-use-font-lock): Don't quote
2064         beginning-of-line.  This should fix a bug that was noticed in
2065         recent Emacs 22 builds.
2067         * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
2068         eval-and-compile block to avoid a compiler warning.
2070 2006-09-25  Jim Ottaway  <j.ottaway@lse.ac.uk>
2072         * lisp/muse-backlink.el (muse-backlink-split-string):
2073         Compatibility with Emacs versions < 22
2074         (muse-backlink-pending): New internal variable
2075         (muse-backlink-get-mode-hook): Find the major mode hook to use, so
2076         that backlinks are inserted at the right time.
2077         (muse-backlink-insert-hook-func): Remove unwind-protection; check
2078         for pending backlink, and that this is the targe page.
2079         (muse-backlink-handle-link): Don’t handle the link if we are
2080         already handling one. Return the link as well as the parent links.
2082 2006-09-25  Sasha Kovar  <sasha@arcocene.org>
2084         * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
2085         #6942 - muse-blosxom-new-entry fails when using tags.
2087 2006-09-14  Michael Olson  <mwolson@gnu.org>
2089         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
2090         compiler warning.
2092 2006-09-14  Jim Ottaway  <j.ottaway@lse.ac.uk>
2094         * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
2095         function: Protect all wikiwords from START to END from further
2096         processing.
2097         (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
2099 2006-09-13  Michael Olson  <mwolson@gnu.org>
2101         * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
2102         adopted from Jim Ottaway's patch.  It removes links from the
2103         heading, and then marks the region read-only to inhibit WikiWord
2104         detection.
2106 2006-09-13  Jim Ottaway  <j.ottaway@lse.ac.uk>
2108         * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
2109         special handling for headings.
2110         (muse-texinfo-remove-links): New function that removes explicit
2111         links from the given strings, replacing them with a description.
2113 2006-09-11  Michael Olson  <mwolson@gnu.org>
2115         * muse.texi (Getting Help and Reporting Bugs): Mention the
2116         muse-el-internationalization mailing list.
2118         * lisp/muse.el (muse-path-sans-extension): New function that acts
2119         like file-name-sans-extension, but guarantees to never modify the
2120         directory part of the path.  Thanks to Evan Monroig for
2121         investigating this.
2123         * lisp/muse-book.el (muse-book-publish-project): Use
2124         muse-path-sans-extension instead of file-name-sans-extension.
2126         * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
2127         Ditto.
2129 2006-08-30  Michael Olson  <mwolson@gnu.org>
2131         * muse.texi (Blosxom Requirements): Fix typo.
2133         * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
2134         directories for bzr and darcs.
2136         * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
2137         contrib/pyblosxom/getstamps.py: Update version and headers.
2139 2006-08-27  Michael Olson  <mwolson@gnu.org>
2141         * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
2142         nil values before they get to mapconcat.  This fixes a lockup when
2143         muse-wiki-match-all-project-files is nil.
2145         * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
2146         (muse-wiki-ignore-implicit-links-to-current-page)
2147         (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
2148         (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
2149         (muse-wiki-publish-small-title-words)
2150         (muse-wiki-publish-pretty-title): Docfix.
2151         (muse-wiki-update-local-wikiword-regexp): Rename from
2152         muse-wiki-update-local-wikiword-regexp.  Set
2153         muse-wiki-project-file-regexp instead of
2154         muse-wiki-wikiword-regexp, as suggested by Per Sederberg.  Don't
2155         take muse-wiki-use-wikiword into account, since this is a
2156         different concept now.
2157         (muse-wiki-update-wikiword-regexp): Remove.
2158         (muse-wiki-wikiword-regexp): In-line the :set function.
2159         (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
2161 2006-08-26  Michael Olson  <mwolson@gnu.org>
2163         * lisp/muse-publish.el (muse-publish-surround-text): When looking
2164         for indented list items, ignore blank lines.
2166         * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
2167         (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
2168         mapconcat.  This should hopefully fix a problem with large amounts
2169         of files with spaces in their name.  Thanks to Greg Detre for the
2170         report.
2172 2006-08-24  Michael Olson  <mwolson@gnu.org>
2174         * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
2175         numbers from the argument to format-time-string.  This fixes an
2176         XEmacs bug.  Thanks to Michael Welle for the report and analysis.
2178 2006-08-18  Michael Olson  <mwolson@gnu.org>
2180         * lisp/muse-project.el (muse-project-file-entries): Since we are
2181         given a full path, match against the filename as well.  This fixes
2182         an issue where backup files were being added to the file alist.
2184         * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
2185         from muse-html.el.
2187 2006-08-12  Michael Olson  <mwolson@gnu.org>
2189         * Makefile (.PHONY): Don't use line continuations.
2190         (realclean fullclean): Call realclean in subdirs, not distclean.
2191         (distclean): Don't call realclean, since this would wipe out our
2192         autoloads file.
2193         (dist): Use correct path to autoloads file.
2195         * NEWS: Catch up with the latest changes.
2197         * experimental/Makefile (.PHONY): Wrap long line.
2199         * lisp/Makefile (distclean): Do the same thing as "clean", not
2200         "realclean".
2202         * lisp/muse-project.el (muse-project-get-applicable-style):
2203         Indentation tweak.
2204         (muse-project-ignore-regexp, muse-project-recurse-directory):
2205         Docfix.
2206         (muse-project-of-file): Try the ignored files regexp against the
2207         base filename as well as the entire path.
2209         * lisp/muse-publish.el (muse-publish-this-file): Display message
2210         if the buffer is not associated with any file, so that we avoid
2211         errors later on.
2212         (muse-publish-url-desc): New function taken from muse-publish-url
2213         that causes a URL description to be transformed.
2214         (muse-publish-url): Call muse-publish-url-desc on either the
2215         description or the original URL if it will be used as a
2216         description.  Accept the original URL as an argument, in case it
2217         was transformed earlier.
2218         (muse-publish-insert-url): Pass original URL as an argument.
2219         (muse-publish-markup-link): Make this somewhat easier to follow.
2220         Pass original URL as argument.
2221         (muse-publish-get-style): If the same style is used to publish to
2222         two different directories, prompt the user for which directory to
2223         use.
2224         (muse-publish-markup-header-footer-tags): Sync lisp tag with the
2225         latest changes.
2226         (muse-publish-markup-url): Pass original URL as an argument.  This
2227         fixes the "nil" description for bare URLs that was in 3.02.91.
2228         Nothing like finding a bug just after completing the announcement
2229         of a release.
2231         * lisp/muse.el: Use defalias whenever convenient.
2232         (muse-version): Set version to 3.02.92 (3.03 RC2).
2234 2006-08-10  Michael Olson  <mwolson@gnu.org>
2236         * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
2237         style does not derive from any other class, return `t' here.
2238         This, along with the corresponding change to muse-publish.el,
2239         fixes a problem with the table of contents getting inserted
2240         multiple times for custom html-based styles.
2241         (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
2242         smarter method for table centering that works with XHTML.
2244         * lisp/muse-latex2png.el Rename all functions to have a
2245         "muse-latex2png" prefix.  Turn all variables into customizable
2246         options in the muse-latex2png group.
2247         (muse-latex2png-img-dest): New option specifying where to place
2248         the images.
2249         (muse-latex2png-template): New option containing the template to
2250         use for the surrounding LaTeX code.
2251         (muse-latex2png-use-xhtml): New option that toggles strict XHTML
2252         compliance.
2253         (muse-latex2png-move2pubdir): Avoid multiple redundant error
2254         messages when something else goes wrong.  Create the image
2255         subdirectory if it doesn't exist already -- thanks to Christian
2256         Straßer for the report.  Expand the filename properly.
2257         (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
2258         and filename expansion.
2259         (muse-latex2png): Use the "muse-latex2png" prefix by default.  Set
2260         the default directory properly.
2262         * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
2263         do not run the same function twice.
2265 2006-08-08  Michael Olson  <mwolson@gnu.org>
2267         * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
2268         introduced wrong-type-argument error.
2270         * lisp/muse-html.el (muse-html-markup-strings)
2271         (muse-xhtml-markup-string): Cause table definition that contains
2272         image to be center-aligned.  This should fix an issue with images
2273         not being centered when captions are very long.
2275         * lisp/muse-publish.el (muse-publish-table-fields): Trim
2276         whitespace from fields once we have split them up.
2278         * lisp/muse.el (muse-trim-whitespace): New function that strips
2279         leading and trailing whitespace from a string.
2281 2006-08-07  Michael Olson  <mwolson@gnu.org>
2283         * NEWS: Update through patch-95.
2285         * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
2286         to match the tags.
2287         (muse-colors-explicit-link): Show images in link descriptions if
2288         inlined images are enabled.
2290         * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
2291         definitions for 'image-with-desc, 'image, and 'image-link.
2292         (muse-docbook-markup-paragraph): If an inlined image begins a
2293         paragraph, insert <para> before it.
2294         (muse-docbook-fixup-images): New function that upper-cases the
2295         "format" attribute of the <imagedata> tag.
2296         (muse-docbook-finalize-buffer): Call it.
2298         * lisp/muse-html.el (muse-html-markup-strings): Publish images
2299         with descriptions as centered tables, with a centered caption
2300         underneath.  The resulting look is consistent with the way that
2301         they are published in the LaTeX style.  Thanks to Jody Klymak for
2302         the suggestion.
2303         (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
2304         valid way to center a table.
2305         (muse-html-markup-paragraph): Use class="image" instead of
2306         "image-link" for paragraphs that start with an embedded image.
2308         * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
2309         \textbackslash{} for "\".  Thanks to Jim Ottaway for the
2310         suggestion.
2311         (muse-latex-markup-specials-image): New option that enables
2312         escaping of specials in images.  This was split from the URL
2313         specials.
2314         (muse-latex-decide-specials): Handle 'image context.
2315         (muse-latex-fixup-dquotes): Go to beginning of document, instead
2316         of relying on caller to do this for us.
2318         * lisp/muse-publish.el (muse-publish-escape-specials): Document
2319         'image context.
2320         (muse-publish-url): Use 'image context for images.  Use 'image
2321         instead of 'image-link and 'image-link in place of
2322         'url-with-image.  Separate the image file from its extension so
2323         that docbook and texinfo can publish images correctly.
2324         (muse-publish-markup-link): Don't force a description if one is
2325         not given.  This fixes a bug where images without descriptions
2326         were being published as 'image-with-desc instead of 'image.
2328         * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
2329         images the same as URLs.
2330         (muse-texinfo-markup-strings): Improve image markup to achieve an
2331         effect similar to that of the LaTeX publishing style.  Simplify
2332         'url string.
2334         * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
2336         * lisp/muse.el (muse-replace-regexp-in-string): Save match data
2337         when we have to use the custom version of this function.
2339         * muse.texi (Images): Explain how to toggle inlining of images and
2340         give better examples.  Mention captions and that captioned images
2341         should not be used inside of text paragraphs.
2342         (Markup Strings): Bring up-to-date with the changes made since
2343         3.02.
2345 2006-08-06  Michael Olson  <mwolson@gnu.org>
2347         * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
2348         in the Emacs source tree.
2350         * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
2351         in the Emacs source tree.
2353         * ChangeLog.3: New file created from the old ChangeLog.
2355         * Makefile.defs (VERSION): Set to 3.02.91.
2357         * NEWS: Update through patch-84.
2359         * lisp/muse.el (muse-version): Set to 3.02.91.
2361         * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
2362         attributes.
2363         (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
2364         delimiter are instead of hard-coding it.
2366         * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
2367         (muse-mode): Make filling definition lists work better.  This
2368         should fix #5359.
2370         * lisp/muse-publish.el (muse-style-run-hooks): Use
2371         `muse-style-element' instead of `muse-get-keyword' here.  This
2372         should fix #6399.
2374         * muse.texi: Set version to 3.02.91 (3.02 RC2).
2376 See ChangeLog.3 for earlier changes.
2378 ;; Local Variables:
2379 ;; coding: utf-8
2380 ;; End: