1 2007-01-09 Michael Olson <mwolson@gnu.org>
3 * lisp/muse-publish.el (muse-publish-markup-regexps): Make
4 comments higher priority than tags. Thanks to Stefan van der Walt
7 2007-01-08 Michael Olson <mwolson@gnu.org>
9 * lisp/muse-publish.el (muse-markup-tag-info): Use the given
10 argument rather than calling match-string. Thanks to Stefan van
11 der Walt for the report. This should fix a bug with publishing
12 <include file="..." markup="example">.
14 2007-01-06 Michael Olson <mwolson@gnu.org>
16 * Makefile (debclean): New rule split from debrevision and
18 (debbuild): Take distributor into account.
20 * Makefile.defs (DISTRIBUTOR): New field that tracks what
21 vendor/distributor we are building for.
23 2007-01-04 Michael Olson <mwolson@gnu.org>
25 * lisp/muse-html.el (muse-html-src-tag): Remove initial blank
28 * lisp/muse-publish.el (muse-publish-markup-tags): Make "src"
29 point to muse-publish-src-tag by default, since <src> and
30 <example> have different parameters.
31 (muse-publish-src-tag): New barebones publishing function for
32 <src>, which is superseded when publishing in an HTML-based style.
34 2007-01-03 Michael Olson <mwolson@gnu.org>
36 * lisp/muse-html.el (muse-html-src-tag): Document.
38 * lisp/muse-publish.el (muse-publish-call-tag-on-buffer): New
39 command that calls a given tag on the current buffer. Attributes
41 (muse-publish-examplify-buffer, muse-publish-versify-buffer): Use
43 (muse-publish-srcify-buffer): New function that allows
44 markup="src" in the <include> tag.
45 (muse-publish-get-and-delete-attr): New macro that gets an
46 attribute from a list and removes the first instance of that
47 attribute from said list.
48 (muse-publish-markup-attribute): Handle markup="src".
49 (muse-publish-command-tag, muse-publish-include-tag): Use
50 muse-publish-get-and-delete-attr. This allows the remaining
51 attributes to be passed.
53 * texi/muse.texi (Tag Summary): Update for new <src> tag as well
54 as changes to <command> and <include>.
56 2006-12-30 Michael Olson <mwolson@gnu.org>
60 * experimental/muse-mathml.el (muse-publish-mathml-tag): Rename
61 from muse-publish-math-tag to avoid conflict with
64 2006-12-23 Michael Olson <mwolson@gnu.org>
66 * lisp/muse-latex2png.el: Update header, since this has been
67 rewritten sufficiently to not need an assignment from the original
69 (muse-latex2png-use-xhtml): Remove, since we now autodetect this.
70 (muse-latex2png): Use two underscores to separate prefix and hash.
71 (muse-latex2png-region): New function split from
72 muse-publish-latex-tag that can be used easily by other code.
73 Detect whether we are using an HTML-based publishing style, and
74 insert a simpler markup if we are not. If we are using a
75 Latex-based publishing style, do not generate an image, and leave
76 the region alone. Return the path of the generated image, in case
77 other functions want to use this programmatically.
78 (muse-publish-latex-tag): Set a default prefix based on the name
80 (muse-publish-math-tag): New tag that surrounds the region with
81 "$" characters, so that it becomes a Latex math region, and then
84 * lisp/muse-publish.el (muse-style-derived-p): New function that
85 returns non-nil if a given style, or the current style if omitted,
86 is equal to or derived from the given base style. This is useful
87 in <lisp> tags, because it allows the user to specify markup that
88 is only to be inserted for one particular style.
90 2006-12-22 Michael Olson <mwolson@gnu.org>
92 * lisp/muse-html.el (muse-html-markup-tags): Add <src> tag.
93 (muse-html-src-tag): New function which publishes the <src> tag.
94 Thanks to Clinton Ebadi and Charles Wang for the initial
97 * lisp/muse-publish.el (muse-publish-markup-tags): Add <src> tag.
99 2006-12-21 Michael Olson <mwolson@gnu.org>
101 * examples/johnw/muse-johnw.el: Update for preferred
102 muse-derive-style usage. Rename to muse-init.el.
104 * examples/mwolson/muse-init.el: Update.
106 * lisp/muse-book.el (muse-book-publish): New function split from
107 muse-book-publish-project. This is used in the definitions for
108 the book-latex and book-pdf styles.
109 (muse-book-publish-p): New function split from muse-book-publish.
110 (muse-book-get-directives): New function that retrieves the
111 publishing directives from the given file.
112 (muse-book-publish): Use muse-book-get-directives to set the title
113 if no title was specified.
115 * lisp/muse-project.el (muse-project): Add :publish-project entry
117 (muse-read-project, muse-project-find-file): Message fix.
118 (muse-project-publish-file-default): New function split from
119 muse-project-publish-file.
120 (muse-project-publish-file): Allow file-level publishing function
121 to be specified by the :publish element. The default is
122 muse-project-publish-file-default.
123 (muse-project-publish-default): New function split from
124 muse-project-publish.
125 (muse-project-publish): Allow project-level publishing function to
126 be specified by :publish-project element. The default is
127 muse-project-publish-default.
129 * lisp/muse-publish.el (muse-publish-file): Message fix.
131 * texi/muse.texi (Book): Mention new way to publish books and
132 provide an example, since the process may be non-obvious.
134 2006-12-20 Michael Olson <mwolson@gnu.org>
136 * lisp/muse-docbook.el (muse-docbook-munge-buffer): Split out
137 content-modifying code from the rest of
138 muse-docbook-finalize-buffer.
140 * lisp/muse-groff.el (muse-groff-munge-buffer): Rename from
141 muse-groff-finalize-buffer, since it adds content to the buffer.
143 * lisp/muse-html.el (muse-html-munge-buffer): Split out
144 content-modifying code from the rest of muse-html-finalize-buffer.
145 This fixes a bug when using <include> with <content> tags.
147 * lisp/muse-journal.el (muse-journal-html-munge-buffer)
148 (muse-journal-latex-munge-buffer)
149 (muse-journal-rss-munge-buffer): Rename, since they add content to
152 * lisp/muse-latex.el (muse-latex-munge-buffer): Rename from
153 muse-latex-finalize-buffer, since it adds content to the buffer.
156 * lisp/muse-project.el:
157 * lisp/muse-publish.el:
158 * lisp/muse.el: Fix recursive load error.
160 * lisp/muse-texinfo.el (muse-texinfo-munge-buffer): Rename from
161 muse-texinfo-finalize-buffer, since it adds content to the buffer.
163 * lisp/muse-wiki.el: Comment cleanup.
165 * lisp/muse-xml.el (muse-xml-charset-default): Docfix.
167 2006-12-17 Michael Olson <mwolson@gnu.org>
169 * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header):
170 Remove the definition of \comment, since Latex already has comment
172 (muse-latex-markup-strings): Use the Latex comment syntax, rather
173 than our own. Thanks to Ryan Stutsman for pointing this out.
175 2006-12-02 Michael Olson <mwolson@gnu.org>
177 * lisp/muse-html.el (muse-html-insert-contents): Tweak regexp so
178 that this can generate a proper table of contents for Planner HTML
181 2006-12-01 Michael Olson <mwolson@gnu.org>
183 * lisp/muse.el (muse-replace-regexp-in-string): In case someone is
184 using a very old Emacs, avoid an infinite loop that could occur
185 when the regexp is an empty string.
187 2006-11-26 Michael Olson <mwolson@gnu.org>
189 * NEWS: Bring up to date.
191 * lisp/muse-docbook.el (muse-docbook-markup-paragraph): Fix nested
192 list issues and multiple-stanza verse issues. This takes care of
193 all of the markup issues I was worried about.
195 * lisp/muse-project.el (muse-project-ignore-regexp): Minor docfix.
196 (muse-project-publish-private-files): New option that indicates
197 whether files with private filesystem permissions should be
198 published. The default is to publish them, since it avoids
199 confusion in new users.
200 (muse-project-private-p): Use it.
202 2006-11-19 Michael Olson <mwolson@gnu.org>
204 * lisp/muse-project.el (muse-project-resolve-link): If no remote
205 style is found, which means that the link is not a Muse page, do
206 not add a suffix or prefix to it. This should fix the
207 "[[thing.owl]]" bug that Phillip Lord reported.
209 * lisp/muse-publish.el (muse-publish-link-file): Simplify by
210 removing unused 2nd argument.
212 2006-11-17 Michael Olson <mwolson@gnu.org>
214 * lisp/muse-publish.el (muse-publish-surround-text): Fix bug in
215 latex publishing where nested enumerated lists would be squashed
218 2006-11-16 Michael Olson <mwolson@gnu.org>
220 * lisp/muse-latex.el (muse-latex-markup-strings): Make an ordered
221 list embedded in a definition list look right. This also allows
222 for definitions to be separated from their terms, much like the
223 way HTML does it by default, if the user puts a blank line or a
224 line break between the term and the definition. If the term and
225 definition are on the same line, they will be that way in the
228 2006-11-11 Michael Olson <mwolson@gnu.org>
230 * muse.texi (Markup Strings): Fix typo. Thanks to Haiyong Zheng
232 (Getting Help and Reporting Bugs): Fix emacswiki.org page URL.
234 2006-11-07 Michael Olson <mwolson@gnu.org>
236 * lisp/muse.el (muse-version): Make Emacs Muse 3.02.93, the third
237 release candidate for Muse 3.03, available.
241 2006-11-06 Michael Olson <mwolson@gnu.org>
243 * lisp/muse-project.el (muse-project-find-file): Fix bug when
244 following a relative link worked even when the path was incorrect.
246 2006-11-04 John Sullivan <john@wjsullivan.net>
248 * lisp/muse-mode.el (muse-mode-map): Remove C-c C-c binding for
249 muse-follow-name-at-point to reduce collisions with other
252 * muse.texi (Keystroke Summary): Remove C-c C-c binding.
254 2006-11-04 Michael Olson <mwolson@gnu.org>
256 * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Make page
257 optional, and make interwiki delimiter a regular rather than shy
259 (muse-wiki-handle-implicit-interwiki): Rename from
260 muse-wiki-handle-interwiki. Use match group 3 to get the page.
261 (muse-wiki-handle-explicit-interwiki): New function that is
262 smarter about where an explicit link ends in a buffer. This
263 allows you to refer to page names with invalid Wiki characters,
264 such as underscores and dashes, merely by enclosing them in double
265 brackets. Also, a bug with recognizing project names too loosely
268 2006-11-03 Michael Olson <mwolson@gnu.org>
270 * lisp/muse-project.el (muse-project-page-file): Make relative
271 links work as expected, hopefully.
273 * lisp/muse-publish.el (muse-publish-this-file): Set the current
274 output style manually, since it will differ from anything in the
275 publishing style list.
277 2006-10-30 Michael Olson <mwolson@gnu.org>
279 * lisp/muse-colors.el (muse-colors-markup): Remove note about
280 grouping elements, since that no longer applies.
281 (muse-colors-custom-tags): Explicitly match against
282 muse-tag-regexp to get the match-data set the way we want. This
283 really fixes the <example> highlighting bug that Stefan reported.
284 (muse-configure-highlighting): Set the original value to the
285 symbol, not the modified value. Re-use modified rules properly.
287 * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Fix bug
288 introduced yesterday.
290 2006-10-29 Michael Olson <mwolson@gnu.org>
292 * examples/mwolson: Update my example configuration.
296 * lisp/muse-colors.el (muse-configure-highlighting): Remove rules
297 without a regexp in the first position before iterating through
298 them to build muse-colors-vector. This fixes a bug with the
299 display of <example> tags. Thanks to Stefan Reichör for the
302 * lisp/muse-project.el (muse-project-find-file): Permit non-Muse
303 files in projects to be linked to.
305 * lisp/muse-publish.el (muse-publish-url): Allow the original link
306 to serve as a description for a URL, as long as it differs from
307 the destination URL. This fixes the description of WikPage links
309 (muse-publish-link-file): Check to see whether the given link
310 points at a valid file. If so, return it. Otherwise, apply other
311 transforms like prefix and link suffix.
313 * lisp/muse-regexps.el (muse-file-regexp): If something ends in
314 "/", it is a file or directory, not a Muse page. Thanks to
315 Phillip Lord for the suggestion.
317 * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use the path
318 of the current page as the local path, instead of duplicating the
319 remote file's path. This probably fixes at least one reported
320 bug. since it's quite major.
321 (muse-wiki-update-project-file-regexp)
322 (muse-wiki-update-interwiki-regexp): Ensure that nil is never
323 passed to regexp-opt, since that can cause Emacs 21 to throw an
324 "maximum binding depth exceeded" error. Thanks to xs32 AT cornell
325 DOT edu for the report.
326 (muse-wiki-handle-wikiword): Avoid a potential stringp error.
328 2006-10-28 Michael Olson <mwolson@gnu.org>
330 * lisp/muse-project.el (muse-project-choose-style-by-link-suffix)
331 (muse-project-resolve-link): If the given style does not have a
332 link-suffix, default to suffix. This fixes a bug I was noticing
333 when linking to a file that was published in both PDF and HTML
336 * lisp/muse-publish.el (muse-publish-determine-dl-indent): New
337 function that is used as a callback to determine the initial
338 amount of indentation that the current dl item has.
339 (muse-publish-surround-dl): Use it. Pass the initial indent value
340 and the post-indent value, instead of trying to determine them
342 (muse-publish-strip-list-indentation): New function stripped from
343 `muse-publish-surround-text' for readability.
344 (muse-publish-surround-text): Instead of taking a determine-indent
345 value, take a determine-indent-func function, which is called just
346 after finding the next list item. If we are asked to determine
347 the amount of indentation, concatenate indent and post-indent the
348 first time around. This effectively fixes all known definition
351 2006-10-16 Michael Olson <mwolson@gnu.org>
353 * lisp/muse.el: Provide the 'muse-nested-tags feature so that
354 other software -- namely, Planner -- can detect whether they are
355 using a version of Muse that supports nested tags.
356 (muse-goto-tag-end): Moved from muse-publish.el and renamed from
357 muse-publish-goto-tag-end.
359 * lisp/muse-colors.el (muse-colors-tags, muse-colors-custom-tags):
360 Adapt for nested tags.
362 * lisp/muse-html.el (muse-html-markup-tags): Indicate that the
363 <class> tag is nestable. Thanks to Phillip Lord for noticing
366 * lisp/muse-publish.el (muse-publish-markup-tag)
367 (muse-publish-quote-tag): Use muse-goto-tag-end.
369 * lisp/muse-wiki.el ("muse-colors"): Adapt for nested tags.
371 2006-10-15 Michael Olson <mwolson@gnu.org>
373 * AUTHORS: Bookkeeping.
375 * lisp/muse-blosxom.el (muse-blosxom-header): Indent code in lisp
378 * lisp/muse-groff.el (muse-groff-markup-tags): Adapt for nested
381 * lisp/muse-html.el (muse-html-markup-tags): Ditto.
383 * lisp/muse-import-docbook.el (muse-import-docbook)
384 (muse-import-docbook-files): Docfix.
385 (muse-import-docbook-get-title): Remove cl.el-ism.
387 * lisp/muse-import-xml.el (muse-import-xml): Fix compiler warning.
389 * lisp/muse-journal.el (muse-journal-latex-markup-tags): Ditto.
391 * lisp/muse-latex2png.el (muse-publish-markup-tags): Ditto.
393 * lisp/muse-mode.el (muse-previous-reference): Minor docfix.
394 (muse-next-reference, muse-previous-reference): Minor whitespace
396 (muse-mode-choose-mode): Add autoload cookie. Thanks to Leo for
399 * lisp/muse-poem.el (muse-poem-tag): Ditto.
401 * lisp/muse-publish.el (muse-publish-markup-tags)
402 (muse-publish-markup-header-footer-tags): Shift 4th element to 5th
403 element and make 4th element determine whether tags are nestable.
404 (muse-publish-goto-tag-end): New function that moves to the end of
405 a tag. Handle nested tags when NESTED is non-nil.
406 (muse-publish-markup-tag): Call muse-publish-goto-tag-end. Use
407 5th element for function.
408 (muse-publish-quote-tag): Handle nested quote tags. I've tested
409 this on several scenarios, and it seems to work.
410 (muse-publish-surround-text): Accept new optional argument
411 LIST-ITEM which determines the regexp to use for list items. The
412 default is to use muse-list-item-regexp.
414 * muse.texi (Markup Tags): Mention nestable tags.
416 * NEWS: Mention new files.
418 2006-10-15 Elena Pomohaci <e.pomohaci@gmail.com>
420 * lisp/muse-import-docbook.el: New file that converts Docbook XML
423 * lisp/muse-import-xml.el: New file that provides helper routines
424 for converting XML-ish files to Muse format.
426 2006-10-10 Michael Olson <mwolson@gnu.org>
428 * NEWS: Update for 3.02.7 bugfix release.
430 2006-10-06 Sasha Kovar <sasha@arcocene.org>
432 * lisp/muse-blosxom.el (muse-blosxom-header): Insert the date
433 using the value in the muse #date directive.
434 (muse-blosxom-use-metadate): New option that determines whether or
435 not to use the #postdate directive.
436 (muse-blosxom-format-date): Convert a date string to PyBlosxom
437 metadate plugin format.
439 2006-09-30 Stefan Schlee <stefan_schlee@yahoo.com>
441 * lisp/muse-protocols.el: Fix bug #6741: Exclude colon in
444 * muse.texi: Clarify handling of implicit links by mentioning
445 which characters can prevent Muse from recognizing something as an
448 2006-09-26 Stefan Schlee <stefan_schlee@yahoo.com>
450 * lisp/muse-mode.el (muse-next-reference)
451 (muse-previous-reference): Fix bug #6367 by moving point to the
452 beginning of the link.
454 2006-09-26 Michael Olson <mwolson@gnu.org>
456 * lisp/muse-colors.el (muse-use-font-lock): Don't quote
457 beginning-of-line. This should fix a bug that was noticed in
458 recent Emacs 22 builds.
460 * lisp/muse-backlink.el: Wrap muse-backlink-split-string in an
461 eval-and-compile block to avoid a compiler warning.
463 2006-09-25 Jim Ottaway <j.ottaway@lse.ac.uk>
465 * lisp/muse-backlink.el (muse-backlink-split-string):
466 Compatibility with Emacs versions < 22
467 (muse-backlink-pending): New internal variable
468 (muse-backlink-get-mode-hook): Find the major mode hook to use, so
469 that backlinks are inserted at the right time.
470 (muse-backlink-insert-hook-func): Remove unwind-protection; check
471 for pending backlink, and that this is the targe page.
472 (muse-backlink-handle-link): Don’t handle the link if we are
473 already handling one. Return the link as well as the parent links.
475 2006-09-25 Sasha Kovar <sasha@arcocene.org>
477 * lisp/muse-blosxom.el (muse-blosxom-new-entry): : Fix for bug
478 #6942 - muse-blosxom-new-entry fails when using tags.
480 2006-09-14 Michael Olson <mwolson@gnu.org>
482 * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): Silence
485 2006-09-14 Jim Ottaway <j.ottaway@lse.ac.uk>
487 * lisp/muse-texinfo.el (muse-texinfo-protect-wikiwords): New
488 function: Protect all wikiwords from START to END from further
490 (muse-texinfo-markup-heading): Use muse-texinfo-protect-wikiwords.
492 2006-09-13 Michael Olson <mwolson@gnu.org>
494 * lisp/muse-texinfo.el (muse-texinfo-markup-heading): New function
495 adopted from Jim Ottaway's patch. It removes links from the
496 heading, and then marks the region read-only to inhibit WikiWord
499 2006-09-13 Jim Ottaway <j.ottaway@lse.ac.uk>
501 * lisp/muse-texinfo.el (muse-texinfo-markup-functions): Add
502 special handling for headings.
503 (muse-texinfo-remove-links): New function that removes explicit
504 links from the given strings, replacing them with a description.
506 2006-09-11 Michael Olson <mwolson@gnu.org>
508 * muse.texi (Getting Help and Reporting Bugs): Mention the
509 muse-el-internationalization mailing list.
511 * lisp/muse.el (muse-path-sans-extension): New function that acts
512 like file-name-sans-extension, but guarantees to never modify the
513 directory part of the path. Thanks to Evan Monroig for
516 * lisp/muse-book.el (muse-book-publish-project): Use
517 muse-path-sans-extension instead of file-name-sans-extension.
519 * lisp/muse-publish.el (muse-publish-file, muse-publish-url):
522 2006-08-30 Michael Olson <mwolson@gnu.org>
524 * muse.texi (Blosxom Requirements): Fix typo.
526 * contrib/pyblosxom/getstamps.py (recurse): Ignore metadata
527 directories for bzr and darcs.
529 * contrib/pyblosxom/make-blog, contrib/pyblosxom/hardcodedates.py:
530 contrib/pyblosxom/getstamps.py: Update version and headers.
532 2006-08-27 Michael Olson <mwolson@gnu.org>
534 * lisp/muse-colors.el (muse-configure-highlighting): Prune out any
535 nil values before they get to mapconcat. This fixes a lockup when
536 muse-wiki-match-all-project-files is nil.
538 * lisp/muse-wiki.el (muse-wiki-match-all-project-files)
539 (muse-wiki-ignore-implicit-links-to-current-page)
540 (muse-wiki-interwiki-regexp, muse-wiki-interwiki-alist)
541 (muse-wiki-resolve-project-page, muse-wiki-handle-interwiki)
542 (muse-wiki-publish-small-title-words)
543 (muse-wiki-publish-pretty-title): Docfix.
544 (muse-wiki-update-local-wikiword-regexp): Rename from
545 muse-wiki-update-local-wikiword-regexp. Set
546 muse-wiki-project-file-regexp instead of
547 muse-wiki-wikiword-regexp, as suggested by Per Sederberg. Don't
548 take muse-wiki-use-wikiword into account, since this is a
549 different concept now.
550 (muse-wiki-update-wikiword-regexp): Remove.
551 (muse-wiki-wikiword-regexp): In-line the :set function.
552 (muse-wiki-handle-wikiword): Use muse-wiki-project-file-regexp.
554 2006-08-26 Michael Olson <mwolson@gnu.org>
556 * lisp/muse-publish.el (muse-publish-surround-text): When looking
557 for indented list items, ignore blank lines.
559 * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp)
560 (muse-wiki-update-interwiki-regexp): Use regexp-opt instead of
561 mapconcat. This should hopefully fix a problem with large amounts
562 of files with spaces in their name. Thanks to Greg Detre for the
565 2006-08-24 Michael Olson <mwolson@gnu.org>
567 * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the
568 numbers from the argument to format-time-string. This fixes an
569 XEmacs bug. Thanks to Michael Welle for the report and analysis.
571 2006-08-18 Michael Olson <mwolson@gnu.org>
573 * lisp/muse-project.el (muse-project-file-entries): Since we are
574 given a full path, match against the filename as well. This fixes
575 an issue where backup files were being added to the file alist.
577 * lisp/muse-docbook.el (muse-docbook-markup-regexps): Apply a fix
580 2006-08-12 Michael Olson <mwolson@gnu.org>
582 * Makefile (.PHONY): Don't use line continuations.
583 (realclean fullclean): Call realclean in subdirs, not distclean.
584 (distclean): Don't call realclean, since this would wipe out our
586 (dist): Use correct path to autoloads file.
588 * NEWS: Catch up with the latest changes.
590 * experimental/Makefile (.PHONY): Wrap long line.
592 * lisp/Makefile (distclean): Do the same thing as "clean", not
595 * lisp/muse-project.el (muse-project-get-applicable-style):
597 (muse-project-ignore-regexp, muse-project-recurse-directory):
599 (muse-project-of-file): Try the ignored files regexp against the
600 base filename as well as the entire path.
602 * lisp/muse-publish.el (muse-publish-this-file): Display message
603 if the buffer is not associated with any file, so that we avoid
605 (muse-publish-url-desc): New function taken from muse-publish-url
606 that causes a URL description to be transformed.
607 (muse-publish-url): Call muse-publish-url-desc on either the
608 description or the original URL if it will be used as a
609 description. Accept the original URL as an argument, in case it
610 was transformed earlier.
611 (muse-publish-insert-url): Pass original URL as an argument.
612 (muse-publish-markup-link): Make this somewhat easier to follow.
613 Pass original URL as argument.
614 (muse-publish-get-style): If the same style is used to publish to
615 two different directories, prompt the user for which directory to
617 (muse-publish-markup-header-footer-tags): Sync lisp tag with the
619 (muse-publish-markup-url): Pass original URL as an argument. This
620 fixes the "nil" description for bare URLs that was in 3.02.91.
621 Nothing like finding a bug just after completing the announcement
624 * lisp/muse.el: Use defalias whenever convenient.
625 (muse-version): Set version to 3.02.92 (3.03 RC2).
627 2006-08-10 Michael Olson <mwolson@gnu.org>
629 * lisp/muse-html.el (muse-html-finalize-buffer): Since the html
630 style does not derive from any other class, return `t' here.
631 This, along with the corresponding change to muse-publish.el,
632 fixes a problem with the table of contents getting inserted
633 multiple times for custom html-based styles.
634 (muse-html-markup-strings, muse-xhtml-markup-strings): Use a
635 smarter method for table centering that works with XHTML.
637 * lisp/muse-latex2png.el Rename all functions to have a
638 "muse-latex2png" prefix. Turn all variables into customizable
639 options in the muse-latex2png group.
640 (muse-latex2png-img-dest): New option specifying where to place
642 (muse-latex2png-template): New option containing the template to
643 use for the surrounding LaTeX code.
644 (muse-latex2png-use-xhtml): New option that toggles strict XHTML
646 (muse-latex2png-move2pubdir): Avoid multiple redundant error
647 messages when something else goes wrong. Create the image
648 subdirectory if it doesn't exist already -- thanks to Christian
649 Straßer for the report. Expand the filename properly.
650 (muse-publish-latex-tag, muse-latex2png): Ditto on error messages
651 and filename expansion.
652 (muse-latex2png): Use the "muse-latex2png" prefix by default. Set
653 the default directory properly.
655 * lisp/muse-publish.el (muse-style-run-hooks): Make sure that we
656 do not run the same function twice.
658 2006-08-08 Michael Olson <mwolson@gnu.org>
660 * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently
661 introduced wrong-type-argument error.
663 * lisp/muse-html.el (muse-html-markup-strings)
664 (muse-xhtml-markup-string): Cause table definition that contains
665 image to be center-aligned. This should fix an issue with images
666 not being centered when captions are very long.
668 * lisp/muse-publish.el (muse-publish-table-fields): Trim
669 whitespace from fields once we have split them up.
671 * lisp/muse.el (muse-trim-whitespace): New function that strips
672 leading and trailing whitespace from a string.
674 2006-08-07 Michael Olson <mwolson@gnu.org>
676 * NEWS: Update through patch-95.
678 * lisp/muse-colors.el (muse-colors-lisp-tag): Use a simpler regexp
680 (muse-colors-explicit-link): Show images in link descriptions if
681 inlined images are enabled.
683 * lisp/muse-docbook.el (muse-docbook-markup-strings): Add
684 definitions for 'image-with-desc, 'image, and 'image-link.
685 (muse-docbook-markup-paragraph): If an inlined image begins a
686 paragraph, insert <para> before it.
687 (muse-docbook-fixup-images): New function that upper-cases the
688 "format" attribute of the <imagedata> tag.
689 (muse-docbook-finalize-buffer): Call it.
691 * lisp/muse-html.el (muse-html-markup-strings): Publish images
692 with descriptions as centered tables, with a centered caption
693 underneath. The resulting look is consistent with the way that
694 they are published in the LaTeX style. Thanks to Jody Klymak for
696 (muse-xhtml-markup-strings): Ditto, but XHTML apparently has no
697 valid way to center a table.
698 (muse-html-markup-paragraph): Use class="image" instead of
699 "image-link" for paragraphs that start with an embedded image.
701 * lisp/muse-latex.el (muse-latex-markup-specials-url): Use
702 \textbackslash{} for "\". Thanks to Jim Ottaway for the
704 (muse-latex-markup-specials-image): New option that enables
705 escaping of specials in images. This was split from the URL
707 (muse-latex-decide-specials): Handle 'image context.
708 (muse-latex-fixup-dquotes): Go to beginning of document, instead
709 of relying on caller to do this for us.
711 * lisp/muse-publish.el (muse-publish-escape-specials): Document
713 (muse-publish-url): Use 'image context for images. Use 'image
714 instead of 'image-link and 'image-link in place of
715 'url-with-image. Separate the image file from its extension so
716 that docbook and texinfo can publish images correctly.
717 (muse-publish-markup-link): Don't force a description if one is
718 not given. This fixes a bug where images without descriptions
719 were being published as 'image-with-desc instead of 'image.
721 * lisp/muse-texinfo.el (muse-texinfo-decide-specials): Treat
722 images the same as URLs.
723 (muse-texinfo-markup-strings): Improve image markup to achieve an
724 effect similar to that of the LaTeX publishing style. Simplify
727 * lisp/muse-xml-common.el (muse-xml-decide-specials): Ditto.
729 * lisp/muse.el (muse-replace-regexp-in-string): Save match data
730 when we have to use the custom version of this function.
732 * muse.texi (Images): Explain how to toggle inlining of images and
733 give better examples. Mention captions and that captioned images
734 should not be used inside of text paragraphs.
735 (Markup Strings): Bring up-to-date with the changes made since
738 2006-08-06 Michael Olson <mwolson@gnu.org>
740 * ChangeLog.1: Rename from ChangeLog.2004 to comply with standards
741 in the Emacs source tree.
743 * ChangeLog.2: Rename from ChangeLog.2005 to comply with standards
744 in the Emacs source tree.
746 * ChangeLog.3: New file created from the old ChangeLog.
748 * Makefile.defs (VERSION): Set to 3.02.91.
750 * NEWS: Update through patch-84.
752 * lisp/muse.el (muse-version): Set to 3.02.91.
754 * lisp/muse-colors.el (muse-colors-tags): Allow <lisp> to take
756 (muse-colors-lisp-tag): Figure out where the <lisp> tag and its
757 delimiter are instead of hard-coding it.
759 * lisp/muse-mode.el (muse-insert-thing): Qualify "tag".
760 (muse-mode): Make filling definition lists work better. This
763 * lisp/muse-publish.el (muse-style-run-hooks): Use
764 `muse-style-element' instead of `muse-get-keyword' here. This
767 * muse.texi: Set version to 3.02.91 (3.02 RC2).
769 See ChangeLog.3 for earlier changes.