Merged from mwolson@gnu.org--2006 (patch 136-137)
[muse-el.git] / ChangeLog.2006
blob9280c294455598876ae2e3ca4a715b7d879fecc6
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2006/muse--main--1.0
5 2006-05-26 14:38:01 GMT Michael Olson <mwolson@gnu.org> patch-137
7     Summary:
8       Use better fallback when displaying warnings.
9     Revision:
10       muse--main--1.0--patch-137
12     * lisp/muse.el (muse-display-warning): Use a better fallback if
13       `display-warning' does not exist.
15     modified files:
16      ChangeLog.2006 lisp/muse.el
19 2006-05-25 21:23:55 GMT Michael Olson <mwolson@gnu.org> patch-136
21     Summary:
22       Make the Table of Contents CSS easier to customize.
23     Revision:
24       muse--main--1.0--patch-136
26     * examples/mwolson/muse-init.el (muse-bad-link): Update.
27     
28     * examples/mwolson/stylesheets/*.css: Update and add license.
29     
30     * lisp/muse-html.el (muse-html-insert-contents): Surround contents with
31       <div> section for easier CSS hacking.  Remove the class attribute of
32       other elements, since we don't need it anymore.
34     modified files:
35      ChangeLog.2006 Makefile.defs debian/changelog
36      examples/mwolson/muse-init.el
37      examples/mwolson/stylesheets/blog.css
38      examples/mwolson/stylesheets/common.css
39      examples/mwolson/stylesheets/print.css
40      examples/mwolson/stylesheets/screen.css lisp/muse-html.el
43 2006-05-24 03:30:40 GMT Michael Olson <mwolson@gnu.org> patch-135
45     Summary:
46       Fix a potential unbounded recursive call.
47     Revision:
48       muse--main--1.0--patch-135
50     * lisp/muse-project.el (muse-updating-file-alist-p): New variable that
51       prevents calls to muse-project-file-alist in its hook functions from
52       going into an infinite loop.
53       (muse-project-file-alist): Use it.
54     
55     * lisp/muse-wiki.el (muse-wiki-updating-wikiword-p): Remove.  This is now
56       handled in muse-project.el.
57       (muse-wiki-update-local-wikiword-regexp): Remove the use of
58       muse-wiki-updating-wikiword-p.
60     modified files:
61      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
64 2006-05-23 18:10:49 GMT Michael Olson <mwolson@gnu.org> patch-134
66     Summary:
67       Try not to call tramp during publishing.
68     Revision:
69       muse--main--1.0--patch-134
71     * lisp/muse-publish.el (muse-insert-file-or-string): Do not call
72       file-readable-p on text that has a newline in it, because this could
73       cause tramp to be invoked.
75     modified files:
76      ChangeLog.2006 lisp/muse-publish.el
79 2006-05-23 15:30:02 GMT Michael Olson <mwolson@gnu.org> patch-133
81     Summary:
82       Make links colored blue by default.
83     Revision:
84       muse--main--1.0--patch-133
86     * lisp/muse-colors.el (muse-link): Make links blue by default, like most
87       other Emacs modes do.
89     modified files:
90      ChangeLog.2006 lisp/muse-colors.el
93 2006-05-23 14:24:58 GMT Michael Olson <mwolson@gnu.org> patch-132
95     Summary:
96       Fix publishing error with tables and initial whitespace.
97     Revision:
98       muse--main--1.0--patch-132
100     * lisp/muse-publish.el (muse-publish-markup-regexps): Move table rule
101       above blockquote and centered text, so that indented but blank initial
102       table fields publish correctly.
103     
104     * lisp/muse-regexps.el (muse-table-line-regexp): Make this much simpler.
105       We accept anything that has at least one field delimiter.
107     modified files:
108      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
111 2006-05-18 06:58:58 GMT Michael Olson <mwolson@gnu.org> patch-131
113     Summary:
114       Add muse-protocol-iw.el to experimental folder.
115     Revision:
116       muse--main--1.0--patch-131
118     * experimental/muse-protocol-iw.el: New experimental file that implements
119       an interwiki protocol of sorts that handles subdirectories.
121     new files:
122      experimental/.arch-ids/muse-protocol-iw.el.id
123      experimental/muse-protocol-iw.el
125     modified files:
126      AUTHORS ChangeLog.2006 experimental/muse-split.el
129 2006-05-18 06:43:30 GMT Michael Olson <mwolson@gnu.org> patch-130
131     Summary:
132       Add muse-split.el to experimental folder.
133     Revision:
134       muse--main--1.0--patch-130
136     * experimental/muse-split.el: New experimental file that splits published
137       Muse files into several smaller files.
139     new files:
140      experimental/.arch-ids/muse-split.el.id
141      experimental/muse-split.el
143     modified files:
144      AUTHORS ChangeLog.2006 Makefile.defs debian/changelog
145      debian/control
148 2006-05-18 06:03:49 GMT Michael Olson <mwolson@gnu.org> patch-129
150     Summary:
151       muse-wiki: Make the interwiki resolver a bit more clever.
152     Revision:
153       muse--main--1.0--patch-129
155     * lisp/muse-project.el (muse-project-choose-style): New function that
156       chooses a style from a list of styles, given a user-supplied test.
157     
158     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix): New function
159       that is used along with `muse-project-choose-style' to pick the first
160       style that matches a given value for :link-prefix.
161       (muse-wiki-resolve-project-page-1): New function split from
162       `muse-wiki-resolve-project-page' for readability.  Try to match files
163       that have the same link-suffix.  This should hopefully fix a bug
164       noticed by Hans Ekbrand.
166     modified files:
167      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
170 2006-05-18 01:24:04 GMT Michael Olson <mwolson@gnu.org> patch-128
172     Summary:
173       Fix bug where links with :: in them were marked up as lists.
174     Revision:
175       muse--main--1.0--patch-128
177     * lisp/muse-html.el, lisp/muse-publish.el, lisp/muse-xml-common.el:
178       Change noemphasis property to muse-link.
179     
180     * lisp/muse.el (muse-forward-list-item): Respect muse-link property.
181     
182     * lisp/muse-publish.el (muse-publish-surround-text)
183       (muse-publish-markup-list): Ditto.  This should fix a bug.
184       (muse-publish-markup-list): Docfix.
185       (muse-publish-mark-link): Rename from `muse-publish-mark-noemphasis'.
186     
187     * lisp/muse-regexps.el (muse-list-item-regexp, muse-dl-term-regexp):
188       There must be either one or more spaces or a single newline after the
189       colons.  This prevents an ambiguity with the double-colon muse-wiki
190       interwiki delimiter.
192     modified files:
193      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
194      lisp/muse-regexps.el lisp/muse-xml-common.el lisp/muse.el
197 2006-05-17 21:27:19 GMT Michael Olson <mwolson@gnu.org> patch-127
199     Summary:
200       DTRT with explicit links that have no description.
201     Revision:
202       muse--main--1.0--patch-127
204     * lisp/muse-publish.el (muse-publish-markup-link): If we are given an
205       explicit link without a description, use the name of the linked page.
207     modified files:
208      ChangeLog.2006 lisp/muse-publish.el
211 2006-05-16 15:53:56 GMT Michael Olson <mwolson@gnu.org> patch-126
213     Summary:
214       Fix emdash in link description bug.
215     Revision:
216       muse--main--1.0--patch-126
218     * lisp/muse-publish.el (muse-publish-markup-emdash): Don't markup emdash
219       if we are in a link, since otherwise it will be incorrectly escaped.
220       Thanks to Chiyuan Zhang for the report.
222     modified files:
223      ChangeLog.2006 Makefile.defs debian/changelog
224      lisp/muse-publish.el
227 2006-05-12 04:16:43 GMT Michael Olson <mwolson@gnu.org> patch-125
229     Summary:
230       Fix #5925: Emphasis on item breaks lists.
231     Revision:
232       muse--main--1.0--patch-125
234     * lisp/muse-blosxom.el ("blosxom-html", "blosxom-xhtml"): Use find-file
235       as the browsing function.
236     
237     * lisp/muse-mode.el (muse-browse-result): Only include styles that match
238       the current file.
239     
240     * lisp/muse.el (muse-list-item-critical-point): Take a new argument named
241       `offset' into account, in case the list-item regexp is nested in
242       another group.
243       (muse-forward-list-item): Call `muse-list-item-critical-point' with an
244       offset of 1.  This should fix an unpleasant list-as-blockquote error
245       that was noticed recently.  Thanks to John Sullivan for the report.
247     modified files:
248      ChangeLog.2006 lisp/muse-blosxom.el lisp/muse-mode.el
249      lisp/muse.el
252 2006-05-09 00:55:02 GMT Michael Olson <mwolson@gnu.org> patch-124
254     Summary:
255       Fix a couple of beginning-of-buffer errors.
256     Revision:
257       muse--main--1.0--patch-124
259     * muse-mode.el (muse-mode-flyspell-p, muse-link-at-point): Make sure we
260       don't throw an error if at the beginning of the buffer.  Thanks to John
261       Sullivan for the report.
263     modified files:
264      ChangeLog.2006 lisp/muse-mode.el
267 2006-05-08 23:42:42 GMT Michael Olson <mwolson@gnu.org> patch-123
269     Summary:
270       muse.texi: Change use of @subsubheading to @subheading.
271     Revision:
272       muse--main--1.0--patch-123
274     * muse.texi: Change use of @subsubheading to @subheading throughout
275       document.
277     modified files:
278      ChangeLog.2006 muse.texi
281 2006-05-08 23:30:58 GMT Michael Olson <mwolson@gnu.org> patch-122
283     Summary:
284       muse.texi: Change subsections to subheadings.
285     Revision:
286       muse--main--1.0--patch-122
288     (Author: John Sullivan <john@wjsullivan.net>)
289     
290     * muse.texi: Change @subsection and @strong to @subheading throughout
291       document.
293     modified files:
294      ChangeLog.2006 Makefile.defs debian/changelog muse.texi
296     new patches:
297      john@wjsullivan.net--2006/muse--johnsu01--0--patch-2
298      john@wjsullivan.net--2006/muse--johnsu01--0--patch-3
299      john@wjsullivan.net--2006/muse--johnsu01--0--patch-4
302 2006-05-08 08:53:03 GMT Michael Olson <mwolson@gnu.org> patch-121
304     Summary:
305       Update keystrokes used in muse-mode, as well as docs.
306     Revision:
307       muse--main--1.0--patch-121
309     * lisp/muse-mode.el (muse-insert-map): New variable that defines the
310       keymap to use when the user wants to insert something into the current
311       buffer using `C-c i'.
312       (muse-mode-map): Sort keys somewhat.  Remove binding of `C-c C-v' to
313       muse-follow-name-at-point, since this is already used for
314       muse-browse-result.  Call `muse-insert-thing' on `C-c i', which will
315       prompt for the thing to insert.
316       (muse-insert-thing): New function that prompts the user for something
317       to insert into the current buffer.  It tries to be as friendly as
318       possible by catching possible errors with the message "Not inserting
319       anything".
320       (muse-mode-completions): Rename from `muse-completions', since this is
321       what we use in `muse-mode'.
322       (muse-mode-current-word): Similarly.  These don't seem to work
323       correctly, for unknown reasons.
324     
325     * muse.texi (Keystroke Summary): Update to include all keystrokes that we
326       utilize.
328     modified files:
329      ChangeLog.2006 lisp/muse-mode.el muse.texi
332 2006-05-08 07:34:41 GMT Michael Olson <mwolson@gnu.org> patch-120
334     Summary:
335       Fix buggy behavior in muse-browse-result.
336     Revision:
337       muse--main--1.0--patch-120
339     * lisp/muse-mode.el (muse-browse-result): Construct a mapping of style
340       names to styles, based on the styles contained in the current Muse
341       project.  Thanks to kid kid for the analysis.
342     
343     * lisp/muse-publish.el (muse-publish-get-style): Permit styles to be
344       specified as an argument.
346     modified files:
347      ChangeLog.2006 lisp/muse-mode.el lisp/muse-publish.el
350 2006-05-08 07:29:42 GMT Michael Olson <mwolson@gnu.org> patch-119
352     Summary:
353       muse-latex: Make images look better.
354     Revision:
355       muse--main--1.0--patch-119
357     * lisp/muse-latex.el (muse-latex-markup-strings): Make width of images to
358       be 75% the width of the page, which looks better.  Enclose images in
359       figures, and center them.
361     modified files:
362      ChangeLog.2006 lisp/muse-latex.el
365 2006-04-27 00:31:01 GMT Michael Olson <mwolson@gnu.org> patch-118
367     Summary:
368       Fix a few image bugs.
369     Revision:
370       muse--main--1.0--patch-118
372     * lisp/muse-colors.el (muse-colors-insert-image): Expand file name before
373       passing it to `muse-colors-inline-image-method'.  This makes images
374       with the same current directory and publishing directory get resolved
375       correctly.
376     
377     * lisp/muse-project.el (muse-project-find-file): Don't try to add a
378       ".muse" extension to images.
380     modified files:
381      ChangeLog.2006 lisp/muse-colors.el lisp/muse-project.el
384 2006-04-25 22:28:01 GMT Michael Olson <mwolson@gnu.org> patch-117
386     Summary:
387       Make build targets more consistent.
388     Revision:
389       muse--main--1.0--patch-117
391     * contrib/Makefile (install): Make build targets more consistent.  Thanks
392       to dsmith for the report.
393     
394     * lisp/Makefile (all, lisp, install): Ditto.
396     modified files:
397      ChangeLog.2006 Makefile.defs contrib/Makefile debian/changelog
398      lisp/Makefile
401 2006-04-25 00:31:42 GMT Michael Olson <mwolson@gnu.org> patch-116
403     Summary:
404       cgi.el: Make this work without cl-seq.el.
405     Revision:
406       muse--main--1.0--patch-116
408     * contrib/cgi.el: Fix a compiler warning introduced by sample calendar
409       code.  Make this not depend on 'cl at runtime.
410       (cgi-position): New function that implements a simple replacement for
411       the position function found in cl-seq.el.
412       (cgi-decode): Use `cgi-position' instead of `position' and `substring'
413       instead of `subseq'.
414     
415     * contrib/httpd.el: Credit myself.
417     modified files:
418      ChangeLog.2006 contrib/cgi.el contrib/httpd.el
421 2006-04-25 00:04:10 GMT Michael Olson <mwolson@gnu.org> patch-115
423     Summary:
424       Make publishing DTRT when using escaped list markup.
425     Revision:
426       muse--main--1.0--patch-115
428     * lisp/muse-publish.el (muse-publish-surround-text)
429       (muse-publish-markup-list): Ignore escaped list markup.
430     
431     * lisp/muse.el (muse-list-item-type): Docfix.
432       (muse-list-item-critical-point): New function that returns the point
433       where we should expect to find the first character in the current list
434       item markup.
435       (muse-forward-paragraph): Docfix and cosmetic change.
436       (muse-forward-list-item): Ignore escaped list markup.  This should fix
437       a few publishing errors that involve markup like =::=.
439     modified files:
440      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
443 2006-04-22 03:46:04 GMT Michael Olson <mwolson@gnu.org> patch-114
445     Summary:
446       muse-publish: Get rid of warning when batch publishing.
447     Revision:
448       muse--main--1.0--patch-114
450     * lisp/muse-publish.el (muse-batch-publish-files): Get rid of a batch
451       publishing warning message.
453     modified files:
454      ChangeLog.2006 Makefile.defs debian/changelog
455      lisp/muse-publish.el
458 2006-04-22 03:35:12 GMT Michael Olson <mwolson@gnu.org> patch-113
460     Summary:
461       Try to fix face clobbering bug.
462     Revision:
463       muse--main--1.0--patch-113
465     * lisp/muse-colors.el (muse-make-faces-default): New function that sets
466       the default value of the header faces.  It can be re-used.
467       (muse-make-faces): Simplify.  This should now fix the face clobbering
468       bug.
470     modified files:
471      ChangeLog.2006 lisp/muse-colors.el
474 2006-04-21 19:31:23 GMT Michael Olson <mwolson@gnu.org> patch-112
476     Summary:
477       Re-add some cgi.el stuff and update my example config.
478     Revision:
479       muse--main--1.0--patch-112
481     * contrib/cgi.el (cgi-calendar-string, cgi-calendar): Re-add these, since
482       they are mentioned in the documentation.
483     
484     * examples/mwolson/: Update.
486     modified files:
487      ChangeLog.2006 contrib/cgi.el examples/mwolson/muse-init.el
488      examples/mwolson/templates/footer.html
489      examples/mwolson/templates/header.html
492 2006-04-21 15:23:13 GMT Michael Olson <mwolson@gnu.org> patch-111
494     Summary:
495       muse-mode: Make C-c C-e work better.
496     Revision:
497       muse--main--1.0--patch-111
499     * lisp/muse-mode.el (muse-edit-link-at-point): Save link data earlier so
500       that this is more robust.
502     modified files:
503      ChangeLog.2006 lisp/muse-mode.el
506 2006-04-18 21:09:37 GMT Michael Olson <mwolson@gnu.org> patch-110
508     Summary:
509       muse-latex: Don't escape backslash in <example> regions.
510     Revision:
511       muse--main--1.0--patch-110
513     * lisp/muse-latex.el (muse-latex-markup-specials-example): We don't need
514       to escape the backslash after all.
515       (muse-latex-markup-specials-literal): Docfix.
516     
517     * lisp/muse-publish.el (muse-publish-escape-specials): Docfix.
519     modified files:
520      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
523 2006-04-18 01:55:21 GMT Michael Olson <mwolson@gnu.org> patch-109
525     Summary:
526       Allow tab characters in the target of explicit links.
527     Revision:
528       muse--main--1.0--patch-109
530     * lisp/muse-regexps.el (muse-explicit-link-regexp): Allow tab characters
531       in the link target.  This doesn't seem like it could hurt anything, and
532       prevents unexpected behavior.  Thanks to rubikitch AT ruby-lang.org for
533       the report.
535     modified files:
536      ChangeLog.2006 lisp/muse-regexps.el
539 2006-04-14 18:56:30 GMT Michael Olson <mwolson@gnu.org> patch-108
541     Summary:
542       muse-wiki: Fix bug that caused WikiWords not to publish or display.
543     Revision:
544       muse--main--1.0--patch-108
546     * lisp/muse-wiki.el (muse-wiki-handle-wikiword): Logic fix.
548     modified files:
549      ChangeLog.2006 Makefile.defs debian/changelog
550      lisp/muse-wiki.el
553 2006-04-11 03:49:41 GMT Michael Olson <mwolson@gnu.org> patch-107
555     Summary:
556       Fix horrendous typo.
557     Revision:
558       muse--main--1.0--patch-107
560     * muse-publish.el (muse-define-style): Fix typo which caused all kinds of
561       strangeness.
563     modified files:
564      ChangeLog.2006 lisp/muse-publish.el
567 2006-04-10 03:13:41 GMT Michael Olson <mwolson@gnu.org> patch-106
569     Summary:
570       Merged from mwolson@gnu.org--2006-muse-el (patch 53)
571     Revision:
572       muse--main--1.0--patch-106
574     (Author: Per B. Sederberg <per@med.upenn.edu>)
575     
576     * lisp/muse-wiki.el (muse-wiki-ignore-implicit-links-to-current-page):
577       Option to not create implicit links to the current page.
578       (muse-wiki-handle-wikiword): Process the option to not create implicit
579       links to the current page.
581     modified files:
582      ChangeLog.2006 Makefile.defs debian/changelog
583      lisp/muse-wiki.el
585     new patches:
586      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-53
589 2006-04-10 03:03:28 GMT Michael Olson <mwolson@gnu.org> patch-105
591     Summary:
592       Try to fix failure to recognize Muse file extension (6th attempt).
593     Revision:
594       muse--main--1.0--patch-105
596     * lisp/muse-mode.el: Call `muse-mode-maybe-after-init' after the user's
597       init file is loaded.
598       (muse-mode-maybe-after-init): New function that causes muse-mode-maybe
599       to be added to find-file-hooks when muse-mode-auto-p is non-nil.
600     
601     * lisp/muse.el: Call `muse-update-file-extension-after-init after the
602       user's init file is loaded.  Explicitly add the Muse file extension
603       when muse.el is loaded, to make life simpler.
604       (muse-update-file-extension): Take several edge cases into account.
605       (muse-file-extension): Docfix.
606       (muse-update-file-extension-after-init): New function that causes the
607       file extension to be updated.
608     
609     * muse.texi (Projects): It is no longer necessary to call
610       `muse-mode-maybe' manually.
612     modified files:
613      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el muse.texi
616 2006-04-10 00:08:01 GMT Michael Olson <mwolson@gnu.org> patch-104
618     Summary:
619       Merged from mwolson@gnu.org--2006-muse-el (patch 48-52)
620     Revision:
621       muse--main--1.0--patch-104
623     (Author: Per B. Sederberg <per@med.upenn.edu>)
624     
625     * lisp/muse-wiki.el (muse-wiki-project-files-with-spaces): New function
626       to return a list of project files that have spaces.
627       (muse-wiki-update-interwiki-regexp): Make use of new project-files with
628       spaces function.  Don't make this buffer-local.
630     modified files:
631      ChangeLog.2006 lisp/muse-wiki.el
633     new patches:
634      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-48
635      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-49
636      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-50
637      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-51
638      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-52
641 2006-04-09 23:54:07 GMT Michael Olson <mwolson@gnu.org> patch-103
643     Summary:
644       Try to fix failure to recognize Muse file extension (5th attempt).
645     Revision:
646       muse--main--1.0--patch-103
648     * lisp/muse.el: To detect whether Emacs has fully started, check
649       `command-line-processed' instead of `inhibit-startup-hooks', since the
650       latter only exists for Emacs22.
652     modified files:
653      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
656 2006-04-09 23:48:06 GMT Michael Olson <mwolson@gnu.org> patch-102
658     Summary:
659       muse-html: Add :style-sheet element.
660     Revision:
661       muse--main--1.0--patch-102
663     * lisp/muse-html.el (muse-html-header, muse-xhtml-header): Use the
664       :style-sheet element.
665       ("html", "xhtml"): Add the :style-sheet element.
666     
667     * lisp/muse-publish.el (muse-define-style): Don't give an error when a
668       style already exists.  Instead, just replace the existing style.
669       (muse-derive-style): Ditto.
670     
671     * muse.texi (Style Elements): Mention :style-sheet.
673     modified files:
674      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
675      muse.texi
678 2006-04-09 02:23:47 GMT Michael Olson <mwolson@gnu.org> patch-101
680     Summary:
681       Try to fix failure to recognize Muse file extension (4th attempt).
682     Revision:
683       muse--main--1.0--patch-101
685     * lisp/muse.el: Enter Muse mode correctly on files that are specified by
686       the command line.
688     modified files:
689      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
692 2006-04-09 01:53:19 GMT Michael Olson <mwolson@gnu.org> patch-100
694     Summary:
695       Try to fix failure to recognize Muse file extension (3rd attempt).
696     Revision:
697       muse--main--1.0--patch-100
699     * lisp/muse.el (muse-update-values-hook): Fix a sequencep error.
701     modified files:
702      ChangeLog.2006 lisp/muse.el
705 2006-04-09 01:36:50 GMT Michael Olson <mwolson@gnu.org> patch-99
707     Summary:
708       Try to fix failure to recognize Muse file extension (2nd attempt).
709     Revision:
710       muse--main--1.0--patch-99
712     * lisp/muse.el: Try to fix failure to put muse-mode-choose-mode in
713       auto-mode-alist.
715     modified files:
716      ChangeLog.2006 lisp/muse.el
719 2006-04-08 17:08:39 GMT Michael Olson <mwolson@gnu.org> patch-98
721     Summary:
722       Merged from mwolson@gnu.org--2006-muse-el (patch 41-47)
723     Revision:
724       muse--main--1.0--patch-98
726     (Author: Per B. Sederberg <per@med.upenn.edu>)
727     
728     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Modify
729       interwiki-regexp to search for any project file name.  This is so it
730       will match files with spaces.
732     modified files:
733      ChangeLog.2006 lisp/muse-wiki.el
735     new patches:
736      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-41
737      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-42
738      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-43
739      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-44
740      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-45
741      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-46
742      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-47
745 2006-04-08 16:32:00 GMT Michael Olson <mwolson@gnu.org> patch-97
747     Summary:
748       Try to fix failure to recognize Muse file extension.
749     Revision:
750       muse--main--1.0--patch-97
752     * lisp/muse-colors.el: Use add-hook instead of add-to-list, for the sake
753       of semantics.
754     
755     * lisp/muse.el: Call muse-update-file-extension in
756       muse-update-values-hook, instead of
757       muse-ignored-file-extensions-regexp.  Add muse-update-file-extension to
758       emacs-startup-hook, so that the user has time to set this in their
759       .emacs file.
761     modified files:
762      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
765 2006-04-08 02:46:41 GMT Michael Olson <mwolson@gnu.org> patch-96
767     Summary:
768       Make things in contrib directory installable.
769     Revision:
770       muse--main--1.0--patch-96
772     * Makefile (SUBDIRS): Add contrib.
773       (all): Add contrib.
774       (contrib): New target that compiles things in the contrib directory.
775       (install-bin): Add contrib.  Install things in the contrib directory.
776       Also install uncompiled things in the experimental directory.
777     
778     * contrib/Makefile: New Makefile for the contrib directory.
779     
780     * contrib/httpd.el (httpd-start): Fix compiler warnings.
781     
782     * debian/emacsen-install: Compile files in contrib directory in addition
783       to the normal fare.  Thanks to Junichi Uekawa for the suggestion.
784     
785     * debian/emacsen-startup: Add contrib directory to load-path.
786     
787     * experimental/Makefile (test): Remove target.
788       (install-uncompiled): New target that installs uncompiled files.
789     
790     * lisp/muse.el: Set version to 3.02.90 (3.03 RC1).
791       (muse-update-file-extension): Fix a warning that occurred when doing
792       batch publishing.
794     new files:
795      contrib/.arch-ids/Makefile.id contrib/Makefile
797     modified files:
798      ChangeLog.2006 Makefile Makefile.defs contrib/httpd.el
799      debian/changelog debian/emacsen-install debian/emacsen-startup
800      experimental/Makefile lisp/muse.el muse.texi
803 2006-04-08 01:33:27 GMT Michael Olson <mwolson@gnu.org> patch-95
805     Summary:
806       Remove muse-registry.el.
807     Revision:
808       muse--main--1.0--patch-95
810     * lisp/muse-registry.el: Move to the Planner project, since it is a
811       better fit with Planner than Muse.
813     removed files:
814      lisp/.arch-ids/muse-registry.el.id lisp/muse-registry.el
816     modified files:
817      AUTHORS ChangeLog.2006
820 2006-04-08 01:23:24 GMT Michael Olson <mwolson@gnu.org> patch-94
822     Summary:
823       Prepare Debian package for Arch snapshot.
824     Revision:
825       muse--main--1.0--patch-94
827     * Makefile.defs, debian/changelog: Prepare for Debian package of Arch
828       snapshot.
830     modified files:
831      ChangeLog.2006 Makefile.defs debian/changelog
834 2006-04-05 18:56:26 GMT Michael Olson <mwolson@gnu.org> patch-93
836     Summary:
837       muse-wiki: Honor setting for muse-wiki-hide-nop-tag.
838     Revision:
839       muse--main--1.0--patch-93
841     * lisp/muse-wiki.el (muse-wiki-colors-nop-tag): Take the value of
842       `muse-wiki-hide-nop-tag' into account.
844     modified files:
845      ChangeLog.2006 lisp/muse-wiki.el
848 2006-04-05 18:47:54 GMT Michael Olson <mwolson@gnu.org> patch-92
850     Summary:
851       Fix a couple of compiler warnings.
852     Revision:
853       muse--main--1.0--patch-92
855     * muse-publish.el, muse-wiki.el: Fix a couple of compiler warnings.
857     modified files:
858      ChangeLog.2006 lisp/muse-publish.el lisp/muse-wiki.el
861 2006-04-05 18:45:01 GMT Michael Olson <mwolson@gnu.org> patch-91
863     Summary:
864       Make interwiki links work with the new option.
865     Revision:
866       muse--main--1.0--patch-91
868     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Take no
869       parameters.  Populate this correctly when
870       `muse-wiki-match-all-project-files' is non-nil.
872     modified files:
873      ChangeLog.2006 lisp/muse-wiki.el
876 2006-04-05 16:37:13 GMT Michael Olson <mwolson@gnu.org> patch-90
878     Summary:
879       Permit table generation to be disabled for a single Muse page.
880     Revision:
881       muse--main--1.0--patch-90
883     * lisp/muse-latex.el (muse-latex-markup-table): If we don't get any table
884       data, don't publish the table.
885     
886     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Ditto.
887     
888     * lisp/muse-xml-common.el (muse-xml-markup-table): Ditto.
889     
890     * lisp/muse-publish.el (muse-publish-table-fields): If the
891       "disable-tables" publishing directive exists for the current page, do
892       not generate a table.
893     
894     * muse.texi (Tables): Mention that table generation can be disabled for a
895       single page.
897     modified files:
898      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
899      lisp/muse-texinfo.el lisp/muse-xml-common.el muse.texi
902 2006-04-05 15:56:11 GMT Michael Olson <mwolson@gnu.org> patch-89
904     Summary:
905       muse-wiki: Match filenames before WikiWords.
906     Revision:
907       muse--main--1.0--patch-89
909     * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp): Match
910       filenames in project before the general WikiWord regexp.
912     modified files:
913      ChangeLog.2006 lisp/muse-wiki.el
916 2006-04-05 15:45:07 GMT Michael Olson <mwolson@gnu.org> patch-88
918     Summary:
919       Use a better mechanism for updating autogenerated variables.
920     Revision:
921       muse--main--1.0--patch-88
923     * lisp/muse-mode.el (muse-mode-hook): Remove ugly kludge.
924     
925     * lisp/muse-mode.el (muse-mode): Call muse-update-values-hook.
926     
927     * lisp/muse-protocols.el: Add `muse-update-url-regexp' to
928       muse-update-values-hook.
929     
930     * lisp/muse-publish.el (muse-publish-markup-buffer): Call
931       muse-update-values-hook.
932     
933     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' and
934       `muse-wiki-update-interwiki-regexp' to muse-update-values-hook.
935       (muse-wiki-update-local-wikiword-regexp): Quote an argument so that an
936       error is fixed.
937       (muse-wiki-update-custom-values): Replace with function that gives a
938       warning and an explanation.
939     
940     * examples/mwolson/muse-init.el (muse-blosxom-base-directory): Update my
941       example so that people who use it won't have a wrong value in
942       muse-mode-hook.
944     modified files:
945      ChangeLog.2006 examples/mwolson/muse-init.el lisp/muse-mode.el
946      lisp/muse-protocols.el lisp/muse-publish.el lisp/muse-wiki.el
947      lisp/muse.el
950 2006-04-05 15:00:33 GMT Michael Olson <mwolson@gnu.org> patch-87
952     Summary:
953       muse-wiki: Implement implicit links for all files in project.
954     Revision:
955       muse--main--1.0--patch-87
957     * lisp/muse-project.el (muse-project-file-alist): Quote hook, so that we
958       don't get errors when trying to use it.
959     
960     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' to
961       muse-project-file-alist-hook.
962       (muse-wiki-update-local-wikiword-regexp): Make sure that we can't get
963       into a recursive call.
964       (muse-wiki-update-wikiword-regexp): Call
965       `muse-wiki-update-local-wikiword-regexp'.
966     
967     (Author: Per B. Sederberg <per@med.upenn.edu>)
968     
969     * lisp/muse-wiki.el:: Add muse-wiki-update-local-wikiword-regexp to
970       muse-before-publish-hook and muse-mode-hook so that implicit links are
971       published properly.
972       (muse-wiki-wikiword-match-project-files): New option for determining
973       whether to match all project files as implicit links.  This is off by
974       default.
975       (muse-wiki-update-local-wikiword-regexp): New function to make the
976       wikiword-regexp local and append the files in the current project to
977       it.
979     modified files:
980      AUTHORS ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
982     new patches:
983      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-27
984      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-28
985      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-29
986      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-30
987      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-31
988      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-32
989      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-33
990      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-34
991      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-35
992      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-36
993      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-37
994      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-38
995      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-39
996      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-40
999 2006-04-04 22:49:46 GMT Michael Olson <mwolson@gnu.org> patch-86
1001     Summary:
1002       Update Muse's file-alist after saving any Muse page.
1003     Revision:
1004       muse--main--1.0--patch-86
1006     * lisp/muse-project.el (muse-project-after-save-hook): New function that
1007       causes Muse's file-alist to be updated when we are saving a Muse file.
1008       This is added to after-save-hook.
1010     modified files:
1011      ChangeLog.2006 lisp/muse-project.el
1014 2006-04-04 22:39:57 GMT Michael Olson <mwolson@gnu.org> patch-85
1016     Summary:
1017       Add a hook that is called whenever Muse's file-alist is updated.
1018     Revision:
1019       muse--main--1.0--patch-85
1021     * lisp/muse-project.el (muse-project-file-alist-hook): New hook that is
1022       executed after an update to muse-project-file-alist happens.
1023       (muse-project-file-alist): Call `muse-project-file-alist-hook'.
1025     modified files:
1026      ChangeLog.2006 lisp/muse-project.el
1029 2006-04-04 22:23:40 GMT Michael Olson <mwolson@gnu.org> patch-84
1031     Summary:
1032       muse-mode: Recognize definition lists when filling text.
1033     Revision:
1034       muse--main--1.0--patch-84
1036     * lisp/muse-mode.el (muse-mode): Recognize definition lists when filling
1037       text.
1038     
1040     modified files:
1041      ChangeLog.2006 lisp/muse-mode.el
1044 2006-04-04 22:22:19 GMT Michael Olson <mwolson@gnu.org> patch-83
1046     Summary:
1047       Remove unrelated part of patch-82.
1048     Revision:
1049       muse--main--1.0--patch-83
1052     modified files:
1053      ChangeLog.2006 lisp/muse-mode.el
1056 2006-04-04 22:11:16 GMT Michael Olson <mwolson@gnu.org> patch-82
1058     Summary:
1059       muse-journal: Fix dates in RSS feeds.
1060     Revision:
1061       muse--main--1.0--patch-82
1063     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Make sure that
1064       date is in a format that RSS readers can handle.  Thanks to René
1065       Stadler for the patch.
1067     modified files:
1068      AUTHORS ChangeLog.2006 lisp/muse-journal.el lisp/muse-mode.el
1071 2006-04-01 15:32:26 GMT Michael Olson <mwolson@gnu.org> patch-81
1073     Summary:
1074       debian: Install ChangeLog properly.
1075     Revision:
1076       muse--main--1.0--patch-81
1078     * debian/rules: Create ChangeLog using ChangeLog.2006 as a base, and then
1079       appending the logs for previous years.  Thanks to Sergei V. Fleytin for
1080       the breakage report.
1082     modified files:
1083      ChangeLog.2006 debian/rules
1086 2006-04-01 04:20:45 GMT Michael Olson <mwolson@gnu.org> patch-80
1088     Summary:
1089       Fix a bug triggered by batch-publishing.
1090     Revision:
1091       muse--main--1.0--patch-80
1093     * lisp/muse-publish.el (muse-detect-invalid-style): Remove, since the
1094       right algorithm turned out to be simpler than I had thought.  Thanks to
1095       Sergei V. Fleytin for reporting breakage with the old method.
1096       (muse-publish-file): Don't be overzealous when checking for an invalid
1097       style -- use a simpler check.
1098       (muse-batch-publish-files): Don't check for invalid styles here, since
1099       we already do so in `muse-publish-file'.
1101     modified files:
1102      ChangeLog.2006 lisp/muse-publish.el
1105 2006-03-31 04:27:54 GMT Michael Olson <mwolson@gnu.org> patch-79
1107     Summary:
1108       muse.texi: Move some sections to a new Extending Muse chapter.
1109     Revision:
1110       muse--main--1.0--patch-79
1112     * muse.texi (Extending Muse): New chapter containing nodes that deal with
1113       extending Muse in various ways.
1114       (Common Elements, Deriving Styles): Move to Extending Muse chapter.
1116     modified files:
1117      ChangeLog.2006 muse.texi
1120 2006-03-26 22:38:01 GMT Michael Olson <mwolson@gnu.org> patch-78
1122     Summary:
1123       Fix a couple of recently-introduced bugs.
1124     Revision:
1125       muse--main--1.0--patch-78
1127     * lisp/muse-colors.el: Fix errors introduced in a recent patch.  Try
1128       extra hard to preserve our settings for faces, especially after a new
1129       frame or splash screen.
1130     
1131     * lisp/muse.el (muse-copy-face): New function that ensures the face is
1132       copied globally, to the extent the Emacs permits this.
1134     modified files:
1135      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1138 2006-03-26 20:02:11 GMT Michael Olson <mwolson@gnu.org> patch-77
1140     Summary:
1141       Update my example configuration file.
1142     Revision:
1143       muse--main--1.0--patch-77
1146     modified files:
1147      ChangeLog.2006 examples/mwolson/muse-init.el
1150 2006-03-26 19:54:43 GMT Michael Olson <mwolson@gnu.org> patch-76
1152     Summary:
1153       Remove cruft from patch logs.
1154     Revision:
1155       muse--main--1.0--patch-76
1158     modified files:
1159      ChangeLog.2006
1160      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-14
1161      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-25
1162      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-3
1163      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-19
1164      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-46
1165      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-58
1166      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-60
1167      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-74
1170 2006-03-26 18:38:31 GMT Michael Olson <mwolson@gnu.org> patch-75
1172     Summary:
1173       Make faces more robust and namespace-conforming.
1174     Revision:
1175       muse--main--1.0--patch-75
1177     * lisp/muse-colors.el (muse-make-faces): Make sure that each generated
1178       face has documentation and a group.
1179       (muse-link, muse-bad-link, muse-verbatim): Renamed faces to drop the
1180       "-face" suffix.
1181       (muse-emphasis-1, muse-emphasis-2, muse-emphasis-3): Make sure that the
1182       faces have documentation and a group.  Copy unconditionally from the
1183       related Emacs faces, rather than specifying face attributes.
1184       (muse-colors-verbatim, muse-colors-example-tag, muse-link-face):
1185       (muse-colors-explicit-link, muse-colors-implicit-link): Use the new
1186       face names.
1187     
1188     * lisp/muse-mode.el (muse-next-reference, muse-previous-reference): Use
1189       the 'muse-link property rather than looking at the face.
1191     modified files:
1192      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
1195 2006-03-26 18:33:12 GMT Michael Olson <mwolson@gnu.org> patch-74
1197     Summary:
1198       muse.texi: Mention the <code> tag.
1199     Revision:
1200       muse--main--1.0--patch-74
1202     * muse.texi (Emphasizing Text): Mention the <code> tag.
1204     modified files:
1205      ChangeLog.2006 muse.texi
1208 2006-03-26 06:35:49 GMT Michael Olson <mwolson@gnu.org> patch-73
1210     Summary:
1211       Fix bug in verse markup, undesired behavior with emdash.
1212     Revision:
1213       muse--main--1.0--patch-73
1215     * lisp/muse-docbook.el (muse-docbook-markup-strings): Preserve whitespace
1216       around emdash.
1217     
1218     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
1219     
1220     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
1221     
1222     * lisp/muse-publish.el (muse-publish-markup-emdash): Pass preceding and
1223       trailing whitespace to `muse-markup-text', in case the current
1224       publishing wishes to use them.
1225       (muse-publish-markup-verse): Insert newline without adding read-only
1226       properties to it.  This fixes a paragraph detection bug in HTML
1227       publishing.
1229     modified files:
1230      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
1231      lisp/muse-publish.el lisp/muse-xml.el
1234 2006-03-25 05:57:36 GMT Michael Olson <mwolson@gnu.org> patch-72
1236     Summary:
1237       httpd.el: Update to work with newer versions of Emacs.
1238     Revision:
1239       muse--main--1.0--patch-72
1241     * contrib/httpd.el (httpd-start): Update this to work with newer versions
1242       of Emacs.
1244     modified files:
1245      ChangeLog.2006 contrib/httpd.el
1248 2006-03-25 05:27:46 GMT Michael Olson <mwolson@gnu.org> patch-71
1250     Summary:
1251       muse-journal: Make custom RSS heading regexps possible.
1252     Revision:
1253       muse--main--1.0--patch-71
1255     * lisp/muse-journal.el (muse-journal-rss-heading-regexp): New option that
1256       determines the regexp to use when searching for an RSS heading.
1257       (muse-journal-rss-munge-buffer): Use `muse-journal-rss-heading-regexp'.
1259     modified files:
1260      ChangeLog.2006 lisp/muse-journal.el
1263 2006-03-25 04:33:40 GMT Michael Olson <mwolson@gnu.org> patch-70
1265     Summary:
1266       Fix #5190: Endless loop in muse style-run-hooks when muse-project-publish is called with undefined style.
1267     Revision:
1268       muse--main--1.0--patch-70
1270     * lisp/muse-project.el (muse-project-publish): If we cannot find a
1271       project to publish, indicate this in an error message.
1272     
1273     * lisp/muse-publish.el (muse-style-run-hooks): Never go into an endless
1274       loop.  This should fix #5190.  Thanks to Rod Morehead for the report.
1275       (muse-detect-invalid-style): New function that makes sure that the
1276       given style is in a valid format.
1277       (muse-publish-file): Call `muse-detect-invalid-style' before doing any
1278       publishing.
1280     modified files:
1281      ChangeLog.2006 lisp/muse-project.el lisp/muse-publish.el
1284 2006-03-25 03:31:36 GMT Michael Olson <mwolson@gnu.org> patch-69
1286     Summary:
1287       muse-mode: Don't require muse-publish.el.
1288     Revision:
1289       muse--main--1.0--patch-69
1291     * lisp/muse-mode.el: Use a few autoloads instead of requiring
1292       muse-publish.el.  This allows people to optionally have Muse mode
1293       without including the publishing features, as long as they never call a
1294       publishing function.  The documentation says that Muse is supposed to
1295       be modular in that way, so I guess we'd better follow it.
1296       (muse-insert-tag): Make sure that muse-publish is required before
1297       accessing `muse-publish-markup-tags'.
1299     modified files:
1300      ChangeLog.2006 lisp/muse-mode.el
1303 2006-03-21 01:59:03 GMT Michael Olson <mwolson@gnu.org> patch-68
1305     Summary:
1306       Minor code cleanup.
1307     Revision:
1308       muse--main--1.0--patch-68
1310     * lisp/muse-mode.el (muse-grep): Remove commented-out code.
1312     modified files:
1313      ChangeLog.2006 lisp/muse-mode.el
1316 2006-03-21 01:56:21 GMT Michael Olson <mwolson@gnu.org> patch-67
1318     Summary:
1319       Merged from mwolson@gnu.org--2006-muse-el (patch 15-26)
1320     Revision:
1321       muse--main--1.0--patch-67
1323     (Author: Per B. Sederberg <per@med.upenn.edu>)
1324     
1325     * lisp/muse-mode.el (muse-grep-command): Add custom to set up the command
1326       used for grepping.
1327       (muse-mode-map): Changed muse-browse-result to C-c C-v and made
1328       muse-find-backlinks C-c C-b
1329       (muse-grep): New function to envoke a search with the compiler.
1330       (muse-search-with-command): New function to search for text, optionally
1331       editing the command.
1332       (muse-search): New function to search for text.
1333       (muse-find-backlinks): New function to search for backlinks to the
1334       current page.
1336     modified files:
1337      ChangeLog.2006 lisp/muse-mode.el
1339     new patches:
1340      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-15
1341      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-16
1342      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-17
1343      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-18
1344      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-19
1345      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-20
1346      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-21
1347      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-22
1348      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-23
1349      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-24
1350      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-25
1351      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-26
1354 2006-03-20 18:43:15 GMT Michael Olson <mwolson@gnu.org> patch-66
1356     Summary:
1357       Make it easier to call context-specific region-escaping function.
1358     Revision:
1359       muse--main--1.0--patch-66
1361     * lisp/muse-publish.el (muse-publish-escape-specials): If a function is
1362       returned from specials, call it with beg, end, ignore-read-only args.
1363       This allows for people to specify their own functions for escaping
1364       regions, depending on context.  See `muse-xml-decide-specials' in
1365       muse-xml-common.el.  This functionality already exists for escaping
1366       specials in strings.
1368     modified files:
1369      ChangeLog.2006 lisp/muse-publish.el
1372 2006-03-17 01:56:38 GMT Michael Olson <mwolson@gnu.org> patch-65
1374     Summary:
1375       Attempt to make new syntaxes easier to support.
1376     Revision:
1377       muse--main--1.0--patch-65
1379     * lisp/muse-colors.el (muse-colors-explicit-link): Use `muse-get-link'
1380       and `muse-get-link-data'.
1381     
1382     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Ditto.
1383     
1384     * lisp/muse-mode.el (muse-edit-link-at-point): Ditto.
1385       (muse-make-link): Change argument name.
1386     
1387     * lisp/muse.el (muse-handle-explicit-link): Ditto.
1388       (muse-get-link, muse-get-link-desc): New functions that return the link
1389       and the link description, respectively, from the given TARGET.  The
1390       idea is that at least one other markup syntax puts descriptions before
1391       links, so all they would have to do is re-define these two functions.
1393     modified files:
1394      ChangeLog.2006 lisp/muse-colors.el lisp/muse-journal.el
1395      lisp/muse-mode.el lisp/muse.el
1398 2006-03-14 18:41:54 GMT Michael Olson <mwolson@gnu.org> patch-64
1400     Summary:
1401       Fix #5477: muse-replace-regexp-in-string throws error in XEmacs 21.4
1402     Revision:
1403       muse--main--1.0--patch-64
1405     * Makefile.defs, lisp/muse-colors.el: Fix typo.
1406     
1407     * lisp/muse.el (muse-replace-regexp-in-string): Switch order so that
1408       `replace-in-string' is checked before `replace-regexp-in-string', since
1409       XEmacs' implementation of the latter seems to be broken.  Thanks to Jim
1410       Ottaway for the heads up.
1412     modified files:
1413      ChangeLog.2006 Makefile.defs lisp/muse-colors.el lisp/muse.el
1416 2006-03-13 19:38:36 GMT Michael Olson <mwolson@gnu.org> patch-63
1418     Summary:
1419       muse-latex: Add footnotes to links so that they show up on printed copies.
1420     Revision:
1421       muse--main--1.0--patch-63
1423     * lisp/muse-latex.el (muse-latex-markup-strings): Add string for
1424       'url-and-desc.  Display footnotes if we have both a link and a
1425       description, since we want URLs to show up on printed documents.
1426       (muse-latex-markup-specials-document): Escape the "@" character in the
1427       entire document.
1428     
1429     * lisp/muse-publish.el (muse-publish-url): Distinguish between URLs
1430       without descriptions and URLs with descriptions.  If no markup string
1431       exists for 'url-and-desc, fall back to 'url.
1433     modified files:
1434      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1437 2006-03-13 18:42:27 GMT Michael Olson <mwolson@gnu.org> patch-62
1439     Summary:
1440       Fix publishing error with multi-line wrapped list items.
1441     Revision:
1442       muse--main--1.0--patch-62
1444     * lisp/muse-publish.el (muse-publish-surround-text): Fix a problem with
1445       multiple lines of a wrapped list item.
1447     modified files:
1448      ChangeLog.2006 lisp/muse-publish.el
1451 2006-03-13 02:10:44 GMT Michael Olson <mwolson@gnu.org> patch-61
1453     Summary:
1454       Add COPYING file; update headers.
1455     Revision:
1456       muse--main--1.0--patch-61
1458     * COPYING: New file containing the GNU GPL.
1459     
1460     * AUTHORS: Bookkeeping.
1461     
1462     * README: Add License section.  Change Muse homepage URL.
1463     
1464     * debian/copyright: Change Muse homepage URL.  Prune list to those who
1465       have changed 15+ lines of code, since this is the amount that
1466       constitutes legal contribution to a software work, AFAICT.
1467     
1468     * examples/mwolson: Update contents of directory to match my current
1469       setup.
1470     
1471     * experimental/muse*.el, lisp/muse*.el: Update headers.
1472     
1473     * muse.texi: Change Muse homepage URL.
1475     new files:
1476      .arch-ids/COPYING.id COPYING
1478     modified files:
1479      AUTHORS ChangeLog.2006 README debian/copyright
1480      examples/mwolson/muse-init.el
1481      examples/mwolson/stylesheets/blog.css
1482      examples/mwolson/stylesheets/common.css
1483      examples/mwolson/stylesheets/print.css
1484      examples/mwolson/stylesheets/screen.css
1485      experimental/muse-cite.el experimental/muse-mathml.el
1486      experimental/muse-message.el lisp/muse-backlink.el
1487      lisp/muse-blosxom.el lisp/muse-book.el lisp/muse-colors.el
1488      lisp/muse-convert.el lisp/muse-docbook.el lisp/muse-groff.el
1489      lisp/muse-html.el lisp/muse-http.el lisp/muse-journal.el
1490      lisp/muse-latex.el lisp/muse-latex2png.el lisp/muse-mode.el
1491      lisp/muse-poem.el lisp/muse-project.el lisp/muse-protocols.el
1492      lisp/muse-publish.el lisp/muse-regexps.el
1493      lisp/muse-registry.el lisp/muse-texinfo.el lisp/muse-wiki.el
1494      lisp/muse-xml.el lisp/muse.el muse.texi
1497 2006-03-13 01:48:10 GMT Michael Olson <mwolson@gnu.org> patch-60
1499     Summary:
1500       Update Muse XML schema.
1501     Revision:
1502       muse--main--1.0--patch-60
1504     * examples/muse.rnc: Allow nested list items.  Update header.  Provide
1505       history.  We'll call this v0.3 of the schema.
1506     
1507     * lisp/muse-xml-common.el: Update header.
1508       (muse-xml-markup-table): Fix table generation when attributes are not
1509       specified.
1511     modified files:
1512      ChangeLog.2006 examples/muse.rnc lisp/muse-xml-common.el
1515 2006-03-12 21:12:48 GMT Michael Olson <mwolson@gnu.org> patch-59
1517     Summary:
1518       Fix output for consecutive list items of same type.
1519     Revision:
1520       muse--main--1.0--patch-59
1522     * lisp/muse-publish.el (muse-publish-surround-text): Make calculated
1523       post-indent and indent-found values local to each list item.  This
1524       should fix undesired behavior with consecutive list items of the same
1525       type.
1527     modified files:
1528      ChangeLog.2006 lisp/muse-publish.el
1531 2006-03-12 21:09:43 GMT Michael Olson <mwolson@gnu.org> patch-58
1533     Summary:
1534       Make C-> and C-< keybindings not indent nested items.
1535     Revision:
1536       muse--main--1.0--patch-58
1538     * lisp/muse-mode.el (muse-alter-list-item-indentation): Don't include
1539       nested items.
1540     
1541     * lisp/muse.el (muse-forward-list-item): Make skipping of nested items
1542       optional, and document this.
1544     modified files:
1545      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el
1548 2006-03-12 19:56:26 GMT Michael Olson <mwolson@gnu.org> patch-57
1550     Summary:
1551       Slightly improve flyspell integration.
1552     Revision:
1553       muse--main--1.0--patch-57
1555     * lisp/muse-mode.el (muse-mode-flyspell-p): Use the new 'muse-link text
1556       property to determine whether we are at a link.
1558     modified files:
1559      ChangeLog.2006 lisp/muse-mode.el
1562 2006-03-11 23:42:56 GMT Michael Olson <mwolson@gnu.org> patch-56
1564     Summary:
1565       Make nested definition list items work much better.
1566     Revision:
1567       muse--main--1.0--patch-56
1569     * lisp/muse-publish.el (muse-publish-surround-dl): Use
1570       `muse-forward-list-item'.  Don't pass indent and post-indent to the
1571       move function.
1572       (muse-publish-surround-text): If we are to determine the indentation,
1573       but have found no list items, set indent to the empty string.  If we
1574       are to determine indentation but have found an item, get all leading
1575       whitespace and set indent to it.  Never try to determine post-indent
1576       using the first line.  Try to contain the amount of "damage" a nested
1577       list item can do to wrapped list item text.
1578     
1579     * lisp/muse-regexps.el (muse-list-item-regexp): Hone the definition list
1580       part so that it is easier to indicate the amount of desired initial
1581       whitespace.
1582     
1583     * lisp/muse.el (muse-list-item-type): Make initial whitespace of a dl
1584       entry optional.
1585       (muse-forward-dl-term, muse-forward-dl-entry): Remove.  Functionality
1586       merged into `muse-forward-list-item'.
1587       (muse-forward-list-item-1): New function that determines whether a
1588       nested list item is found.
1589       (muse-forward-list-item): Move hairy nested list detection algorithm
1590       into `muse-forward-list-item-1'.  Be extra careful about terminating
1591       when we go past the boundary.
1593     modified files:
1594      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
1595      lisp/muse.el
1598 2006-03-11 06:10:19 GMT Michael Olson <mwolson@gnu.org> patch-55
1600     Summary:
1601       Add backlink support, thanks to Jim Ottaway.
1602     Revision:
1603       muse--main--1.0--patch-55
1605     * lisp/muse-colors.el (muse-colors-fontifying-p): New buffer-local
1606       variable that indicates whether Muse is fontifying the current buffer.
1607       (muse-colors-region): Set `muse-colors-fontifying' to t.
1608     
1609     * lisp/muse-backlinks.el: New file by Jim Ottaway that provides backlink
1610       support.  I've modified it slightly to get rid of the defadvice forms.
1612     new files:
1613      lisp/.arch-ids/muse-backlink.el.id lisp/muse-backlink.el
1615     modified files:
1616      AUTHORS ChangeLog.2006 lisp/muse-colors.el
1619 2006-03-10 22:56:22 GMT Michael Olson <mwolson@gnu.org> patch-54
1621     Summary:
1622       muse-protocols: Add Wikipedia support.
1623     Revision:
1624       muse--main--1.0--patch-54
1626     * lisp/muse-protocols.el (muse-url-protocols): Add "dict:" handler.  This
1627       is used to look up terms on the Wikipedia website.
1628       (muse-wikipedia-country): New option that specifies the country code to
1629       use for Wikipedia.
1630       (muse-resolve-url-dict, muse-browse-url-dict): New functions that
1631       resolve and browse Wikipedia URLs.
1633     modified files:
1634      ChangeLog.2006 lisp/muse-protocols.el
1637 2006-03-10 19:29:56 GMT Michael Olson <mwolson@gnu.org> patch-53
1639     Summary:
1640       muse-protocols: Add DOI handling.
1641     Revision:
1642       muse--main--1.0--patch-53
1644     * lisp/muse-protocols.el (muse-url-protocols): Add handler for DOI's.
1645       DOI's (digitial object identifiers) are a standard identifier used in
1646       the publishing industry.  Thanks to Phillip Lord for the patch.
1647       (muse-resolve-url-doi, muse-browse-url-doi): New functions that resolve
1648       and browse DOI's.
1650     modified files:
1651      AUTHORS ChangeLog.2006 lisp/muse-protocols.el
1654 2006-03-10 16:34:52 GMT Michael Olson <mwolson@gnu.org> patch-52
1656     Summary:
1657       Refine previous patch.
1658     Revision:
1659       muse--main--1.0--patch-52
1661     * lisp/muse-mode.el (muse-link-at-point): If muse-colors is loaded, don't
1662       ever use the fallback method.  Save point when using new method.
1664     modified files:
1665      ChangeLog.2006 lisp/muse-mode.el
1668 2006-03-10 16:26:53 GMT Michael Olson <mwolson@gnu.org> patch-51
1670     Summary:
1671       Make visiting of links a bit faster.
1672     Revision:
1673       muse--main--1.0--patch-51
1675     * lisp/muse-colors.el (muse-unhighlight-region): Remove muse-link
1676       property.
1677       (muse-link-properties): If we are highlighting a link, add the
1678       muse-link property.
1679     
1680     * lisp/muse-mode.el (muse-link-at-point): If the muse-link property
1681       exists at point, use it to bound the link.  Otherwise, use the old
1682       method.  This should make it easier to visit custom implicit link
1683       forms, since it does not require a change to muse-implicit-link-regexp.
1684     
1685     * lisp/muse-regexps.el (muse-implicit-link-regexp): Note that this is not
1686       used when muse-colors.el is loaded.
1688     modified files:
1689      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
1690      lisp/muse-regexps.el
1693 2006-03-10 04:57:55 GMT Michael Olson <mwolson@gnu.org> patch-50
1695     Summary:
1696       Make resolving of inline image paths more flexible.
1697     Revision:
1698       muse--main--1.0--patch-50
1700     * lisp/muse-colors.el (muse-colors-inline-image-method): Rename from
1701       `muse-inline-relative-to'.  Add muse-colors-use-publishing-directory
1702       option.  Make the fallback customization type a function rather than a
1703       symbol.
1704       (muse-colors-use-publishing-directory): New function that takes the
1705       best guess at where the current Muse file will be published and makes
1706       the given link relative to that.
1707       (muse-colors-insert-image): If muse-colors-inline-image-method is
1708       'default-directory, use the default directory.  If it is a function,
1709       call that function with LINK as an argument.  Otherwise, give up.
1711     modified files:
1712      ChangeLog.2006 lisp/muse-colors.el
1715 2006-03-10 03:43:03 GMT Michael Olson <mwolson@gnu.org> patch-49
1717     Summary:
1718       Fix inline image lockup.
1719     Revision:
1720       muse--main--1.0--patch-49
1722     * lisp/muse-colors.el (muse-colors-explicit-link): Fix regression in
1723       patch-47.  This will prevent Muse from locking up after making a new
1724       inline image.
1726     modified files:
1727      ChangeLog.2006 lisp/muse-colors.el
1730 2006-03-07 03:52:11 GMT Michael Olson <mwolson@gnu.org> patch-48
1732     Summary:
1733       Fix publishing problem with XEmacs.
1734     Revision:
1735       muse--main--1.0--patch-48
1737     * lisp/muse-publish.el (muse-insert-file-or-string): Fix XEmacs
1738       publishing problem when text at beginning of buffer is read-only.
1739       Thanks to Christian Clercin for the report.
1741     modified files:
1742      ChangeLog.2006 lisp/muse-publish.el
1745 2006-03-06 06:06:38 GMT Michael Olson <mwolson@gnu.org> patch-47
1747     Summary:
1748       Get increase and decrease of list indentation to work with complex cases.
1749     Revision:
1750       muse--main--1.0--patch-47
1752     * lisp/muse-colors.el: Miscellaneous whitespace fixes.
1753       (muse-colors-explicit-link): Minor logic tweak.  The indentation seems
1754       to indicate this interpretation, though parens are different.
1755     
1756     * lisp/muse-mode.el: Miscellaneous whitespace fixes.
1757       (muse-alter-list-item-indentation): New function that alters the list
1758       structure at point.  The behavior to use is specified by the OPERATION
1759       argument.  Currently-supported operations are 'increase and 'decrease
1760       indentation level.  This now uses the same sort of list detection
1761       algorithm that is used during publishing, so it should work as expected
1762       for complicated cases.
1763       (muse-increase-list-item-indentation)
1764       (muse-decrease-list-item-indentation): Use
1765       `muse-alter-list-item-indentation'.
1767     modified files:
1768      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
1771 2006-03-06 04:50:17 GMT Michael Olson <mwolson@gnu.org> patch-46
1773     Summary:
1774       Code simplification; improve muse-list-item-type function.
1775     Revision:
1776       muse--main--1.0--patch-46
1778     * lisp/muse.el (muse-list-item-type): Disambiguate between 'dl-term and
1779       'dl-entry, instead of just returning 'dl.
1780       (muse-forward-dl-term, muse-forward-dl-entry): Use
1781       muse-forward-list-item.
1782       (muse-forward-dl-part): Remove, merge functionality into
1783       muse-forward-list-item.
1784       (muse-forward-list-item): Add a few conditions needed for skipping
1785       nested 'dl-term and 'dl-entry items.
1787     modified files:
1788      ChangeLog.2006 lisp/muse.el
1791 2006-03-06 01:11:58 GMT Michael Olson <mwolson@gnu.org> patch-45
1793     Summary:
1794       Put movement by list and paragraph functions in muse.el.
1795     Revision:
1796       muse--main--1.0--patch-45
1798     * lisp/muse.el (muse-list-item-type, muse-forward-paragraph):
1799       (muse-forward-dl-term, muse-forward-dl-entry, muse-forward-dl-part):
1800       (muse-forward-list-item): Move here from muse-publish.el, so that
1801       muse-mode can make use of these.
1803     modified files:
1804      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
1807 2006-03-06 01:06:14 GMT Michael Olson <mwolson@gnu.org> patch-44
1809     Summary:
1810       Merged from mwolson@gnu.org--2006-muse-el (patch 5-14)
1811     Revision:
1812       muse--main--1.0--patch-44
1814     (Author: Per B. Sederberg <per@med.upenn.edu>)
1815     
1816     * lisp/muse-mode.el (muse-mode-map): Added key mappings to increase or
1817       decrease the current item indentation.
1818       (muse-get-paragraph-start): Helper function to determine the start of
1819       the current paragraph.
1820       (muse-insert-list-item): Cleaned up list item insertion code and made
1821       it handle definitions.
1822       (muse-increase-list-item-indentation): New interactive function to
1823       increase list item indentation.
1824       (muse-decrease-list-item-indentation): New interactive function to
1825       decrease list item indentation.
1827     modified files:
1828      ChangeLog.2006 lisp/muse-mode.el
1830     new patches:
1831      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-5
1832      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-6
1833      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-7
1834      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-8
1835      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-9
1836      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-10
1837      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-11
1838      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-12
1839      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-13
1840      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-14
1843 2006-03-06 00:58:00 GMT Michael Olson <mwolson@gnu.org> patch-43
1845     Summary:
1846       Use slightly better algorithm for removing initial whitespace.
1847     Revision:
1848       muse--main--1.0--patch-43
1850     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of whether
1851       the definition occurred on the same line as the term.
1852       (muse-publish-surround-text): Use a slightly better algorithm for
1853       removing initial indentation of list items.  This way, we preserve
1854       nesting of lists and also deal with same-level items that occur after
1855       nested items.  This probably doesn't make much of a difference in the
1856       output, but it should make support of nested definition lists a bit
1857       less troublesome in some cases.
1858       (muse-forward-dl-entry): Deal with ambiguity in muse-list-item-regexp
1859       regexp.
1860       (muse-forward-dl-part, muse-forward-list-item): Don't clobber match
1861       data.  Don't remove any text.  This makes the function easier to reuse
1862       in display-only situations.
1864     modified files:
1865      ChangeLog.2006 lisp/muse-publish.el
1868 2006-03-04 02:03:59 GMT Michael Olson <mwolson@gnu.org> patch-42
1870     Summary:
1871       In a preliminary way, make definition lists nest.
1872     Revision:
1873       muse--main--1.0--patch-42
1875     * lisp/muse-publish.el (muse-forward-dl-part): Make it so that definition
1876       lists nest a bit better.
1877     
1878     * lisp/muse-regexps.el (muse-dl-entry-regexp): Removed, since we don't
1879       use it anymore.
1881     modified files:
1882      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
1885 2006-03-03 19:28:22 GMT Michael Olson <mwolson@gnu.org> patch-41
1887     Summary:
1888       Fix nested list regression.
1889     Revision:
1890       muse--main--1.0--patch-41
1892     * lisp/muse-publish.el (muse-publish-surround-text): Keep track of
1893       original indentation value and use that.  This fixes a regression
1894       caused by the last patch.
1896     modified files:
1897      ChangeLog.2006 lisp/muse-publish.el
1900 2006-03-03 05:24:59 GMT Michael Olson <mwolson@gnu.org> patch-40
1902     Summary:
1903       Make code look nicer by using muse-forward-dl-* functions.
1904     Revision:
1905       muse--main--1.0--patch-40
1907     * lisp/muse-publish.el (muse-publish-surround-dl): Factor out lambda
1908       forms into muse-forward-dl-* for increased reusability.
1909       (muse-publish-surround-text): Call move function with an indent
1910       argument so that we don't have to use partial substitution in lambda
1911       forms.
1912       (muse-forward-dl-term): New function that moves forward to the next
1913       definition list term.
1914       (muse-forward-dl-entry): New function that moves forward to the next
1915       definition list entry.
1916       (muse-forward-dl-part): Renamed from `muse-forward-dl-item', since this
1917       does not move past entire definition list items, only parts of them.
1918       (muse-publish-markup-list, muse-publish-markup-quote):
1919       (muse-publish-quote-tag): Use better lambda form, and include a
1920       parameter.
1922     modified files:
1923      ChangeLog.2006 lisp/muse-publish.el
1926 2006-03-02 05:38:41 GMT Michael Olson <mwolson@gnu.org> patch-39
1928     Summary:
1929       Handle blockquoted sections within lists properly.
1930     Revision:
1931       muse--main--1.0--patch-39
1933     * lisp/muse-publish.el (muse-forward-paragraph): Respect end-list
1934       property.  This should make blockquoted sections within a list do the
1935       right thing.
1936       (muse-forward-dl-item, muse-forward-list-item): Adjust logic for new
1937       behavior of `muse-forward-paragraph'.
1939     modified files:
1940      ChangeLog.2006 lisp/muse-publish.el
1943 2006-03-02 05:00:07 GMT Michael Olson <mwolson@gnu.org> patch-38
1945     Summary:
1946       Fix problem when previous list item was nested.
1947     Revision:
1948       muse--main--1.0--patch-38
1950     * lisp/muse-publish.el (muse-publish-surround-text): Bind nested list
1951       indicator at the correct place.  This fixes an error where a previous
1952       list was nested but the current one isn't.  Thanks to Per B. Sederberg
1953       for the report.
1955     modified files:
1956      ChangeLog.2006 lisp/muse-publish.el
1959 2006-03-02 04:36:06 GMT Michael Olson <mwolson@gnu.org> patch-37
1961     Summary:
1962       Fix #5376: Changing muse-wiki-wikiword-regexp does not seem to affect anything.
1963     Revision:
1964       muse--main--1.0--patch-37
1966     * muse.texi (Implicit Links): Mention how to customize the WikiName
1967       recognition, and note that if you're setting this manually, you have to
1968       call some additional code.  This should fix #5376.  Also remove local
1969       variables section at end, since it seems pointless.
1971     modified files:
1972      ChangeLog.2006 muse.texi
1975 2006-03-02 04:25:37 GMT Michael Olson <mwolson@gnu.org> patch-36
1977     Summary:
1978       Fix #5325: nested formatting not working in HTML output.
1979     Revision:
1980       muse--main--1.0--patch-36
1982     * lisp/muse-publish.el (muse-publish-markup-word): Make nested emphasis
1983       work.  I'm a bit worried about possible double-escaping, though.
1984       Perhaps we should write the context to a text property and escape it
1985       later.  This should fix #5325.
1987     modified files:
1988      ChangeLog.2006 lisp/muse-publish.el
1991 2006-03-02 01:08:14 GMT Michael Olson <mwolson@gnu.org> patch-35
1993     Summary:
1994       Make paragraphs respect the end of a list or list item.
1995     Revision:
1996       muse--main--1.0--patch-35
1998     * lisp/muse-docbook.el (muse-docbook-markup-paragraph): If we are at the
1999       end of a list (or list item), back up.  This allows for a nice side
2000       effect when using indented sentences in between list items.
2001     
2002     * lisp/muse-html.el (muse-html-markup-paragraph): Ditto.
2003     
2004     * lisp/muse-xml.el (muse-xml-markup-paragraph): Ditto.
2005     
2006     * lisp/muse-publish.el (muse-publish-surround-dl): Make sure that end-ddt
2007       and end-item are marked up with end-list properties.
2009     modified files:
2010      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
2011      lisp/muse-publish.el lisp/muse-xml.el
2014 2006-03-01 21:00:41 GMT Michael Olson <mwolson@gnu.org> patch-34
2016     Summary:
2017       Make sure an initial term exists before publishing definition list.
2018     Revision:
2019       muse--main--1.0--patch-34
2021     * lisp/muse-publish.el (muse-publish-markup-list): Ensure that a term
2022       exists before publishing a definition list.
2024     modified files:
2025      ChangeLog.2006 lisp/muse-publish.el
2028 2006-03-01 20:21:08 GMT Michael Olson <mwolson@gnu.org> patch-33
2030     Summary:
2031       Add comments to nested list code.
2032     Revision:
2033       muse--main--1.0--patch-33
2035     * lisp/muse-publish.el (muse-publish-surround-dl)
2036       (muse-publish-surround-text, muse-forward-dl-item):
2037       (muse-forward-list-item): Add comments, since there were many
2038       intricacies that are probably not obvious to the casual reader.
2039       (muse-forward-dl-item): Remove no-op condition.
2041     modified files:
2042      ChangeLog.2006 lisp/muse-publish.el
2045 2006-03-01 19:51:45 GMT Michael Olson <mwolson@gnu.org> patch-32
2047     Summary:
2048       Make nested list items work when separated by one blank line.
2049     Revision:
2050       muse--main--1.0--patch-32
2052     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2053       muse-forward-dl-item instead of muse-forward-list-item.  On second
2054       thought, don't unconditionally insert a newline, as that breaks some
2055       things.
2056       (muse-forward-dl-item): New function that moves forward to the next
2057       definition list item.  This was factored out from
2058       muse-forward-list-item, since it was getting too complex for my liking.
2059       (muse-forward-dl-item, muse-forward-list-item): Introduce concept of
2060       indented line, and skip past these if we have a blank line followed by
2061       an indented line.  "Indented" means "indented one past the current
2062       indentation level" here.  Remove some initial whitespace that was being
2063       overlooked before.
2065     modified files:
2066      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2069 2006-03-01 17:43:55 GMT Michael Olson <mwolson@gnu.org> patch-31
2071     Summary:
2072       Fix a couple of bugs in muse-wiki-resolve-project-page.
2073     Revision:
2074       muse--main--1.0--patch-31
2076     * lisp/muse-project.el (muse-project-applicable-styles): Use a slightly
2077       better algorithm for adding styles to a list.
2078     
2079     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Handle project more
2080       carefully.  This should fix one or two hard-to-explain bugs.
2082     modified files:
2083      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
2086 2006-03-01 17:24:23 GMT Michael Olson <mwolson@gnu.org> patch-30
2088     Summary:
2089       Fix another definition list edge case.
2090     Revision:
2091       muse--main--1.0--patch-30
2093     * lisp/muse-publish.el (muse-publish-surround-dl): Fix edge case where
2094       unordered list immediately follows definition list term.
2096     modified files:
2097      ChangeLog.2006 lisp/muse-publish.el
2100 2006-03-01 17:05:25 GMT Michael Olson <mwolson@gnu.org> patch-29
2102     Summary:
2103       Pass all current definition list test cases.
2104     Revision:
2105       muse--main--1.0--patch-29
2107     * lisp/muse-publish.el (muse-publish-surround-dl): Move correctly to next
2108       line if definition is not on the same line as the term.
2109       (muse-forward-list-item): Fix publishing incorrectness that occurred
2110       when a non-dl list follows a definition list.  Always move to the right
2111       place so as to prevent extra empty dd elements from being published.
2113     modified files:
2114      ChangeLog.2006 lisp/muse-publish.el
2117 2006-03-01 15:08:45 GMT Michael Olson <mwolson@gnu.org> patch-28
2119     Summary:
2120       Merge consecutive definition list terms properly.
2121     Revision:
2122       muse--main--1.0--patch-28
2124     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of status
2125       correctly.  This makes Muse merge several definition list items into
2126       one list.
2127       (muse-forward-list-item): Use simpler regexp for 'dl.
2128     
2129     * lisp/muse-regexps.el (muse-list-item-regexp): Make terms optional in
2130       definition lists, and make terms the 2nd matched text.
2132     modified files:
2133      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2136 2006-02-28 23:48:24 GMT Michael Olson <mwolson@gnu.org> patch-27
2138     Summary:
2139       Bookkeeping.
2140     Revision:
2141       muse--main--1.0--patch-27
2143     * AUTHORS: Update.
2144     
2145     * muse-colors.el, muse-mode.el: Credit contributions.
2147     modified files:
2148      AUTHORS ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2151 2006-02-28 23:37:26 GMT Michael Olson <mwolson@gnu.org> patch-26
2153     Summary:
2154       Merged from mwolson@gnu.org--2006-muse-el (patch 0-4)
2155     Revision:
2156       muse--main--1.0--patch-26
2158     Patches applied:
2159     
2160      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2161        Added ability to show inline images in the Emacs buffer.
2162     
2163      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2164        Added enhanced list item insertion.
2165     
2166     Detailed log:
2167     
2168     (Author: Per B. Sederberg <per@med.upenn.edu>)
2169     
2170     * lisp/muse-mode.el (muse-mode-map): Added new key binding to insert a
2171       list item.  New key mapping to toggle showing images.  Added a key
2172       mapping to insert a link to a file and modified the key map to insert a
2173       tag.
2174       (muse-on-blank-line): Helper function to determine if the point is on a
2175       line containing only blank spaces.
2176       (muse-insert-list-item): New interactive function to insert a new list
2177       item, taking into account the current list state.
2178       (muse-insert-relative-link-to-file): New function to insert a link to a
2179       file, relative to the default directory.
2180     
2181     * lisp/muse-colors.el (muse-inline-relative-to): Added custom directory
2182       for where to search for images to inline in the buffer.
2183       (muse-colors-inline-images): Added custom boolean field for whether to
2184       show inline images in the buffer.
2185       (muse-colors-toggle-inline-images): New function to toggle showing the
2186       inline images in the buffer.
2187       (muse-unhighlight-region): Now removes end-glyph text properties to
2188       support XEmacs.
2189       (muse-colors-resolve-image-file): New function to determine if a link
2190       is an image and whether the version of Emacs can support inline images.
2191       (muse-make-file-glyph): New function to create an image glyph if we are
2192       using XEmacs.
2193       (muse-colors-insert-image): New function to insert an image in an Emacs
2194       buffer.
2195       (muse-colors-explicit-link): Modified function to have the ability to
2196       insert an image instead of formatting the text of the link.
2198     modified files:
2199      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2201     new patches:
2202      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--base-0
2203      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-1
2204      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2205      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2206      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-4
2209 2006-02-28 05:20:11 GMT Michael Olson <mwolson@gnu.org> patch-25
2211     Summary:
2212       Pass testcase for definition list and nested unordered list.
2213     Revision:
2214       muse--main--1.0--patch-25
2216     * lisp/muse-publish.el (muse-publish-surround-dl): Ensure that definition
2217       lists always have at least one entry.  This appears to do the right
2218       thing with a sample nested unordered list.
2220     modified files:
2221      ChangeLog.2006 lisp/muse-publish.el
2224 2006-02-28 05:09:33 GMT Michael Olson <mwolson@gnu.org> patch-24
2226     Summary:
2227       Some definition list fixes.
2228     Revision:
2229       muse--main--1.0--patch-24
2231     * lisp/muse-publish.el (muse-publish-markup-list): Make sure to insert
2232       markup for end of list using the `muse-insert-markup-end-list'
2233       function.  Handle list items nested inside of a definition list.
2235     modified files:
2236      ChangeLog.2006 lisp/muse-publish.el
2239 2006-02-28 04:43:15 GMT Michael Olson <mwolson@gnu.org> patch-23
2241     Summary:
2242       Fix another wrapped list item edge case.
2243     Revision:
2244       muse--main--1.0--patch-23
2246     * lisp/muse-publish.el (muse-publish-surround-text): Stop removing
2247       indentation in a region when we encounter any list items.  This should
2248       fix another wrapped list item edge case.  Thanks to Per B. Sederberg
2249       for the report.
2251     modified files:
2252      ChangeLog.2006 lisp/muse-publish.el
2255 2006-02-26 18:26:05 GMT Michael Olson <mwolson@gnu.org> patch-22
2257     Summary:
2258       Fix comment in Debian packaging.
2259     Revision:
2260       muse--main--1.0--patch-22
2262     * debian/emacsen-remove: Fix comment.
2264     modified files:
2265      ChangeLog.2006 debian/emacsen-remove
2268 2006-02-24 03:23:49 GMT Michael Olson <mwolson@gnu.org> patch-21
2270     Summary:
2271       muse-blosxom: Fix order of #tags line in header.
2272     Revision:
2273       muse--main--1.0--patch-21
2275     * lisp/muse-blosxom.el (muse-blosxom-header): Put #tags line after title,
2276       rather than before it.  Thanks to bkhl for the heads up.
2278     modified files:
2279      ChangeLog.2006 lisp/muse-blosxom.el
2282 2006-02-23 03:33:03 GMT Michael Olson <mwolson@gnu.org> patch-20
2284     Summary:
2285       muse-blosxom: Add ability to use tags in entries.
2286     Revision:
2287       muse--main--1.0--patch-20
2289     * lisp/muse-blosxom.el (muse-blosxom-header): If we are using tags,
2290       publish them.
2291       (muse-blosxom-use-tags): New option that specifies whether we are using
2292       tags.
2293       (muse-blosxom-new-entry): If using tags, read tags until the user hits
2294       RET without entering one.
2296     modified files:
2297      ChangeLog.2006 lisp/muse-blosxom.el
2300 2006-02-23 03:23:51 GMT Michael Olson <mwolson@gnu.org> patch-19
2302     Summary:
2303       Fix backtrace when publishing unsaved files.
2304     Revision:
2305       muse--main--1.0--patch-19
2307     * lisp/muse-publish.el (muse-publish-file): Detect case where we are
2308       trying to publish a file that has not been saved, and give an
2309       explanation to the user.
2311     modified files:
2312      ChangeLog.2006 lisp/muse-publish.el
2315 2006-02-21 23:19:36 GMT Michael Olson <mwolson@gnu.org> patch-18
2317     Summary:
2318       muse-texinfo: Fix link suffix.
2319     Revision:
2320       muse--main--1.0--patch-18
2322     * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf
2323       styles.  This should fix a bug where links in published info files use
2324       an incorrect extension.  Thanks to Hans Ekbrand for the report!
2326     modified files:
2327      ChangeLog.2006 lisp/muse-texinfo.el
2330 2006-02-16 21:54:11 GMT Michael Olson <mwolson@gnu.org> patch-17
2332     Summary:
2333       Fix prompting of non-Muse buffers before publishing.
2334     Revision:
2335       muse--main--1.0--patch-17
2337     * lisp/muse-project.el (muse-project-of-file): Apply fix from René
2338       Stadler to ignore buffers that have no associated filename.  This fixes
2339       an annoyance where Muse prompts to save BBDB and ERC buffers before
2340       publishing.
2342     modified files:
2343      AUTHORS ChangeLog.2006 lisp/muse-project.el
2346 2006-02-16 04:43:35 GMT Michael Olson <mwolson@gnu.org> patch-16
2348     Summary:
2349       Fix wrapped nested list item edge case.
2350     Revision:
2351       muse--main--1.0--patch-16
2353     * lisp/muse-publish.el (muse-publish-markup-regexps): Remove 2300 rule,
2354       since it is no longer needed.  Tweak 2200 regexp to cover 2300's use
2355       case.
2356       (muse-publish-surround-text): Tweak prefix for muse-list-item-regexp.
2357       (muse-list-item-type): Handle the new change to muse-list-item-regexp.
2358     
2359     * lisp/muse-regexps.el (muse-list-item-regexp): Explicitly require
2360       exactly one space character in front of a unnumbered or numbered list.
2361       This should make it easier to match every list instance, since
2362       definition lists can now be handled more nicely in
2363       muse-publish-markup-regexps.  This also has the effect of fixing a
2364       wrapped nested list item edge case.
2366     modified files:
2367      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2370 2006-02-16 03:04:20 GMT Michael Olson <mwolson@gnu.org> patch-15
2372     Summary:
2373       Fix edge case in muse-wiki-publish-pretty-title.
2374     Revision:
2375       muse--main--1.0--patch-15
2377     * lisp/muse-wiki.el (muse-wiki-publish-pretty-title): If for some reason
2378       the document does not have a valid title, use the empty string.
2380     modified files:
2381      ChangeLog.2006 lisp/muse-wiki.el
2384 2006-02-14 06:35:02 GMT Michael Olson <mwolson@gnu.org> patch-14
2386     Summary:
2387       Use debian/compat to determine debhelper compat level.
2388     Revision:
2389       muse--main--1.0--patch-14
2391     * debian/compat: New file that sets the debhelper compatibility level to
2392       4.
2393     
2394     * debian/rules: Remove DH_COMPAT line.
2396     new files:
2397      debian/.arch-ids/compat.id debian/compat
2399     modified files:
2400      ChangeLog.2006 debian/rules
2403 2006-02-13 04:50:57 GMT Michael Olson <mwolson@gnu.org> patch-13
2405     Summary:
2406       Fix a couple of table-publishing edge cases.
2407     Revision:
2408       muse--main--1.0--patch-13
2410     * lisp/muse-publish.el (muse-publish-markup-regexps): Fix a table
2411       publishing error that occurs when a table line is the last thing in a
2412       document.  Thanks to cymacs for the report and suggested fix.
2413       (muse-publish-table-fields): Skip initial blank lines, and don't remove
2414       them.
2415     
2416     * lisp/muse-docbook.el (muse-docbook-markup-strings): Don't put a newline
2417       at the end of the 'end-table markup string.
2418     
2419     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
2420     
2421     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
2422     
2423     * lisp/muse-xml-common.el (muse-xml-markup-table): Always insert a
2424       newline at the end of the table.  This should fix a problem with
2425       paragraphs after tables not being published as such.  Thanks to cymacs
2426       for the report.
2427     
2428     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Don't use
2429       muse-insert-markup to insert a trailing newline.
2431     modified files:
2432      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
2433      lisp/muse-publish.el lisp/muse-texinfo.el
2434      lisp/muse-xml-common.el lisp/muse-xml.el
2437 2006-02-12 22:56:27 GMT Michael Olson <mwolson@gnu.org> patch-12
2439     Summary:
2440       Add ChangeLog for 2006 and move previous ChangeLog for 2005.
2441     Revision:
2442       muse--main--1.0--patch-12
2445     new files:
2446      .arch-ids/ChangeLog.2006.id ChangeLog.2006
2448     renamed files:
2449      .arch-ids/ChangeLog.id
2450        ==> .arch-ids/ChangeLog.2005.id
2451      ChangeLog
2452        ==> ChangeLog.2005
2455 2006-02-12 22:53:48 GMT Michael Olson <mwolson@gnu.org> patch-11
2457     Summary:
2458       Make muse-journal work with whole-document escaping.
2459     Revision:
2460       muse--main--1.0--patch-11
2462     * examples/mwolson/templates/*: Change "Published by Muse" to "Published
2463       by Emacs Muse" so that muse-journal does not get confused.
2464     
2465     * lisp/muse-journal.el (muse-journal-html-munge-buffer):
2466       (muse-journal-latex-munge-buffer, muse-journal-rss-munge-buffer): Adapt
2467       for whole-buffer escaping.  Thanks to mondoshawan for the report.
2468       (muse-journal-rss-munge-buffer): Display a warning if someone does not
2469       have "Page published by Emacs Muse (begins|ends) here" in their header
2470       or footer, since muse-journal needs this in order to determine where
2471       entries begin and end.
2473     modified files:
2474      examples/mwolson/templates/footer.html
2475      examples/mwolson/templates/generic-footer.html
2476      examples/mwolson/templates/generic-header.html
2477      examples/mwolson/templates/header.html
2478      examples/mwolson/templates/header.tex lisp/muse-journal.el
2481 2006-02-08 03:00:07 GMT Michael Olson <mwolson@gnu.org> patch-10
2483     Summary:
2484       Get simple test case for definition lists to work.
2485     Revision:
2486       muse--main--1.0--patch-10
2488     * lisp/muse-publish.el (muse-publish-surround-dl): Make simple test case
2489       publish properly.
2490       (muse-forward-list-item): Fix edge case.
2492     modified files:
2493      lisp/muse-publish.el
2496 2006-01-28 02:47:07 GMT Michael Olson <mwolson@gnu.org> patch-9
2498     Summary:
2499       Add documentation to some publishing functions.
2500     Revision:
2501       muse--main--1.0--patch-9
2503     * lisp/muse-publish.el (muse-publish-mark-read-only)
2504       (muse-publish-mark-noemphasis): Add documentation.
2506     modified files:
2507      lisp/muse-publish.el
2510 2006-01-28 02:42:03 GMT Michael Olson <mwolson@gnu.org> patch-8
2512     Summary:
2513       Fix an error with `custom-quote'.
2514     Revision:
2515       muse--main--1.0--patch-8
2517     * lisp/muse-project.el: Require 'cus-edit, since that is where
2518       `custom-quote' is defined.
2519     
2520     * muse.texi: Use copyright symbol.
2522     modified files:
2523      lisp/muse-project.el muse.texi
2526 2006-01-25 18:27:53 GMT Michael Olson <mwolson@gnu.org> patch-7
2528     Summary:
2529       muse-registry: update from author.
2530     Revision:
2531       muse--main--1.0--patch-7
2533     * lisp/muse-registry.el: Update to newest version from author.
2534       Re-tabify.
2536     modified files:
2537      lisp/muse-registry.el
2540 2006-01-21 19:26:57 GMT Michael Olson <mwolson@gnu.org> patch-6
2542     Summary:
2543       muse-latex: Handle double-quote edge case.
2544     Revision:
2545       muse--main--1.0--patch-6
2547     * lisp/muse-latex.el (muse-latex-fixup-dquotes): Handle case when a quote
2548       character begins the buffer.
2550     modified files:
2551      lisp/muse-latex.el
2554 2006-01-21 18:47:33 GMT Michael Olson <mwolson@gnu.org> patch-5
2556     Summary:
2557       Allow beginning and ending empty elements in tables.
2558     Revision:
2559       muse--main--1.0--patch-5
2561     * lisp/muse-regexps.el (muse-table-field-regexp): Allow there to be no
2562       whitespace after the field if we're at the end of a line.
2563       (muse-table-line-regexp): Allow the table to start with a "|".  The
2564       resulting initial empty cell isn't yet thrown away like it should be.
2566     modified files:
2567      lisp/muse-regexps.el
2570 2006-01-21 02:45:36 GMT Michael Olson <mwolson@gnu.org> patch-4
2572     Summary:
2573       muse-latex: Use \url to publish bare URLs.
2574     Revision:
2575       muse--main--1.0--patch-4
2577     * lisp/muse-latex.el (muse-latex-markup-strings): Use \url instead of
2578       \href for bare URLs.  Thanks to Na Li for the suggestion!
2580     modified files:
2581      lisp/muse-latex.el
2584 2006-01-20 16:22:04 GMT Michael Olson <mwolson@gnu.org> patch-3
2586     Summary:
2587       Create parents of output directories.
2588     Revision:
2589       muse--main--1.0--patch-3
2591     * lisp/muse-project.el (muse-project-publish-file): Create parent
2592       directories as well, if the output directory does not exist.  This can
2593       happen when we have nested directories in a project.
2595     modified files:
2596      lisp/muse-project.el
2599 2006-01-20 15:54:21 GMT Michael Olson <mwolson@gnu.org> patch-2
2601     Summary:
2602       Pick a better default if publishing with more than one style.
2603     Revision:
2604       muse--main--1.0--patch-2
2606     * lisp/muse-project.el (muse-project-applicable-styles): Make sure that
2607       the list we return is in the right order.  That way, if more than one
2608       publishing rule matches a link, the first one is used, rather than the
2609       last.
2611     modified files:
2612      lisp/muse-project.el
2615 2006-01-19 15:55:19 GMT Michael Olson <mwolson@gnu.org> patch-1
2617     Summary:
2618       Oops, committed to the wrong archive.
2619     Revision:
2620       muse--main--1.0--patch-1
2622     Patches applied:
2623     
2624      * mwolson@gnu.org--2005/muse--main--1.0--patch-356
2625        Debian fixups.
2626     
2627      * mwolson@gnu.org--2005/muse--main--1.0--patch-357
2628        Another Debian fix.
2630     modified files:
2631      ChangeLog debian/emacsen-startup
2633     renamed files:
2634      debian/.arch-ids/NEWS.Debian.id
2635        ==> debian/.arch-ids/NEWS.id
2636      debian/NEWS.Debian
2637        ==> debian/NEWS
2639     new patches:
2640      mwolson@gnu.org--2005/muse--main--1.0--patch-356
2641      mwolson@gnu.org--2005/muse--main--1.0--patch-357
2644 2006-01-17 06:28:50 GMT Michael Olson <mwolson@gnu.org> base-0
2646     Summary:
2647       tag of mwolson@gnu.org--2005/muse--main--1.0--patch-355
2648     Revision:
2649       muse--main--1.0--base-0
2651     (automatically generated log message)
2653     new patches:
2654      ajk@iu.edu--2005/muse--ajk--1.0--base-0
2655      ajk@iu.edu--2005/muse--ajk--1.0--patch-1
2656      ajk@iu.edu--2005/muse--ajk--1.0--patch-2
2657      ajk@iu.edu--2005/muse--ajk--1.0--patch-3
2658      ajk@iu.edu--2005/muse--ajk--1.0--patch-4
2659      ajk@iu.edu--2005/muse--ajk--1.0--patch-5
2660      ajk@iu.edu--2005/muse--ajk--1.0--patch-6
2661      ajk@iu.edu--2005/muse--ajk--1.0--patch-7
2662      ajk@iu.edu--2005/muse--ajk--1.0--patch-8
2663      ajk@iu.edu--2005/muse--ajk--1.0--patch-9
2664      ajk@iu.edu--2005/muse--main--1.0--base-0
2665      ajk@iu.edu--2005/muse--main--1.0--patch-1
2666      ajk@iu.edu--2005/muse--main--1.0--patch-2
2667      davidsmith@acm.org--2005/muse--devo--1.0--base-0
2668      davidsmith@acm.org--main/muse--devo--1.0--base-0
2669      davidsmith@acm.org--main/muse--devo--1.0--patch-1
2670      davidsmith@acm.org--main/muse--devo--1.0--patch-2
2671      hodique@lifl.fr--2005/muse--yh--1.0--base-0
2672      hodique@lifl.fr--2005/muse--yh--1.0--patch-1
2673      hodique@lifl.fr--2005/muse--yh--1.0--patch-2
2674      hodique@lifl.fr--2005/muse--yh--1.0--patch-3
2675      hodique@lifl.fr--2005/muse--yh--1.0--patch-4
2676      hodique@lifl.fr--2005/muse--yh--1.0--patch-5
2677      hodique@lifl.fr--2005/muse--yh--1.0--patch-6
2678      hodique@lifl.fr--2005/muse--yh--1.0--patch-7
2679      hodique@lifl.fr--2005/muse--yh--1.0--patch-8
2680      hodique@lifl.fr--2005/muse--yh--1.0--patch-9
2681      hodique@lifl.fr--2005/muse--yh--1.0--patch-10
2682      hodique@lifl.fr--2005/muse--yh--1.0--patch-11
2683      hodique@lifl.fr--2005/muse--yh--1.0--patch-12
2684      hodique@lifl.fr--2005/muse--yh--1.0--patch-13
2685      hodique@lifl.fr--2005/muse--yh--1.0--patch-14
2686      hodique@lifl.fr--2005/muse--yh--1.0--patch-15
2687      hodique@lifl.fr--2005/muse--yh--1.0--patch-16
2688      hodique@lifl.fr--2005/muse--yh--1.0--patch-17
2689      hodique@lifl.fr--2005/muse--yh--1.0--patch-18
2690      hodique@lifl.fr--2005/muse--yh--1.0--patch-19
2691      hodique@lifl.fr--2005/muse--yh--1.0--patch-20
2692      hodique@lifl.fr--2005/muse--yh--1.0--patch-21
2693      hodique@lifl.fr--2005/muse--yh--1.0--patch-22
2694      hodique@lifl.fr--2005/muse--yh--1.0--patch-23
2695      hodique@lifl.fr--2005/muse--yh--1.0--patch-24
2696      hodique@lifl.fr--2005/muse--yh--1.0--patch-25
2697      hodique@lifl.fr--2005/muse--yh--1.0--patch-26
2698      hodique@lifl.fr--2005/muse--yh--1.0--patch-27
2699      hodique@lifl.fr--2005/muse--yh--1.0--patch-28
2700      hodique@lifl.fr--2005/muse--yh--1.0--patch-29
2701      hodique@lifl.fr--2005/muse--yh--1.0--patch-30
2702      hodique@lifl.fr--2005/muse--yh--1.0--patch-31
2703      hodique@lifl.fr--2005/muse--yh--1.0--patch-32
2704      hodique@lifl.fr--2005/muse--yh--1.0--patch-33
2705      hodique@lifl.fr--2005/muse--yh--1.0--patch-34
2706      hodique@lifl.fr--2005/muse--yh--1.0--patch-35
2707      hodique@lifl.fr--2005/muse--yh--1.0--patch-36
2708      hodique@lifl.fr--2005/muse--yh--1.0--patch-37
2709      hodique@lifl.fr--2005/muse--yh--1.0--patch-38
2710      hodique@lifl.fr--2005/muse--yh--1.0--patch-39
2711      hodique@lifl.fr--2005/muse--yh--1.0--patch-40
2712      hodique@lifl.fr--2005/muse--yh--1.0--patch-41
2713      hodique@lifl.fr--2005/muse--yh--1.0--patch-42
2714      hodique@lifl.fr--2005/muse--yh--1.0--patch-43
2715      hodique@lifl.fr--2005/muse--yh--1.0--patch-44
2716      hodique@lifl.fr--2005/muse--yh--1.0--patch-45
2717      jeho@jeho.org--2005/muse--jeho--1.0--base-0
2718      jeho@jeho.org--2005/muse--jeho--1.0--patch-1
2719      jeho@jeho.org--2005/muse--jeho--1.0--patch-2
2720      jeho@jeho.org--2005/muse--jeho--1.0--patch-3
2721      jeho@jeho.org--2005/muse--jeho--1.0--patch-4
2722      jeho@jeho.org--2005/muse--jeho--1.0--patch-5
2723      jeho@jeho.org--2005/muse--jeho--1.0--patch-6
2724      jeho@jeho.org--2005/muse--jeho--1.0--patch-7
2725      jeho@jeho.org--2005/muse--jeho--1.0--patch-8
2726      jeho@jeho.org--2005/muse--jeho--1.0--patch-9
2727      jeho@jeho.org--2005/muse--jeho--1.0--patch-10
2728      jeho@jeho.org--2005/muse--jeho--1.0--patch-11
2729      jeho@jeho.org--2005/muse--jeho--1.0--patch-12
2730      jeho@jeho.org--2005/muse--jeho--1.0--patch-13
2731      jeho@jeho.org--2005/muse--jeho--1.0--patch-14
2732      jeho@jeho.org--2005/muse--jeho--1.0--patch-15
2733      jeho@jeho.org--2005/muse--jeho--1.0--patch-16
2734      jeho@jeho.org--2005/muse--jeho--1.0--patch-17
2735      jeho@jeho.org--2005/muse--jeho--1.0--patch-18
2736      jeho@jeho.org--2005/muse--jeho--1.0--patch-19
2737      jeho@jeho.org--2005/muse--jeho--1.0--patch-20
2738      jeho@jeho.org--2005/muse--jeho--1.0--patch-21
2739      john@wjsullivan.net--2006/muse--johnsu01--0--base-0
2740      john@wjsullivan.net--2006/muse--johnsu01--0--patch-1
2741      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--base-0
2742      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-1
2743      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-2
2744      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-1
2745      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-2
2746      mwolson@gnu.org--2005/muse--main--1.0--base-0
2747      mwolson@gnu.org--2005/muse--main--1.0--patch-1
2748      mwolson@gnu.org--2005/muse--main--1.0--patch-2
2749      mwolson@gnu.org--2005/muse--main--1.0--patch-3
2750      mwolson@gnu.org--2005/muse--main--1.0--patch-4
2751      mwolson@gnu.org--2005/muse--main--1.0--patch-5
2752      mwolson@gnu.org--2005/muse--main--1.0--patch-6
2753      mwolson@gnu.org--2005/muse--main--1.0--patch-7
2754      mwolson@gnu.org--2005/muse--main--1.0--patch-8
2755      mwolson@gnu.org--2005/muse--main--1.0--patch-9
2756      mwolson@gnu.org--2005/muse--main--1.0--patch-10
2757      mwolson@gnu.org--2005/muse--main--1.0--patch-11
2758      mwolson@gnu.org--2005/muse--main--1.0--patch-12
2759      mwolson@gnu.org--2005/muse--main--1.0--patch-13
2760      mwolson@gnu.org--2005/muse--main--1.0--patch-14
2761      mwolson@gnu.org--2005/muse--main--1.0--patch-15
2762      mwolson@gnu.org--2005/muse--main--1.0--patch-16
2763      mwolson@gnu.org--2005/muse--main--1.0--patch-17
2764      mwolson@gnu.org--2005/muse--main--1.0--patch-18
2765      mwolson@gnu.org--2005/muse--main--1.0--patch-19
2766      mwolson@gnu.org--2005/muse--main--1.0--patch-20
2767      mwolson@gnu.org--2005/muse--main--1.0--patch-21
2768      mwolson@gnu.org--2005/muse--main--1.0--patch-22
2769      mwolson@gnu.org--2005/muse--main--1.0--patch-23
2770      mwolson@gnu.org--2005/muse--main--1.0--patch-24
2771      mwolson@gnu.org--2005/muse--main--1.0--patch-25
2772      mwolson@gnu.org--2005/muse--main--1.0--patch-26
2773      mwolson@gnu.org--2005/muse--main--1.0--patch-27
2774      mwolson@gnu.org--2005/muse--main--1.0--patch-28
2775      mwolson@gnu.org--2005/muse--main--1.0--patch-29
2776      mwolson@gnu.org--2005/muse--main--1.0--patch-30
2777      mwolson@gnu.org--2005/muse--main--1.0--patch-31
2778      mwolson@gnu.org--2005/muse--main--1.0--patch-32
2779      mwolson@gnu.org--2005/muse--main--1.0--patch-33
2780      mwolson@gnu.org--2005/muse--main--1.0--patch-34
2781      mwolson@gnu.org--2005/muse--main--1.0--patch-35
2782      mwolson@gnu.org--2005/muse--main--1.0--patch-36
2783      mwolson@gnu.org--2005/muse--main--1.0--patch-37
2784      mwolson@gnu.org--2005/muse--main--1.0--patch-38
2785      mwolson@gnu.org--2005/muse--main--1.0--patch-39
2786      mwolson@gnu.org--2005/muse--main--1.0--patch-40
2787      mwolson@gnu.org--2005/muse--main--1.0--patch-41
2788      mwolson@gnu.org--2005/muse--main--1.0--patch-42
2789      mwolson@gnu.org--2005/muse--main--1.0--patch-43
2790      mwolson@gnu.org--2005/muse--main--1.0--patch-44
2791      mwolson@gnu.org--2005/muse--main--1.0--patch-45
2792      mwolson@gnu.org--2005/muse--main--1.0--patch-46
2793      mwolson@gnu.org--2005/muse--main--1.0--patch-47
2794      mwolson@gnu.org--2005/muse--main--1.0--patch-48
2795      mwolson@gnu.org--2005/muse--main--1.0--patch-49
2796      mwolson@gnu.org--2005/muse--main--1.0--patch-50
2797      mwolson@gnu.org--2005/muse--main--1.0--patch-51
2798      mwolson@gnu.org--2005/muse--main--1.0--patch-52
2799      mwolson@gnu.org--2005/muse--main--1.0--patch-53
2800      mwolson@gnu.org--2005/muse--main--1.0--patch-54
2801      mwolson@gnu.org--2005/muse--main--1.0--patch-55
2802      mwolson@gnu.org--2005/muse--main--1.0--patch-56
2803      mwolson@gnu.org--2005/muse--main--1.0--patch-57
2804      mwolson@gnu.org--2005/muse--main--1.0--patch-58
2805      mwolson@gnu.org--2005/muse--main--1.0--patch-59
2806      mwolson@gnu.org--2005/muse--main--1.0--patch-60
2807      mwolson@gnu.org--2005/muse--main--1.0--patch-61
2808      mwolson@gnu.org--2005/muse--main--1.0--patch-62
2809      mwolson@gnu.org--2005/muse--main--1.0--patch-63
2810      mwolson@gnu.org--2005/muse--main--1.0--patch-64
2811      mwolson@gnu.org--2005/muse--main--1.0--patch-65
2812      mwolson@gnu.org--2005/muse--main--1.0--patch-66
2813      mwolson@gnu.org--2005/muse--main--1.0--patch-67
2814      mwolson@gnu.org--2005/muse--main--1.0--patch-68
2815      mwolson@gnu.org--2005/muse--main--1.0--patch-69
2816      mwolson@gnu.org--2005/muse--main--1.0--patch-70
2817      mwolson@gnu.org--2005/muse--main--1.0--patch-71
2818      mwolson@gnu.org--2005/muse--main--1.0--patch-72
2819      mwolson@gnu.org--2005/muse--main--1.0--patch-73
2820      mwolson@gnu.org--2005/muse--main--1.0--patch-74
2821      mwolson@gnu.org--2005/muse--main--1.0--patch-75
2822      mwolson@gnu.org--2005/muse--main--1.0--patch-76
2823      mwolson@gnu.org--2005/muse--main--1.0--patch-77
2824      mwolson@gnu.org--2005/muse--main--1.0--patch-78
2825      mwolson@gnu.org--2005/muse--main--1.0--patch-79
2826      mwolson@gnu.org--2005/muse--main--1.0--patch-80
2827      mwolson@gnu.org--2005/muse--main--1.0--patch-81
2828      mwolson@gnu.org--2005/muse--main--1.0--patch-82
2829      mwolson@gnu.org--2005/muse--main--1.0--patch-83
2830      mwolson@gnu.org--2005/muse--main--1.0--patch-84
2831      mwolson@gnu.org--2005/muse--main--1.0--patch-85
2832      mwolson@gnu.org--2005/muse--main--1.0--patch-86
2833      mwolson@gnu.org--2005/muse--main--1.0--patch-87
2834      mwolson@gnu.org--2005/muse--main--1.0--patch-88
2835      mwolson@gnu.org--2005/muse--main--1.0--patch-89
2836      mwolson@gnu.org--2005/muse--main--1.0--patch-90
2837      mwolson@gnu.org--2005/muse--main--1.0--patch-91
2838      mwolson@gnu.org--2005/muse--main--1.0--patch-92
2839      mwolson@gnu.org--2005/muse--main--1.0--patch-93
2840      mwolson@gnu.org--2005/muse--main--1.0--patch-94
2841      mwolson@gnu.org--2005/muse--main--1.0--patch-95
2842      mwolson@gnu.org--2005/muse--main--1.0--patch-96
2843      mwolson@gnu.org--2005/muse--main--1.0--patch-97
2844      mwolson@gnu.org--2005/muse--main--1.0--patch-98
2845      mwolson@gnu.org--2005/muse--main--1.0--patch-99
2846      mwolson@gnu.org--2005/muse--main--1.0--patch-100
2847      mwolson@gnu.org--2005/muse--main--1.0--patch-101
2848      mwolson@gnu.org--2005/muse--main--1.0--patch-102
2849      mwolson@gnu.org--2005/muse--main--1.0--patch-103
2850      mwolson@gnu.org--2005/muse--main--1.0--patch-104
2851      mwolson@gnu.org--2005/muse--main--1.0--patch-105
2852      mwolson@gnu.org--2005/muse--main--1.0--patch-106
2853      mwolson@gnu.org--2005/muse--main--1.0--patch-107
2854      mwolson@gnu.org--2005/muse--main--1.0--patch-108
2855      mwolson@gnu.org--2005/muse--main--1.0--patch-109
2856      mwolson@gnu.org--2005/muse--main--1.0--patch-110
2857      mwolson@gnu.org--2005/muse--main--1.0--patch-111
2858      mwolson@gnu.org--2005/muse--main--1.0--patch-112
2859      mwolson@gnu.org--2005/muse--main--1.0--patch-113
2860      mwolson@gnu.org--2005/muse--main--1.0--patch-114
2861      mwolson@gnu.org--2005/muse--main--1.0--patch-115
2862      mwolson@gnu.org--2005/muse--main--1.0--patch-116
2863      mwolson@gnu.org--2005/muse--main--1.0--patch-117
2864      mwolson@gnu.org--2005/muse--main--1.0--patch-118
2865      mwolson@gnu.org--2005/muse--main--1.0--patch-119
2866      mwolson@gnu.org--2005/muse--main--1.0--patch-120
2867      mwolson@gnu.org--2005/muse--main--1.0--patch-121
2868      mwolson@gnu.org--2005/muse--main--1.0--patch-122
2869      mwolson@gnu.org--2005/muse--main--1.0--patch-123
2870      mwolson@gnu.org--2005/muse--main--1.0--patch-124
2871      mwolson@gnu.org--2005/muse--main--1.0--patch-125
2872      mwolson@gnu.org--2005/muse--main--1.0--patch-126
2873      mwolson@gnu.org--2005/muse--main--1.0--patch-127
2874      mwolson@gnu.org--2005/muse--main--1.0--patch-128
2875      mwolson@gnu.org--2005/muse--main--1.0--patch-129
2876      mwolson@gnu.org--2005/muse--main--1.0--patch-130
2877      mwolson@gnu.org--2005/muse--main--1.0--patch-131
2878      mwolson@gnu.org--2005/muse--main--1.0--patch-132
2879      mwolson@gnu.org--2005/muse--main--1.0--patch-133
2880      mwolson@gnu.org--2005/muse--main--1.0--patch-134
2881      mwolson@gnu.org--2005/muse--main--1.0--patch-135
2882      mwolson@gnu.org--2005/muse--main--1.0--patch-136
2883      mwolson@gnu.org--2005/muse--main--1.0--patch-137
2884      mwolson@gnu.org--2005/muse--main--1.0--patch-138
2885      mwolson@gnu.org--2005/muse--main--1.0--patch-139
2886      mwolson@gnu.org--2005/muse--main--1.0--patch-140
2887      mwolson@gnu.org--2005/muse--main--1.0--patch-141
2888      mwolson@gnu.org--2005/muse--main--1.0--patch-142
2889      mwolson@gnu.org--2005/muse--main--1.0--patch-143
2890      mwolson@gnu.org--2005/muse--main--1.0--patch-144
2891      mwolson@gnu.org--2005/muse--main--1.0--patch-145
2892      mwolson@gnu.org--2005/muse--main--1.0--patch-146
2893      mwolson@gnu.org--2005/muse--main--1.0--patch-147
2894      mwolson@gnu.org--2005/muse--main--1.0--patch-148
2895      mwolson@gnu.org--2005/muse--main--1.0--patch-149
2896      mwolson@gnu.org--2005/muse--main--1.0--patch-150
2897      mwolson@gnu.org--2005/muse--main--1.0--patch-151
2898      mwolson@gnu.org--2005/muse--main--1.0--patch-152
2899      mwolson@gnu.org--2005/muse--main--1.0--patch-153
2900      mwolson@gnu.org--2005/muse--main--1.0--patch-154
2901      mwolson@gnu.org--2005/muse--main--1.0--patch-155
2902      mwolson@gnu.org--2005/muse--main--1.0--patch-156
2903      mwolson@gnu.org--2005/muse--main--1.0--patch-157
2904      mwolson@gnu.org--2005/muse--main--1.0--patch-158
2905      mwolson@gnu.org--2005/muse--main--1.0--patch-159
2906      mwolson@gnu.org--2005/muse--main--1.0--patch-160
2907      mwolson@gnu.org--2005/muse--main--1.0--patch-161
2908      mwolson@gnu.org--2005/muse--main--1.0--patch-162
2909      mwolson@gnu.org--2005/muse--main--1.0--patch-163
2910      mwolson@gnu.org--2005/muse--main--1.0--patch-164
2911      mwolson@gnu.org--2005/muse--main--1.0--patch-165
2912      mwolson@gnu.org--2005/muse--main--1.0--patch-166
2913      mwolson@gnu.org--2005/muse--main--1.0--patch-167
2914      mwolson@gnu.org--2005/muse--main--1.0--patch-168
2915      mwolson@gnu.org--2005/muse--main--1.0--patch-169
2916      mwolson@gnu.org--2005/muse--main--1.0--patch-170
2917      mwolson@gnu.org--2005/muse--main--1.0--patch-171
2918      mwolson@gnu.org--2005/muse--main--1.0--patch-172
2919      mwolson@gnu.org--2005/muse--main--1.0--patch-173
2920      mwolson@gnu.org--2005/muse--main--1.0--patch-174
2921      mwolson@gnu.org--2005/muse--main--1.0--patch-175
2922      mwolson@gnu.org--2005/muse--main--1.0--patch-176
2923      mwolson@gnu.org--2005/muse--main--1.0--patch-177
2924      mwolson@gnu.org--2005/muse--main--1.0--patch-178
2925      mwolson@gnu.org--2005/muse--main--1.0--patch-179
2926      mwolson@gnu.org--2005/muse--main--1.0--patch-180
2927      mwolson@gnu.org--2005/muse--main--1.0--patch-181
2928      mwolson@gnu.org--2005/muse--main--1.0--patch-182
2929      mwolson@gnu.org--2005/muse--main--1.0--patch-183
2930      mwolson@gnu.org--2005/muse--main--1.0--patch-184
2931      mwolson@gnu.org--2005/muse--main--1.0--patch-185
2932      mwolson@gnu.org--2005/muse--main--1.0--patch-186
2933      mwolson@gnu.org--2005/muse--main--1.0--patch-187
2934      mwolson@gnu.org--2005/muse--main--1.0--patch-188
2935      mwolson@gnu.org--2005/muse--main--1.0--patch-189
2936      mwolson@gnu.org--2005/muse--main--1.0--patch-190
2937      mwolson@gnu.org--2005/muse--main--1.0--patch-191
2938      mwolson@gnu.org--2005/muse--main--1.0--patch-192
2939      mwolson@gnu.org--2005/muse--main--1.0--patch-193
2940      mwolson@gnu.org--2005/muse--main--1.0--patch-194
2941      mwolson@gnu.org--2005/muse--main--1.0--patch-195
2942      mwolson@gnu.org--2005/muse--main--1.0--patch-196
2943      mwolson@gnu.org--2005/muse--main--1.0--patch-197
2944      mwolson@gnu.org--2005/muse--main--1.0--patch-198
2945      mwolson@gnu.org--2005/muse--main--1.0--patch-199
2946      mwolson@gnu.org--2005/muse--main--1.0--patch-200
2947      mwolson@gnu.org--2005/muse--main--1.0--patch-201
2948      mwolson@gnu.org--2005/muse--main--1.0--patch-202
2949      mwolson@gnu.org--2005/muse--main--1.0--patch-203
2950      mwolson@gnu.org--2005/muse--main--1.0--patch-204
2951      mwolson@gnu.org--2005/muse--main--1.0--patch-205
2952      mwolson@gnu.org--2005/muse--main--1.0--patch-206
2953      mwolson@gnu.org--2005/muse--main--1.0--patch-207
2954      mwolson@gnu.org--2005/muse--main--1.0--patch-208
2955      mwolson@gnu.org--2005/muse--main--1.0--patch-209
2956      mwolson@gnu.org--2005/muse--main--1.0--patch-210
2957      mwolson@gnu.org--2005/muse--main--1.0--patch-211
2958      mwolson@gnu.org--2005/muse--main--1.0--patch-212
2959      mwolson@gnu.org--2005/muse--main--1.0--patch-213
2960      mwolson@gnu.org--2005/muse--main--1.0--patch-214
2961      mwolson@gnu.org--2005/muse--main--1.0--patch-215
2962      mwolson@gnu.org--2005/muse--main--1.0--patch-216
2963      mwolson@gnu.org--2005/muse--main--1.0--patch-217
2964      mwolson@gnu.org--2005/muse--main--1.0--patch-218
2965      mwolson@gnu.org--2005/muse--main--1.0--patch-219
2966      mwolson@gnu.org--2005/muse--main--1.0--patch-220
2967      mwolson@gnu.org--2005/muse--main--1.0--patch-221
2968      mwolson@gnu.org--2005/muse--main--1.0--patch-222
2969      mwolson@gnu.org--2005/muse--main--1.0--patch-223
2970      mwolson@gnu.org--2005/muse--main--1.0--patch-224
2971      mwolson@gnu.org--2005/muse--main--1.0--patch-225
2972      mwolson@gnu.org--2005/muse--main--1.0--patch-226
2973      mwolson@gnu.org--2005/muse--main--1.0--patch-227
2974      mwolson@gnu.org--2005/muse--main--1.0--patch-228
2975      mwolson@gnu.org--2005/muse--main--1.0--patch-229
2976      mwolson@gnu.org--2005/muse--main--1.0--patch-230
2977      mwolson@gnu.org--2005/muse--main--1.0--patch-231
2978      mwolson@gnu.org--2005/muse--main--1.0--patch-232
2979      mwolson@gnu.org--2005/muse--main--1.0--patch-233
2980      mwolson@gnu.org--2005/muse--main--1.0--patch-234
2981      mwolson@gnu.org--2005/muse--main--1.0--patch-235
2982      mwolson@gnu.org--2005/muse--main--1.0--patch-236
2983      mwolson@gnu.org--2005/muse--main--1.0--patch-237
2984      mwolson@gnu.org--2005/muse--main--1.0--patch-238
2985      mwolson@gnu.org--2005/muse--main--1.0--patch-239
2986      mwolson@gnu.org--2005/muse--main--1.0--patch-240
2987      mwolson@gnu.org--2005/muse--main--1.0--patch-241
2988      mwolson@gnu.org--2005/muse--main--1.0--patch-242
2989      mwolson@gnu.org--2005/muse--main--1.0--patch-243
2990      mwolson@gnu.org--2005/muse--main--1.0--patch-244
2991      mwolson@gnu.org--2005/muse--main--1.0--patch-245
2992      mwolson@gnu.org--2005/muse--main--1.0--patch-246
2993      mwolson@gnu.org--2005/muse--main--1.0--patch-247
2994      mwolson@gnu.org--2005/muse--main--1.0--patch-248
2995      mwolson@gnu.org--2005/muse--main--1.0--patch-249
2996      mwolson@gnu.org--2005/muse--main--1.0--patch-250
2997      mwolson@gnu.org--2005/muse--main--1.0--patch-251
2998      mwolson@gnu.org--2005/muse--main--1.0--patch-252
2999      mwolson@gnu.org--2005/muse--main--1.0--patch-253
3000      mwolson@gnu.org--2005/muse--main--1.0--patch-254
3001      mwolson@gnu.org--2005/muse--main--1.0--patch-255
3002      mwolson@gnu.org--2005/muse--main--1.0--patch-256
3003      mwolson@gnu.org--2005/muse--main--1.0--patch-257
3004      mwolson@gnu.org--2005/muse--main--1.0--patch-258
3005      mwolson@gnu.org--2005/muse--main--1.0--patch-259
3006      mwolson@gnu.org--2005/muse--main--1.0--patch-260
3007      mwolson@gnu.org--2005/muse--main--1.0--patch-261
3008      mwolson@gnu.org--2005/muse--main--1.0--patch-262
3009      mwolson@gnu.org--2005/muse--main--1.0--patch-263
3010      mwolson@gnu.org--2005/muse--main--1.0--patch-264
3011      mwolson@gnu.org--2005/muse--main--1.0--patch-265
3012      mwolson@gnu.org--2005/muse--main--1.0--patch-266
3013      mwolson@gnu.org--2005/muse--main--1.0--patch-267
3014      mwolson@gnu.org--2005/muse--main--1.0--patch-268
3015      mwolson@gnu.org--2005/muse--main--1.0--patch-269
3016      mwolson@gnu.org--2005/muse--main--1.0--patch-270
3017      mwolson@gnu.org--2005/muse--main--1.0--patch-271
3018      mwolson@gnu.org--2005/muse--main--1.0--patch-272
3019      mwolson@gnu.org--2005/muse--main--1.0--patch-273
3020      mwolson@gnu.org--2005/muse--main--1.0--patch-274
3021      mwolson@gnu.org--2005/muse--main--1.0--patch-275
3022      mwolson@gnu.org--2005/muse--main--1.0--patch-276
3023      mwolson@gnu.org--2005/muse--main--1.0--patch-277
3024      mwolson@gnu.org--2005/muse--main--1.0--patch-278
3025      mwolson@gnu.org--2005/muse--main--1.0--patch-279
3026      mwolson@gnu.org--2005/muse--main--1.0--patch-280
3027      mwolson@gnu.org--2005/muse--main--1.0--patch-281
3028      mwolson@gnu.org--2005/muse--main--1.0--patch-282
3029      mwolson@gnu.org--2005/muse--main--1.0--patch-283
3030      mwolson@gnu.org--2005/muse--main--1.0--patch-284
3031      mwolson@gnu.org--2005/muse--main--1.0--patch-285
3032      mwolson@gnu.org--2005/muse--main--1.0--patch-286
3033      mwolson@gnu.org--2005/muse--main--1.0--patch-287
3034      mwolson@gnu.org--2005/muse--main--1.0--patch-288
3035      mwolson@gnu.org--2005/muse--main--1.0--patch-289
3036      mwolson@gnu.org--2005/muse--main--1.0--patch-290
3037      mwolson@gnu.org--2005/muse--main--1.0--patch-291
3038      mwolson@gnu.org--2005/muse--main--1.0--patch-292
3039      mwolson@gnu.org--2005/muse--main--1.0--patch-293
3040      mwolson@gnu.org--2005/muse--main--1.0--patch-294
3041      mwolson@gnu.org--2005/muse--main--1.0--patch-295
3042      mwolson@gnu.org--2005/muse--main--1.0--patch-296
3043      mwolson@gnu.org--2005/muse--main--1.0--patch-297
3044      mwolson@gnu.org--2005/muse--main--1.0--patch-298
3045      mwolson@gnu.org--2005/muse--main--1.0--patch-299
3046      mwolson@gnu.org--2005/muse--main--1.0--patch-300
3047      mwolson@gnu.org--2005/muse--main--1.0--patch-301
3048      mwolson@gnu.org--2005/muse--main--1.0--patch-302
3049      mwolson@gnu.org--2005/muse--main--1.0--patch-303
3050      mwolson@gnu.org--2005/muse--main--1.0--patch-304
3051      mwolson@gnu.org--2005/muse--main--1.0--patch-305
3052      mwolson@gnu.org--2005/muse--main--1.0--patch-306
3053      mwolson@gnu.org--2005/muse--main--1.0--patch-307
3054      mwolson@gnu.org--2005/muse--main--1.0--patch-308
3055      mwolson@gnu.org--2005/muse--main--1.0--patch-309
3056      mwolson@gnu.org--2005/muse--main--1.0--patch-310
3057      mwolson@gnu.org--2005/muse--main--1.0--patch-311
3058      mwolson@gnu.org--2005/muse--main--1.0--patch-312
3059      mwolson@gnu.org--2005/muse--main--1.0--patch-313
3060      mwolson@gnu.org--2005/muse--main--1.0--patch-314
3061      mwolson@gnu.org--2005/muse--main--1.0--patch-315
3062      mwolson@gnu.org--2005/muse--main--1.0--patch-316
3063      mwolson@gnu.org--2005/muse--main--1.0--patch-317
3064      mwolson@gnu.org--2005/muse--main--1.0--patch-318
3065      mwolson@gnu.org--2005/muse--main--1.0--patch-319
3066      mwolson@gnu.org--2005/muse--main--1.0--patch-320
3067      mwolson@gnu.org--2005/muse--main--1.0--patch-321
3068      mwolson@gnu.org--2005/muse--main--1.0--patch-322
3069      mwolson@gnu.org--2005/muse--main--1.0--patch-323
3070      mwolson@gnu.org--2005/muse--main--1.0--patch-324
3071      mwolson@gnu.org--2005/muse--main--1.0--patch-325
3072      mwolson@gnu.org--2005/muse--main--1.0--patch-326
3073      mwolson@gnu.org--2005/muse--main--1.0--patch-327
3074      mwolson@gnu.org--2005/muse--main--1.0--patch-328
3075      mwolson@gnu.org--2005/muse--main--1.0--patch-329
3076      mwolson@gnu.org--2005/muse--main--1.0--patch-330
3077      mwolson@gnu.org--2005/muse--main--1.0--patch-331
3078      mwolson@gnu.org--2005/muse--main--1.0--patch-332
3079      mwolson@gnu.org--2005/muse--main--1.0--patch-333
3080      mwolson@gnu.org--2005/muse--main--1.0--patch-334
3081      mwolson@gnu.org--2005/muse--main--1.0--patch-335
3082      mwolson@gnu.org--2005/muse--main--1.0--patch-336
3083      mwolson@gnu.org--2005/muse--main--1.0--patch-337
3084      mwolson@gnu.org--2005/muse--main--1.0--patch-338
3085      mwolson@gnu.org--2005/muse--main--1.0--patch-339
3086      mwolson@gnu.org--2005/muse--main--1.0--patch-340
3087      mwolson@gnu.org--2005/muse--main--1.0--patch-341
3088      mwolson@gnu.org--2005/muse--main--1.0--patch-342
3089      mwolson@gnu.org--2005/muse--main--1.0--patch-343
3090      mwolson@gnu.org--2005/muse--main--1.0--patch-344
3091      mwolson@gnu.org--2005/muse--main--1.0--patch-345
3092      mwolson@gnu.org--2005/muse--main--1.0--patch-346
3093      mwolson@gnu.org--2005/muse--main--1.0--patch-347
3094      mwolson@gnu.org--2005/muse--main--1.0--patch-348
3095      mwolson@gnu.org--2005/muse--main--1.0--patch-349
3096      mwolson@gnu.org--2005/muse--main--1.0--patch-350
3097      mwolson@gnu.org--2005/muse--main--1.0--patch-351
3098      mwolson@gnu.org--2005/muse--main--1.0--patch-352
3099      mwolson@gnu.org--2005/muse--main--1.0--patch-353
3100      mwolson@gnu.org--2005/muse--main--1.0--patch-354
3101      mwolson@gnu.org--2005/muse--main--1.0--patch-355
3102      mwolson@gnu.org--2005/muse--rel--3.02--base-0
3103      mwolson@gnu.org--2005/muse--rel--3.02--patch-1
3104      mwolson@gnu.org--2005/muse--rel--3.02--patch-2
3105      mwolson@gnu.org--2005/muse--rel--3.02--patch-3
3106      mwolson@gnu.org--2005/muse--rel--3.02--patch-4
3107      mwolson@gnu.org--2005/muse--rel--3.02--patch-5
3108      mwolson@gnu.org--2005/muse--rel--3.02--patch-6
3109      mwolson@gnu.org--2005/muse--rel--3.02--patch-7
3110      mwolson@gnu.org--2005/muse--rel--3.02--patch-8
3111      mwolson@gnu.org--2005/muse--rel--3.02--patch-11
3112      mwolson@gnu.org--2005/muse--rel--3.02--patch-13
3113      mwolson@gnu.org--2005/muse--rel--3.02--patch-14
3114      mwolson@gnu.org--2005/muse--rel--3.02--patch-15
3115      mwolson@gnu.org--2005/muse--rel--3.02--patch-17
3116      mwolson@gnu.org--2005/muse--rel--3.02--patch-18
3117      mwolson@gnu.org--2005/muse--rel--3.02--patch-19
3118      mwolson@gnu.org--2005/muse--rel--3.02--patch-20
3119      mwolson@gnu.org--2005/muse--rel--3.02--patch-21
3120      mwolson@gnu.org--2005/muse--rel--3.02--patch-22
3121      mwolson@gnu.org--2005/muse--rel--3.02--patch-23
3122      mwolson@gnu.org--2005/muse--rel--3.02--patch-25
3123      mwolson@gnu.org--2005/muse--rel--3.02--patch-27
3124      mwolson@gnu.org--2005/muse--rel--3.02--patch-28
3125      mwolson@gnu.org--2005/muse--rel--3.02--patch-29
3126      mwolson@gnu.org--2005/muse--rel--3.02--patch-35
3127      mwolson@gnu.org--2005/muse--rel--3.02--patch-36
3128      mwolson@gnu.org--2005/muse--rel--3.02--patch-37
3129      mwolson@gnu.org--2005/muse--rel--3.02--patch-53
3130      mwolson@gnu.org--2005/muse--rel--3.02--patch-54
3131      mwolson@gnu.org--2005/muse--rel--3.02--patch-55
3132      mwolson@gnu.org--2005/muse--rel--3.02--patch-56
3133      mwolson@member.fsf.org--2004/muse--main--1.0--base-0
3134      mwolson@member.fsf.org--2004/muse--main--1.0--patch-1
3135      mwolson@member.fsf.org--2004/muse--main--1.0--patch-2
3136      mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
3137      mwolson@member.fsf.org--2004/muse--mwolson--1.0--base-0
3138      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-1
3139      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-2
3140      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-3
3141      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-4
3142      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-5
3143      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-6
3144      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-7
3145      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-8