Merge ../master
[muse-el.git] / NEWS
blob4dda20a5b97079a8ea4aa4c7d7291cefb48d3b63
1 Emacs Muse NEWS --- History of user-visible changes    -*- outline -*-
3 * Changes in Muse 3.03
5 ** An emacs-wiki migration guide is available in
6 etc/emacs-wiki-migration.txt.
8 ** Ideas for the future and planned time of implementation can be
9 found in etc/IDEAS.muse.
11 ** Core functionality (lisp/muse.el)
13 *** Fix an XEmacs beta byte-compiler issue.
15 *** Fix failure to recognize the .muse file extension.
16 Handle the case where the user customizes the file extension.
18 *** It is now easier to indicate that Muse should not use a file
19 extension.  Just do the following.
21 (setq muse-file-extension nil
22       muse-mode-auto-p t)
24 If you visit a Muse file in your .emacs, however, and do not want a
25 file extension, then you must still do the following beforehand.
27 (add-hook 'find-file-hooks 'muse-mode-maybe)
29 *** Allow tab characters in explicit links.
31 *** Escape brackets in links, and then un-escape them when displaying
32 the link in a buffer of publishing it.  This allows brackets to be
33 safely used in link descriptions and links, as long as you use `C-c
34 TAB l', `C-c TAB u', `C-c C-e', or automatic Planner annotations.
36 *** Ensure that no recursive load situation can take place.
38 ** Blosxom publishing (lisp/muse-blosxom.el)
40 *** New option: muse-blosxom-use-tags.
41 This specifies whether or not we are using tags.  Tags allow a page to
42 belong to multiple categories, but they do not rely on the directory
43 structure for categorization.
45 *** Use `find-file' as the browsing function.
47 *** New example script: contrib/pyblosxom/make-blog.
48 This shows how to invoke contrib/pyblosxom/getstamps.py.
50 ** Book publishing (lisp/muse-book.el)
52 *** It is now possible to publish a book using a muse-project-alist entry.
53 See the "Book" section of the manual for details and an example.
55 ** DocBook publishing (lisp/muse-docbook.el)
57 *** A bug with multiple-stanza verses has been fixed.
59 ** HTML publishing (lisp/muse-html.el)
61 *** Make sure spaces in URLs get escaped properly.
63 *** Make the Table of Contents CSS easier to customize.
64 For an example, see examples/mwolson/stylesheets/screen.css.
66 *** Make Table of Contents publishing work with Planner.
68 *** Fix a paragraph detection bug for paragraphs that occur after
69 verses.
71 *** New tag: <src>
72 This tag is used to colorize (using HTML) source code of any language
73 for which Emacs has a mode available.  The "lang" attribute determines
74 the mode to call on the region.  Muse will look for the LANG-mode
75 function, call it, and then call htmlize.  You will need htmlize 1.34
76 or later for this to work.
78 If a non-HTML publishing style is used, this will be published the
79 same as an <example> region.
81 ** Importing LaTeX documents (lisp/muse-import-latex.el)
83 *** Rename from muse-convert.el, since Muse can now import
84 other formats as well.
86 ** Journal (lisp/muse-journal.el)
88 *** New option: muse-journal-rss-heading-regexp.
89 Determine the regexp to use when searching for an RSS heading.
91 *** Make sure that the date is in a format that RSS readers
92 can handle.
94 ** LaTeX publishing (lisp/muse-latex.el)
96 *** New publishing styles: slides and slides-pdf.
97 This allows you to use Beamer to publish slides.
99 *** New publishing styles: lecture-notes and lecture-notes-pdf.
100 These are similar to the slides styles, but are suitable for
101 publishing lecture notes.
103 *** New option: muse-latex-pdf-program.
104 The program to call in order to generate PDF content from LaTeX
105 content.
107 *** New option: muse-latex-pdf-cruft.
108 The extensions of files to remove after generating PDF output
109 successfully.
111 *** Improve escaping of specials.
113 *** Use \label{} and \ref{} for anchors and anchor references.
115 *** Emphasize table elements.
117 *** Improve table generation.
119 *** Use \url{} to publish bare URLs.
121 *** Handle case where a Muse page begins with a quote character.
123 *** Handle case where the path to the Muse source contains a tilde
124 character in one of the parent directories.  It is still possible to
125 run into this problem if you publish outside of a directory that has a
126 tilde, but with a source file that does have one -- this was deemed to
127 be a very unlikely case.
129 *** Display footnotes when we have both a URL and description.
130 This makes the URLs show up on printed documents in a sensible
131 fashion.
133 *** Escape the "@" character in the entire document.
135 *** Make images take up 75% of the width of the page.
137 *** New option: muse-latex-permit-contents-tag.
138 This specifies whether we should take action on the <contents> tag.
140 *** Allow for definitions to be separated from their terms,
141 much like the way HTML does it by default, if the user puts a blank
142 line or a line break between the term and the definition.
144 If the term and definition are on the same line, they will be that way
145 in the output as well.
147 *** Publish comments using the "%" character, rather than a custom
148 Latex command.
150 ** Publish embedded LaTeX content to a PNG file (lisp/muse-latex2png.el)
152 *** The <latex> tag has been modified to work with styles
153 other than just HTML.  It will even leave the region alone if you are
154 publishing a Latex-based publishing style.
156 *** New tag: <math>
157 The <math> tag acts similarly to the <latex> tag, except that it
158 surrounds the region with "$" characters first, and makes the
159 resulting image inline.
161 If the first line of the <math> tag begins with 6 spaces, then
162 surround the region with "$$" (or an equivalent markup) instead.  This
163 has the effect of "centering" the output on its own line.
165 ** Muse Manual (muse.texi)
167 *** Re-license under the GFDL instead of the GPL.
168 The rationale for this is that Muse may one day be included with
169 Emacs, so it should use the same manual license that Emacs itself
170 uses.  At this point, the matter is not open to debate, unless the FSF
171 brings it up.
173 *** Use better style for subsections.
175 *** Make sure the PDF file for the manual is properly generated.
177 *** Implicit Links
179 **** Mention how to customize the WikiName recognition.
181 *** Extending Muse
183 **** Move "Common Elements" and "Deriving Styles" chapters here.
185 *** Tag Summary
187 **** Mention new tags and updated syntax for some tags.
189 ** Muse Mode (lisp/muse-mode.el)
191 *** `C-c TAB' now inserts an object, prompting the user for which type.
192 `C-c TAB l' inserts a relative link.
193 `C-c TAB t' inserts a Muse tag.
194 `C-c TAB u' inserts a URL.
196 These keybindings may be modified by editing `muse-insert-map'.  Note
197 that the prompt you get when you hit `C-c TAB' will not change.
199 *** New list-oriented keybindings:
200 `M-RET' inserts a list item.
201 `C->' increases list item indentation.
202 `C-<' decreases list item indentation.
204 *** Slightly improved speed of flyspell integration
206 *** Implement searching through Muse files.
208 **** `C-c C-s' performs a search through Muse files.
210 **** New option: muse-grep-command.
211 Customize this to specify the command used for searching.  In
212 particular, "glimpse" is handy.  Check the documentation for this
213 command for details.
215 *** Changed keybindings:
216 `C-c C-b' is now `muse-find-backlinks'
217 `C-c C-v' is now `muse-browse-result'
219 *** The `C-c C-M-t' keybinding can be used in place of `C-c C-S-t',
220 since the latter is not available on some terminals.
222 *** Remove the C-c C-c keybinding, since it conflicts with other
223 modes like Planner.
225 *** Don't require muse-publish.el, since publishing and viewing Muse
226 files are supposed to be completely separable.
228 *** Speed up searching for next and previous references.
230 *** Make filling definition lists work better.
232 *** Make editing existing links with `C-c C-e' work better.
234 *** Make browsing the resulting page with `C-c C-v' work better.
236 *** Don't throw an error if doing flyspell or following link at
237 beginning of buffer.
239 *** When publishing a file with `C-c C-t', consult muse-project-alist
240 and use its publishing styles to intelligently prompt the user as to
241 the publishing style and output directory.
243 The old behavior of allowing the file to be published anywhere and
244 with any style has been moved to `C-c C-T'.
246 *** Clicking `mouse-2' now does the right thing when
247 mouse-yank-at-point is non-nil.
249 ** Muse Mode highlighting (lisp/muse-colors.el)
251 *** New option: muse-colors-inline-images.
252 This determines whether or not to inline an image when viewing Muse
253 source.  The default is to enable this behavior.  This feature is
254 currently considered to be in a beta state, because finding the real
255 paths of images consistently has not been worked out.
257 **** New option: muse-colors-inline-image-method.
258 This determines how to find an image that we want to inline.  The
259 default is to look in the current directory.  If set to
260 'muse-colors-use-publishing-directory, it will look in the directory
261 where the current page will be published.
263 **** New function: muse-colors-toggle-inline-images.
264 This toggles whether images are inlined.
266 *** Make links blue by default, like most other Emacs modes do.
268 *** Don't cause a long delay when highlighting remote (Tramp,
269 ange-ftp) links.
271 *** Make faces conform the namespace better.
272 `muse-link-face' is renamed to `muse-link'.
273 `muse-bad-link-face' is renamed to `muse-bad-link'.
274 `muse-verbatim-face' is renamed to `muse-verbatim'.
276 *** Handle muse-emphasis faces better.
278 *** Source-level change: The regexps in `muse-colors-markup' are now
279 permitted to have non-shy groupings.
281 ** New modules
283 *** lisp/muse-backlink.el -- Provide backlink support for Muse.
285 *** lisp/muse-groff.el --  This introduces the publishing styles
286 "groff" and "groff-pdf".
288 *** lisp/muse-import-docbook.el -- Convert Docbook XML into Muse format.
290 *** lisp/muse-import-xml.el -- Helper file for muse-import-docbook.el.
292 *** lisp/muse-latex2png.el -- Publish embedded LaTeX content to a PNG file.
293 This introduces the <latex> tag.
295 *** lisp/muse-xml-common.el -- Common functionality used by XML-based
296 publishing styles, such as HTML, XML, and DocBook.
298 *** experimental/muse-mathml.el -- This introduces the "mathml"
299 publishing style and the <mathml> tag.
301 *** experimental/muse-protocol-iw.el: Implements a simpler URL-like
302 interwiki protocol that handles subdirectories.
304 *** experimental/muse-split.el -- Splits published Muse files into several
305 smaller files.
307 ** Project settings (lisp/muse-project.el)
309 *** Introduce the `with-muse-project' macro, which makes it easier
310 to switch to a given Muse project and execute some code.
312 *** Fix an error with `custom-quote'.
314 *** Ignore buffers that have no associated filename.
315 This fixes an annoyance where Muse prompts to save BBDB and ERC
316 buffers before publishing.
318 *** If we cannot find a project to publish, indicate this in an
319 error message.  This fixes an infinite loop.
321 *** Update the file-alist whenever a Muse file is saved.
323 *** Prevent infinite recursion when updating the file alist.
325 *** In addition to Arch and CVS metadata directories, also ignore
326 these for Darcs, SVN, Mercurial, and Bazaar.  Also, don't erroneously
327 ignore files with "#" in them.
329 *** Make links to subdirectories work.
330 The idea is to include as much of the path that is needed in order to
331 disambiguate the link.  For example: "web/TestPage".
333 *** New variable: muse-current-output-style.
334 This holds the output style that is currently being used to publish a
335 file.
337 *** Permit non-Muse files in projects to be linked to.
339 *** Handle relative links to other Muse pages.
340 Relative links are prefixed with "./" or "../".
342 *** New option: muse-project-publish-private-files
343 If this is non-nil (the default), files will be published even if they
344 have "o-r" permissions set (that is, if no one except the owner and
345 possibly group are allowed to read them).  To get back the old
346 behavior, set this to nil.
348 *** Publishing functions can now be customized on per-project basis
349 You can now use :publish-project and :publish to specify what function
350 to call for publishing entire projects or just a single file.
351 :publish-project is meant to be specified in the first part of a
352 project entry, along with the directories.  :publish is meant to be
353 used in a (optionally derived) publishing style: after specifying such
354 a style, use its name in the latter part of a project entry.
356 ** Publishing (lisp/muse-publish.el)
358 *** Implement escaping of specials throughout the entire document.
359 This makes it much easier to publish documents to multiple kinds of
360 formats, since you no longer have to worry about putting <verbatim>
361 around specials.
363 *** Make escaping of specials context-sensitive.
364 Muse now realizes that URLs, normal document text, <example> regions,
365 and the like have different special characters to escape.
367 *** Support nested lists.
368 Muse now determines the nested level of a list by its initial
369 whitespace.  Ordered lists, unordered lists, and definition lists can
370 all be nested.  It is even possible to force a line break in a list
371 item by inserting a blank line on the same level between the lines.
372 Blockquotes may also be nested inside of a list.
374 *** It is now possible to force images to not be inlined.
375 To accomplish this, place the text "URL:" immediately in front of the
376 link text.
378 Example: [[URL:http://example.org/image.png]]
380 *** New interactive function: muse-publish-region.
381 This command publishes the current region, prompting for the title of
382 the page (if any) and the style to use.
384 This is handy for firing off quick blog entries and pasting the result
385 into a web browser -- for this use case, it is recommended to use the
386 blosxom-html or blosxom-xhtml styles, as they omit the large header
387 and footer.
389 *** Additional arguments for <literal> tag.
390 The optional "style" and "exact" attributes may now be specified,
391 which cause text to only be included if the current publishing style
392 matches some criteria -- the text will be removed otherwise.
394 Omitting these attributes causes <literal> to behave the same as
395 usual.
397 *** Table improvements
399 **** Support orgtbl-mode style tables.
400 Here is a quick example of what they look like.  For additional
401 information, consult the Org Mode manual.
403    | Name | Phone | Age |
404    |------+-------+-----|
405    | Pete |  1234 |  25 |
406    | Sara |  4321 |  22 |
408 If you are used to the way that Org Mode publishes these tables, then
409 customize `muse-html-table-attributes' to:
411   border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides"
413 in order to get a similar kind of output.
415 **** Support table.el-style tables.
416 If you have table.el somewhere in your load-path, Muse will publish
417 tables that are in the format used by table.el.
419 Currently, table.el tables can only be published for publishing styles
420 based on HTML, LaTeX, or DocBook.
422 **** Allow empty elements in tables.
424 **** Allow initial and trailing whitespace in tables, but strip it
425 out of the published result.
427 **** If the #disable-tables publishing directive exists on the current
428 Muse page, do not generate a table.
430 *** Require at least once space after "::" in definition lists, so
431 we avoid an ambiguity with interwiki link syntax.
433 *** Handle nested emphasis types better.
434 It should now publish exactly the way it looks in Muse Mode.
436 *** Preserve whitespace around emdash.
437 This allows for more flexibility, since some people seem to prefer to
438 have the emdash directly against the surrounding text, while others
439 like it to be spaced.
441 *** Fix paragraph detection when block-level markup comes immediately
442 after a paragraph.  Examples of block-level markup are: <example>,
443 verses, lists.
445 *** Allow the <lisp> tag to take the "markup" attribute.
446 see the Tag Summary section in the manual for details.
448 *** Publish image links with descriptions as captioned images.
449 This has been implemented for all Muse publishing styles.
451 The major change is that image links with descriptions will be
452 centered and the description will be displayed just below the image as
453 a "caption".  Thus, it is meant to only be used as its own paragraph,
454 not surrounded by other text.  Images without descriptions may still
455 have surrounding text.
457 *** Make comments higher priority than tags when publishing,
458 so that Muse comments within tags get stripped out.
460 *** Handle properly comments that have no text.
462 *** Distinguish links and footnotes better.
464 *** Do the right thing when a footnote reference exists but has no
465 corresponding footnote.
467 *** Simplify markup string for anchors.
469 *** Allow text like "%N%" in markup strings.
470 This makes it much easier to re-use the same text or put strings in
471 a different order.
473 *** Create parent directories when publishing for the first time.
475 *** Handle case where we are trying to publish a file that has not
476 been saved.
478 *** Fix XEmacs issue where text at beginning of buffer is read-only.
480 *** Allow publishing styles to specify a function to use for
481 escaping specials in a particular context.  This is especially handy
482 for HTML URLs, since they have a larger subset of special characters
483 than normal characters.
485 See `muse-xml-decide-specials' in muse-xml-common.el for details.
486 This functionality already exists for escaping specials in strings.
488 *** Don't give an error when trying to define or derive an existing
489 style.  Just replace it.
491 *** Get rid of a warning that occurs when batch publishing.
493 *** Ignore list items that are part of higher-priority constructs
494 like emphasis.
496 *** Don't markup emdash in a link, since otherwise it will be
497 incorrectly escaped.
499 *** Improve the published descriptions for implicit links and explicit
500 links with no provided description.
502 *** For headers and footers, use a better algorithm to detect whether
503 we have been given a filename or the real contents.
505 *** New option: muse-publish-date-format.
506 Format string of the date used when publishing files.
508 *** New option: muse-publish-markup-header-footer-tags.
509 This specifies which tags may be used when publishing headers and
510 footers.
512 *** New option: muse-publish-contents-depth.
513 This specifies the maximum depth of headings to include with
514 <contents> tags.
516 *** Allow `muse-publish-markup-buffer' to work even if the buffer
517 is not associated with a file.
519 *** Fix a compilation bug with XEmacs beta.
521 *** Source-level change: Use 'image instead of 'image-link to indicate
522 images without descriptions.  Use 'image-link instead of
523 'url-with-image to indicate URLs that have an image as their
524 description.
526 *** Self-nested tags are now supported.
527 Tags with the same name can now be nested inside one another.  This
528 only applies to the new <quote> tag and the <class> tag currently, but
529 it may be useful for custom tags as well.
531 To activate this, set the 4th element in a `muse-publish-markup-tag'
532 to non-nil.  Note that this involved a change to the structure of
533 `muse-publish-markup-tag', so be sure to change any custom tags
534 appropriately.
536 *** Fix bug with WikiName link descriptions and PDF output.
538 *** New convenience function: muse-style-derived-p
539 The new muse-style-derived-p function allows you to make custom tags
540 or inline <lisp> code that acts differently depending on whether the
541 current style is derived from (or equal to) another style.
543 For an example of its use, see `muse-publish-latex-tag' in
544 lisp/muse-latex2png.el.
546 *** New tags, see the Tag Summary section in the manual for details
548 **** <comment> -- Designate entire regions as comments.
550 **** <include> -- Insert the given file at publish time.
552 **** <markup> -- Mark up the text between the initial and ending tags.
554 **** <perl> -- Evaluate perl code.
556 **** <python> -- Evaluate python code.
558 **** <quote> -- Publish the region as a blockquote.
560 **** <ruby> -- Evaluate ruby code.
562 ** Texinfo publishing (lisp/muse-texinfo.el)
564 *** Escape commas in URLs.
566 *** Make it so that links to other info or PDF documents use the proper
567 suffix.
569 *** Publish table headings properly.
571 *** Handle case where the path to the Muse source contains a tilde
572 character in one of the parent directories.  It is still possible to
573 run into this problem if you publish outside of a directory that has a
574 tilde, but with a source file that does have one -- this was deemed to
575 be a very unlikely case.
577 ** URL protocols (lisp/muse-protocols.el)
579 *** Add support for DOI's.
580 DOI's (digitial object identifiers) are a standard identifier used in
581 the publishing industry.
583 *** Add support for "dict:" URLs.
584 This is used to look up terms on the Wikipedia website.
586 **** New option: muse-wikipedia-country.
587 This specified the country code to use for Wikipedia.
589 *** Add support for "woman:" URLs.
590 "woman" links are opened with Emacs' internal manpage viewer.
592 ** Wiki (lisp/muse-wiki.el)
594 *** Three-part links (example: Project::File#anchor) now work.
596 *** New option: muse-wiki-wikiword-match-project-files.
597 Whether to extend WikiName functionality to also match
598 existing filenames, regardless of whether they are named in
599 WikiWord format.
601 If non-nil, Muse will color and publish implicit links to any
602 file in your project.  The default is nil.
604 *** New option: muse-wiki-ignore-implicit-links-to-current-page.
605 Whether to ignore implicit links to the current page.
607 If non-nil, Muse will not recognize implicit links to the current
608 page, both when formatting and publishing.
610 *** For interwiki links, prefer files that have the same file extension
611 as the current file.
613 *** Check the entire explicit link for a project name or complete
614 interwiki link, not just part of it.  This allows page names with
615 invalid WikiName characters to be referred to by using an explicit
616 link.
618 *** If the document does not have a valid title string, use the
619 empty string.
621 *** Take the value of `muse-wiki-hide-nop-tag' into account.
623 *** Match filenames in the project before the general WikiWord
624 regexp.
626 *** Fix some bugs.
628 ** XML publishing (lisp/muse-xml.el)
630 *** The Muse XML schema has been moved from examples/muse.rnc
631 to etc/muse.rnc.
633 *** Update muse.rnc to handle nested list items.
635 *** Fix table generation when some attributes are not given.
637 * Changes in Muse 3.02.8
639 ** Building Muse
641 *** Compile the contents of the contrib directory.
643 *** The debian/ directory has been moved into its own branch.
644 It is now available at mwolson@gnu.org--2006/muse--debian--0.
646 *** Further parametrize the build system, so that it can be easily
647 used by other Emacs Lisp projects.
649 *** Include autoloads file (lisp/muse-autoloads.el) with releases.
651 ** CGI library (contrib/cgi.el)
653 *** Make this not depend on cl.el at runtime.
655 *** Re-add the example calendar application.
657 ** HTTP daemon (contrib/httpd.el)
659 *** Update this to work with newer versions of Emacs.
661 * Changes in Muse 3.02.7
663 ** Muse Mode highlighting (lisp/muse-colors.el)
665 *** Fix bug that caused Muse not to work with recent builds of Emacs 22.
667 * Changes in Muse 3.02.6
669 ** Building Muse
671 *** Autoloads for Muse are now generated in the muse-autoloads.el
672 file at build time.
674 ** HTML publishing (lisp/muse-html.el)
676 *** Don't escape "%" and "+" in URLs.
678 ** Muse Mode (lisp/muse-mode.el)
680 *** <lisp> tags are now evaluated at display time.
681 The actual contents of the buffer will not change, just the displayed
682 text.  To toggle this behavior, set `muse-colors-evaluate-lisp-tags'.
684 ** Publishing (lisp/muse-publish.el)
686 *** When errors happen during publishing, a more explanatory message
687 is displayed.
689 *** It is now possible to specify non-breaking-space with "~~"
690 (two tildes).  This helps prevent proper names from being split up in
691 the output.
693 *** Escape specials in all forms of emphasis.
695 *** Escape "[" and "]" in links that are entered using muse-make-link.
697 *** Errors from invalid lisp code in a <lisp> tag will be published
698 as a comment.  If you have `muse-publish-comments-p' set to nil, the
699 effect is to remove the error message.
701 *** Fix several publishing issues involving comments and numbered lists.
703 ** Wiki (lisp/muse-wiki.el)
705 *** Interwiki links in extended links that have special characters are
706 now handled properly.
708 ** XML publishing (lisp/muse-xml.el)
710 *** The XML publishing style is now considered stable.
711 Its schema is available in `examples/muse.rnc'.
713 * Changes in Muse 3.02.5
715 ** LaTeX publishing (lisp/muse-latex.el)
717 *** Use a better algorithm for determining how many times we need to
718 call pdflatex for publishing.  Anything with a Table of Contents needs
719 2 passes.
721 ** Muse Mode (lisp/muse-mode.el)
723 *** The 3 levels of emphasis now have corresponding muse-emphasis-N faces.
724 This permits the user to customize them, which may be useful if a font
725 does not have italic and/or bold versions.
727 *** Visiting pages with anchors works better.
729 *** Fix fill bug with semicolons in the middle of paragraphs.
731 *** Fix a bug with editing the link at point.
733 *** Fix a display bug with text like =<verbatim><example></verbatim>=.
735 ** Project settings (lisp/muse-project.el)
737 *** Fix an edge case that yielded a stringp: nil error.
739 *** Prevent auto-save files from being recognized as Muse files.
741 ** Wiki (lisp/muse-wiki.el)
743 *** By default, WikiWords can have consecutive capital letters.
745 *** Fix an error that occurs when muse-colors is not loaded.
747 *** It is now possible to specify a suffix for WikiWord links.
748 For example: WikiName''''s.  The WikiName part will be displayed and
749 colored as a link, but the "s" will be left alone.
751 * Changes in Muse 3.02.02
753 ** Configuration
755 *** A bug with customizing `muse-project-alist' has been fixed.
757 *** We use a file extension for Muse files by default.
758 To obtain the old behavior, set `muse-file-extension' to nil and
759 `muse-mode-auto-p' to t.
761 To go along with the new behavior, be sure to rename all of your Muse
762 files to have a ".muse" extension.
764 *** New option: `muse-wiki-ignore-bare-project-names'.
765 This causes Muse to ignore bare project names if specified.  The
766 default is to turn bare project names into links.
768 *** New option: `muse-publish-comments-p'.
769 This causes Muse to publish comments as markup.  The default is to
770 remove comments before publishing rather than trying to mark them up.
772 *** New option: `muse-wiki-allow-nonexistent-wikiword'.
773 Enabling this will cause WikiWords with no corresponding file to be
774 colored as bad links.  The default is not to color them and turn them
775 into links.
777 ** Muse Mode (lisp/muse-mode.el)
779 *** An error with intangible links has been fixed.
781 *** Visiting a page with an anchor works better than before.
783 *** Flyspell behaves better with Emacs21 than before.
785 *** Links to nonexistent files will be colored red by default.
786 This happened previously, but the algorithm was buggy and didn't cover
787 implicit links.
789 ** Project handling (lisp/muse-project.el)
791 *** A convenience macro called `with-muse-project' has been added.
792 This allows a code block to be executed after changing the current
793 Muse project.  It is analogous to emacs-wiki's
794 `with-emacs-wiki-project' function.
796 ** Publishing (lisp/muse-publish.el)
798 *** An issue involving anchors at the end of a line has been
799 addressed.
801 *** Non-word characters are now allowed before an anchor.
803 *** Comments may now be published, if desired.
804 This behavior may be controlled with the `muse-publish-comments-p'
805 option.  The default is to remove comments before publishing rather
806 than trying to mark them up.
808 *** Publishing directives may now include a dash character.
810 ** LaTeX publishing (lisp/muse-latex.el)
812 *** A bug with footnotes has been addressed.
813 An attempt has been made to make generated footnote markup look more
814 "natural" to experienced LaTeX users.
816 *** Table headers are underlined and table footers are overlined.
818 *** PDF publishing will cause pdflatex to be called as needed.
819 The previous behavior was to always call pdflatex twice.  Currently,
820 if pdflatex succeeds, it will not be called again.  Otherwise, call it
821 up to three times.
823 *** Escaping of special characters should be drastically improved.
824 An attempt has been made to get escaping done right in most contexts.
825 The only quirk is that you must surround dollar signs with equal signs
826 to ensure escaping.  This makes publishing PDF documents much more
827 useful.
829 ** Texinfo publishing (lisp/muse-texinfo.el.el)
831 *** An attempt was made to hone some of the markup.
833 * Changes in Muse 3.02.01
835 ** Muse Mode (lisp/muse-mode.el)
837 *** Links should no longer prevent moving the point, and help text for
838 links should no longer cause errors to occur.
840 ** Project handling (lisp/muse-project.el)
842 *** `muse-project-alist' -- This variable should now save customizations
843 to the correct form in the .emacs file.  Before, it was saving an
844 intermediate form of the variable.
846 If you have used the customize interface in the previous release of
847 Muse to set `muse-project-alist', please do the following to import
848 your settings.
850  - Open your .emacs file.
851  - Move the point to where `muse-project-alist' is set.
852  - Type `M-: (setq muse-project-alist-using-customize t) RET'.
853  - Type `C-M-x'.
854  - Type `M-x customize-save-variable RET muse-project-alist RET'.
856 *** `muse-project-alist' -- A bug involving the deleting of items
857 using Emacs21 and XEmacs21 has been fixed.
859 ** Publishing (lisp/muse-publish.el)
861 *** If 2 or more blank lines separate list or table items, each item
862 will be published in a separate list or table.
864 *** The #date directive is now populated by default with the last
865 modified time of each file, rather than the current time of day.  To
866 use this value, add '<lisp>(muse-publishing-directive "date")<lisp>'
867 to your header or footer.
869 ** HTML publishing (lisp/muse-html.el)
871 *** `muse-xhtml-style-sheet' -- New option that indicates the style
872 settings to use for XHTML documents.  This may be either a filename or
873 a string of stylesheet settings.
875 * Changes in Muse 3.02
877 ** New modules
879 *** lisp/muse-wiki.el --- Provide automatic linking for WikiWords and
880 InterWiki links.  These words are clickable and publish as links.
881 Project names from `muse-project-alist' are available for InterWiki
882 linking by default.  The list of InterWiki names and handlers may be
883 customized through `muse-wiki-interwiki-alist'.
885 WikiWords that do not correspond with real files will not be displayed
886 as links nor published as links.  It is expected that this behavior
887 will be made optional in future versions of Muse.
889 **** This module includes a few helper functions that may be added to
890 `muse-publish-desc-transforms' in order to modify link descriptions at
891 publish time.
893 **** The concept of "implicit links" and "explicit links" has been
894 introduced.  Explicit links are surrounded by brackets, i.e.
895 [[http://blah.org][this is a explicit link]].  Implicit links are URLs
896 and email addresses that are not surrounded by brackets: they will not
897 be colorized or published if surrounded by double-quotes.
899 ***** `muse-wiki-publish-pretty-title' causes words to be Title-cased,
900 ignoring words like `the' and `at' which should not be changed.
902 ***** `muse-wiki-publish-pretty-interwiki' changes the delimiter of
903 interwiki links according to the text of the
904 `muse-wiki-interwiki-replacement' option.
906 *** lisp/muse-protocols.el --- URL protocols that Muse recognizes.
907 This automatically-included module provides an easily customizable
908 list of URL protocols, how to browse them, and how to resolve them for
909 publishing.  Customize `muse-url-protocols' to add and remove
910 protocols.
912 ** Compatibility fixes
914 *** Muse has been tested with XEmacs 21.4, both Mule and non-Mule versions.
915 There are no known problems remaining.  To make things work by
916 default, the iso-8859-1 charset is used as a default option in some
917 places.
919 ** Configuration
921 *** `muse-file-extension' -- New option that allows the file extension
922 for Muse files to be specified.  For example, setting this to "muse"
923 assumes that you have renamed your Muse files with a ".muse"
924 extension.  Using this (and setting `muse-mode-auto-p' to nil) will
925 prevent miscellaneous non-Muse files from being accidentally opened in
926 Muse Mode.
928 *** `muse-ignored-extensions' -- New option that determines which file
929 extensions to omit from the ending of a Muse page name.
931 *** `muse-ignored-extensions-regexp' -- This is no longer customizable.
932 It will be automatically generated from `muse-file-extension' and
933 `muse-ignored-extensions'.
935 *** `muse-project-alist' -- The customize interface for this option has
936 been greatly improved, and much effort has been spent in order to make
937 this user-friendly.
939 *** The `:force-publish' tag may be specified in `muse-project-alist'.
940 This causes a particular list of files to be re-created every time the
941 publishing process is invoked, even if they haven't been changed
942 according to their timestamps.  One use for this is to keep an index
943 of available pages by adding the following to a file in this list.
945 <lisp>(muse-index-as-string t t t)</lisp>
947 *** `muse-project-ignore-regexp' -- By default, version control directories
948 are now included in this regexp so that they don't appear when you hit
949 C-c C-f to browse files in a project.
951 *** The `muse-project-alist-styles' and `muse-project-alist-dirs' functions
952 may be used in `muse-project-alist' to recursively add styles and
953 directory listings for a given directory.  The following is an
954 example.  We use a backtick instead of a single quote to begin the
955 list.
957 (setq muse-project-alist
958       `(("Blog"
959          (,@(muse-project-alist-dirs "~/proj/wiki/blog")  ;; base dir
960           :default "guestbook")
962          ,@(muse-project-alist-styles "~/proj/wiki/blog"  ;; base dir
963                                       ;; output dir
964                                       "~/personal-site/site/blog"
965                                       ;; style
966                                       "my-blosxom"))))
968 Note that if you use the customize interface for `muse-project-alist',
969 you will still have to manually add information for any new
970 sub-directories.
972 ** Debian packaging
974 *** Debian packages for Muse have entered Debian unstable, thanks
975 to Romain Francoise, my sponsor.
977 It is possible to roll your own Muse packages if you want to do so.
978 Packages may be built by using `make debrelease', once the proper
979 options in Makefile.defs are set.  Revisions may be built using `make
980 debrevision'.
982 The manual and relevant documentation files have been included with
983 the Debian package for Muse.
985 ** Muse Mode (lisp/muse-mode.el)
987 *** Allow use of Muse with outline-minor-mode.
989 *** Filling text does the right thing with list items and footnotes.
990 List items and footnotes will no longer be concatenated when hitting
991 M-q in the midst of consecutive items.
993 *** Links will never be split in the middle when using Fill.
995 *** Some flyspell crash issues were addressed.
996 Using intangible text can cause strange problems with flyspell mode.
997 Hence, by default, the intangible property will be ignored.  A new
998 option called `muse-mode-intangible-links' indicates whether this
999 should be the case.
1001 *** Links will no longer be highlighted by flyspell.
1002 If you're using XEmacs or Emacs 22, flyspell will ignore links,
1003 including link text.  This keeps flyspell from making the links
1004 unclickable.  If you're using Emacs 21, flyspell will continue to
1005 interfere with links.  If you know how to fix this, please send a
1006 patch!
1008 *** A few edge cases for emphasis and underlining have been addressed.
1010 *** <example>, <verbatim>, and =surrounded text= are now colored using
1011 the new face `muse-verbatim-face'.
1013 *** All marked up text properties, like emphasis and underlining,
1014 will be removed for the text between <example>, <verbatim>, <code>,
1015 <literal>, and <lisp> tags.
1017 *** Links to temporary files may be visited.
1018 A "temporary file" in this case is a buffer that is not associated
1019 with any file.  For some dynamic content import scripts with Planner,
1020 this is helpful.
1022 *** Typing "#title" should never crash Emacs anymore.
1024 ** Muse manual (muse.texi)
1026 *** Fix problem with producing a PDF version of the manual.
1028 *** Document WikiNames.
1030 *** Bring up-to-date with latest features.
1032 *** Massively update Common Elements section.
1034 *** New Directives section.
1035 This describes the use of #title and #author, as well as other
1036 directives that may be used.
1038 *** New Comments section.
1039 Describes the use of "; comment text".
1041 ** Publishing (lisp/muse-publish.el)
1043 *** The order of rules should be much improved.
1044 This means that emphasis characters like `*' and `_' will never be
1045 interpreted as such if they are within links.
1047 *** The user will be notified when `muse-publish-this-file' fails to
1048 publish the current file.  This happens when the timestamp of the
1049 current file indicates that it is up-to-date.
1051 *** Special characters are escaped in link descriptions and links on a
1052 more consistent basis.  What defines a "special character" varies
1053 according to the publishing style.
1055 *** Errors that occur during publish time will cause a warning to be
1056 displayed prominently, rather than being ignored.  It should no longer
1057 be possible to mess up a Muse source file by tweaking the Muse
1058 publishing process.
1060 *** Errors in <lisp> tags cause a warning to be displayed and
1061 return "<!--INVALID LISP CODE-->".  Muse will try to continue
1062 publishing the page.
1064 *** An emdash ("--") can now be used after a list, as long as there is
1065 a blank line between the end of the list and the emdash.
1067 *** The <code> tag has been introduced.
1068 It does the same thing that =equal signs= do: escape specials and
1069 publish as teletype text.  Use it for short command snippets and the
1070 like.  <example> is a better choice for large blocks of code, since it
1071 preserves whitespace.
1073 *** An edge case involving links at the beginning of a paragraph
1074 has been addressed.
1076 *** An edge case involving consecutive directives of the same size
1077 has been addressed.
1079 *** Every publishing style is now capable of specifying strings to use
1080 for sections beyond the third level.
1082 *** Every publishing style may specify an end-of-section string.
1083 This is used, for example, by the experimental XML style and the
1084 DocBook style.
1086 *** Every publishing style may specify a method of handling "internal
1087 link" markup.  An internal link is a link that refers to an anchor on
1088 the current page.
1090 *** Every publishing style may specify a link suffix to use.
1091 This allows the file extensions in links to other Muse files to be
1092 different from their actual extension.  Blosxom makes use of this
1093 (since its published files are .txt and the dynamically-generated
1094 output is .html), and it could come in handy for PHP stuff.
1096 If a link suffix is not specified via :link-suffix, the value of
1097 :suffix will be used.
1099 ** Blosxom publishing (lisp/muse-blosxom.el)
1101 *** muse-blosxom-new-entry: A #category directive is added by default.
1102 Nothing is done with this yet, but it could be handy for tag-based
1103 (multiple category) blogging, once we figure out a good way to do that
1104 in both Muse and Pyblosxom.  Ideas are welcome, and patches even more
1107 ** DocBook publishing (lisp/muse-docbook.el)
1109 *** The markup has been comprehensively improved.
1110 Published documents will now pass validation tests and look better in
1111 general.
1113 *** It is now possible to specify the encoding of DocBook documents.
1114 The default encoding is utf-8.
1116 *** Footnotes will be embedded into paragraphs, since this is
1117 The DocBook Way.
1119 *** Tables will be sorted by section.
1120 Headers first, then footers, then the rest of the table.
1122 *** Anchors are now handled correctly and publish to the best available
1123 form.  Links to anchors are published with the <link> tag.
1125 ** HTML publishing (lisp/muse-html.el)
1127 *** Fix minor issue with anchors.
1129 *** Paragraph publishing will no longer insert <div> tags before images.
1130 This was causing too much hassle for some programs that were trying to
1131 extend Muse, like the Muse port of Planner.
1133 *** The `&', `<', and '>' characters will be escaped using their specific
1134 HTML escape codes, rather than with "&#NNN;".  This makes the
1135 published output display correctly in more web browsers.
1137 *** Use HTML 4.0 Transitional by default for `muse-html-header'.
1139 *** Include empty alt element in markup string for images that lack a
1140 description.
1142 *** Tables will be sorted by section.
1143 Headers first, then footers, then the rest of the table.
1145 *** `muse-xhtml-extension' -- The default extension for XHTML publishing.
1146 This is a new option.
1148 ** Journal publishing (lisp/muse-journal.el)
1150 *** Use "div class=..." rather than "div id=..." for sections.
1152 ** LaTeX publishing (lisp/muse-latex.el)
1154 *** A newline will be appended to the default footer for the latex and
1155 latexpdf publishing styles.  This keeps the PDF-building process from
1156 failing due to lack of a newline at end of file.
1158 *** Anchors and links to them now work properly.
1160 *** When generating PDF files, call pdflatex twice.
1161 This should ensure that the table of contents gets generated, if one
1162 is due to be published.
1164 *** PDF files with spaces may be published.
1165 A bug preventing this has been fixed.
1167 *** Teletype text is now published using \\texttt{...}.
1169 *** An attempt has been made to escape special characters more
1170 consistently.
1172 ** Texinfo publishing (lisp/muse-texinfo.el)
1174 *** Fix a fatal error that occurs when publishing tables.
1176 *** Generate the contents in the header by default rather than the footer.
1177 This is the way that most Texinfo manuals do it.
1179 *** The info-pdf publishing style currently produces the best PDF output
1180 on the maintainer's machine, so it is now used to publish the PDF
1181 version of the Muse Manual.
1183 *** The characters `{' and `}' will be treated as special characters that
1184 need to be escaped at publish-time.
1186 *** Improve dots and enddots markup strings.
1188 *** Surround underlined text with "_" since Texinfo doesn't seem to have
1189 any better options for producing underlined text.
1191 *** Anchors and links to them now work properly.