Publish the QuickStart as pdf, rather than info-pdf
[muse-el.git] / NEWS
blob087548c0e2d1a72a1e073a9de3f0b67b2dcbbbc3
1 Emacs Muse NEWS --- History of user-visible changes    -*- outline -*-
3 * Changes in Muse 3.03 (not yet released)
5 ** Core functionality (lisp/muse.el)
7 *** Fix an XEmacs beta byte-compiler issue.
9 *** Fix failure to recognize the .muse file extension.
10 Handle the case where the user customizes the file extension.
12 *** It is now easier to indicate that Muse should not use a file
13 extension.  Just do the following.
15 (setq muse-file-extension nil
16       muse-mode-auto-p t)
18 If you visit a Muse file in your .emacs, however, and do not want a
19 file extension, then you must still do the following beforehand.
21 (add-hook 'find-file-hooks 'muse-mode-maybe)
23 *** Allow tab characters in explicit links.
25 *** Escape brackets in links, and then un-escape them when displaying
26 the link in a buffer of publishing it.  This allows brackets to be
27 safely used in link descriptions and links, as long as you use `C-c
28 TAB l', `C-c TAB u', `C-c C-e', or automatic Planner annotations.
30 *** Ensure that no recursive load situation can take place.
32 ** Blosxom publishing (lisp/muse-blosxom.el)
34 *** New option: muse-blosxom-use-tags.
35 This specifies whether or not we are using tags.  Tags allow a page to
36 belong to multiple categories, but they do not rely on the directory
37 structure for categorization.
39 *** Use `find-file' as the browsing function.
41 *** New example script: contrib/pyblosxom/make-blog.
42 This shows how to invoke contrib/pyblosxom/getstamps.py.
44 ** Book publishing (lisp/muse-book.el)
46 *** It is now possible to publish a book using a muse-project-alist entry.
47 See the "Book" section of the manual for details and an example.
49 ** DocBook publishing (lisp/muse-docbook.el)
51 *** A bug with multiple-stanza verses has been fixed.
53 ** HTML publishing (lisp/muse-html.el)
55 *** Make sure spaces in URLs get escaped properly.
57 *** Make the Table of Contents CSS easier to customize.
58 For an example, see examples/mwolson/stylesheets/screen.css.
60 *** Make Table of Contents publishing work with Planner.
62 *** Fix a paragraph detection bug for paragraphs that occur after
63 verses.
65 *** New tag: <src>
66 This tag is used to colorize (using HTML) source code of any language
67 for which Emacs has a mode available.  The "lang" attribute determines
68 the mode to call on the region.  Muse will look for the LANG-mode
69 function, call it, and then call htmlize.  You will need htmlize 1.34
70 or later for this to work.
72 If a non-HTML publishing style is used, this will be published the
73 same as an <example> region.
75 ** Importing LaTeX documents (lisp/muse-import-latex.el)
77 *** Rename from muse-convert.el, since Muse can now import
78 other formats as well.
80 ** Journal (lisp/muse-journal.el)
82 *** New option: muse-journal-rss-heading-regexp.
83 Determine the regexp to use when searching for an RSS heading.
85 *** Make sure that the date is in a format that RSS readers
86 can handle.
88 ** LaTeX publishing (lisp/muse-latex.el)
90 *** Improve escaping of specials.
92 *** Use \label{} and \ref{} for anchors and anchor references.
94 *** Emphasize table elements.
96 *** Improve table generation.
98 *** Use \url{} to publish bare URLs.
100 *** Handle case where a Muse page begins with a quote character.
102 *** Display footnotes when we have both a URL and description.
103 This makes the URLs show up on printed documents in a sensible
104 fashion.
106 *** Escape the "@" character in the entire document.
108 *** Make images take up 75% of the width of the page.
110 *** New option: muse-latex-permit-contents-tag.
111 This specifies whether we should take action on the <contents> tag.
113 *** Allow for definitions to be separated from their terms,
114 much like the way HTML does it by default, if the user puts a blank
115 line or a line break between the term and the definition.
117 If the term and definition are on the same line, they will be that way
118 in the output as well.
120 *** Publish comments using the "%" character, rather than a custom
121 Latex command.
123 ** Publish embedded LaTeX content to a PNG file (lisp/muse-latex2png.el)
125 *** The <latex> tag has been modified to work with styles
126 other than just HTML.  It will even leave the region alone if you are
127 publishing a Latex-based publishing style.
129 *** New tag: <math>
130 The <math> tag acts similarly to the <latex> tag, except that it
131 surrounds the region with "$" characters first, and makes the
132 resulting image inline.
134 If the first line of the <math> tag begins with 6 spaces, then
135 surround the region with "$$" (or an equivalent markup) instead.  This
136 has the effect of "centering" the output on its own line.
138 ** Muse Manual (muse.texi)
140 *** Re-license under the GFDL instead of the GPL.
141 The rationale for this is that Muse may one day be included with
142 Emacs, so it should use the same manual license that Emacs itself
143 uses.  At this point, the matter is not open to debate, unless the FSF
144 brings it up.
146 *** Use better style for subsections.
148 *** Make sure the PDF file for the manual is properly generated.
150 *** Implicit Links
152 **** Mention how to customize the WikiName recognition.
154 *** Extending Muse
156 **** Move "Common Elements" and "Deriving Styles" chapters here.
158 *** Tag Summary
160 **** Mention new tags and updated syntax for some tags.
162 ** Muse Mode (lisp/muse-mode.el)
164 *** `C-c TAB' now inserts an object, prompting the user for which type.
165 `C-c TAB l' inserts a relative link.
166 `C-c TAB t' inserts a Muse tag.
167 `C-c TAB u' inserts a URL.
169 These keybindings may be modified by editing `muse-insert-map'.  Note
170 that the prompt you get when you hit `C-c TAB' will not change.
172 *** New list-oriented keybindings:
173 `M-RET' inserts a list item.
174 `C->' increases list item indentation.
175 `C-<' decreases list item indentation.
177 *** Slightly improvement speed of flyspell integration
179 *** Implement searching through Muse files.
181 **** `C-c C-s' performs a search through Muse files.
183 **** New option: muse-grep-command.
184 Customize this to specify the command used for searching.  In
185 particular, "glimpse" is handy.  Check the documentation for this
186 command for details.
188 *** Changed keybindings:
189 `C-c C-b' is now `muse-find-backlinks'
190 `C-c C-v' is now `muse-browse-result'
192 *** Remove the C-c C-c keybinding, since it conflicts with other
193 modes like Planner.
195 *** Don't require muse-publish.el, since publishing and viewing Muse
196 files are supposed to be completely separable.
198 *** Speed up searching for next and previous references.
200 *** Make filling definition lists work better.
202 *** Make editing existing links with `C-c C-e' work better.
204 *** Make browsing the resulting page with `C-c C-v' work better.
206 *** Don't throw an error if doing flyspell or following link at
207 beginning of buffer.
209 *** When publishing a file with `C-c C-t', consult muse-project-alist
210 and use its publishing styles to intelligently prompt the user as to
211 the publishing style and output directory.
213 The old behavior of allowing the file to be published anywhere and
214 with any style has been moved to `C-c C-T'.
216 *** Clicking `mouse-2' now does the right thing when
217 mouse-yank-at-point is non-nil.
219 ** Muse Mode highlighting (lisp/muse-colors.el)
221 *** New option: muse-colors-inline-images.
222 This determines whether or not to inline an image when viewing Muse
223 source.  The default is to enable this behavior.  This feature is
224 currently considered to be in a beta state, because finding the real
225 paths of images consistently has not been worked out.
227 **** `C-c C-i' toggles whether images are inlined.
229 **** New option: muse-colors-inline-image-method.
230 This determines how to find an image that we want to inline.  The
231 default is to look in the current directory.  If set to
232 'muse-colors-use-publishing-directory, it will look in the directory
233 where the current page will be published.
235 *** Make faces conform the namespace better.
236 `muse-link-face' is renamed to `muse-link'.
237 `muse-bad-link-face' is renamed to `muse-bad-link'.
238 `muse-verbatim-face' is renamed to `muse-verbatim'.
240 *** Handle muse-emphasis faces better.
242 *** Make links blue by default, like most other Emacs modes do.
244 *** Source-level change: The regexps in `muse-colors-markup' are now
245 permitted to have non-shy groupings.
247 ** New modules
249 *** lisp/muse-backlink.el -- Provide backlink support for Muse.
251 *** lisp/muse-groff.el --  This introduces the publishing styles
252 "groff" and "groff-pdf".
254 *** lisp/muse-import-docbook.el -- Convert Docbook XML into Muse format.
256 *** lisp/muse-import-xml.el -- Helper file for muse-import-docbook.el.
258 *** lisp/muse-latex2png.el -- Publish embedded LaTeX content to a PNG file.
259 This introduces the <latex> tag.
261 *** lisp/muse-xml-common.el -- Common functionality used by XML-based
262 publishing styles, such as HTML, XML, and DocBook.
264 *** experimental/muse-mathml.el -- This introduces the "mathml"
265 publishing style and the <mathml> tag.
267 *** experimental/muse-protocol-iw.el: Implements a simpler URL-like
268 interwiki protocol that handles subdirectories.
270 *** experimental/muse-split.el -- Splits published Muse files into several
271 smaller files.
273 ** Project settings (lisp/muse-project.el)
275 *** Introduce the `with-muse-project' macro, which makes it easier
276 to switch to a given Muse project and execute some code.
278 *** Fix an error with `custom-quote'.
280 *** Ignore buffers that have no associated filename.
281 This fixes an annoyance where Muse prompts to save BBDB and ERC
282 buffers before publishing.
284 *** If we cannot find a project to publish, indicate this in an
285 error message.  This fixes an infinite loop.
287 *** Update the file-alist whenever a Muse file is saved.
289 *** Prevent infinite recursion when updating the file alist.
291 *** In addition to Arch and CVS metadata directories, also ignore
292 these for Darcs, SVN, Mercurial, and Bazaar.  Also, don't erroneously
293 ignore files with "#" in them.
295 *** Make links to subdirectories work.
296 The idea is to include as much of the path that is needed in order to
297 disambiguate the link.  For example: "web/TestPage".
299 *** New variable: muse-current-output-style.
300 This holds the output style that is currently being used to publish a
301 file.
303 *** Permit non-Muse files in projects to be linked to.
305 *** Handle relative links to other Muse pages.
306 Relative links are prefixed with "./" or "../".
308 *** New option: muse-project-publish-private-files
309 If this is non-nil (the default), files will be published even if they
310 have "o-r" permissions set (that is, if no one except the owner and
311 possibly group are allowed to read them).  To get back the old
312 behavior, set this to nil.
314 *** Publishing functions can now be customized on per-project basis
315 You can now use :publish-project and :publish to specify what function
316 to call for publishing entire projects or just a single file.
317 :publish-project is meant to be specified in the first part of a
318 project entry, along with the directories.  :publish is meant to be
319 used in a (optionally derived) publishing style: after specifying such
320 a style, use its name in the latter part of a project entry.
322 ** Publishing (lisp/muse-publish.el)
324 *** Implement escaping of specials throughout the entire document.
325 This makes it much easier to publish documents to multiple kinds of
326 formats, since you no longer have to worry about putting <verbatim>
327 around specials.
329 *** Make escaping of specials context-sensitive.
330 Muse now realizes that URLs, normal document text, <example> regions,
331 and the like have different special characters to escape.
333 *** Support nested lists.
334 Muse now determines the nested level of a list by its initial
335 whitespace.  Ordered lists, unordered lists, and definition lists can
336 all be nested.  It is even possible to force a line break in a list
337 item by inserting a blank line on the same level between the lines.
338 Blockquotes may also be nested inside of a list.
340 *** New interactive function: muse-publish-region.
341 This command publishes the current region, prompting for the title of
342 the page (if any) and the style to use.
344 This is handy for firing off quick blog entries and pasting the result
345 into a web browser -- for this use case, it is recommended to use the
346 blosxom-html or blosxom-xhtml styles, as they omit the large header
347 and footer.
349 *** Additional arguments for <literal> tag.
350 The optional "style" and "exact" attributes may now be specified,
351 which cause text to only be included if the current publishing style
352 matches some criteria -- the text will be removed otherwise.
354 Omitting these attributes causes <literal> to behave the same as
355 usual.
357 *** Allow empty elements in tables.
359 *** Allow initial and trailing whitespace in tables, but strip it
360 out of the published result.
362 *** If the #disable-tables publishing directive exists on the current
363 Muse page, do not generate a table.
365 *** Require at least once space after "::" in definition lists, so
366 we avoid an ambiguity with interwiki link syntax.
368 *** Handle nested emphasis types better.
369 It should now publish exactly the way it looks in Muse Mode.
371 *** Preserve whitespace around emdash.
372 This allows for more flexibility, since some people seem to prefer to
373 have the emdash directly against the surrounding text, while others
374 like it to be spaced.
376 *** Fix paragraph detection when block-level markup comes immediately
377 after a paragraph.  Examples of block-level markup are: <example>,
378 verses, lists.
380 *** Allow the <lisp> tag to take the "markup" attribute.
381 see the Tag Summary section in the manual for details.
383 *** Publish image links with descriptions as captioned images.
384 This has been implemented for all Muse publishing styles.
386 The major change is that image links with descriptions will be
387 centered and the description will be displayed just below the image as
388 a "caption".  Thus, it is meant to only be used as its own paragraph,
389 not surrounded by other text.  Images without descriptions may still
390 have surrounding text.
392 *** Make comments higher priority than tags when publishing,
393 so that Muse comments within tags get stripped out.
395 *** Handle properly comments that have no text.
397 *** Distinguish links and footnotes better.
399 *** Do the right thing when a footnote reference exists but has no
400 corresponding footnote.
402 *** Simplify markup string for anchors.
404 *** Allow text like "%N%" in markup strings.
405 This makes it much easier to re-use the same text or put strings in
406 a different order.
408 *** Create parent directories when publishing for the first time.
410 *** Handle case where we are trying to publish a file that has not
411 been saved.
413 *** Fix XEmacs issue where text at beginning of buffer is read-only.
415 *** Allow publishing styles to specify a function to use for
416 escaping specials in a particular context.  This is especially handy
417 for HTML URLs, since they have a larger subset of special characters
418 than normal characters.
420 See `muse-xml-decide-specials' in muse-xml-common.el for details.
421 This functionality already exists for escaping specials in strings.
423 *** Don't give an error when trying to define or derive an existing
424 style.  Just replace it.
426 *** Get rid of a warning that occurs when batch publishing.
428 *** Ignore list items that are part of higher-priority constructs
429 like emphasis.
431 *** Don't markup emdash in a link, since otherwise it will be
432 incorrectly escaped.
434 *** Improve the published descriptions for implicit links and explicit
435 links with no provided description.
437 *** For headers and footers, use a better algorithm to detect whether
438 we have been given a filename or the real contents.
440 *** New option: muse-publish-date-format.
441 Format string of the date used when publishing files.
443 *** New option: muse-publish-markup-header-footer-tags.
444 This specifies which tags may be used when publishing headers and
445 footers.
447 *** New option: muse-publish-contents-depth.
448 This specifies the maximum depth of headings to include with
449 <contents> tags.
451 *** Allow `muse-publish-markup-buffer' to work even if the buffer
452 is not associated with a file.
454 *** Fix a compilation bug with XEmacs beta.
456 *** Source-level change: Use 'image instead of 'image-link to indicate
457 images without descriptions.  Use 'image-link instead of
458 'url-with-image to indicate URLs that have an image as their
459 description.
461 *** Self-nested tags are now supported.
462 Tags with the same name can now be nested inside one another.  This
463 only applies to the new <quote> tag and the <class> tag currently, but
464 it may be useful for custom tags as well.
466 To activate this, set the 4th element in a `muse-publish-markup-tag'
467 to non-nil.  Note that this involved a change to the structure of
468 `muse-publish-markup-tag', so be sure to change any custom tags
469 appropriately.
471 *** Fix bug with WikiName link descriptions and PDF output.
473 *** New convenience function: muse-style-derived-p
474 The new muse-style-derived-p function allows you to make custom tags
475 or inline <lisp> code that acts differently depending on whether the
476 current style is derived from (or equal to) another style.
478 For an example of its use, see `muse-publish-latex-tag' in
479 lisp/muse-latex2png.el.
481 *** New tags, see the Tag Summary section in the manual for details
483 **** <comment> -- Designate entire regions as comments.
485 **** <include> -- Insert the given file at publish time.
487 **** <markup> -- Mark up the text between the initial and ending tags.
489 **** <perl> -- Evaluate perl code.
491 **** <python> -- Evaluate python code.
493 **** <quote> -- Publish the region as a blockquote.
495 **** <ruby> -- Evaluate ruby code.
497 ** Texinfo publishing (lisp/muse-texinfo.el)
499 *** Escape commas in URLs.
501 *** Make it so that links to other info or PDF documents use the proper
502 suffix.
504 ** URL protocols (lisp/muse-protocols.el)
506 *** Add support for DOI's.
507 DOI's (digitial object identifiers) are a standard identifier used in
508 the publishing industry.
510 *** Add support for "dict:" URLs.
511 This is used to look up terms on the Wikipedia website.
513 **** New option: muse-wikipedia-country.
514 This specified the country code to use for Wikipedia.
516 *** Add support for "woman:" URLs.
517 "woman" links are opened with Emacs' internal manpage viewer.
519 ** Wiki (lisp/muse-wiki.el)
521 *** If the document does not have a valid title string, use the
522 empty string.
524 *** Fix some bugs.
526 *** New option: muse-wiki-wikiword-match-project-files.
527 Whether to extend WikiName functionality to also match
528 existing filenames, regardless of whether they are named in
529 WikiWord format.
531 If non-nil, Muse will color and publish implicit links to any
532 file in your project.  The default is nil.
534 *** Match filenames in the project before the general WikiWord
535 regexp.
537 *** Take the value of `muse-wiki-hide-nop-tag' into account.
539 *** New option: muse-wiki-ignore-implicit-links-to-current-page.
540 Whether to ignore implicit links to the current page.
542 If non-nil, Muse will not recognize implicit links to the current
543 page, both when formatting and publishing.
545 *** For interwiki links, prefer files that have the same file extension
546 as the current file.
548 *** Check the entire explicit link for a project name or complete
549 interwiki link, not just part of it.  This allows page names with
550 invalid WikiName characters to be referred to by using an explicit
551 link.
553 ** XML publishing (lisp/muse-xml.el)
555 *** Update examples/muse.rnc to handle nested list items.
557 *** Fix table generation when some attributes are not given.
559 * Changes in Muse 3.02.8
561 ** Building Muse
563 *** Compile the contents of the contrib directory.
565 *** The debian/ directory has been moved into its own branch.
566 It is now available at mwolson@gnu.org--2006/muse--debian--0.
568 *** Further parametrize the build system, so that it can be easily
569 used by other Emacs Lisp projects.
571 *** Include autoloads file (lisp/muse-autoloads.el) with releases.
573 ** CGI library (contrib/cgi.el)
575 *** Make this not depend on cl.el at runtime.
577 *** Re-add the example calendar application.
579 ** HTTP daemon (contrib/httpd.el)
581 *** Update this to work with newer versions of Emacs.
583 * Changes in Muse 3.02.7
585 ** Muse Mode highlighting (lisp/muse-colors.el)
587 *** Fix bug that caused Muse not to work with recent builds of Emacs 22.
589 * Changes in Muse 3.02.6
591 ** Building Muse
593 *** Autoloads for Muse are now generated in the muse-autoloads.el
594 file at build time.
596 ** HTML publishing (lisp/muse-html.el)
598 *** Don't escape "%" and "+" in URLs.
600 ** Muse Mode (lisp/muse-mode.el)
602 *** <lisp> tags are now evaluated at display time.
603 The actual contents of the buffer will not change, just the displayed
604 text.  To toggle this behavior, set `muse-colors-evaluate-lisp-tags'.
606 ** Publishing (lisp/muse-publish.el)
608 *** When errors happen during publishing, a more explanatory message
609 is displayed.
611 *** It is now possible to specify non-breaking-space with "~~"
612 (two tildes).  This helps prevent proper names from being split up in
613 the output.
615 *** Escape specials in all forms of emphasis.
617 *** Escape "[" and "]" in links that are entered using muse-make-link.
619 *** Errors from invalid lisp code in a <lisp> tag will be published
620 as a comment.  If you have `muse-publish-comments-p' set to nil, the
621 effect is to remove the error message.
623 *** Fix several publishing issues involving comments and numbered lists.
625 ** Wiki (lisp/muse-wiki.el)
627 *** Interwiki links in extended links that have special characters are
628 now handled properly.
630 ** XML publishing (lisp/muse-xml.el)
632 *** The XML publishing style is now considered stable.
633 Its schema is available in `examples/muse.rnc'.
635 * Changes in Muse 3.02.5
637 ** LaTeX publishing (lisp/muse-latex.el)
639 *** Use a better algorithm for determining how many times we need to
640 call pdflatex for publishing.  Anything with a Table of Contents needs
641 2 passes.
643 ** Muse Mode (lisp/muse-mode.el)
645 *** The 3 levels of emphasis now have corresponding muse-emphasis-N faces.
646 This permits the user to customize them, which may be useful if a font
647 does not have italic and/or bold versions.
649 *** Visiting pages with anchors works better.
651 *** Fix fill bug with semicolons in the middle of paragraphs.
653 *** Fix a bug with editing the link at point.
655 *** Fix a display bug with text like =<verbatim><example></verbatim>=.
657 ** Project settings (lisp/muse-project.el)
659 *** Fix an edge case that yielded a stringp: nil error.
661 *** Prevent auto-save files from being recognized as Muse files.
663 ** Wiki (lisp/muse-wiki.el)
665 *** By default, WikiWords can have consecutive capital letters.
667 *** Fix an error that occurs when muse-colors is not loaded.
669 *** It is now possible to specify a suffix for WikiWord links.
670 For example: WikiName''''s.  The WikiName part will be displayed and
671 colored as a link, but the "s" will be left alone.
673 * Changes in Muse 3.02.02
675 ** Configuration
677 *** A bug with customizing `muse-project-alist' has been fixed.
679 *** We use a file extension for Muse files by default.
680 To obtain the old behavior, set `muse-file-extension' to nil and
681 `muse-mode-auto-p' to t.
683 To go along with the new behavior, be sure to rename all of your Muse
684 files to have a ".muse" extension.
686 *** New option: `muse-wiki-ignore-bare-project-names'.
687 This causes Muse to ignore bare project names if specified.  The
688 default is to turn bare project names into links.
690 *** New option: `muse-publish-comments-p'.
691 This causes Muse to publish comments as markup.  The default is to
692 remove comments before publishing rather than trying to mark them up.
694 *** New option: `muse-wiki-allow-nonexistent-wikiword'.
695 Enabling this will cause WikiWords with no corresponding file to be
696 colored as bad links.  The default is not to color them and turn them
697 into links.
699 ** Muse Mode (lisp/muse-mode.el)
701 *** An error with intangible links has been fixed.
703 *** Visiting a page with an anchor works better than before.
705 *** Flyspell behaves better with Emacs21 than before.
707 *** Links to nonexistent files will be colored red by default.
708 This happened previously, but the algorithm was buggy and didn't cover
709 implicit links.
711 ** Project handling (lisp/muse-project.el)
713 *** A convenience macro called `with-muse-project' has been added.
714 This allows a code block to be executed after changing the current
715 Muse project.  It is analogous to emacs-wiki's
716 `with-emacs-wiki-project' function.
718 ** Publishing (lisp/muse-publish.el)
720 *** An issue involving anchors at the end of a line has been
721 addressed.
723 *** Non-word characters are now allowed before an anchor.
725 *** Comments may now be published, if desired.
726 This behavior may be controlled with the `muse-publish-comments-p'
727 option.  The default is to remove comments before publishing rather
728 than trying to mark them up.
730 *** Publishing directives may now include a dash character.
732 ** LaTeX publishing (lisp/muse-latex.el)
734 *** A bug with footnotes has been addressed.
735 An attempt has been made to make generated footnote markup look more
736 "natural" to experienced LaTeX users.
738 *** Table headers are underlined and table footers are overlined.
740 *** PDF publishing will cause pdflatex to be called as needed.
741 The previous behavior was to always call pdflatex twice.  Currently,
742 if pdflatex succeeds, it will not be called again.  Otherwise, call it
743 up to three times.
745 *** Escaping of special characters should be drastically improved.
746 An attempt has been made to get escaping done right in most contexts.
747 The only quirk is that you must surround dollar signs with equal signs
748 to ensure escaping.  This makes publishing PDF documents much more
749 useful.
751 ** Texinfo publishing (lisp/muse-texinfo.el.el)
753 *** An attempt was made to hone some of the markup.
755 * Changes in Muse 3.02.01
757 ** Muse Mode (lisp/muse-mode.el)
759 *** Links should no longer prevent moving the point, and help text for
760 links should no longer cause errors to occur.
762 ** Project handling (lisp/muse-project.el)
764 *** `muse-project-alist' -- This variable should now save customizations
765 to the correct form in the .emacs file.  Before, it was saving an
766 intermediate form of the variable.
768 If you have used the customize interface in the previous release of
769 Muse to set `muse-project-alist', please do the following to import
770 your settings.
772  - Open your .emacs file.
773  - Move the point to where `muse-project-alist' is set.
774  - Type `M-: (setq muse-project-alist-using-customize t) RET'.
775  - Type `C-M-x'.
776  - Type `M-x customize-save-variable RET muse-project-alist RET'.
778 *** `muse-project-alist' -- A bug involving the deleting of items
779 using Emacs21 and XEmacs21 has been fixed.
781 ** Publishing (lisp/muse-publish.el)
783 *** If 2 or more blank lines separate list or table items, each item
784 will be published in a separate list or table.
786 *** The #date directive is now populated by default with the last
787 modified time of each file, rather than the current time of day.  To
788 use this value, add '<lisp>(muse-publishing-directive "date")<lisp>'
789 to your header or footer.
791 ** HTML publishing (lisp/muse-html.el)
793 *** `muse-xhtml-style-sheet' -- New option that indicates the style
794 settings to use for XHTML documents.  This may be either a filename or
795 a string of stylesheet settings.
797 * Changes in Muse 3.02
799 ** New modules
801 *** lisp/muse-wiki.el --- Provide automatic linking for WikiWords and
802 InterWiki links.  These words are clickable and publish as links.
803 Project names from `muse-project-alist' are available for InterWiki
804 linking by default.  The list of InterWiki names and handlers may be
805 customized through `muse-wiki-interwiki-alist'.
807 WikiWords that do not correspond with real files will not be displayed
808 as links nor published as links.  It is expected that this behavior
809 will be made optional in future versions of Muse.
811 **** This module includes a few helper functions that may be added to
812 `muse-publish-desc-transforms' in order to modify link descriptions at
813 publish time.
815 **** The concept of "implicit links" and "explicit links" has been
816 introduced.  Explicit links are surrounded by brackets, i.e.
817 [[http://blah.org][this is a explicit link]].  Implicit links are URLs
818 and email addresses that are not surrounded by brackets: they will not
819 be colorized or published if surrounded by double-quotes.
821 ***** `muse-wiki-publish-pretty-title' causes words to be Title-cased,
822 ignoring words like `the' and `at' which should not be changed.
824 ***** `muse-wiki-publish-pretty-interwiki' changes the delimiter of
825 interwiki links according to the text of the
826 `muse-wiki-interwiki-replacement' option.
828 *** lisp/muse-protocols.el --- URL protocols that Muse recognizes.
829 This automatically-included module provides an easily customizable
830 list of URL protocols, how to browse them, and how to resolve them for
831 publishing.  Customize `muse-url-protocols' to add and remove
832 protocols.
834 ** Compatibility fixes
836 *** Muse has been tested with XEmacs 21.4, both Mule and non-Mule versions.
837 There are no known problems remaining.  To make things work by
838 default, the iso-8859-1 charset is used as a default option in some
839 places.
841 ** Configuration
843 *** `muse-file-extension' -- New option that allows the file extension
844 for Muse files to be specified.  For example, setting this to "muse"
845 assumes that you have renamed your Muse files with a ".muse"
846 extension.  Using this (and setting `muse-mode-auto-p' to nil) will
847 prevent miscellaneous non-Muse files from being accidentally opened in
848 Muse Mode.
850 *** `muse-ignored-extensions' -- New option that determines which file
851 extensions to omit from the ending of a Muse page name.
853 *** `muse-ignored-extensions-regexp' -- This is no longer customizable.
854 It will be automatically generated from `muse-file-extension' and
855 `muse-ignored-extensions'.
857 *** `muse-project-alist' -- The customize interface for this option has
858 been greatly improved, and much effort has been spent in order to make
859 this user-friendly.
861 *** The `:force-publish' tag may be specified in `muse-project-alist'.
862 This causes a particular list of files to be re-created every time the
863 publishing process is invoked, even if they haven't been changed
864 according to their timestamps.  One use for this is to keep an index
865 of available pages by adding the following to a file in this list.
867 <lisp>(muse-index-as-string t t t)</lisp>
869 *** `muse-project-ignore-regexp' -- By default, version control directories
870 are now included in this regexp so that they don't appear when you hit
871 C-c C-f to browse files in a project.
873 *** The `muse-project-alist-styles' and `muse-project-alist-dirs' functions
874 may be used in `muse-project-alist' to recursively add styles and
875 directory listings for a given directory.  The following is an
876 example.  We use a backtick instead of a single quote to begin the
877 list.
879 (setq muse-project-alist
880       `(("Blog"
881          (,@(muse-project-alist-dirs "~/proj/wiki/blog")  ;; base dir
882           :default "guestbook")
884          ,@(muse-project-alist-styles "~/proj/wiki/blog"  ;; base dir
885                                       ;; output dir
886                                       "~/personal-site/site/blog"
887                                       ;; style
888                                       "my-blosxom"))))
890 Note that if you use the customize interface for `muse-project-alist',
891 you will still have to manually add information for any new
892 sub-directories.
894 ** Debian packaging
896 *** Debian packages for Muse have entered Debian unstable, thanks
897 to Romain Francoise, my sponsor.
899 It is possible to roll your own Muse packages if you want to do so.
900 Packages may be built by using `make debrelease', once the proper
901 options in Makefile.defs are set.  Revisions may be built using `make
902 debrevision'.
904 The manual and relevant documentation files have been included with
905 the Debian package for Muse.
907 ** Muse Mode (lisp/muse-mode.el)
909 *** Allow use of Muse with outline-minor-mode.
911 *** Filling text does the right thing with list items and footnotes.
912 List items and footnotes will no longer be concatenated when hitting
913 M-q in the midst of consecutive items.
915 *** Links will never be split in the middle when using Fill.
917 *** Some flyspell crash issues were addressed.
918 Using intangible text can cause strange problems with flyspell mode.
919 Hence, by default, the intangible property will be ignored.  A new
920 option called `muse-mode-intangible-links' indicates whether this
921 should be the case.
923 *** Links will no longer be highlighted by flyspell.
924 If you're using XEmacs or Emacs 22, flyspell will ignore links,
925 including link text.  This keeps flyspell from making the links
926 unclickable.  If you're using Emacs 21, flyspell will continue to
927 interfere with links.  If you know how to fix this, please send a
928 patch!
930 *** A few edge cases for emphasis and underlining have been addressed.
932 *** <example>, <verbatim>, and =surrounded text= are now colored using
933 the new face `muse-verbatim-face'.
935 *** All marked up text properties, like emphasis and underlining,
936 will be removed for the text between <example>, <verbatim>, <code>,
937 <literal>, and <lisp> tags.
939 *** Links to temporary files may be visited.
940 A "temporary file" in this case is a buffer that is not associated
941 with any file.  For some dynamic content import scripts with Planner,
942 this is helpful.
944 *** Typing "#title" should never crash Emacs anymore.
946 ** Muse manual (muse.texi)
948 *** Fix problem with producing a PDF version of the manual.
950 *** Document WikiNames.
952 *** Bring up-to-date with latest features.
954 *** Massively update Common Elements section.
956 *** New Directives section.
957 This describes the use of #title and #author, as well as other
958 directives that may be used.
960 *** New Comments section.
961 Describes the use of "; comment text".
963 ** Publishing (lisp/muse-publish.el)
965 *** The order of rules should be much improved.
966 This means that emphasis characters like `*' and `_' will never be
967 interpreted as such if they are within links.
969 *** The user will be notified when `muse-publish-this-file' fails to
970 publish the current file.  This happens when the timestamp of the
971 current file indicates that it is up-to-date.
973 *** Special characters are escaped in link descriptions and links on a
974 more consistent basis.  What defines a "special character" varies
975 according to the publishing style.
977 *** Errors that occur during publish time will cause a warning to be
978 displayed prominently, rather than being ignored.  It should no longer
979 be possible to mess up a Muse source file by tweaking the Muse
980 publishing process.
982 *** Errors in <lisp> tags cause a warning to be displayed and
983 return "<!--INVALID LISP CODE-->".  Muse will try to continue
984 publishing the page.
986 *** An emdash ("--") can now be used after a list, as long as there is
987 a blank line between the end of the list and the emdash.
989 *** The <code> tag has been introduced.
990 It does the same thing that =equal signs= do: escape specials and
991 publish as teletype text.  Use it for short command snippets and the
992 like.  <example> is a better choice for large blocks of code, since it
993 preserves whitespace.
995 *** An edge case involving links at the beginning of a paragraph
996 has been addressed.
998 *** An edge case involving consecutive directives of the same size
999 has been addressed.
1001 *** Every publishing style is now capable of specifying strings to use
1002 for sections beyond the third level.
1004 *** Every publishing style may specify an end-of-section string.
1005 This is used, for example, by the experimental XML style and the
1006 DocBook style.
1008 *** Every publishing style may specify a method of handling "internal
1009 link" markup.  An internal link is a link that refers to an anchor on
1010 the current page.
1012 *** Every publishing style may specify a link suffix to use.
1013 This allows the file extensions in links to other Muse files to be
1014 different from their actual extension.  Blosxom makes use of this
1015 (since its published files are .txt and the dynamically-generated
1016 output is .html), and it could come in handy for PHP stuff.
1018 If a link suffix is not specified via :link-suffix, the value of
1019 :suffix will be used.
1021 ** Blosxom publishing (lisp/muse-blosxom.el)
1023 *** muse-blosxom-new-entry: A #category directive is added by default.
1024 Nothing is done with this yet, but it could be handy for tag-based
1025 (multiple category) blogging, once we figure out a good way to do that
1026 in both Muse and Pyblosxom.  Ideas are welcome, and patches even more
1029 ** DocBook publishing (lisp/muse-docbook.el)
1031 *** The markup has been comprehensively improved.
1032 Published documents will now pass validation tests and look better in
1033 general.
1035 *** It is now possible to specify the encoding of DocBook documents.
1036 The default encoding is utf-8.
1038 *** Footnotes will be embedded into paragraphs, since this is
1039 The DocBook Way.
1041 *** Tables will be sorted by section.
1042 Headers first, then footers, then the rest of the table.
1044 *** Anchors are now handled correctly and publish to the best available
1045 form.  Links to anchors are published with the <link> tag.
1047 ** HTML publishing (lisp/muse-html.el)
1049 *** Fix minor issue with anchors.
1051 *** Paragraph publishing will no longer insert <div> tags before images.
1052 This was causing too much hassle for some programs that were trying to
1053 extend Muse, like the Muse port of Planner.
1055 *** The `&', `<', and '>' characters will be escaped using their specific
1056 HTML escape codes, rather than with "&#NNN;".  This makes the
1057 published output display correctly in more web browsers.
1059 *** Use HTML 4.0 Transitional by default for `muse-html-header'.
1061 *** Include empty alt element in markup string for images that lack a
1062 description.
1064 *** Tables will be sorted by section.
1065 Headers first, then footers, then the rest of the table.
1067 *** `muse-xhtml-extension' -- The default extension for XHTML publishing.
1068 This is a new option.
1070 ** Journal publishing (lisp/muse-journal.el)
1072 *** Use "div class=..." rather than "div id=..." for sections.
1074 ** LaTeX publishing (lisp/muse-latex.el)
1076 *** A newline will be appended to the default footer for the latex and
1077 latexpdf publishing styles.  This keeps the PDF-building process from
1078 failing due to lack of a newline at end of file.
1080 *** Anchors and links to them now work properly.
1082 *** When generating PDF files, call pdflatex twice.
1083 This should ensure that the table of contents gets generated, if one
1084 is due to be published.
1086 *** PDF files with spaces may be published.
1087 A bug preventing this has been fixed.
1089 *** Teletype text is now published using \\texttt{...}.
1091 *** An attempt has been made to escape special characters more
1092 consistently.
1094 ** Texinfo publishing (lisp/muse-texinfo.el)
1096 *** Fix a fatal error that occurs when publishing tables.
1098 *** Generate the contents in the header by default rather than the footer.
1099 This is the way that most Texinfo manuals do it.
1101 *** The info-pdf publishing style currently produces the best PDF output
1102 on the maintainer's machine, so it is now used to publish the PDF
1103 version of the Muse Manual.
1105 *** The characters `{' and `}' will be treated as special characters that
1106 need to be escaped at publish-time.
1108 *** Improve dots and enddots markup strings.
1110 *** Surround underlined text with "_" since Texinfo doesn't seem to have
1111 any better options for producing underlined text.
1113 *** Anchors and links to them now work properly.