Be smarter about where explicit interwiki links end
[muse-el.git] / NEWS
blob28a32a844e1830ccf48450f452d292017d65d1a9
1 Emacs Muse NEWS --- History of user-visible changes    -*- outline -*-
3 * Changes in Muse 3.03 (not yet released)
5 ** Blosxom publishing (lisp/muse-blosxom.el)
7 *** New option: muse-blosxom-use-tags.
8 This specifies whether or not we are using tags.  Tags allow a page to
9 belong to multiple categories, but they do not rely on the directory
10 structure for categorization.
12 *** Use `find-file' as the browsing function.
14 *** Improve internal documentation for the included pyblosxom plug-ins.
16 *** New example script: contrib/pyblosxom/make-blog.
17 This shows how to invoke contrib/pyblosxom/getstamps.py.
19 ** Core functionality (lisp/muse.el)
21 *** Fix an XEmacs beta byte-compiler issue.
23 *** Make nested list manipulation accessible to both Muse Mode
24 and Muse publishing.
26 *** Fix failure to recognize the .muse file extension.
27 Handle the case where the user customizes the file extension.
29 *** It is now easier to indicate that Muse should not use a file
30 extension.  Just do the following.
32 (setq muse-file-extension nil
33       muse-mode-auto-p t)
35 *** Allow tab characters in explicit links.
37 *** Escape brackets in links, and then un-escape them when displaying
38 the link in a buffer of publishing it.  This allows brackets to be
39 safely used in link descriptions and links, as long as you use `C-c
40 TAB l', `C-c TAB u', `C-c C-e', or automatic Planner annotations.
42 ** HTML publishing (lisp/muse-html.el)
44 *** Make sure spaces in URLs get escaped properly.
46 *** Make the Table of Contents CSS easier to customize.
47 For an example, see examples/mwolson/stylesheets/screen.css.
49 *** Fix a paragraph detection bug for paragraphs that occur after
50 verses.
52 ** Importing LaTeX documents (lisp/muse-import-latex.el)
54 *** Rename from muse-convert.el.
55 There are plans for importing other formats into Muse as well.
57 ** Journal (lisp/muse-journal.el)
59 *** New option: muse-journal-rss-heading-regexp.
60 Determine the regexp to use when searching for an RSS heading.
62 *** Make sure that the date is in a format that RSS readers
63 can handle.
65 ** LaTeX publishing (lisp/muse-latex.el)
67 *** Improve escaping of specials.
69 *** Use \label{} and \ref{} for anchors and anchor references.
71 *** Emphasize table elements.
73 *** Improve table generation.
75 *** Use \url{} to publish bare URLs.
77 *** Handle case where a Muse page begins with a quote character.
79 *** Display footnotes when we have both a URL and description.
80 This makes the URLs show up on printed documents in a sensible
81 fashion.
83 *** Escape the "@" character in the entire document.
85 *** Make images take up 75% of the width of the page.
87 *** New option: muse-latex-permit-contents-tag.
88 This specifies whether we should take action on the <contents> tag.
90 ** Muse Manual (muse.texi)
92 *** Use better style for subsections.
94 *** Make sure the PDF file for the manual is properly generated.
96 *** Implicit Links
98 **** Mention how to customize the WikiName recognition.
100 *** Extending Muse
102 **** Move "Common Elements" and "Deriving Styles" chapters here.
104 ** Muse Mode (lisp/muse-mode.el)
106 *** `C-c TAB' now inserts an object, prompting the user for which type.
107 `C-c TAB l' inserts a relative link.
108 `C-c TAB t' inserts a Muse tag.
109 `C-c TAB u' inserts a URL.
111 These keybindings may be modified by editing `muse-insert-map'.  Note
112 that the prompt you get when you hit `C-c TAB' will not change.
114 *** New list-oriented keybindings:
115 `M-RET' inserts a list item.
116 `C->' increases list item indentation.
117 `C-<' decreases list item indentation.
119 *** Slightly improvement speed of flyspell integration
121 *** Implement searching through Muse files.
123 **** `C-c C-s' performs a search through Muse files.
125 **** New option: muse-grep-command.
126 Customize this to specify the command used for searching.  In
127 particular, "glimpse" is handy.  Check the documentation for this
128 command for details.
130 *** Changed keybindings:
131 `C-c C-b' is now `muse-find-backlinks'
132 `C-c C-v' is now `muse-browse-result'
134 *** Don't require muse-publish.el, since publishing and viewing Muse
135 files are supposed to be completely separable.
137 *** Speed up searching for next and previous references.
139 *** Make filling definition lists work better.
141 *** Make editing existing links with `C-c C-e' work better.
143 *** Make browsing the resulting page with `C-c C-v' work better.
145 *** Don't throw an error if doing flyspell or following link at
146 beginning of buffer.
148 *** When publishing a file with `C-c C-t', consult muse-project-alist
149 and use its publishing styles to intelligently prompt the user as to
150 the publishing style and output directory.
152 The old behavior of allowing the file to be published anywhere and
153 with any style has been moved to `C-c C-T'.
155 *** Clicking `mouse-2' now does the right thing when
156 mouse-yank-at-point is non-nil.
158 ** Muse Mode highlighting (lisp/muse-colors.el)
160 *** New option: muse-colors-inline-images.
161 This determines whether or not to inline an image.  The default is to
162 enable this behavior.
164 **** `C-c C-i' toggles whether images are inlined.
166 **** New option: muse-colors-inline-image-method.
167 This determines how to find an image that we want to inline.  The
168 default is to look in the current directory.  If set to
169 'muse-colors-use-publishing-directory, it will look in the directory
170 where the current page will be published.
172 *** Make faces conform the namespace better.
173 `muse-link-face' is renamed to `muse-link'.
174 `muse-bad-link-face' is renamed to `muse-bad-link'.
175 `muse-verbatim-face' is renamed to `muse-verbatim'.
177 *** Handle muse-emphasis faces better.
179 *** Make links blue by default, like most other Emacs modes do.
181 ** New modules
183 *** lisp/muse-backlink.el -- Provide backlink support for Muse.
185 *** lisp/muse-groff.el --  This introduces the publishing styles
186 "groff" and "groff-pdf".
188 *** lisp/muse-import-docbook.el -- Convert Docbook XML into Muse format.
190 *** lisp/muse-import-xml.el -- Helper file for muse-import-docbook.el.
192 *** lisp/muse-latex2png.el -- Publish embedded LaTeX content to a PNG file.
193 This introduces the <latex> tag.
195 *** lisp/muse-xml-common.el -- Common functionality used by XML-based
196 publishing styles, such as HTML, XML, and DocBook.
198 *** experimental/muse-mathml.el -- This introduces the "mathml"
199 publishing style and the <math> tag.
201 *** experimental/muse-protocol-iw.el: Implements a simpler URL-like
202 interwiki protocol that handles subdirectories.
204 *** experimental/muse-split.el -- Splits published Muse files into several
205 smaller files.
207 ** Project settings (lisp/muse-project.el)
209 *** Introduce the `with-muse-project' macro, which makes it easier
210 to switch to a given Muse project and execute some code.
212 *** Fix an error with `custom-quote'.
214 *** Ignore buffers that have no associated filename.
215 This fixes an annoyance where Muse prompts to save BBDB and ERC
216 buffers before publishing.
218 *** If we cannot find a project to publish, indicate this in an
219 error message.  This fixes an infinite loop.
221 *** Update the file-alist whenever a Muse file is saved.
223 *** Prevent infinite recursion when updating the file alist.
225 *** In addition to Arch and CVS metadata directories, also ignore
226 these for Darcs and SVN.  Also, don't erroneously ignore files with
227 "#" in them.
229 *** Make links to subdirectories work.
230 The idea is to include as much of the path that is needed in order to
231 disambiguate the link.  For example: "web/TestPage".
233 *** New variable: muse-current-output-style.
234 This holds the output style that is currently being used to publish a
235 file.
237 ** Publishing (lisp/muse-publish.el)
239 *** Implement escaping of specials throughout the entire document.
240 This makes it much easier to publish documents to multiple kinds of
241 formats, since you no longer have to worry about putting <verbatim>
242 around specials.
244 *** Make escaping of specials context-sensitive.
245 Muse now realizes that URLs, normal document text, <example> regions,
246 and the like have different special characters to escape.
248 *** Distinguish links and footnotes better.
250 *** Simplify markup string for anchors.
252 *** Allow text like "%N%" in markup strings.
253 This makes it much easier to re-use the same text or put strings in
254 a different order.
256 *** Support nested lists.
257 Muse now determines the nested level of a list by its initial
258 whitespace.  Ordered lists, unordered lists, and definition lists can
259 all be nested.  It is even possible to force a line break in a list
260 item by inserting a blank line on the same level between the lines.
261 Blockquotes may also be nested inside of a list.
263 *** Create parent directories when publishing for the first time.
265 *** Allow empty elements in tables.
267 *** Allow initial and trailing whitespace in tables, but strip it
268 out of the published result.
270 *** Handle case where we are trying to publish a file that has not
271 been saved.
273 *** Handle nested emphasis types better.
274 It should now publish exactly the way it looks in Muse Mode.
276 *** Fix XEmacs issue where text at beginning of buffer is read-only.
278 *** Allow publishing styles to specify a function to use for
279 escaping specials in a particular context.  This is especially handy
280 for HTML URLs, since they have a larger subset of special characters
281 than normal characters.
283 See `muse-xml-decide-specials' in muse-xml-common.el for details.
284 This functionality already exists for escaping specials in strings.
286 *** Fix an infinite loop problem.
288 *** Preserve whitespace around emdash.
289 This allows for more flexibility, since some people seem to prefer to
290 have the emdash directly against the surrounding text, while others
291 like it to be spaced.
293 *** If the #disable-tables publishing directive exists on the current
294 Muse page, do not generate a table.
296 *** Don't give an error when trying to define or derive an existing
297 style.  Just replace it.
299 *** Get rid of a warning that occurs when batch publishing.
301 *** Ignore list items that are part of higher-priority constructs
302 like emphasis.
304 *** Don't markup emdash in a link, since otherwise it will be
305 incorrectly escaped.
307 *** Improve the published descriptions for implicit links and explicit
308 links with no provided description.
310 *** Require at least once space after "::" in definition lists, so
311 we avoid an ambiguity with interwiki link syntax.
313 *** For headers and footers, use a better algorithm to detect whether
314 we have been given a filename or the real contents.
316 *** New option: muse-publish-markup-header-footer-tags.
317 This specifies which tags may be used when publishing headers and
318 footers.
320 *** New option: muse-publish-contents-depth.
321 This specifies the maximum depth of headings to include with
322 <contents> tags.
324 *** Allow `muse-publish-markup-buffer' to work even if the buffer
325 is not associated with a file.
327 *** Fix a compilation bug with XEmacs beta.
329 *** Allow the <lisp> tag to take the "markup" attribute.
330 see the Tag Summary section in the manual for details.
332 *** Publish image links with descriptions as captioned images.
333 This has been implemented for all Muse publishing styles.
335 The major change is that image links with descriptions will be
336 centered and the description will be displayed just below the image as
337 a "caption".  Thus, it is meant to only be used as its own paragraph,
338 not surrounded by other text.  Images without descriptions may still
339 have surrounding text.
341 *** Source-level change: Use 'image instead of 'image-link to indicate
342 images without descriptions.  Use 'image-link instead of
343 'url-with-image to indicate URLs that have an image as their
344 description.
346 *** Self-nested tags are now supported.
347 Tags with the same name can now be nested inside one another.  This
348 only applies to the new <quote> tag and the <class> tag currently, but
349 it may be useful for custom tags as well.
351 To activate this, set the 4th element in a `muse-publish-markup-tag'
352 to non-nil.  Note that this involved a change to the structure of
353 `muse-publish-markup-tag', so be sure to change any custom tags
354 appropriately.
356 *** New tags, see the Tag Summary section in the manual for details
358 **** <comment> -- Designate entire regions as comments.
360 **** <include> -- Insert the given file at publish time.
362 **** <markup> -- Mark up the text between the initial and ending tags.
364 **** <perl> -- Evaluate perl code.
366 **** <python> -- Evaluate python code.
368 **** <quote> -- Publish the region as a blockquote.
370 **** <ruby> -- Evaluate ruby code.
372 ** Texinfo publishing (lisp/muse-texinfo.el)
374 *** Escape commas in URLs.
376 *** Make it so that links to other info or PDF documents use the proper
377 suffix.
379 ** URL protocols (lisp/muse-protocols.el)
381 *** Add support for DOI's.
382 DOI's (digitial object identifiers) are a standard identifier used in
383 the publishing industry.
385 *** Add support for "dict:" URLs.
386 This is used to look up terms on the Wikipedia website.
388 **** New option: muse-wikipedia-country.
389 This specified the country code to use for Wikipedia.
391 ** Wiki (lisp/muse-wiki.el)
393 *** If the document does not have a valid title string, use the
394 empty string.
396 *** Fix some bugs.
398 *** New option: muse-wiki-wikiword-match-project-files.
399 Whether to extend WikiName functionality to also match
400 existing filenames, regardless of whether they are named in
401 WikiWord format.
403 If non-nil, Muse will color and publish implicit links to any
404 file in your project.  The default is nil.
406 *** Match filenames in the project before the general WikiWord
407 regexp.
409 *** Take the value of `muse-wiki-hide-nop-tag' into account.
411 *** New option: muse-wiki-ignore-implicit-links-to-current-page.
412 Whether to ignore implicit links to the current page.
414 If non-nil, Muse will not recognize implicit links to the current
415 page, both when formatting and publishing.
417 *** For interwiki links, prefer files that have the same file extension
418 as the current file.
420 ** XML publishing (lisp/muse-xml.el)
422 *** Update examples/muse.rnc to handle nested list items.
424 *** Fix table generation when some attributes are not given.
426 * Changes in Muse 3.02.8
428 ** Building Muse
430 *** Compile the contents of the contrib directory.
432 *** The debian/ directory has been moved into its own branch.
433 It is now available at mwolson@gnu.org--2006/muse--debian--0.
435 *** Further parametrize the build system, so that it can be easily
436 used by other Emacs Lisp projects.
438 *** Include autoloads file (lisp/muse-autoloads.el) with releases.
440 ** CGI library (contrib/cgi.el)
442 *** Make this not depend on cl.el at runtime.
444 *** Re-add the example calendar application.
446 ** HTTP daemon (contrib/httpd.el)
448 *** Update this to work with newer versions of Emacs.
450 * Changes in Muse 3.02.7
452 ** Muse Mode highlighting (lisp/muse-colors.el)
454 *** Fix bug that caused Muse not to work with recent builds of Emacs 22.
456 * Changes in Muse 3.02.6
458 ** Building Muse
460 *** Autoloads for Muse are now generated in the muse-autoloads.el
461 file at build time.
463 ** HTML publishing (lisp/muse-html.el)
465 *** Don't escape "%" and "+" in URLs.
467 ** Muse Mode (lisp/muse-mode.el)
469 *** <lisp> tags are now evaluated at display time.
470 The actual contents of the buffer will not change, just the displayed
471 text.  To toggle this behavior, set `muse-colors-evaluate-lisp-tags'.
473 ** Publishing (lisp/muse-publish.el)
475 *** When errors happen during publishing, a more explanatory message
476 is displayed.
478 *** It is now possible to specify non-breaking-space with "~~"
479 (two tildes).  This helps prevent proper names from being split up in
480 the output.
482 *** Escape specials in all forms of emphasis.
484 *** Escape "[" and "]" in links that are entered using muse-make-link.
486 *** Errors from invalid lisp code in a <lisp> tag will be published
487 as a comment.  If you have `muse-publish-comments-p' set to nil, the
488 effect is to remove the error message.
490 *** Fix several publishing issues involving comments and numbered lists.
492 ** Wiki (lisp/muse-wiki.el)
494 *** Interwiki links in extended links that have special characters are
495 now handled properly.
497 ** XML publishing (lisp/muse-xml.el)
499 *** The XML publishing style is now considered stable.
500 Its schema is available in `examples/muse.rnc'.
502 * Changes in Muse 3.02.5
504 ** LaTeX publishing (lisp/muse-latex.el)
506 *** Use a better algorithm for determining how many times we need to
507 call pdflatex for publishing.  Anything with a Table of Contents needs
508 2 passes.
510 ** Muse Mode (lisp/muse-mode.el)
512 *** The 3 levels of emphasis now have corresponding muse-emphasis-N faces.
513 This permits the user to customize them, which may be useful if a font
514 does not have italic and/or bold versions.
516 *** Visiting pages with anchors works better.
518 *** Fix fill bug with semicolons in the middle of paragraphs.
520 *** Fix a bug with editing the link at point.
522 *** Fix a display bug with text like =<verbatim><example></verbatim>=.
524 ** Project settings (lisp/muse-project.el)
526 *** Fix an edge case that yielded a stringp: nil error.
528 *** Prevent auto-save files from being recognized as Muse files.
530 ** Wiki (lisp/muse-wiki.el)
532 *** By default, WikiWords can have consecutive capital letters.
534 *** Fix an error that occurs when muse-colors is not loaded.
536 *** It is now possible to specify a suffix for WikiWord links.
537 For example: WikiName''''s.  The WikiName part will be displayed and
538 colored as a link, but the "s" will be left alone.
540 * Changes in Muse 3.02.02
542 ** Configuration
544 *** A bug with customizing `muse-project-alist' has been fixed.
546 *** We use a file extension for Muse files by default.
547 To obtain the old behavior, set `muse-file-extension' to nil and
548 `muse-mode-auto-p' to t.
550 To go along with the new behavior, be sure to rename all of your Muse
551 files to have a ".muse" extension.
553 *** New option: `muse-wiki-ignore-bare-project-names'.
554 This causes Muse to ignore bare project names if specified.  The
555 default is to turn bare project names into links.
557 *** New option: `muse-publish-comments-p'.
558 This causes Muse to publish comments as markup.  The default is to
559 remove comments before publishing rather than trying to mark them up.
561 *** New option: `muse-wiki-allow-nonexistent-wikiword'.
562 Enabling this will cause WikiWords with no corresponding file to be
563 colored as bad links.  The default is not to color them and turn them
564 into links.
566 ** Muse Mode (lisp/muse-mode.el)
568 *** An error with intangible links has been fixed.
570 *** Visiting a page with an anchor works better than before.
572 *** Flyspell behaves better with Emacs21 than before.
574 *** Links to nonexistent files will be colored red by default.
575 This happened previously, but the algorithm was buggy and didn't cover
576 implicit links.
578 ** Project handling (lisp/muse-project.el)
580 *** A convenience macro called `with-muse-project' has been added.
581 This allows a code block to be executed after changing the current
582 Muse project.  It is analogous to emacs-wiki's
583 `with-emacs-wiki-project' function.
585 ** Publishing (lisp/muse-publish.el)
587 *** An issue involving anchors at the end of a line has been
588 addressed.
590 *** Non-word characters are now allowed before an anchor.
592 *** Comments may now be published, if desired.
593 This behavior may be controlled with the `muse-publish-comments-p'
594 option.  The default is to remove comments before publishing rather
595 than trying to mark them up.
597 *** Publishing directives may now include a dash character.
599 ** LaTeX publishing (lisp/muse-latex.el)
601 *** A bug with footnotes has been addressed.
602 An attempt has been made to make generated footnote markup look more
603 "natural" to experienced LaTeX users.
605 *** Table headers are underlined and table footers are overlined.
607 *** PDF publishing will cause pdflatex to be called as needed.
608 The previous behavior was to always call pdflatex twice.  Currently,
609 if pdflatex succeeds, it will not be called again.  Otherwise, call it
610 up to three times.
612 *** Escaping of special characters should be drastically improved.
613 An attempt has been made to get escaping done right in most contexts.
614 The only quirk is that you must surround dollar signs with equal signs
615 to ensure escaping.  This makes publishing PDF documents much more
616 useful.
618 ** Texinfo publishing (lisp/muse-texinfo.el.el)
620 *** An attempt was made to hone some of the markup.
622 * Changes in Muse 3.02.01
624 ** Muse Mode (lisp/muse-mode.el)
626 *** Links should no longer prevent moving the point, and help text for
627 links should no longer cause errors to occur.
629 ** Project handling (lisp/muse-project.el)
631 *** `muse-project-alist' -- This variable should now save customizations
632 to the correct form in the .emacs file.  Before, it was saving an
633 intermediate form of the variable.
635 If you have used the customize interface in the previous release of
636 Muse to set `muse-project-alist', please do the following to import
637 your settings.
639  - Open your .emacs file.
640  - Move the point to where `muse-project-alist' is set.
641  - Type `M-: (setq muse-project-alist-using-customize t) RET'.
642  - Type `C-M-x'.
643  - Type `M-x customize-save-variable RET muse-project-alist RET'.
645 *** `muse-project-alist' -- A bug involving the deleting of items
646 using Emacs21 and XEmacs21 has been fixed.
648 ** Publishing (lisp/muse-publish.el)
650 *** If 2 or more blank lines separate list or table items, each item
651 will be published in a separate list or table.
653 *** The #date directive is now populated by default with the last
654 modified time of each file, rather than the current time of day.  To
655 use this value, add '<lisp>(muse-publishing-directive "date")<lisp>'
656 to your header or footer.
658 ** HTML publishing (lisp/muse-html.el)
660 *** `muse-xhtml-style-sheet' -- New option that indicates the style
661 settings to use for XHTML documents.  This may be either a filename or
662 a string of stylesheet settings.
664 * Changes in Muse 3.02
666 ** New modules
668 *** lisp/muse-wiki.el --- Provide automatic linking for WikiWords and
669 InterWiki links.  These words are clickable and publish as links.
670 Project names from `muse-project-alist' are available for InterWiki
671 linking by default.  The list of InterWiki names and handlers may be
672 customized through `muse-wiki-interwiki-alist'.
674 WikiWords that do not correspond with real files will not be displayed
675 as links nor published as links.  It is expected that this behavior
676 will be made optional in future versions of Muse.
678 **** This module includes a few helper functions that may be added to
679 `muse-publish-desc-transforms' in order to modify link descriptions at
680 publish time.
682 **** The concept of "implicit links" and "explicit links" has been
683 introduced.  Explicit links are surrounded by brackets, i.e.
684 [[http://blah.org][this is a explicit link]].  Implicit links are URLs
685 and email addresses that are not surrounded by brackets: they will not
686 be colorized or published if surrounded by double-quotes.
688 ***** `muse-wiki-publish-pretty-title' causes words to be Title-cased,
689 ignoring words like `the' and `at' which should not be changed.
691 ***** `muse-wiki-publish-pretty-interwiki' changes the delimiter of
692 interwiki links according to the text of the
693 `muse-wiki-interwiki-replacement' option.
695 *** lisp/muse-protocols.el --- URL protocols that Muse recognizes.
696 This automatically-included module provides an easily customizable
697 list of URL protocols, how to browse them, and how to resolve them for
698 publishing.  Customize `muse-url-protocols' to add and remove
699 protocols.
701 ** Compatibility fixes
703 *** Muse has been tested with XEmacs 21.4, both Mule and non-Mule versions.
704 There are no known problems remaining.  To make things work by
705 default, the iso-8859-1 charset is used as a default option in some
706 places.
708 ** Configuration
710 *** `muse-file-extension' -- New option that allows the file extension
711 for Muse files to be specified.  For example, setting this to "muse"
712 assumes that you have renamed your Muse files with a ".muse"
713 extension.  Using this (and setting `muse-mode-auto-p' to nil) will
714 prevent miscellaneous non-Muse files from being accidentally opened in
715 Muse Mode.
717 *** `muse-ignored-extensions' -- New option that determines which file
718 extensions to omit from the ending of a Muse page name.
720 *** `muse-ignored-extensions-regexp' -- This is no longer customizable.
721 It will be automatically generated from `muse-file-extension' and
722 `muse-ignored-extensions'.
724 *** `muse-project-alist' -- The customize interface for this option has
725 been greatly improved, and much effort has been spent in order to make
726 this user-friendly.
728 *** The `:force-publish' tag may be specified in `muse-project-alist'.
729 This causes a particular list of files to be re-created every time the
730 publishing process is invoked, even if they haven't been changed
731 according to their timestamps.  One use for this is to keep an index
732 of available pages by adding the following to a file in this list.
734 <lisp>(muse-index-as-string t t t)</lisp>
736 *** `muse-project-ignore-regexp' -- By default, version control directories
737 are now included in this regexp so that they don't appear when you hit
738 C-c C-f to browse files in a project.
740 *** The `muse-project-alist-styles' and `muse-project-alist-dirs' functions
741 may be used in `muse-project-alist' to recursively add styles and
742 directory listings for a given directory.  The following is an
743 example.  We use a backtick instead of a single quote to begin the
744 list.
746 (setq muse-project-alist
747       `(("Blog"
748          (,@(muse-project-alist-dirs "~/proj/wiki/blog")  ;; base dir
749           :default "guestbook")
751          ,@(muse-project-alist-styles "~/proj/wiki/blog"  ;; base dir
752                                       ;; output dir
753                                       "~/personal-site/site/blog"
754                                       ;; style
755                                       "my-blosxom"))))
757 Note that if you use the customize interface for `muse-project-alist',
758 you will still have to manually add information for any new
759 sub-directories.
761 ** Debian packaging
763 *** Debian packages for Muse have entered Debian unstable, thanks
764 to Romain Francoise, my sponsor.
766 It is possible to roll your own Muse packages if you want to do so.
767 Packages may be built by using `make debrelease', once the proper
768 options in Makefile.defs are set.  Revisions may be built using `make
769 debrevision'.
771 The manual and relevant documentation files have been included with
772 the Debian package for Muse.
774 ** Muse Mode (lisp/muse-mode.el)
776 *** Allow use of Muse with outline-minor-mode.
778 *** Filling text does the right thing with list items and footnotes.
779 List items and footnotes will no longer be concatenated when hitting
780 M-q in the midst of consecutive items.
782 *** Links will never be split in the middle when using Fill.
784 *** Some flyspell crash issues were addressed.
785 Using intangible text can cause strange problems with flyspell mode.
786 Hence, by default, the intangible property will be ignored.  A new
787 option called `muse-mode-intangible-links' indicates whether this
788 should be the case.
790 *** Links will no longer be highlighted by flyspell.
791 If you're using XEmacs or Emacs 22, flyspell will ignore links,
792 including link text.  This keeps flyspell from making the links
793 unclickable.  If you're using Emacs 21, flyspell will continue to
794 interfere with links.  If you know how to fix this, please send a
795 patch!
797 *** A few edge cases for emphasis and underlining have been addressed.
799 *** <example>, <verbatim>, and =surrounded text= are now colored using
800 the new face `muse-verbatim-face'.
802 *** All marked up text properties, like emphasis and underlining,
803 will be removed for the text between <example>, <verbatim>, <code>,
804 <literal>, and <lisp> tags.
806 *** Links to temporary files may be visited.
807 A "temporary file" in this case is a buffer that is not associated
808 with any file.  For some dynamic content import scripts with Planner,
809 this is helpful.
811 *** Typing "#title" should never crash Emacs anymore.
813 ** Muse manual (muse.texi)
815 *** Fix problem with producing a PDF version of the manual.
817 *** Document WikiNames.
819 *** Bring up-to-date with latest features.
821 *** Massively update Common Elements section.
823 *** New Directives section.
824 This describes the use of #title and #author, as well as other
825 directives that may be used.
827 *** New Comments section.
828 Describes the use of "; comment text".
830 ** Publishing (lisp/muse-publish.el)
832 *** The order of rules should be much improved.
833 This means that emphasis characters like `*' and `_' will never be
834 interpreted as such if they are within links.
836 *** The user will be notified when `muse-publish-this-file' fails to
837 publish the current file.  This happens when the timestamp of the
838 current file indicates that it is up-to-date.
840 *** Special characters are escaped in link descriptions and links on a
841 more consistent basis.  What defines a "special character" varies
842 according to the publishing style.
844 *** Errors that occur during publish time will cause a warning to be
845 displayed prominently, rather than being ignored.  It should no longer
846 be possible to mess up a Muse source file by tweaking the Muse
847 publishing process.
849 *** Errors in <lisp> tags cause a warning to be displayed and
850 return "<!--INVALID LISP CODE-->".  Muse will try to continue
851 publishing the page.
853 *** An emdash ("--") can now be used after a list, as long as there is
854 a blank line between the end of the list and the emdash.
856 *** The <code> tag has been introduced.
857 It does the same thing that =equal signs= do: escape specials and
858 publish as teletype text.  Use it for short command snippets and the
859 like.  <example> is a better choice for large blocks of code, since it
860 preserves whitespace.
862 *** An edge case involving links at the beginning of a paragraph
863 has been addressed.
865 *** An edge case involving consecutive directives of the same size
866 has been addressed.
868 *** Every publishing style is now capable of specifying strings to use
869 for sections beyond the third level.
871 *** Every publishing style may specify an end-of-section string.
872 This is used, for example, by the experimental XML style and the
873 DocBook style.
875 *** Every publishing style may specify a method of handling "internal
876 link" markup.  An internal link is a link that refers to an anchor on
877 the current page.
879 *** Every publishing style may specify a link suffix to use.
880 This allows the file extensions in links to other Muse files to be
881 different from their actual extension.  Blosxom makes use of this
882 (since its published files are .txt and the dynamically-generated
883 output is .html), and it could come in handy for PHP stuff.
885 If a link suffix is not specified via :link-suffix, the value of
886 :suffix will be used.
888 ** Blosxom publishing (lisp/muse-blosxom.el)
890 *** muse-blosxom-new-entry: A #category directive is added by default.
891 Nothing is done with this yet, but it could be handy for tag-based
892 (multiple category) blogging, once we figure out a good way to do that
893 in both Muse and Pyblosxom.  Ideas are welcome, and patches even more
896 ** DocBook publishing (lisp/muse-docbook.el)
898 *** The markup has been comprehensively improved.
899 Published documents will now pass validation tests and look better in
900 general.
902 *** It is now possible to specify the encoding of DocBook documents.
903 The default encoding is utf-8.
905 *** Footnotes will be embedded into paragraphs, since this is
906 The DocBook Way.
908 *** Tables will be sorted by section.
909 Headers first, then footers, then the rest of the table.
911 *** Anchors are now handled correctly and publish to the best available
912 form.  Links to anchors are published with the <link> tag.
914 ** HTML publishing (lisp/muse-html.el)
916 *** Fix minor issue with anchors.
918 *** Paragraph publishing will no longer insert <div> tags before images.
919 This was causing too much hassle for some programs that were trying to
920 extend Muse, like the Muse port of Planner.
922 *** The `&', `<', and '>' characters will be escaped using their specific
923 HTML escape codes, rather than with "&#NNN;".  This makes the
924 published output display correctly in more web browsers.
926 *** Use HTML 4.0 Transitional by default for `muse-html-header'.
928 *** Include empty alt element in markup string for images that lack a
929 description.
931 *** Tables will be sorted by section.
932 Headers first, then footers, then the rest of the table.
934 *** `muse-xhtml-extension' -- The default extension for XHTML publishing.
935 This is a new option.
937 ** Journal publishing (lisp/muse-journal.el)
939 *** Use "div class=..." rather than "div id=..." for sections.
941 ** LaTeX publishing (lisp/muse-latex.el)
943 *** A newline will be appended to the default footer for the latex and
944 latexpdf publishing styles.  This keeps the PDF-building process from
945 failing due to lack of a newline at end of file.
947 *** Anchors and links to them now work properly.
949 *** When generating PDF files, call pdflatex twice.
950 This should ensure that the table of contents gets generated, if one
951 is due to be published.
953 *** PDF files with spaces may be published.
954 A bug preventing this has been fixed.
956 *** Teletype text is now published using \\texttt{...}.
958 *** An attempt has been made to escape special characters more
959 consistently.
961 ** Texinfo publishing (lisp/muse-texinfo.el)
963 *** Fix a fatal error that occurs when publishing tables.
965 *** Generate the contents in the header by default rather than the footer.
966 This is the way that most Texinfo manuals do it.
968 *** The info-pdf publishing style currently produces the best PDF output
969 on the maintainer's machine, so it is now used to publish the PDF
970 version of the Muse Manual.
972 *** The characters `{' and `}' will be treated as special characters that
973 need to be escaped at publish-time.
975 *** Improve dots and enddots markup strings.
977 *** Surround underlined text with "_" since Texinfo doesn't seem to have
978 any better options for producing underlined text.
980 *** Anchors and links to them now work properly.