Fix #5899: muse-follow-name-at-mouse breaks mouse-yank-at-point.
[muse-el.git] / ChangeLog
blobd2e956664dca2223c01e92c980b4235699df4d97
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2006/muse--main--1.0
5 2006-07-27 22:28:13 GMT Michael Olson <mwolson@gnu.org> patch-167
7     Summary:
8       Fix #5899: muse-follow-name-at-mouse breaks mouse-yank-at-point.
9     Revision:
10       muse--main--1.0--patch-167
12     * lisp/muse-mode.el (muse-follow-name-at-mouse): Restore the point before
13       calling the fallback keybinding.  This fixes #5899.
14     
15     * lisp/muse-publish.el (muse-publish-escape-specials): Docfix.
16       (muse-publish-mark-link): Docfix.
17       (muse-link-specials): Docfix.
19     modified files:
20      ChangeLog lisp/muse-mode.el lisp/muse-publish.el lisp/muse.el
23 2006-07-27 20:46:38 GMT Michael Olson <mwolson@gnu.org> patch-166
25     Summary:
26       Make C-c C-t publish the current file in a more sensible way.
27     Revision:
28       muse--main--1.0--patch-166
30     * lisp/muse-mode.el (muse-mode-map): Make C-c C-t call
31       muse-project-publish-this-file instead of muse-publish-this file.  Make
32       C-c C-T call the latter.
33       (muse-browse-result): Use `muse-project-get-applicable-styles'.
34       (muse-follow-name-at-point): Docfix.
35     
36     * lisp/muse-project.el (muse-project-get-applicable-style): New function
37       that prompts the user for a style if more than one style applies to the
38       given file.
39       (muse-project-publish-this-file): New function that publishes the
40       currently-visited file according to `muse-project-alist', prompting if
41       more than one style applies.
42     
43     * lisp/muse-publish.el (muse-publish-this-file): Docfix.
44     
45     * muse.texi (Keystroke Summary): Update for the changes made.  C-c C-c
46       was not previously documented.
48     modified files:
49      ChangeLog lisp/muse-mode.el lisp/muse-project.el
50      lisp/muse-publish.el muse.texi
53 2006-07-27 19:36:31 GMT Michael Olson <mwolson@gnu.org> patch-165
55     Summary:
56       Implement interactive insertion of URLs.
57     Revision:
58       muse--main--1.0--patch-165
60     * lisp/muse-mode.el (muse-insert-map): Add binding for muse-insert-url.
61       (muse-insert-thing): Add text for URL to prompt.
62       (muse-insert-relative-link-to-file): Docfix, style fix.
63       (muse-insert-url): New function that reads a URL and description from
64       the user.
65     
66     * muse.texi (Keystroke Summary): Mention insert-url keybinding.
68     modified files:
69      ChangeLog lisp/muse-mode.el muse.texi
72 2006-07-27 18:50:50 GMT Michael Olson <mwolson@gnu.org> patch-164
74     Summary:
75       Make escaping of brackets in links work properly.
76     Revision:
77       muse--main--1.0--patch-164
79     * lisp/muse-colors.el (muse-colors-explicit-link): If the link has
80       escaped characters, display them unescaped.
81     
82     * lisp/muse-mode.el (muse-make-link): Handle case where we are given no
83       link.
84       (muse-edit-link-at-point): Unescape the link before presenting it to
85       the user for editing.
86     
87     * lisp/muse-publish.el (muse-publish-escape-specials-in-string): Minor
88       coding style fix.
89       (muse-publish-url): Unescape the link description before doing further
90       transforms on it.  The link has already been unescaped.
91     
92     * lisp/muse.el (muse-sort-by-rating): Minor coding style fix.
93       (muse-escape-specials-in-string): New function that escapes specials in
94       a string.  This differs from Muse's other specials-escaping routines in
95       that it replaces strings rather than characters, and is reversible if
96       the specials are defined properly.
97       (muse-replace-regexp-in-string): Docfix.
98       (muse-link-specials): New variable containing the specials that Muse
99       uses to handle syntactic issues with link text.  Namely: brackets.  The
100       percent sign must also be escaped since it is used in the escaped text.
101       (muse-link-escape, muse-link-unescape): Call
102       muse-escape-specials-in-string.  Embarrassingly, these functions
103       previously had no effect before.
105     modified files:
106      ChangeLog lisp/muse-colors.el lisp/muse-mode.el
107      lisp/muse-publish.el lisp/muse.el
110 2006-07-09 18:28:25 GMT Michael Olson <mwolson@gnu.org> patch-163
112     Summary:
113       Make space around emdash optional.
114     Revision:
115       muse--main--1.0--patch-163
117     * lisp/muse-publish.el (muse-publish-markup-regexps): Make space around
118       emdash optional.
120     modified files:
121      ChangeLog lisp/muse-publish.el
124 2006-07-08 20:38:12 GMT Michael Olson <mwolson@gnu.org> patch-162
126     Summary:
127       muse-latex: Make publishing of <contents> tags optional.
128     Revision:
129       muse--main--1.0--patch-162
131     * lisp/muse-html.el (muse-html-insert-contents): Use nreverse rather than
132       reverse for a minor speed boost.
133     
134     * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header): Only
135       insert a table of contents when muse-latex-permit-contents-tag is nil.
136       (muse-latexcjk-header): Make comments do the right thing.
137       (muse-latex-permit-contents-tag): New option that specifies whether we
138       should take action on the <contents> tag.
139       (muse-latex-finalize-buffer): If muse-latex-permit-contents-tag is
140       non-nil, publish a table of contents in the place where the <contents>
141       tag is.
142     
143     * muse.texi (LaTeX): Bring up-to-date with new options.
145     modified files:
146      ChangeLog lisp/muse-html.el lisp/muse-latex.el muse.texi
149 2006-07-04 05:00:35 GMT Michael Olson <mwolson@gnu.org> patch-161
151     Summary:
152       Fix publishing bug introduced in last patch.
153     Revision:
154       muse--main--1.0--patch-161
156     * lisp/muse-project.el (muse-current-output-style): New variable that
157       holds the output style that is currently being used to publish a file.
158       (muse-project-page-file): When a subdirectory is used, only record
159       matches.  Sort using matches, not entire list.
160       (muse-project-resolve-link): Docfix.
161       (muse-project-current-output-style): New function that returns the
162       current output style.
163       (muse-project-link-page): Use the local output style, not the other
164       kind of style.
165       (muse-project-publish-file): Set muse-current-output-style.
166     
167     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use
168       muse-current-output-style.
170     modified files:
171      ChangeLog lisp/muse-project.el lisp/muse-wiki.el
174 2006-07-04 04:06:44 GMT Michael Olson <mwolson@gnu.org> patch-160
176     Summary:
177       Make links to files in subdirectories work.
178     Revision:
179       muse--main--1.0--patch-160
181     * lisp/muse-project.el (muse-project-alist-styles): Fix stray comment.
182       (muse-project-page-file): Change to a defun.  Handle files with the
183       same name but in different directories.  Handle case where a
184       subdirectory is given in a link.
185       (muse-project-choose-style-by-link-suffix): Move from muse-wiki.el.
186       (muse-project-applicable-styles): Sort entries according to how late in
187       the string the match for the include regexp occurs.
188       (muse-project-resolve-link): Moved from muse-wiki.el.  Strip
189       subdirectory from page because we have already determined the correct
190       path.
191       (muse-project-link-page): New function that resolves a link to a page
192       in the same project.
193     
194     * lisp/muse-publish.el (muse-publish-link-page): Simple wrapper for
195       muse-project-link-page.
196       (muse-publish-classify-url): Use muse-publish-link-page.
197     
198     * lisp/muse-regexps.el (muse-file-regexp): Don't match subdirectory
199       links.
200     
201     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix)
202       (muse-wiki-resolve-project-page-1): Move to muse-project.el.
203       (muse-wiki-resolve-project-page): Use muse-project-resolve-link.
204     
205     * lisp/muse.el (muse-collect-alist): New function that is like assoc, but
206       returns a list of matches.
207       (muse-sort-with-closure): New convenience macro for using `sort' with a
208       closure argument.
209       (muse-sort-by-rating): New function that takes a rating list and sorts
210       it, discarding the rating.
211     
212     * muse.texi (Projects): Mention that you can use regexps in place of
213       directory names in project entries.  Caught that when source-diving.
215     modified files:
216      ChangeLog lisp/muse-project.el lisp/muse-publish.el
217      lisp/muse-regexps.el lisp/muse-wiki.el lisp/muse.el muse.texi
220 2006-07-03 01:33:17 GMT Michael Olson <mwolson@gnu.org> patch-159
222     Summary:
223       Fix publishing of blank table fields.
224     Revision:
225       muse--main--1.0--patch-159
227     * lisp/muse-regexps.el (muse-table-field-regexp): Make publishing blank
228       fields work properly.
230     modified files:
231      ChangeLog lisp/muse-regexps.el
234 2006-07-03 00:39:47 GMT Michael Olson <mwolson@gnu.org> patch-158
236     Summary:
237       Make muse-publish-markup-buffer usable even with no current file.
238     Revision:
239       muse--main--1.0--patch-158
241     * lisp/muse-publish.el (muse-publish-markup-buffer): Make this work even
242       if no file is associated with the buffer.  Thanks to dds for the fix.
244     modified files:
245      ChangeLog lisp/muse-publish.el
248 2006-06-26 18:13:59 GMT Michael Olson <mwolson@gnu.org> patch-157
250     Summary:
251       Don't use illegal C-c i keybinding.
252     Revision:
253       muse--main--1.0--patch-157
255     * lisp/muse-mode.el (muse-mode-map): Remove "C-c i" binding and use "C-c
256       TAB" for that purpose instead.  Thanks to Adrian Aichner for the
257       report.
258     
259     * muse.texi (Keystroke Summary): Update documentation for the above
260       change.
262     modified files:
263      ChangeLog lisp/muse-mode.el muse.texi
266 2006-06-12 13:58:59 GMT Michael Olson <mwolson@gnu.org> patch-156
268     Summary:
269       Improve ignored files regexp.
270     Revision:
271       muse--main--1.0--patch-156
273     * lisp/muse-project.el (muse-project-ignore-regexp): Ignore Darcs and SVN
274       metadata directories, and use a better matching technique for autosave
275       files.  Previously, files with '#' in them were ignored erroneously.
277     modified files:
278      ChangeLog lisp/muse-project.el
281 2006-06-12 13:55:17 GMT Michael Olson <mwolson@gnu.org> patch-155
283     Summary:
284       Provide example for <include> in Muse manual.
285     Revision:
286       muse--main--1.0--patch-155
288     * muse.texi (Tag Summary): Give an example of using the <include> tag.
290     modified files:
291      ChangeLog muse.texi
294 2006-06-10 06:49:08 GMT Michael Olson <mwolson@gnu.org> patch-154
296     Summary:
297       Make PDF version of the Muse manual be generated correctly.
298     Revision:
299       muse--main--1.0--patch-154
301     * muse.texi (Tag Summary): Use a slightly different syntax for the table
302       items.  Even though texinfo published the HTML version correctly, the
303       PDF version was not working.  Thanks to mirko.vukovic for the report.
305     modified files:
306      ChangeLog muse.texi
309 2006-06-03 23:38:12 GMT Michael Olson <mwolson@gnu.org> patch-153
311     Summary:
312       Fix bug introduced in last patch.
313     Revision:
314       muse--main--1.0--patch-153
316     * muse-publish.el (muse-publish-include-tag): Fix bug introduced in last
317       patch.
319     modified files:
320      ChangeLog lisp/muse-publish.el
323 2006-06-03 21:18:35 GMT Michael Olson <mwolson@gnu.org> patch-152
325     Summary:
326       Move Debian stuff into its own branch.
327     Revision:
328       muse--main--1.0--patch-152
330     * debian: Moved to muse--debian--0.
332     removed files:
333      debian/.arch-ids/=id debian/.arch-ids/NEWS.id
334      debian/.arch-ids/changelog.id debian/.arch-ids/compat.id
335      debian/.arch-ids/control.id debian/.arch-ids/copyright.id
336      debian/.arch-ids/emacsen-install.id
337      debian/.arch-ids/emacsen-remove.id
338      debian/.arch-ids/emacsen-startup.id
339      debian/.arch-ids/muse-el.dirs.id
340      debian/.arch-ids/muse-el.docs.id
341      debian/.arch-ids/muse-el.examples.id
342      debian/.arch-ids/muse-el.info.id debian/.arch-ids/rules.id
343      debian/NEWS debian/changelog debian/compat debian/control
344      debian/copyright debian/emacsen-install debian/emacsen-remove
345      debian/emacsen-startup debian/muse-el.dirs debian/muse-el.docs
346      debian/muse-el.examples debian/muse-el.info debian/rules
348     modified files:
349      ChangeLog
351     removed directories:
352      debian debian/.arch-ids
355 2006-06-03 21:12:36 GMT Michael Olson <mwolson@gnu.org> patch-151
357     Summary:
358       Provide some markup shortcuts for the <include> tag.
359     Revision:
360       muse--main--1.0--patch-151
362     * lisp/muse-publish.el (muse-publish-examplify-buffer): New function that
363       transforms the current buffer as if it were an <example> region.
364       (muse-publish-versify-buffer): Ditto, but for <verse> regions.
365       (muse-publish-include-tag): Docfix.  Support special cases for
366       markup="example" and markup="verse".
367     
368     * muse.texi (Tag Summary): Update for new <include> shortcuts.
370     modified files:
371      ChangeLog lisp/muse-publish.el muse.texi
374 2006-06-01 04:14:45 GMT Michael Olson <mwolson@gnu.org> patch-150
376     Summary:
377       Really update ChangeLog.2005.
378     Revision:
379       muse--main--1.0--patch-150
381     * ChangeLog.2005: Really update this.
383     new files:
384      .arch-ids/ChangeLog.2005.id ChangeLog.2005
386     removed files:
387      .arch-ids/ChangeLog.2005.id ChangeLog.2005
389     modified files:
390      .arch-ids/muse.texi.id ChangeLog
393 2006-06-01 04:05:33 GMT Michael Olson <mwolson@gnu.org> patch-149
395     Summary:
396       Second attempt at fixing XEmacs beta problem.
397     Revision:
398       muse--main--1.0--patch-149
400     * lisp/Makefile (ELC): Revert previous change, now that I have a hunch
401       about what causes the problem.
402     
403     * lisp/muse-publish.el (muse-publish-markup-regexps): Move anchor markup
404       lower to future-proof an idea that I have.
405       (muse-style-element): Make this a function instead of a substitution,
406       especially since it is potentially recursive.
408     modified files:
409      ChangeLog ChangeLog.2005 lisp/Makefile lisp/muse-publish.el
412 2006-06-01 03:47:49 GMT Michael Olson <mwolson@gnu.org> patch-148
414     Summary:
415       Update ChangeLogs.
416     Revision:
417       muse--main--1.0--patch-148
419     * ChangeLog: Rename from ChangeLog.2006 to follow Emacs conventions.
420     
421     * ChangeLog.2005: Mention ChangeLog.2004 for earlier changes.
422     
423     * lisp/muse-regexps.el: Add a few comments.
424     
425     * muse.texi (Tag Summary): Add example of <tag /> use.
427     modified files:
428      ChangeLog ChangeLog.2005 lisp/muse-regexps.el muse.texi
431 2006-06-01 03:44:00 GMT Michael Olson <mwolson@gnu.org> patch-147
433     Summary:
434       Try to work around a bug in XEmacs beta.
435     Revision:
436       muse--main--1.0--patch-147
438     * lisp/Makefile (ELC): Compile muse-publish.el first, to try to work
439       around a bug in XEmacs beta.
441     modified files:
442      ChangeLog lisp/Makefile
445 2006-05-30 18:21:51 GMT Michael Olson <mwolson@gnu.org> patch-146
447     Summary:
448       Fix tag-publishing in <insert> and <markup>.
449     Revision:
450       muse--main--1.0--patch-146
452     * lisp/muse-publish.el (muse-insert-file-or-string): Don't set
453       muse-publish-markup-tags, since that messes other things up for
454       <markup> and <insert>.
455       (muse-inhibit-style-tags): New variable that specifies whether to
456       disable looking for tag definitions that are specific to the current
457       style.  This is useful for publishing headers and footers.
458       (muse-publish-markup-tag): Use `muse-inhibit-style-tags', but disable
459       it unconditionally when calling a tag's function, so that the effect
460       does not propagate.
461     
462     * lisp/muse.el (muse-file-remote-p): New function that detects whether
463       the given file path is a remote location.  This is not used yet.
465     modified files:
466      ChangeLog lisp/muse-publish.el lisp/muse.el
469 2006-05-30 00:19:37 GMT Michael Olson <mwolson@gnu.org> patch-145
471     Summary:
472       Rename muse-convert.el to muse-latex-convert.el.
473     Revision:
474       muse--main--1.0--patch-145
476     * lisp/muse-convert-latex.el: Rename from muse-convert.el, since more
477       files of this nature are expected in the future.
479     modified files:
480      ChangeLog Makefile.defs debian/changelog
481      lisp/muse-convert-latex.el
483     renamed files:
484      lisp/.arch-ids/muse-convert.el.id
485        ==> lisp/.arch-ids/muse-convert-latex.el.id
486      lisp/muse-convert.el
487        ==> lisp/muse-convert-latex.el
490 2006-05-29 21:34:34 GMT Michael Olson <mwolson@gnu.org> patch-144
492     Summary:
493       List all tags in Muse's documentation.
494     Revision:
495       muse--main--1.0--patch-144
497     * lisp/muse-publish.el (muse-publish-markup-region): Remove cruft that I
498       was trying out.
499       (muse-publish-contents-depth): New option that specifies the maximum
500       depth of headings to include with <contents> tags.
501       (muse-publish-contents-tag): Use it.
502       (muse-publish-include-tag): Docfix.
503     
504     * muse.texi (Paragraphs): Mention <center> and <quote> tags.
505       (Tag Summary): New section that defines the syntax used for tags and
506       gives a complete listing of all of the tags that Muse comes with, as
507       well as some documentation for each tag.
508       (HTML): Update documentation.
510     modified files:
511      ChangeLog lisp/muse-publish.el muse.texi
514 2006-05-29 18:48:41 GMT Michael Olson <mwolson@gnu.org> patch-143
516     Summary:
517       Implement <include> and <markup> tags.
518     Revision:
519       muse--main--1.0--patch-143
521     * lisp/muse-html.el (muse-html-markup-regexps): Make paragraph detection
522       work better when a paragraph follows some other markup, especially
523       tables.
524     
525     * lisp/muse-publish.el (muse-publish-markup-tags): Add <include> and
526       <markup> tags.
527       (muse-publish-markup): Fix edge case.
528       (muse-publish-markup-header-footer-tags): New option that specifies
529       which tags may be used when publishing headers and footers.
530       (muse-insert-file-or-string): Use
531       muse-publish-markup-header-footer-tags instead of a hard-coded value.
532       (muse-publish-markup-region): Make title and style arguments optional,
533       so that this is easier to use.
534       (muse-publish-include-tag): Implement <include> tag.  I've tested all
535       of the cases I can think of, and it works.
536       (muse-publish-mark-up-tag): Implement <markup> tag.  This is handy for
537       times when you want to publish Muse markup in headers and footers.
538       Adding a table of contents to a header should be particularly easy now.
540     modified files:
541      ChangeLog lisp/muse-html.el lisp/muse-publish.el
544 2006-05-29 14:59:31 GMT Michael Olson <mwolson@gnu.org> patch-142
546     Summary:
547       Make ChangeLog conform to conventions better.
548     Revision:
549       muse--main--1.0--patch-142
551     * ChangeLog: Renamed from ChangeLog.2006 in order to follow Emacs
552       conventions better.  Specify the buffer encoding.  Add helpful notices
553       near the bottom of this and ChangeLog.2005.
555     modified files:
556      ChangeLog ChangeLog.2004 ChangeLog.2005 debian/rules
557      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/base-0
559     renamed files:
560      .arch-ids/ChangeLog.2006.id
561        ==> .arch-ids/ChangeLog.id
562      ChangeLog.2006
563        ==> ChangeLog
566 2006-05-28 07:45:09 GMT Michael Olson <mwolson@gnu.org> patch-141
568     Summary:
569       Provide explanation of how to invoke getstamps.py.
570     Revision:
571       muse--main--1.0--patch-141
573     * contrib/pyblosxom/getstamps.py: Strip the Muse file extension when
574       writing the timestamps file.
575     
576     * contrib/pyblosxom/make-blog: New example script that shows how to
577       invoke getstamps.py.
578     
579     * examples/mwolson/stylesheets/common.css: Update.
580     
581     * muse.texi (Blosxom Requirements): Mention the new example script.
582       Additionally, explain how to call getstamps.py.
584     new files:
585      contrib/pyblosxom/.arch-ids/make-blog.id
586      contrib/pyblosxom/make-blog
588     modified files:
589      ChangeLog.2006 contrib/pyblosxom/getstamps.py
590      examples/mwolson/stylesheets/common.css muse.texi
593 2006-05-28 06:40:46 GMT Michael Olson <mwolson@gnu.org> patch-140
595     Summary:
596       muse-blosxom: Perform extra check on category in new entry.
597     Revision:
598       muse--main--1.0--patch-140
600     * lisp/muse-blosxom.el (muse-blosxom-new-entry): Make it impossible to
601       write an invalid categories line, which could cause other mysterious
602       troubles later on.
604     modified files:
605      ChangeLog.2006 lisp/muse-blosxom.el
608 2006-05-28 06:31:11 GMT Michael Olson <mwolson@gnu.org> patch-139
610     Summary:
611       Improve documentation in the included pyblosxom plug-ins.
612     Revision:
613       muse--main--1.0--patch-139
615     * contrib/pyblosxom/getstamps.py, hardcodedates.py: Improve
616       documentation.  The initial wording was very confusing.
618     modified files:
619      ChangeLog.2006 contrib/pyblosxom/getstamps.py
620      contrib/pyblosxom/hardcodedates.py
623 2006-05-27 06:25:32 GMT Michael Olson <mwolson@gnu.org> patch-138
625     Summary:
626       Minor tweak in my example CSS stylesheet.
627     Revision:
628       muse--main--1.0--patch-138
630     * examples/mwolson/stylesheets/common.css: Be careful about
631       distinguishing between links and anchors.
633     modified files:
634      ChangeLog.2006 examples/mwolson/stylesheets/common.css
637 2006-05-26 14:38:01 GMT Michael Olson <mwolson@gnu.org> patch-137
639     Summary:
640       Use better fallback when displaying warnings.
641     Revision:
642       muse--main--1.0--patch-137
644     * lisp/muse.el (muse-display-warning): Use a better fallback if
645       `display-warning' does not exist.
647     modified files:
648      ChangeLog.2006 lisp/muse.el
651 2006-05-25 21:23:55 GMT Michael Olson <mwolson@gnu.org> patch-136
653     Summary:
654       Make the Table of Contents CSS easier to customize.
655     Revision:
656       muse--main--1.0--patch-136
658     * examples/mwolson/muse-init.el (muse-bad-link): Update.
659     
660     * examples/mwolson/stylesheets/*.css: Update and add license.
661     
662     * lisp/muse-html.el (muse-html-insert-contents): Surround contents with
663       <div> section for easier CSS hacking.  Remove the class attribute of
664       other elements, since we don't need it anymore.
666     modified files:
667      ChangeLog.2006 Makefile.defs debian/changelog
668      examples/mwolson/muse-init.el
669      examples/mwolson/stylesheets/blog.css
670      examples/mwolson/stylesheets/common.css
671      examples/mwolson/stylesheets/print.css
672      examples/mwolson/stylesheets/screen.css lisp/muse-html.el
675 2006-05-24 03:30:40 GMT Michael Olson <mwolson@gnu.org> patch-135
677     Summary:
678       Fix a potential unbounded recursive call.
679     Revision:
680       muse--main--1.0--patch-135
682     * lisp/muse-project.el (muse-updating-file-alist-p): New variable that
683       prevents calls to muse-project-file-alist in its hook functions from
684       going into an infinite loop.
685       (muse-project-file-alist): Use it.
686     
687     * lisp/muse-wiki.el (muse-wiki-updating-wikiword-p): Remove.  This is now
688       handled in muse-project.el.
689       (muse-wiki-update-local-wikiword-regexp): Remove the use of
690       muse-wiki-updating-wikiword-p.
692     modified files:
693      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
696 2006-05-23 18:10:49 GMT Michael Olson <mwolson@gnu.org> patch-134
698     Summary:
699       Try not to call tramp during publishing.
700     Revision:
701       muse--main--1.0--patch-134
703     * lisp/muse-publish.el (muse-insert-file-or-string): Do not call
704       file-readable-p on text that has a newline in it, because this could
705       cause tramp to be invoked.
707     modified files:
708      ChangeLog.2006 lisp/muse-publish.el
711 2006-05-23 15:30:02 GMT Michael Olson <mwolson@gnu.org> patch-133
713     Summary:
714       Make links colored blue by default.
715     Revision:
716       muse--main--1.0--patch-133
718     * lisp/muse-colors.el (muse-link): Make links blue by default, like most
719       other Emacs modes do.
721     modified files:
722      ChangeLog.2006 lisp/muse-colors.el
725 2006-05-23 14:24:58 GMT Michael Olson <mwolson@gnu.org> patch-132
727     Summary:
728       Fix publishing error with tables and initial whitespace.
729     Revision:
730       muse--main--1.0--patch-132
732     * lisp/muse-publish.el (muse-publish-markup-regexps): Move table rule
733       above blockquote and centered text, so that indented but blank initial
734       table fields publish correctly.
735     
736     * lisp/muse-regexps.el (muse-table-line-regexp): Make this much simpler.
737       We accept anything that has at least one field delimiter.
739     modified files:
740      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
743 2006-05-18 06:58:58 GMT Michael Olson <mwolson@gnu.org> patch-131
745     Summary:
746       Add muse-protocol-iw.el to experimental folder.
747     Revision:
748       muse--main--1.0--patch-131
750     * experimental/muse-protocol-iw.el: New experimental file that implements
751       an interwiki protocol of sorts that handles subdirectories.
753     new files:
754      experimental/.arch-ids/muse-protocol-iw.el.id
755      experimental/muse-protocol-iw.el
757     modified files:
758      AUTHORS ChangeLog.2006 experimental/muse-split.el
761 2006-05-18 06:43:30 GMT Michael Olson <mwolson@gnu.org> patch-130
763     Summary:
764       Add muse-split.el to experimental folder.
765     Revision:
766       muse--main--1.0--patch-130
768     * experimental/muse-split.el: New experimental file that splits published
769       Muse files into several smaller files.
771     new files:
772      experimental/.arch-ids/muse-split.el.id
773      experimental/muse-split.el
775     modified files:
776      AUTHORS ChangeLog.2006 Makefile.defs debian/changelog
777      debian/control
780 2006-05-18 06:03:49 GMT Michael Olson <mwolson@gnu.org> patch-129
782     Summary:
783       muse-wiki: Make the interwiki resolver a bit more clever.
784     Revision:
785       muse--main--1.0--patch-129
787     * lisp/muse-project.el (muse-project-choose-style): New function that
788       chooses a style from a list of styles, given a user-supplied test.
789     
790     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix): New function
791       that is used along with `muse-project-choose-style' to pick the first
792       style that matches a given value for :link-prefix.
793       (muse-wiki-resolve-project-page-1): New function split from
794       `muse-wiki-resolve-project-page' for readability.  Try to match files
795       that have the same link-suffix.  This should hopefully fix a bug
796       noticed by Hans Ekbrand.
798     modified files:
799      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
802 2006-05-18 01:24:04 GMT Michael Olson <mwolson@gnu.org> patch-128
804     Summary:
805       Fix bug where links with :: in them were marked up as lists.
806     Revision:
807       muse--main--1.0--patch-128
809     * lisp/muse-html.el, lisp/muse-publish.el, lisp/muse-xml-common.el:
810       Change noemphasis property to muse-link.
811     
812     * lisp/muse.el (muse-forward-list-item): Respect muse-link property.
813     
814     * lisp/muse-publish.el (muse-publish-surround-text)
815       (muse-publish-markup-list): Ditto.  This should fix a bug.
816       (muse-publish-markup-list): Docfix.
817       (muse-publish-mark-link): Rename from `muse-publish-mark-noemphasis'.
818     
819     * lisp/muse-regexps.el (muse-list-item-regexp, muse-dl-term-regexp):
820       There must be either one or more spaces or a single newline after the
821       colons.  This prevents an ambiguity with the double-colon muse-wiki
822       interwiki delimiter.
824     modified files:
825      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
826      lisp/muse-regexps.el lisp/muse-xml-common.el lisp/muse.el
829 2006-05-17 21:27:19 GMT Michael Olson <mwolson@gnu.org> patch-127
831     Summary:
832       DTRT with explicit links that have no description.
833     Revision:
834       muse--main--1.0--patch-127
836     * lisp/muse-publish.el (muse-publish-markup-link): If we are given an
837       explicit link without a description, use the name of the linked page.
839     modified files:
840      ChangeLog.2006 lisp/muse-publish.el
843 2006-05-16 15:53:56 GMT Michael Olson <mwolson@gnu.org> patch-126
845     Summary:
846       Fix emdash in link description bug.
847     Revision:
848       muse--main--1.0--patch-126
850     * lisp/muse-publish.el (muse-publish-markup-emdash): Don't markup emdash
851       if we are in a link, since otherwise it will be incorrectly escaped.
852       Thanks to Chiyuan Zhang for the report.
854     modified files:
855      ChangeLog.2006 Makefile.defs debian/changelog
856      lisp/muse-publish.el
859 2006-05-12 04:16:43 GMT Michael Olson <mwolson@gnu.org> patch-125
861     Summary:
862       Fix #5925: Emphasis on item breaks lists.
863     Revision:
864       muse--main--1.0--patch-125
866     * lisp/muse-blosxom.el ("blosxom-html", "blosxom-xhtml"): Use find-file
867       as the browsing function.
868     
869     * lisp/muse-mode.el (muse-browse-result): Only include styles that match
870       the current file.
871     
872     * lisp/muse.el (muse-list-item-critical-point): Take a new argument named
873       `offset' into account, in case the list-item regexp is nested in
874       another group.
875       (muse-forward-list-item): Call `muse-list-item-critical-point' with an
876       offset of 1.  This should fix an unpleasant list-as-blockquote error
877       that was noticed recently.  Thanks to John Sullivan for the report.
879     modified files:
880      ChangeLog.2006 lisp/muse-blosxom.el lisp/muse-mode.el
881      lisp/muse.el
884 2006-05-09 00:55:02 GMT Michael Olson <mwolson@gnu.org> patch-124
886     Summary:
887       Fix a couple of beginning-of-buffer errors.
888     Revision:
889       muse--main--1.0--patch-124
891     * muse-mode.el (muse-mode-flyspell-p, muse-link-at-point): Make sure we
892       don't throw an error if at the beginning of the buffer.  Thanks to John
893       Sullivan for the report.
895     modified files:
896      ChangeLog.2006 lisp/muse-mode.el
899 2006-05-08 23:42:42 GMT Michael Olson <mwolson@gnu.org> patch-123
901     Summary:
902       muse.texi: Change use of @subsubheading to @subheading.
903     Revision:
904       muse--main--1.0--patch-123
906     * muse.texi: Change use of @subsubheading to @subheading throughout
907       document.
909     modified files:
910      ChangeLog.2006 muse.texi
913 2006-05-08 23:30:58 GMT Michael Olson <mwolson@gnu.org> patch-122
915     Summary:
916       muse.texi: Change subsections to subheadings.
917     Revision:
918       muse--main--1.0--patch-122
920     (Author: John Sullivan <john@wjsullivan.net>)
921     
922     * muse.texi: Change @subsection and @strong to @subheading throughout
923       document.
925     modified files:
926      ChangeLog.2006 Makefile.defs debian/changelog muse.texi
928     new patches:
929      john@wjsullivan.net--2006/muse--johnsu01--0--patch-2
930      john@wjsullivan.net--2006/muse--johnsu01--0--patch-3
931      john@wjsullivan.net--2006/muse--johnsu01--0--patch-4
934 2006-05-08 08:53:03 GMT Michael Olson <mwolson@gnu.org> patch-121
936     Summary:
937       Update keystrokes used in muse-mode, as well as docs.
938     Revision:
939       muse--main--1.0--patch-121
941     * lisp/muse-mode.el (muse-insert-map): New variable that defines the
942       keymap to use when the user wants to insert something into the current
943       buffer using `C-c i'.
944       (muse-mode-map): Sort keys somewhat.  Remove binding of `C-c C-v' to
945       muse-follow-name-at-point, since this is already used for
946       muse-browse-result.  Call `muse-insert-thing' on `C-c i', which will
947       prompt for the thing to insert.
948       (muse-insert-thing): New function that prompts the user for something
949       to insert into the current buffer.  It tries to be as friendly as
950       possible by catching possible errors with the message "Not inserting
951       anything".
952       (muse-mode-completions): Rename from `muse-completions', since this is
953       what we use in `muse-mode'.
954       (muse-mode-current-word): Similarly.  These don't seem to work
955       correctly, for unknown reasons.
956     
957     * muse.texi (Keystroke Summary): Update to include all keystrokes that we
958       utilize.
960     modified files:
961      ChangeLog.2006 lisp/muse-mode.el muse.texi
964 2006-05-08 07:34:41 GMT Michael Olson <mwolson@gnu.org> patch-120
966     Summary:
967       Fix buggy behavior in muse-browse-result.
968     Revision:
969       muse--main--1.0--patch-120
971     * lisp/muse-mode.el (muse-browse-result): Construct a mapping of style
972       names to styles, based on the styles contained in the current Muse
973       project.  Thanks to kid kid for the analysis.
974     
975     * lisp/muse-publish.el (muse-publish-get-style): Permit styles to be
976       specified as an argument.
978     modified files:
979      ChangeLog.2006 lisp/muse-mode.el lisp/muse-publish.el
982 2006-05-08 07:29:42 GMT Michael Olson <mwolson@gnu.org> patch-119
984     Summary:
985       muse-latex: Make images look better.
986     Revision:
987       muse--main--1.0--patch-119
989     * lisp/muse-latex.el (muse-latex-markup-strings): Make width of images to
990       be 75% the width of the page, which looks better.  Enclose images in
991       figures, and center them.
993     modified files:
994      ChangeLog.2006 lisp/muse-latex.el
997 2006-04-27 00:31:01 GMT Michael Olson <mwolson@gnu.org> patch-118
999     Summary:
1000       Fix a few image bugs.
1001     Revision:
1002       muse--main--1.0--patch-118
1004     * lisp/muse-colors.el (muse-colors-insert-image): Expand file name before
1005       passing it to `muse-colors-inline-image-method'.  This makes images
1006       with the same current directory and publishing directory get resolved
1007       correctly.
1008     
1009     * lisp/muse-project.el (muse-project-find-file): Don't try to add a
1010       ".muse" extension to images.
1012     modified files:
1013      ChangeLog.2006 lisp/muse-colors.el lisp/muse-project.el
1016 2006-04-25 22:28:01 GMT Michael Olson <mwolson@gnu.org> patch-117
1018     Summary:
1019       Make build targets more consistent.
1020     Revision:
1021       muse--main--1.0--patch-117
1023     * contrib/Makefile (install): Make build targets more consistent.  Thanks
1024       to dsmith for the report.
1025     
1026     * lisp/Makefile (all, lisp, install): Ditto.
1028     modified files:
1029      ChangeLog.2006 Makefile.defs contrib/Makefile debian/changelog
1030      lisp/Makefile
1033 2006-04-25 00:31:42 GMT Michael Olson <mwolson@gnu.org> patch-116
1035     Summary:
1036       cgi.el: Make this work without cl-seq.el.
1037     Revision:
1038       muse--main--1.0--patch-116
1040     * contrib/cgi.el: Fix a compiler warning introduced by sample calendar
1041       code.  Make this not depend on 'cl at runtime.
1042       (cgi-position): New function that implements a simple replacement for
1043       the position function found in cl-seq.el.
1044       (cgi-decode): Use `cgi-position' instead of `position' and `substring'
1045       instead of `subseq'.
1046     
1047     * contrib/httpd.el: Credit myself.
1049     modified files:
1050      ChangeLog.2006 contrib/cgi.el contrib/httpd.el
1053 2006-04-25 00:04:10 GMT Michael Olson <mwolson@gnu.org> patch-115
1055     Summary:
1056       Make publishing DTRT when using escaped list markup.
1057     Revision:
1058       muse--main--1.0--patch-115
1060     * lisp/muse-publish.el (muse-publish-surround-text)
1061       (muse-publish-markup-list): Ignore escaped list markup.
1062     
1063     * lisp/muse.el (muse-list-item-type): Docfix.
1064       (muse-list-item-critical-point): New function that returns the point
1065       where we should expect to find the first character in the current list
1066       item markup.
1067       (muse-forward-paragraph): Docfix and cosmetic change.
1068       (muse-forward-list-item): Ignore escaped list markup.  This should fix
1069       a few publishing errors that involve markup like =::=.
1071     modified files:
1072      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
1075 2006-04-22 03:46:04 GMT Michael Olson <mwolson@gnu.org> patch-114
1077     Summary:
1078       muse-publish: Get rid of warning when batch publishing.
1079     Revision:
1080       muse--main--1.0--patch-114
1082     * lisp/muse-publish.el (muse-batch-publish-files): Get rid of a batch
1083       publishing warning message.
1085     modified files:
1086      ChangeLog.2006 Makefile.defs debian/changelog
1087      lisp/muse-publish.el
1090 2006-04-22 03:35:12 GMT Michael Olson <mwolson@gnu.org> patch-113
1092     Summary:
1093       Try to fix face clobbering bug.
1094     Revision:
1095       muse--main--1.0--patch-113
1097     * lisp/muse-colors.el (muse-make-faces-default): New function that sets
1098       the default value of the header faces.  It can be re-used.
1099       (muse-make-faces): Simplify.  This should now fix the face clobbering
1100       bug.
1102     modified files:
1103      ChangeLog.2006 lisp/muse-colors.el
1106 2006-04-21 19:31:23 GMT Michael Olson <mwolson@gnu.org> patch-112
1108     Summary:
1109       Re-add some cgi.el stuff and update my example config.
1110     Revision:
1111       muse--main--1.0--patch-112
1113     * contrib/cgi.el (cgi-calendar-string, cgi-calendar): Re-add these, since
1114       they are mentioned in the documentation.
1115     
1116     * examples/mwolson/: Update.
1118     modified files:
1119      ChangeLog.2006 contrib/cgi.el examples/mwolson/muse-init.el
1120      examples/mwolson/templates/footer.html
1121      examples/mwolson/templates/header.html
1124 2006-04-21 15:23:13 GMT Michael Olson <mwolson@gnu.org> patch-111
1126     Summary:
1127       muse-mode: Make C-c C-e work better.
1128     Revision:
1129       muse--main--1.0--patch-111
1131     * lisp/muse-mode.el (muse-edit-link-at-point): Save link data earlier so
1132       that this is more robust.
1134     modified files:
1135      ChangeLog.2006 lisp/muse-mode.el
1138 2006-04-18 21:09:37 GMT Michael Olson <mwolson@gnu.org> patch-110
1140     Summary:
1141       muse-latex: Don't escape backslash in <example> regions.
1142     Revision:
1143       muse--main--1.0--patch-110
1145     * lisp/muse-latex.el (muse-latex-markup-specials-example): We don't need
1146       to escape the backslash after all.
1147       (muse-latex-markup-specials-literal): Docfix.
1148     
1149     * lisp/muse-publish.el (muse-publish-escape-specials): Docfix.
1151     modified files:
1152      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1155 2006-04-18 01:55:21 GMT Michael Olson <mwolson@gnu.org> patch-109
1157     Summary:
1158       Allow tab characters in the target of explicit links.
1159     Revision:
1160       muse--main--1.0--patch-109
1162     * lisp/muse-regexps.el (muse-explicit-link-regexp): Allow tab characters
1163       in the link target.  This doesn't seem like it could hurt anything, and
1164       prevents unexpected behavior.  Thanks to rubikitch AT ruby-lang.org for
1165       the report.
1167     modified files:
1168      ChangeLog.2006 lisp/muse-regexps.el
1171 2006-04-14 18:56:30 GMT Michael Olson <mwolson@gnu.org> patch-108
1173     Summary:
1174       muse-wiki: Fix bug that caused WikiWords not to publish or display.
1175     Revision:
1176       muse--main--1.0--patch-108
1178     * lisp/muse-wiki.el (muse-wiki-handle-wikiword): Logic fix.
1180     modified files:
1181      ChangeLog.2006 Makefile.defs debian/changelog
1182      lisp/muse-wiki.el
1185 2006-04-11 03:49:41 GMT Michael Olson <mwolson@gnu.org> patch-107
1187     Summary:
1188       Fix horrendous typo.
1189     Revision:
1190       muse--main--1.0--patch-107
1192     * muse-publish.el (muse-define-style): Fix typo which caused all kinds of
1193       strangeness.
1195     modified files:
1196      ChangeLog.2006 lisp/muse-publish.el
1199 2006-04-10 03:13:41 GMT Michael Olson <mwolson@gnu.org> patch-106
1201     Summary:
1202       Merged from mwolson@gnu.org--2006-muse-el (patch 53)
1203     Revision:
1204       muse--main--1.0--patch-106
1206     (Author: Per B. Sederberg <per@med.upenn.edu>)
1207     
1208     * lisp/muse-wiki.el (muse-wiki-ignore-implicit-links-to-current-page):
1209       Option to not create implicit links to the current page.
1210       (muse-wiki-handle-wikiword): Process the option to not create implicit
1211       links to the current page.
1213     modified files:
1214      ChangeLog.2006 Makefile.defs debian/changelog
1215      lisp/muse-wiki.el
1217     new patches:
1218      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-53
1221 2006-04-10 03:03:28 GMT Michael Olson <mwolson@gnu.org> patch-105
1223     Summary:
1224       Try to fix failure to recognize Muse file extension (6th attempt).
1225     Revision:
1226       muse--main--1.0--patch-105
1228     * lisp/muse-mode.el: Call `muse-mode-maybe-after-init' after the user's
1229       init file is loaded.
1230       (muse-mode-maybe-after-init): New function that causes muse-mode-maybe
1231       to be added to find-file-hooks when muse-mode-auto-p is non-nil.
1232     
1233     * lisp/muse.el: Call `muse-update-file-extension-after-init after the
1234       user's init file is loaded.  Explicitly add the Muse file extension
1235       when muse.el is loaded, to make life simpler.
1236       (muse-update-file-extension): Take several edge cases into account.
1237       (muse-file-extension): Docfix.
1238       (muse-update-file-extension-after-init): New function that causes the
1239       file extension to be updated.
1240     
1241     * muse.texi (Projects): It is no longer necessary to call
1242       `muse-mode-maybe' manually.
1244     modified files:
1245      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el muse.texi
1248 2006-04-10 00:08:01 GMT Michael Olson <mwolson@gnu.org> patch-104
1250     Summary:
1251       Merged from mwolson@gnu.org--2006-muse-el (patch 48-52)
1252     Revision:
1253       muse--main--1.0--patch-104
1255     (Author: Per B. Sederberg <per@med.upenn.edu>)
1256     
1257     * lisp/muse-wiki.el (muse-wiki-project-files-with-spaces): New function
1258       to return a list of project files that have spaces.
1259       (muse-wiki-update-interwiki-regexp): Make use of new project-files with
1260       spaces function.  Don't make this buffer-local.
1262     modified files:
1263      ChangeLog.2006 lisp/muse-wiki.el
1265     new patches:
1266      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-48
1267      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-49
1268      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-50
1269      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-51
1270      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-52
1273 2006-04-09 23:54:07 GMT Michael Olson <mwolson@gnu.org> patch-103
1275     Summary:
1276       Try to fix failure to recognize Muse file extension (5th attempt).
1277     Revision:
1278       muse--main--1.0--patch-103
1280     * lisp/muse.el: To detect whether Emacs has fully started, check
1281       `command-line-processed' instead of `inhibit-startup-hooks', since the
1282       latter only exists for Emacs22.
1284     modified files:
1285      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
1288 2006-04-09 23:48:06 GMT Michael Olson <mwolson@gnu.org> patch-102
1290     Summary:
1291       muse-html: Add :style-sheet element.
1292     Revision:
1293       muse--main--1.0--patch-102
1295     * lisp/muse-html.el (muse-html-header, muse-xhtml-header): Use the
1296       :style-sheet element.
1297       ("html", "xhtml"): Add the :style-sheet element.
1298     
1299     * lisp/muse-publish.el (muse-define-style): Don't give an error when a
1300       style already exists.  Instead, just replace the existing style.
1301       (muse-derive-style): Ditto.
1302     
1303     * muse.texi (Style Elements): Mention :style-sheet.
1305     modified files:
1306      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
1307      muse.texi
1310 2006-04-09 02:23:47 GMT Michael Olson <mwolson@gnu.org> patch-101
1312     Summary:
1313       Try to fix failure to recognize Muse file extension (4th attempt).
1314     Revision:
1315       muse--main--1.0--patch-101
1317     * lisp/muse.el: Enter Muse mode correctly on files that are specified by
1318       the command line.
1320     modified files:
1321      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
1324 2006-04-09 01:53:19 GMT Michael Olson <mwolson@gnu.org> patch-100
1326     Summary:
1327       Try to fix failure to recognize Muse file extension (3rd attempt).
1328     Revision:
1329       muse--main--1.0--patch-100
1331     * lisp/muse.el (muse-update-values-hook): Fix a sequencep error.
1333     modified files:
1334      ChangeLog.2006 lisp/muse.el
1337 2006-04-09 01:36:50 GMT Michael Olson <mwolson@gnu.org> patch-99
1339     Summary:
1340       Try to fix failure to recognize Muse file extension (2nd attempt).
1341     Revision:
1342       muse--main--1.0--patch-99
1344     * lisp/muse.el: Try to fix failure to put muse-mode-choose-mode in
1345       auto-mode-alist.
1347     modified files:
1348      ChangeLog.2006 lisp/muse.el
1351 2006-04-08 17:08:39 GMT Michael Olson <mwolson@gnu.org> patch-98
1353     Summary:
1354       Merged from mwolson@gnu.org--2006-muse-el (patch 41-47)
1355     Revision:
1356       muse--main--1.0--patch-98
1358     (Author: Per B. Sederberg <per@med.upenn.edu>)
1359     
1360     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Modify
1361       interwiki-regexp to search for any project file name.  This is so it
1362       will match files with spaces.
1364     modified files:
1365      ChangeLog.2006 lisp/muse-wiki.el
1367     new patches:
1368      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-41
1369      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-42
1370      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-43
1371      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-44
1372      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-45
1373      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-46
1374      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-47
1377 2006-04-08 16:32:00 GMT Michael Olson <mwolson@gnu.org> patch-97
1379     Summary:
1380       Try to fix failure to recognize Muse file extension.
1381     Revision:
1382       muse--main--1.0--patch-97
1384     * lisp/muse-colors.el: Use add-hook instead of add-to-list, for the sake
1385       of semantics.
1386     
1387     * lisp/muse.el: Call muse-update-file-extension in
1388       muse-update-values-hook, instead of
1389       muse-ignored-file-extensions-regexp.  Add muse-update-file-extension to
1390       emacs-startup-hook, so that the user has time to set this in their
1391       .emacs file.
1393     modified files:
1394      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1397 2006-04-08 02:46:41 GMT Michael Olson <mwolson@gnu.org> patch-96
1399     Summary:
1400       Make things in contrib directory installable.
1401     Revision:
1402       muse--main--1.0--patch-96
1404     * Makefile (SUBDIRS): Add contrib.
1405       (all): Add contrib.
1406       (contrib): New target that compiles things in the contrib directory.
1407       (install-bin): Add contrib.  Install things in the contrib directory.
1408       Also install uncompiled things in the experimental directory.
1409     
1410     * contrib/Makefile: New Makefile for the contrib directory.
1411     
1412     * contrib/httpd.el (httpd-start): Fix compiler warnings.
1413     
1414     * debian/emacsen-install: Compile files in contrib directory in addition
1415       to the normal fare.  Thanks to Junichi Uekawa for the suggestion.
1416     
1417     * debian/emacsen-startup: Add contrib directory to load-path.
1418     
1419     * experimental/Makefile (test): Remove target.
1420       (install-uncompiled): New target that installs uncompiled files.
1421     
1422     * lisp/muse.el: Set version to 3.02.90 (3.03 RC1).
1423       (muse-update-file-extension): Fix a warning that occurred when doing
1424       batch publishing.
1426     new files:
1427      contrib/.arch-ids/Makefile.id contrib/Makefile
1429     modified files:
1430      ChangeLog.2006 Makefile Makefile.defs contrib/httpd.el
1431      debian/changelog debian/emacsen-install debian/emacsen-startup
1432      experimental/Makefile lisp/muse.el muse.texi
1435 2006-04-08 01:33:27 GMT Michael Olson <mwolson@gnu.org> patch-95
1437     Summary:
1438       Remove muse-registry.el.
1439     Revision:
1440       muse--main--1.0--patch-95
1442     * lisp/muse-registry.el: Move to the Planner project, since it is a
1443       better fit with Planner than Muse.
1445     removed files:
1446      lisp/.arch-ids/muse-registry.el.id lisp/muse-registry.el
1448     modified files:
1449      AUTHORS ChangeLog.2006
1452 2006-04-08 01:23:24 GMT Michael Olson <mwolson@gnu.org> patch-94
1454     Summary:
1455       Prepare Debian package for Arch snapshot.
1456     Revision:
1457       muse--main--1.0--patch-94
1459     * Makefile.defs, debian/changelog: Prepare for Debian package of Arch
1460       snapshot.
1462     modified files:
1463      ChangeLog.2006 Makefile.defs debian/changelog
1466 2006-04-05 18:56:26 GMT Michael Olson <mwolson@gnu.org> patch-93
1468     Summary:
1469       muse-wiki: Honor setting for muse-wiki-hide-nop-tag.
1470     Revision:
1471       muse--main--1.0--patch-93
1473     * lisp/muse-wiki.el (muse-wiki-colors-nop-tag): Take the value of
1474       `muse-wiki-hide-nop-tag' into account.
1476     modified files:
1477      ChangeLog.2006 lisp/muse-wiki.el
1480 2006-04-05 18:47:54 GMT Michael Olson <mwolson@gnu.org> patch-92
1482     Summary:
1483       Fix a couple of compiler warnings.
1484     Revision:
1485       muse--main--1.0--patch-92
1487     * muse-publish.el, muse-wiki.el: Fix a couple of compiler warnings.
1489     modified files:
1490      ChangeLog.2006 lisp/muse-publish.el lisp/muse-wiki.el
1493 2006-04-05 18:45:01 GMT Michael Olson <mwolson@gnu.org> patch-91
1495     Summary:
1496       Make interwiki links work with the new option.
1497     Revision:
1498       muse--main--1.0--patch-91
1500     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Take no
1501       parameters.  Populate this correctly when
1502       `muse-wiki-match-all-project-files' is non-nil.
1504     modified files:
1505      ChangeLog.2006 lisp/muse-wiki.el
1508 2006-04-05 16:37:13 GMT Michael Olson <mwolson@gnu.org> patch-90
1510     Summary:
1511       Permit table generation to be disabled for a single Muse page.
1512     Revision:
1513       muse--main--1.0--patch-90
1515     * lisp/muse-latex.el (muse-latex-markup-table): If we don't get any table
1516       data, don't publish the table.
1517     
1518     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Ditto.
1519     
1520     * lisp/muse-xml-common.el (muse-xml-markup-table): Ditto.
1521     
1522     * lisp/muse-publish.el (muse-publish-table-fields): If the
1523       "disable-tables" publishing directive exists for the current page, do
1524       not generate a table.
1525     
1526     * muse.texi (Tables): Mention that table generation can be disabled for a
1527       single page.
1529     modified files:
1530      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1531      lisp/muse-texinfo.el lisp/muse-xml-common.el muse.texi
1534 2006-04-05 15:56:11 GMT Michael Olson <mwolson@gnu.org> patch-89
1536     Summary:
1537       muse-wiki: Match filenames before WikiWords.
1538     Revision:
1539       muse--main--1.0--patch-89
1541     * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp): Match
1542       filenames in project before the general WikiWord regexp.
1544     modified files:
1545      ChangeLog.2006 lisp/muse-wiki.el
1548 2006-04-05 15:45:07 GMT Michael Olson <mwolson@gnu.org> patch-88
1550     Summary:
1551       Use a better mechanism for updating autogenerated variables.
1552     Revision:
1553       muse--main--1.0--patch-88
1555     * lisp/muse-mode.el (muse-mode-hook): Remove ugly kludge.
1556     
1557     * lisp/muse-mode.el (muse-mode): Call muse-update-values-hook.
1558     
1559     * lisp/muse-protocols.el: Add `muse-update-url-regexp' to
1560       muse-update-values-hook.
1561     
1562     * lisp/muse-publish.el (muse-publish-markup-buffer): Call
1563       muse-update-values-hook.
1564     
1565     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' and
1566       `muse-wiki-update-interwiki-regexp' to muse-update-values-hook.
1567       (muse-wiki-update-local-wikiword-regexp): Quote an argument so that an
1568       error is fixed.
1569       (muse-wiki-update-custom-values): Replace with function that gives a
1570       warning and an explanation.
1571     
1572     * examples/mwolson/muse-init.el (muse-blosxom-base-directory): Update my
1573       example so that people who use it won't have a wrong value in
1574       muse-mode-hook.
1576     modified files:
1577      ChangeLog.2006 examples/mwolson/muse-init.el lisp/muse-mode.el
1578      lisp/muse-protocols.el lisp/muse-publish.el lisp/muse-wiki.el
1579      lisp/muse.el
1582 2006-04-05 15:00:33 GMT Michael Olson <mwolson@gnu.org> patch-87
1584     Summary:
1585       muse-wiki: Implement implicit links for all files in project.
1586     Revision:
1587       muse--main--1.0--patch-87
1589     * lisp/muse-project.el (muse-project-file-alist): Quote hook, so that we
1590       don't get errors when trying to use it.
1591     
1592     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' to
1593       muse-project-file-alist-hook.
1594       (muse-wiki-update-local-wikiword-regexp): Make sure that we can't get
1595       into a recursive call.
1596       (muse-wiki-update-wikiword-regexp): Call
1597       `muse-wiki-update-local-wikiword-regexp'.
1598     
1599     (Author: Per B. Sederberg <per@med.upenn.edu>)
1600     
1601     * lisp/muse-wiki.el:: Add muse-wiki-update-local-wikiword-regexp to
1602       muse-before-publish-hook and muse-mode-hook so that implicit links are
1603       published properly.
1604       (muse-wiki-wikiword-match-project-files): New option for determining
1605       whether to match all project files as implicit links.  This is off by
1606       default.
1607       (muse-wiki-update-local-wikiword-regexp): New function to make the
1608       wikiword-regexp local and append the files in the current project to
1609       it.
1611     modified files:
1612      AUTHORS ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
1614     new patches:
1615      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-27
1616      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-28
1617      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-29
1618      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-30
1619      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-31
1620      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-32
1621      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-33
1622      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-34
1623      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-35
1624      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-36
1625      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-37
1626      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-38
1627      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-39
1628      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-40
1631 2006-04-04 22:49:46 GMT Michael Olson <mwolson@gnu.org> patch-86
1633     Summary:
1634       Update Muse's file-alist after saving any Muse page.
1635     Revision:
1636       muse--main--1.0--patch-86
1638     * lisp/muse-project.el (muse-project-after-save-hook): New function that
1639       causes Muse's file-alist to be updated when we are saving a Muse file.
1640       This is added to after-save-hook.
1642     modified files:
1643      ChangeLog.2006 lisp/muse-project.el
1646 2006-04-04 22:39:57 GMT Michael Olson <mwolson@gnu.org> patch-85
1648     Summary:
1649       Add a hook that is called whenever Muse's file-alist is updated.
1650     Revision:
1651       muse--main--1.0--patch-85
1653     * lisp/muse-project.el (muse-project-file-alist-hook): New hook that is
1654       executed after an update to muse-project-file-alist happens.
1655       (muse-project-file-alist): Call `muse-project-file-alist-hook'.
1657     modified files:
1658      ChangeLog.2006 lisp/muse-project.el
1661 2006-04-04 22:23:40 GMT Michael Olson <mwolson@gnu.org> patch-84
1663     Summary:
1664       muse-mode: Recognize definition lists when filling text.
1665     Revision:
1666       muse--main--1.0--patch-84
1668     * lisp/muse-mode.el (muse-mode): Recognize definition lists when filling
1669       text.
1670     
1672     modified files:
1673      ChangeLog.2006 lisp/muse-mode.el
1676 2006-04-04 22:22:19 GMT Michael Olson <mwolson@gnu.org> patch-83
1678     Summary:
1679       Remove unrelated part of patch-82.
1680     Revision:
1681       muse--main--1.0--patch-83
1684     modified files:
1685      ChangeLog.2006 lisp/muse-mode.el
1688 2006-04-04 22:11:16 GMT Michael Olson <mwolson@gnu.org> patch-82
1690     Summary:
1691       muse-journal: Fix dates in RSS feeds.
1692     Revision:
1693       muse--main--1.0--patch-82
1695     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Make sure that
1696       date is in a format that RSS readers can handle.  Thanks to René
1697       Stadler for the patch.
1699     modified files:
1700      AUTHORS ChangeLog.2006 lisp/muse-journal.el lisp/muse-mode.el
1703 2006-04-01 15:32:26 GMT Michael Olson <mwolson@gnu.org> patch-81
1705     Summary:
1706       debian: Install ChangeLog properly.
1707     Revision:
1708       muse--main--1.0--patch-81
1710     * debian/rules: Create ChangeLog using ChangeLog.2006 as a base, and then
1711       appending the logs for previous years.  Thanks to Sergei V. Fleytin for
1712       the breakage report.
1714     modified files:
1715      ChangeLog.2006 debian/rules
1718 2006-04-01 04:20:45 GMT Michael Olson <mwolson@gnu.org> patch-80
1720     Summary:
1721       Fix a bug triggered by batch-publishing.
1722     Revision:
1723       muse--main--1.0--patch-80
1725     * lisp/muse-publish.el (muse-detect-invalid-style): Remove, since the
1726       right algorithm turned out to be simpler than I had thought.  Thanks to
1727       Sergei V. Fleytin for reporting breakage with the old method.
1728       (muse-publish-file): Don't be overzealous when checking for an invalid
1729       style -- use a simpler check.
1730       (muse-batch-publish-files): Don't check for invalid styles here, since
1731       we already do so in `muse-publish-file'.
1733     modified files:
1734      ChangeLog.2006 lisp/muse-publish.el
1737 2006-03-31 04:27:54 GMT Michael Olson <mwolson@gnu.org> patch-79
1739     Summary:
1740       muse.texi: Move some sections to a new Extending Muse chapter.
1741     Revision:
1742       muse--main--1.0--patch-79
1744     * muse.texi (Extending Muse): New chapter containing nodes that deal with
1745       extending Muse in various ways.
1746       (Common Elements, Deriving Styles): Move to Extending Muse chapter.
1748     modified files:
1749      ChangeLog.2006 muse.texi
1752 2006-03-26 22:38:01 GMT Michael Olson <mwolson@gnu.org> patch-78
1754     Summary:
1755       Fix a couple of recently-introduced bugs.
1756     Revision:
1757       muse--main--1.0--patch-78
1759     * lisp/muse-colors.el: Fix errors introduced in a recent patch.  Try
1760       extra hard to preserve our settings for faces, especially after a new
1761       frame or splash screen.
1762     
1763     * lisp/muse.el (muse-copy-face): New function that ensures the face is
1764       copied globally, to the extent the Emacs permits this.
1766     modified files:
1767      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1770 2006-03-26 20:02:11 GMT Michael Olson <mwolson@gnu.org> patch-77
1772     Summary:
1773       Update my example configuration file.
1774     Revision:
1775       muse--main--1.0--patch-77
1778     modified files:
1779      ChangeLog.2006 examples/mwolson/muse-init.el
1782 2006-03-26 19:54:43 GMT Michael Olson <mwolson@gnu.org> patch-76
1784     Summary:
1785       Remove cruft from patch logs.
1786     Revision:
1787       muse--main--1.0--patch-76
1790     modified files:
1791      ChangeLog.2006
1792      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-14
1793      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-25
1794      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-3
1795      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-19
1796      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-46
1797      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-58
1798      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-60
1799      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-74
1802 2006-03-26 18:38:31 GMT Michael Olson <mwolson@gnu.org> patch-75
1804     Summary:
1805       Make faces more robust and namespace-conforming.
1806     Revision:
1807       muse--main--1.0--patch-75
1809     * lisp/muse-colors.el (muse-make-faces): Make sure that each generated
1810       face has documentation and a group.
1811       (muse-link, muse-bad-link, muse-verbatim): Renamed faces to drop the
1812       "-face" suffix.
1813       (muse-emphasis-1, muse-emphasis-2, muse-emphasis-3): Make sure that the
1814       faces have documentation and a group.  Copy unconditionally from the
1815       related Emacs faces, rather than specifying face attributes.
1816       (muse-colors-verbatim, muse-colors-example-tag, muse-link-face):
1817       (muse-colors-explicit-link, muse-colors-implicit-link): Use the new
1818       face names.
1819     
1820     * lisp/muse-mode.el (muse-next-reference, muse-previous-reference): Use
1821       the 'muse-link property rather than looking at the face.
1823     modified files:
1824      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
1827 2006-03-26 18:33:12 GMT Michael Olson <mwolson@gnu.org> patch-74
1829     Summary:
1830       muse.texi: Mention the <code> tag.
1831     Revision:
1832       muse--main--1.0--patch-74
1834     * muse.texi (Emphasizing Text): Mention the <code> tag.
1836     modified files:
1837      ChangeLog.2006 muse.texi
1840 2006-03-26 06:35:49 GMT Michael Olson <mwolson@gnu.org> patch-73
1842     Summary:
1843       Fix bug in verse markup, undesired behavior with emdash.
1844     Revision:
1845       muse--main--1.0--patch-73
1847     * lisp/muse-docbook.el (muse-docbook-markup-strings): Preserve whitespace
1848       around emdash.
1849     
1850     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
1851     
1852     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
1853     
1854     * lisp/muse-publish.el (muse-publish-markup-emdash): Pass preceding and
1855       trailing whitespace to `muse-markup-text', in case the current
1856       publishing wishes to use them.
1857       (muse-publish-markup-verse): Insert newline without adding read-only
1858       properties to it.  This fixes a paragraph detection bug in HTML
1859       publishing.
1861     modified files:
1862      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
1863      lisp/muse-publish.el lisp/muse-xml.el
1866 2006-03-25 05:57:36 GMT Michael Olson <mwolson@gnu.org> patch-72
1868     Summary:
1869       httpd.el: Update to work with newer versions of Emacs.
1870     Revision:
1871       muse--main--1.0--patch-72
1873     * contrib/httpd.el (httpd-start): Update this to work with newer versions
1874       of Emacs.
1876     modified files:
1877      ChangeLog.2006 contrib/httpd.el
1880 2006-03-25 05:27:46 GMT Michael Olson <mwolson@gnu.org> patch-71
1882     Summary:
1883       muse-journal: Make custom RSS heading regexps possible.
1884     Revision:
1885       muse--main--1.0--patch-71
1887     * lisp/muse-journal.el (muse-journal-rss-heading-regexp): New option that
1888       determines the regexp to use when searching for an RSS heading.
1889       (muse-journal-rss-munge-buffer): Use `muse-journal-rss-heading-regexp'.
1891     modified files:
1892      ChangeLog.2006 lisp/muse-journal.el
1895 2006-03-25 04:33:40 GMT Michael Olson <mwolson@gnu.org> patch-70
1897     Summary:
1898       Fix #5190: Endless loop in muse style-run-hooks when muse-project-publish is called with undefined style.
1899     Revision:
1900       muse--main--1.0--patch-70
1902     * lisp/muse-project.el (muse-project-publish): If we cannot find a
1903       project to publish, indicate this in an error message.
1904     
1905     * lisp/muse-publish.el (muse-style-run-hooks): Never go into an endless
1906       loop.  This should fix #5190.  Thanks to Rod Morehead for the report.
1907       (muse-detect-invalid-style): New function that makes sure that the
1908       given style is in a valid format.
1909       (muse-publish-file): Call `muse-detect-invalid-style' before doing any
1910       publishing.
1912     modified files:
1913      ChangeLog.2006 lisp/muse-project.el lisp/muse-publish.el
1916 2006-03-25 03:31:36 GMT Michael Olson <mwolson@gnu.org> patch-69
1918     Summary:
1919       muse-mode: Don't require muse-publish.el.
1920     Revision:
1921       muse--main--1.0--patch-69
1923     * lisp/muse-mode.el: Use a few autoloads instead of requiring
1924       muse-publish.el.  This allows people to optionally have Muse mode
1925       without including the publishing features, as long as they never call a
1926       publishing function.  The documentation says that Muse is supposed to
1927       be modular in that way, so I guess we'd better follow it.
1928       (muse-insert-tag): Make sure that muse-publish is required before
1929       accessing `muse-publish-markup-tags'.
1931     modified files:
1932      ChangeLog.2006 lisp/muse-mode.el
1935 2006-03-21 01:59:03 GMT Michael Olson <mwolson@gnu.org> patch-68
1937     Summary:
1938       Minor code cleanup.
1939     Revision:
1940       muse--main--1.0--patch-68
1942     * lisp/muse-mode.el (muse-grep): Remove commented-out code.
1944     modified files:
1945      ChangeLog.2006 lisp/muse-mode.el
1948 2006-03-21 01:56:21 GMT Michael Olson <mwolson@gnu.org> patch-67
1950     Summary:
1951       Merged from mwolson@gnu.org--2006-muse-el (patch 15-26)
1952     Revision:
1953       muse--main--1.0--patch-67
1955     (Author: Per B. Sederberg <per@med.upenn.edu>)
1956     
1957     * lisp/muse-mode.el (muse-grep-command): Add custom to set up the command
1958       used for grepping.
1959       (muse-mode-map): Changed muse-browse-result to C-c C-v and made
1960       muse-find-backlinks C-c C-b
1961       (muse-grep): New function to envoke a search with the compiler.
1962       (muse-search-with-command): New function to search for text, optionally
1963       editing the command.
1964       (muse-search): New function to search for text.
1965       (muse-find-backlinks): New function to search for backlinks to the
1966       current page.
1968     modified files:
1969      ChangeLog.2006 lisp/muse-mode.el
1971     new patches:
1972      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-15
1973      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-16
1974      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-17
1975      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-18
1976      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-19
1977      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-20
1978      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-21
1979      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-22
1980      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-23
1981      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-24
1982      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-25
1983      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-26
1986 2006-03-20 18:43:15 GMT Michael Olson <mwolson@gnu.org> patch-66
1988     Summary:
1989       Make it easier to call context-specific region-escaping function.
1990     Revision:
1991       muse--main--1.0--patch-66
1993     * lisp/muse-publish.el (muse-publish-escape-specials): If a function is
1994       returned from specials, call it with beg, end, ignore-read-only args.
1995       This allows for people to specify their own functions for escaping
1996       regions, depending on context.  See `muse-xml-decide-specials' in
1997       muse-xml-common.el.  This functionality already exists for escaping
1998       specials in strings.
2000     modified files:
2001      ChangeLog.2006 lisp/muse-publish.el
2004 2006-03-17 01:56:38 GMT Michael Olson <mwolson@gnu.org> patch-65
2006     Summary:
2007       Attempt to make new syntaxes easier to support.
2008     Revision:
2009       muse--main--1.0--patch-65
2011     * lisp/muse-colors.el (muse-colors-explicit-link): Use `muse-get-link'
2012       and `muse-get-link-data'.
2013     
2014     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Ditto.
2015     
2016     * lisp/muse-mode.el (muse-edit-link-at-point): Ditto.
2017       (muse-make-link): Change argument name.
2018     
2019     * lisp/muse.el (muse-handle-explicit-link): Ditto.
2020       (muse-get-link, muse-get-link-desc): New functions that return the link
2021       and the link description, respectively, from the given TARGET.  The
2022       idea is that at least one other markup syntax puts descriptions before
2023       links, so all they would have to do is re-define these two functions.
2025     modified files:
2026      ChangeLog.2006 lisp/muse-colors.el lisp/muse-journal.el
2027      lisp/muse-mode.el lisp/muse.el
2030 2006-03-14 18:41:54 GMT Michael Olson <mwolson@gnu.org> patch-64
2032     Summary:
2033       Fix #5477: muse-replace-regexp-in-string throws error in XEmacs 21.4
2034     Revision:
2035       muse--main--1.0--patch-64
2037     * Makefile.defs, lisp/muse-colors.el: Fix typo.
2038     
2039     * lisp/muse.el (muse-replace-regexp-in-string): Switch order so that
2040       `replace-in-string' is checked before `replace-regexp-in-string', since
2041       XEmacs' implementation of the latter seems to be broken.  Thanks to Jim
2042       Ottaway for the heads up.
2044     modified files:
2045      ChangeLog.2006 Makefile.defs lisp/muse-colors.el lisp/muse.el
2048 2006-03-13 19:38:36 GMT Michael Olson <mwolson@gnu.org> patch-63
2050     Summary:
2051       muse-latex: Add footnotes to links so that they show up on printed copies.
2052     Revision:
2053       muse--main--1.0--patch-63
2055     * lisp/muse-latex.el (muse-latex-markup-strings): Add string for
2056       'url-and-desc.  Display footnotes if we have both a link and a
2057       description, since we want URLs to show up on printed documents.
2058       (muse-latex-markup-specials-document): Escape the "@" character in the
2059       entire document.
2060     
2061     * lisp/muse-publish.el (muse-publish-url): Distinguish between URLs
2062       without descriptions and URLs with descriptions.  If no markup string
2063       exists for 'url-and-desc, fall back to 'url.
2065     modified files:
2066      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
2069 2006-03-13 18:42:27 GMT Michael Olson <mwolson@gnu.org> patch-62
2071     Summary:
2072       Fix publishing error with multi-line wrapped list items.
2073     Revision:
2074       muse--main--1.0--patch-62
2076     * lisp/muse-publish.el (muse-publish-surround-text): Fix a problem with
2077       multiple lines of a wrapped list item.
2079     modified files:
2080      ChangeLog.2006 lisp/muse-publish.el
2083 2006-03-13 02:10:44 GMT Michael Olson <mwolson@gnu.org> patch-61
2085     Summary:
2086       Add COPYING file; update headers.
2087     Revision:
2088       muse--main--1.0--patch-61
2090     * COPYING: New file containing the GNU GPL.
2091     
2092     * AUTHORS: Bookkeeping.
2093     
2094     * README: Add License section.  Change Muse homepage URL.
2095     
2096     * debian/copyright: Change Muse homepage URL.  Prune list to those who
2097       have changed 15+ lines of code, since this is the amount that
2098       constitutes legal contribution to a software work, AFAICT.
2099     
2100     * examples/mwolson: Update contents of directory to match my current
2101       setup.
2102     
2103     * experimental/muse*.el, lisp/muse*.el: Update headers.
2104     
2105     * muse.texi: Change Muse homepage URL.
2107     new files:
2108      .arch-ids/COPYING.id COPYING
2110     modified files:
2111      AUTHORS ChangeLog.2006 README debian/copyright
2112      examples/mwolson/muse-init.el
2113      examples/mwolson/stylesheets/blog.css
2114      examples/mwolson/stylesheets/common.css
2115      examples/mwolson/stylesheets/print.css
2116      examples/mwolson/stylesheets/screen.css
2117      experimental/muse-cite.el experimental/muse-mathml.el
2118      experimental/muse-message.el lisp/muse-backlink.el
2119      lisp/muse-blosxom.el lisp/muse-book.el lisp/muse-colors.el
2120      lisp/muse-convert.el lisp/muse-docbook.el lisp/muse-groff.el
2121      lisp/muse-html.el lisp/muse-http.el lisp/muse-journal.el
2122      lisp/muse-latex.el lisp/muse-latex2png.el lisp/muse-mode.el
2123      lisp/muse-poem.el lisp/muse-project.el lisp/muse-protocols.el
2124      lisp/muse-publish.el lisp/muse-regexps.el
2125      lisp/muse-registry.el lisp/muse-texinfo.el lisp/muse-wiki.el
2126      lisp/muse-xml.el lisp/muse.el muse.texi
2129 2006-03-13 01:48:10 GMT Michael Olson <mwolson@gnu.org> patch-60
2131     Summary:
2132       Update Muse XML schema.
2133     Revision:
2134       muse--main--1.0--patch-60
2136     * examples/muse.rnc: Allow nested list items.  Update header.  Provide
2137       history.  We'll call this v0.3 of the schema.
2138     
2139     * lisp/muse-xml-common.el: Update header.
2140       (muse-xml-markup-table): Fix table generation when attributes are not
2141       specified.
2143     modified files:
2144      ChangeLog.2006 examples/muse.rnc lisp/muse-xml-common.el
2147 2006-03-12 21:12:48 GMT Michael Olson <mwolson@gnu.org> patch-59
2149     Summary:
2150       Fix output for consecutive list items of same type.
2151     Revision:
2152       muse--main--1.0--patch-59
2154     * lisp/muse-publish.el (muse-publish-surround-text): Make calculated
2155       post-indent and indent-found values local to each list item.  This
2156       should fix undesired behavior with consecutive list items of the same
2157       type.
2159     modified files:
2160      ChangeLog.2006 lisp/muse-publish.el
2163 2006-03-12 21:09:43 GMT Michael Olson <mwolson@gnu.org> patch-58
2165     Summary:
2166       Make C-> and C-< keybindings not indent nested items.
2167     Revision:
2168       muse--main--1.0--patch-58
2170     * lisp/muse-mode.el (muse-alter-list-item-indentation): Don't include
2171       nested items.
2172     
2173     * lisp/muse.el (muse-forward-list-item): Make skipping of nested items
2174       optional, and document this.
2176     modified files:
2177      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el
2180 2006-03-12 19:56:26 GMT Michael Olson <mwolson@gnu.org> patch-57
2182     Summary:
2183       Slightly improve flyspell integration.
2184     Revision:
2185       muse--main--1.0--patch-57
2187     * lisp/muse-mode.el (muse-mode-flyspell-p): Use the new 'muse-link text
2188       property to determine whether we are at a link.
2190     modified files:
2191      ChangeLog.2006 lisp/muse-mode.el
2194 2006-03-11 23:42:56 GMT Michael Olson <mwolson@gnu.org> patch-56
2196     Summary:
2197       Make nested definition list items work much better.
2198     Revision:
2199       muse--main--1.0--patch-56
2201     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2202       `muse-forward-list-item'.  Don't pass indent and post-indent to the
2203       move function.
2204       (muse-publish-surround-text): If we are to determine the indentation,
2205       but have found no list items, set indent to the empty string.  If we
2206       are to determine indentation but have found an item, get all leading
2207       whitespace and set indent to it.  Never try to determine post-indent
2208       using the first line.  Try to contain the amount of "damage" a nested
2209       list item can do to wrapped list item text.
2210     
2211     * lisp/muse-regexps.el (muse-list-item-regexp): Hone the definition list
2212       part so that it is easier to indicate the amount of desired initial
2213       whitespace.
2214     
2215     * lisp/muse.el (muse-list-item-type): Make initial whitespace of a dl
2216       entry optional.
2217       (muse-forward-dl-term, muse-forward-dl-entry): Remove.  Functionality
2218       merged into `muse-forward-list-item'.
2219       (muse-forward-list-item-1): New function that determines whether a
2220       nested list item is found.
2221       (muse-forward-list-item): Move hairy nested list detection algorithm
2222       into `muse-forward-list-item-1'.  Be extra careful about terminating
2223       when we go past the boundary.
2225     modified files:
2226      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2227      lisp/muse.el
2230 2006-03-11 06:10:19 GMT Michael Olson <mwolson@gnu.org> patch-55
2232     Summary:
2233       Add backlink support, thanks to Jim Ottaway.
2234     Revision:
2235       muse--main--1.0--patch-55
2237     * lisp/muse-colors.el (muse-colors-fontifying-p): New buffer-local
2238       variable that indicates whether Muse is fontifying the current buffer.
2239       (muse-colors-region): Set `muse-colors-fontifying' to t.
2240     
2241     * lisp/muse-backlinks.el: New file by Jim Ottaway that provides backlink
2242       support.  I've modified it slightly to get rid of the defadvice forms.
2244     new files:
2245      lisp/.arch-ids/muse-backlink.el.id lisp/muse-backlink.el
2247     modified files:
2248      AUTHORS ChangeLog.2006 lisp/muse-colors.el
2251 2006-03-10 22:56:22 GMT Michael Olson <mwolson@gnu.org> patch-54
2253     Summary:
2254       muse-protocols: Add Wikipedia support.
2255     Revision:
2256       muse--main--1.0--patch-54
2258     * lisp/muse-protocols.el (muse-url-protocols): Add "dict:" handler.  This
2259       is used to look up terms on the Wikipedia website.
2260       (muse-wikipedia-country): New option that specifies the country code to
2261       use for Wikipedia.
2262       (muse-resolve-url-dict, muse-browse-url-dict): New functions that
2263       resolve and browse Wikipedia URLs.
2265     modified files:
2266      ChangeLog.2006 lisp/muse-protocols.el
2269 2006-03-10 19:29:56 GMT Michael Olson <mwolson@gnu.org> patch-53
2271     Summary:
2272       muse-protocols: Add DOI handling.
2273     Revision:
2274       muse--main--1.0--patch-53
2276     * lisp/muse-protocols.el (muse-url-protocols): Add handler for DOI's.
2277       DOI's (digitial object identifiers) are a standard identifier used in
2278       the publishing industry.  Thanks to Phillip Lord for the patch.
2279       (muse-resolve-url-doi, muse-browse-url-doi): New functions that resolve
2280       and browse DOI's.
2282     modified files:
2283      AUTHORS ChangeLog.2006 lisp/muse-protocols.el
2286 2006-03-10 16:34:52 GMT Michael Olson <mwolson@gnu.org> patch-52
2288     Summary:
2289       Refine previous patch.
2290     Revision:
2291       muse--main--1.0--patch-52
2293     * lisp/muse-mode.el (muse-link-at-point): If muse-colors is loaded, don't
2294       ever use the fallback method.  Save point when using new method.
2296     modified files:
2297      ChangeLog.2006 lisp/muse-mode.el
2300 2006-03-10 16:26:53 GMT Michael Olson <mwolson@gnu.org> patch-51
2302     Summary:
2303       Make visiting of links a bit faster.
2304     Revision:
2305       muse--main--1.0--patch-51
2307     * lisp/muse-colors.el (muse-unhighlight-region): Remove muse-link
2308       property.
2309       (muse-link-properties): If we are highlighting a link, add the
2310       muse-link property.
2311     
2312     * lisp/muse-mode.el (muse-link-at-point): If the muse-link property
2313       exists at point, use it to bound the link.  Otherwise, use the old
2314       method.  This should make it easier to visit custom implicit link
2315       forms, since it does not require a change to muse-implicit-link-regexp.
2316     
2317     * lisp/muse-regexps.el (muse-implicit-link-regexp): Note that this is not
2318       used when muse-colors.el is loaded.
2320     modified files:
2321      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2322      lisp/muse-regexps.el
2325 2006-03-10 04:57:55 GMT Michael Olson <mwolson@gnu.org> patch-50
2327     Summary:
2328       Make resolving of inline image paths more flexible.
2329     Revision:
2330       muse--main--1.0--patch-50
2332     * lisp/muse-colors.el (muse-colors-inline-image-method): Rename from
2333       `muse-inline-relative-to'.  Add muse-colors-use-publishing-directory
2334       option.  Make the fallback customization type a function rather than a
2335       symbol.
2336       (muse-colors-use-publishing-directory): New function that takes the
2337       best guess at where the current Muse file will be published and makes
2338       the given link relative to that.
2339       (muse-colors-insert-image): If muse-colors-inline-image-method is
2340       'default-directory, use the default directory.  If it is a function,
2341       call that function with LINK as an argument.  Otherwise, give up.
2343     modified files:
2344      ChangeLog.2006 lisp/muse-colors.el
2347 2006-03-10 03:43:03 GMT Michael Olson <mwolson@gnu.org> patch-49
2349     Summary:
2350       Fix inline image lockup.
2351     Revision:
2352       muse--main--1.0--patch-49
2354     * lisp/muse-colors.el (muse-colors-explicit-link): Fix regression in
2355       patch-47.  This will prevent Muse from locking up after making a new
2356       inline image.
2358     modified files:
2359      ChangeLog.2006 lisp/muse-colors.el
2362 2006-03-07 03:52:11 GMT Michael Olson <mwolson@gnu.org> patch-48
2364     Summary:
2365       Fix publishing problem with XEmacs.
2366     Revision:
2367       muse--main--1.0--patch-48
2369     * lisp/muse-publish.el (muse-insert-file-or-string): Fix XEmacs
2370       publishing problem when text at beginning of buffer is read-only.
2371       Thanks to Christian Clercin for the report.
2373     modified files:
2374      ChangeLog.2006 lisp/muse-publish.el
2377 2006-03-06 06:06:38 GMT Michael Olson <mwolson@gnu.org> patch-47
2379     Summary:
2380       Get increase and decrease of list indentation to work with complex cases.
2381     Revision:
2382       muse--main--1.0--patch-47
2384     * lisp/muse-colors.el: Miscellaneous whitespace fixes.
2385       (muse-colors-explicit-link): Minor logic tweak.  The indentation seems
2386       to indicate this interpretation, though parens are different.
2387     
2388     * lisp/muse-mode.el: Miscellaneous whitespace fixes.
2389       (muse-alter-list-item-indentation): New function that alters the list
2390       structure at point.  The behavior to use is specified by the OPERATION
2391       argument.  Currently-supported operations are 'increase and 'decrease
2392       indentation level.  This now uses the same sort of list detection
2393       algorithm that is used during publishing, so it should work as expected
2394       for complicated cases.
2395       (muse-increase-list-item-indentation)
2396       (muse-decrease-list-item-indentation): Use
2397       `muse-alter-list-item-indentation'.
2399     modified files:
2400      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2403 2006-03-06 04:50:17 GMT Michael Olson <mwolson@gnu.org> patch-46
2405     Summary:
2406       Code simplification; improve muse-list-item-type function.
2407     Revision:
2408       muse--main--1.0--patch-46
2410     * lisp/muse.el (muse-list-item-type): Disambiguate between 'dl-term and
2411       'dl-entry, instead of just returning 'dl.
2412       (muse-forward-dl-term, muse-forward-dl-entry): Use
2413       muse-forward-list-item.
2414       (muse-forward-dl-part): Remove, merge functionality into
2415       muse-forward-list-item.
2416       (muse-forward-list-item): Add a few conditions needed for skipping
2417       nested 'dl-term and 'dl-entry items.
2419     modified files:
2420      ChangeLog.2006 lisp/muse.el
2423 2006-03-06 01:11:58 GMT Michael Olson <mwolson@gnu.org> patch-45
2425     Summary:
2426       Put movement by list and paragraph functions in muse.el.
2427     Revision:
2428       muse--main--1.0--patch-45
2430     * lisp/muse.el (muse-list-item-type, muse-forward-paragraph):
2431       (muse-forward-dl-term, muse-forward-dl-entry, muse-forward-dl-part):
2432       (muse-forward-list-item): Move here from muse-publish.el, so that
2433       muse-mode can make use of these.
2435     modified files:
2436      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
2439 2006-03-06 01:06:14 GMT Michael Olson <mwolson@gnu.org> patch-44
2441     Summary:
2442       Merged from mwolson@gnu.org--2006-muse-el (patch 5-14)
2443     Revision:
2444       muse--main--1.0--patch-44
2446     (Author: Per B. Sederberg <per@med.upenn.edu>)
2447     
2448     * lisp/muse-mode.el (muse-mode-map): Added key mappings to increase or
2449       decrease the current item indentation.
2450       (muse-get-paragraph-start): Helper function to determine the start of
2451       the current paragraph.
2452       (muse-insert-list-item): Cleaned up list item insertion code and made
2453       it handle definitions.
2454       (muse-increase-list-item-indentation): New interactive function to
2455       increase list item indentation.
2456       (muse-decrease-list-item-indentation): New interactive function to
2457       decrease list item indentation.
2459     modified files:
2460      ChangeLog.2006 lisp/muse-mode.el
2462     new patches:
2463      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-5
2464      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-6
2465      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-7
2466      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-8
2467      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-9
2468      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-10
2469      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-11
2470      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-12
2471      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-13
2472      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-14
2475 2006-03-06 00:58:00 GMT Michael Olson <mwolson@gnu.org> patch-43
2477     Summary:
2478       Use slightly better algorithm for removing initial whitespace.
2479     Revision:
2480       muse--main--1.0--patch-43
2482     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of whether
2483       the definition occurred on the same line as the term.
2484       (muse-publish-surround-text): Use a slightly better algorithm for
2485       removing initial indentation of list items.  This way, we preserve
2486       nesting of lists and also deal with same-level items that occur after
2487       nested items.  This probably doesn't make much of a difference in the
2488       output, but it should make support of nested definition lists a bit
2489       less troublesome in some cases.
2490       (muse-forward-dl-entry): Deal with ambiguity in muse-list-item-regexp
2491       regexp.
2492       (muse-forward-dl-part, muse-forward-list-item): Don't clobber match
2493       data.  Don't remove any text.  This makes the function easier to reuse
2494       in display-only situations.
2496     modified files:
2497      ChangeLog.2006 lisp/muse-publish.el
2500 2006-03-04 02:03:59 GMT Michael Olson <mwolson@gnu.org> patch-42
2502     Summary:
2503       In a preliminary way, make definition lists nest.
2504     Revision:
2505       muse--main--1.0--patch-42
2507     * lisp/muse-publish.el (muse-forward-dl-part): Make it so that definition
2508       lists nest a bit better.
2509     
2510     * lisp/muse-regexps.el (muse-dl-entry-regexp): Removed, since we don't
2511       use it anymore.
2513     modified files:
2514      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2517 2006-03-03 19:28:22 GMT Michael Olson <mwolson@gnu.org> patch-41
2519     Summary:
2520       Fix nested list regression.
2521     Revision:
2522       muse--main--1.0--patch-41
2524     * lisp/muse-publish.el (muse-publish-surround-text): Keep track of
2525       original indentation value and use that.  This fixes a regression
2526       caused by the last patch.
2528     modified files:
2529      ChangeLog.2006 lisp/muse-publish.el
2532 2006-03-03 05:24:59 GMT Michael Olson <mwolson@gnu.org> patch-40
2534     Summary:
2535       Make code look nicer by using muse-forward-dl-* functions.
2536     Revision:
2537       muse--main--1.0--patch-40
2539     * lisp/muse-publish.el (muse-publish-surround-dl): Factor out lambda
2540       forms into muse-forward-dl-* for increased reusability.
2541       (muse-publish-surround-text): Call move function with an indent
2542       argument so that we don't have to use partial substitution in lambda
2543       forms.
2544       (muse-forward-dl-term): New function that moves forward to the next
2545       definition list term.
2546       (muse-forward-dl-entry): New function that moves forward to the next
2547       definition list entry.
2548       (muse-forward-dl-part): Renamed from `muse-forward-dl-item', since this
2549       does not move past entire definition list items, only parts of them.
2550       (muse-publish-markup-list, muse-publish-markup-quote):
2551       (muse-publish-quote-tag): Use better lambda form, and include a
2552       parameter.
2554     modified files:
2555      ChangeLog.2006 lisp/muse-publish.el
2558 2006-03-02 05:38:41 GMT Michael Olson <mwolson@gnu.org> patch-39
2560     Summary:
2561       Handle blockquoted sections within lists properly.
2562     Revision:
2563       muse--main--1.0--patch-39
2565     * lisp/muse-publish.el (muse-forward-paragraph): Respect end-list
2566       property.  This should make blockquoted sections within a list do the
2567       right thing.
2568       (muse-forward-dl-item, muse-forward-list-item): Adjust logic for new
2569       behavior of `muse-forward-paragraph'.
2571     modified files:
2572      ChangeLog.2006 lisp/muse-publish.el
2575 2006-03-02 05:00:07 GMT Michael Olson <mwolson@gnu.org> patch-38
2577     Summary:
2578       Fix problem when previous list item was nested.
2579     Revision:
2580       muse--main--1.0--patch-38
2582     * lisp/muse-publish.el (muse-publish-surround-text): Bind nested list
2583       indicator at the correct place.  This fixes an error where a previous
2584       list was nested but the current one isn't.  Thanks to Per B. Sederberg
2585       for the report.
2587     modified files:
2588      ChangeLog.2006 lisp/muse-publish.el
2591 2006-03-02 04:36:06 GMT Michael Olson <mwolson@gnu.org> patch-37
2593     Summary:
2594       Fix #5376: Changing muse-wiki-wikiword-regexp does not seem to affect anything.
2595     Revision:
2596       muse--main--1.0--patch-37
2598     * muse.texi (Implicit Links): Mention how to customize the WikiName
2599       recognition, and note that if you're setting this manually, you have to
2600       call some additional code.  This should fix #5376.  Also remove local
2601       variables section at end, since it seems pointless.
2603     modified files:
2604      ChangeLog.2006 muse.texi
2607 2006-03-02 04:25:37 GMT Michael Olson <mwolson@gnu.org> patch-36
2609     Summary:
2610       Fix #5325: nested formatting not working in HTML output.
2611     Revision:
2612       muse--main--1.0--patch-36
2614     * lisp/muse-publish.el (muse-publish-markup-word): Make nested emphasis
2615       work.  I'm a bit worried about possible double-escaping, though.
2616       Perhaps we should write the context to a text property and escape it
2617       later.  This should fix #5325.
2619     modified files:
2620      ChangeLog.2006 lisp/muse-publish.el
2623 2006-03-02 01:08:14 GMT Michael Olson <mwolson@gnu.org> patch-35
2625     Summary:
2626       Make paragraphs respect the end of a list or list item.
2627     Revision:
2628       muse--main--1.0--patch-35
2630     * lisp/muse-docbook.el (muse-docbook-markup-paragraph): If we are at the
2631       end of a list (or list item), back up.  This allows for a nice side
2632       effect when using indented sentences in between list items.
2633     
2634     * lisp/muse-html.el (muse-html-markup-paragraph): Ditto.
2635     
2636     * lisp/muse-xml.el (muse-xml-markup-paragraph): Ditto.
2637     
2638     * lisp/muse-publish.el (muse-publish-surround-dl): Make sure that end-ddt
2639       and end-item are marked up with end-list properties.
2641     modified files:
2642      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
2643      lisp/muse-publish.el lisp/muse-xml.el
2646 2006-03-01 21:00:41 GMT Michael Olson <mwolson@gnu.org> patch-34
2648     Summary:
2649       Make sure an initial term exists before publishing definition list.
2650     Revision:
2651       muse--main--1.0--patch-34
2653     * lisp/muse-publish.el (muse-publish-markup-list): Ensure that a term
2654       exists before publishing a definition list.
2656     modified files:
2657      ChangeLog.2006 lisp/muse-publish.el
2660 2006-03-01 20:21:08 GMT Michael Olson <mwolson@gnu.org> patch-33
2662     Summary:
2663       Add comments to nested list code.
2664     Revision:
2665       muse--main--1.0--patch-33
2667     * lisp/muse-publish.el (muse-publish-surround-dl)
2668       (muse-publish-surround-text, muse-forward-dl-item):
2669       (muse-forward-list-item): Add comments, since there were many
2670       intricacies that are probably not obvious to the casual reader.
2671       (muse-forward-dl-item): Remove no-op condition.
2673     modified files:
2674      ChangeLog.2006 lisp/muse-publish.el
2677 2006-03-01 19:51:45 GMT Michael Olson <mwolson@gnu.org> patch-32
2679     Summary:
2680       Make nested list items work when separated by one blank line.
2681     Revision:
2682       muse--main--1.0--patch-32
2684     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2685       muse-forward-dl-item instead of muse-forward-list-item.  On second
2686       thought, don't unconditionally insert a newline, as that breaks some
2687       things.
2688       (muse-forward-dl-item): New function that moves forward to the next
2689       definition list item.  This was factored out from
2690       muse-forward-list-item, since it was getting too complex for my liking.
2691       (muse-forward-dl-item, muse-forward-list-item): Introduce concept of
2692       indented line, and skip past these if we have a blank line followed by
2693       an indented line.  "Indented" means "indented one past the current
2694       indentation level" here.  Remove some initial whitespace that was being
2695       overlooked before.
2697     modified files:
2698      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2701 2006-03-01 17:43:55 GMT Michael Olson <mwolson@gnu.org> patch-31
2703     Summary:
2704       Fix a couple of bugs in muse-wiki-resolve-project-page.
2705     Revision:
2706       muse--main--1.0--patch-31
2708     * lisp/muse-project.el (muse-project-applicable-styles): Use a slightly
2709       better algorithm for adding styles to a list.
2710     
2711     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Handle project more
2712       carefully.  This should fix one or two hard-to-explain bugs.
2714     modified files:
2715      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
2718 2006-03-01 17:24:23 GMT Michael Olson <mwolson@gnu.org> patch-30
2720     Summary:
2721       Fix another definition list edge case.
2722     Revision:
2723       muse--main--1.0--patch-30
2725     * lisp/muse-publish.el (muse-publish-surround-dl): Fix edge case where
2726       unordered list immediately follows definition list term.
2728     modified files:
2729      ChangeLog.2006 lisp/muse-publish.el
2732 2006-03-01 17:05:25 GMT Michael Olson <mwolson@gnu.org> patch-29
2734     Summary:
2735       Pass all current definition list test cases.
2736     Revision:
2737       muse--main--1.0--patch-29
2739     * lisp/muse-publish.el (muse-publish-surround-dl): Move correctly to next
2740       line if definition is not on the same line as the term.
2741       (muse-forward-list-item): Fix publishing incorrectness that occurred
2742       when a non-dl list follows a definition list.  Always move to the right
2743       place so as to prevent extra empty dd elements from being published.
2745     modified files:
2746      ChangeLog.2006 lisp/muse-publish.el
2749 2006-03-01 15:08:45 GMT Michael Olson <mwolson@gnu.org> patch-28
2751     Summary:
2752       Merge consecutive definition list terms properly.
2753     Revision:
2754       muse--main--1.0--patch-28
2756     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of status
2757       correctly.  This makes Muse merge several definition list items into
2758       one list.
2759       (muse-forward-list-item): Use simpler regexp for 'dl.
2760     
2761     * lisp/muse-regexps.el (muse-list-item-regexp): Make terms optional in
2762       definition lists, and make terms the 2nd matched text.
2764     modified files:
2765      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2768 2006-02-28 23:48:24 GMT Michael Olson <mwolson@gnu.org> patch-27
2770     Summary:
2771       Bookkeeping.
2772     Revision:
2773       muse--main--1.0--patch-27
2775     * AUTHORS: Update.
2776     
2777     * muse-colors.el, muse-mode.el: Credit contributions.
2779     modified files:
2780      AUTHORS ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2783 2006-02-28 23:37:26 GMT Michael Olson <mwolson@gnu.org> patch-26
2785     Summary:
2786       Merged from mwolson@gnu.org--2006-muse-el (patch 0-4)
2787     Revision:
2788       muse--main--1.0--patch-26
2790     Patches applied:
2791     
2792      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2793        Added ability to show inline images in the Emacs buffer.
2794     
2795      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2796        Added enhanced list item insertion.
2797     
2798     Detailed log:
2799     
2800     (Author: Per B. Sederberg <per@med.upenn.edu>)
2801     
2802     * lisp/muse-mode.el (muse-mode-map): Added new key binding to insert a
2803       list item.  New key mapping to toggle showing images.  Added a key
2804       mapping to insert a link to a file and modified the key map to insert a
2805       tag.
2806       (muse-on-blank-line): Helper function to determine if the point is on a
2807       line containing only blank spaces.
2808       (muse-insert-list-item): New interactive function to insert a new list
2809       item, taking into account the current list state.
2810       (muse-insert-relative-link-to-file): New function to insert a link to a
2811       file, relative to the default directory.
2812     
2813     * lisp/muse-colors.el (muse-inline-relative-to): Added custom directory
2814       for where to search for images to inline in the buffer.
2815       (muse-colors-inline-images): Added custom boolean field for whether to
2816       show inline images in the buffer.
2817       (muse-colors-toggle-inline-images): New function to toggle showing the
2818       inline images in the buffer.
2819       (muse-unhighlight-region): Now removes end-glyph text properties to
2820       support XEmacs.
2821       (muse-colors-resolve-image-file): New function to determine if a link
2822       is an image and whether the version of Emacs can support inline images.
2823       (muse-make-file-glyph): New function to create an image glyph if we are
2824       using XEmacs.
2825       (muse-colors-insert-image): New function to insert an image in an Emacs
2826       buffer.
2827       (muse-colors-explicit-link): Modified function to have the ability to
2828       insert an image instead of formatting the text of the link.
2830     modified files:
2831      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2833     new patches:
2834      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--base-0
2835      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-1
2836      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2837      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2838      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-4
2841 2006-02-28 05:20:11 GMT Michael Olson <mwolson@gnu.org> patch-25
2843     Summary:
2844       Pass testcase for definition list and nested unordered list.
2845     Revision:
2846       muse--main--1.0--patch-25
2848     * lisp/muse-publish.el (muse-publish-surround-dl): Ensure that definition
2849       lists always have at least one entry.  This appears to do the right
2850       thing with a sample nested unordered list.
2852     modified files:
2853      ChangeLog.2006 lisp/muse-publish.el
2856 2006-02-28 05:09:33 GMT Michael Olson <mwolson@gnu.org> patch-24
2858     Summary:
2859       Some definition list fixes.
2860     Revision:
2861       muse--main--1.0--patch-24
2863     * lisp/muse-publish.el (muse-publish-markup-list): Make sure to insert
2864       markup for end of list using the `muse-insert-markup-end-list'
2865       function.  Handle list items nested inside of a definition list.
2867     modified files:
2868      ChangeLog.2006 lisp/muse-publish.el
2871 2006-02-28 04:43:15 GMT Michael Olson <mwolson@gnu.org> patch-23
2873     Summary:
2874       Fix another wrapped list item edge case.
2875     Revision:
2876       muse--main--1.0--patch-23
2878     * lisp/muse-publish.el (muse-publish-surround-text): Stop removing
2879       indentation in a region when we encounter any list items.  This should
2880       fix another wrapped list item edge case.  Thanks to Per B. Sederberg
2881       for the report.
2883     modified files:
2884      ChangeLog.2006 lisp/muse-publish.el
2887 2006-02-26 18:26:05 GMT Michael Olson <mwolson@gnu.org> patch-22
2889     Summary:
2890       Fix comment in Debian packaging.
2891     Revision:
2892       muse--main--1.0--patch-22
2894     * debian/emacsen-remove: Fix comment.
2896     modified files:
2897      ChangeLog.2006 debian/emacsen-remove
2900 2006-02-24 03:23:49 GMT Michael Olson <mwolson@gnu.org> patch-21
2902     Summary:
2903       muse-blosxom: Fix order of #tags line in header.
2904     Revision:
2905       muse--main--1.0--patch-21
2907     * lisp/muse-blosxom.el (muse-blosxom-header): Put #tags line after title,
2908       rather than before it.  Thanks to bkhl for the heads up.
2910     modified files:
2911      ChangeLog.2006 lisp/muse-blosxom.el
2914 2006-02-23 03:33:03 GMT Michael Olson <mwolson@gnu.org> patch-20
2916     Summary:
2917       muse-blosxom: Add ability to use tags in entries.
2918     Revision:
2919       muse--main--1.0--patch-20
2921     * lisp/muse-blosxom.el (muse-blosxom-header): If we are using tags,
2922       publish them.
2923       (muse-blosxom-use-tags): New option that specifies whether we are using
2924       tags.
2925       (muse-blosxom-new-entry): If using tags, read tags until the user hits
2926       RET without entering one.
2928     modified files:
2929      ChangeLog.2006 lisp/muse-blosxom.el
2932 2006-02-23 03:23:51 GMT Michael Olson <mwolson@gnu.org> patch-19
2934     Summary:
2935       Fix backtrace when publishing unsaved files.
2936     Revision:
2937       muse--main--1.0--patch-19
2939     * lisp/muse-publish.el (muse-publish-file): Detect case where we are
2940       trying to publish a file that has not been saved, and give an
2941       explanation to the user.
2943     modified files:
2944      ChangeLog.2006 lisp/muse-publish.el
2947 2006-02-21 23:19:36 GMT Michael Olson <mwolson@gnu.org> patch-18
2949     Summary:
2950       muse-texinfo: Fix link suffix.
2951     Revision:
2952       muse--main--1.0--patch-18
2954     * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf
2955       styles.  This should fix a bug where links in published info files use
2956       an incorrect extension.  Thanks to Hans Ekbrand for the report!
2958     modified files:
2959      ChangeLog.2006 lisp/muse-texinfo.el
2962 2006-02-16 21:54:11 GMT Michael Olson <mwolson@gnu.org> patch-17
2964     Summary:
2965       Fix prompting of non-Muse buffers before publishing.
2966     Revision:
2967       muse--main--1.0--patch-17
2969     * lisp/muse-project.el (muse-project-of-file): Apply fix from René
2970       Stadler to ignore buffers that have no associated filename.  This fixes
2971       an annoyance where Muse prompts to save BBDB and ERC buffers before
2972       publishing.
2974     modified files:
2975      AUTHORS ChangeLog.2006 lisp/muse-project.el
2978 2006-02-16 04:43:35 GMT Michael Olson <mwolson@gnu.org> patch-16
2980     Summary:
2981       Fix wrapped nested list item edge case.
2982     Revision:
2983       muse--main--1.0--patch-16
2985     * lisp/muse-publish.el (muse-publish-markup-regexps): Remove 2300 rule,
2986       since it is no longer needed.  Tweak 2200 regexp to cover 2300's use
2987       case.
2988       (muse-publish-surround-text): Tweak prefix for muse-list-item-regexp.
2989       (muse-list-item-type): Handle the new change to muse-list-item-regexp.
2990     
2991     * lisp/muse-regexps.el (muse-list-item-regexp): Explicitly require
2992       exactly one space character in front of a unnumbered or numbered list.
2993       This should make it easier to match every list instance, since
2994       definition lists can now be handled more nicely in
2995       muse-publish-markup-regexps.  This also has the effect of fixing a
2996       wrapped nested list item edge case.
2998     modified files:
2999      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
3002 2006-02-16 03:04:20 GMT Michael Olson <mwolson@gnu.org> patch-15
3004     Summary:
3005       Fix edge case in muse-wiki-publish-pretty-title.
3006     Revision:
3007       muse--main--1.0--patch-15
3009     * lisp/muse-wiki.el (muse-wiki-publish-pretty-title): If for some reason
3010       the document does not have a valid title, use the empty string.
3012     modified files:
3013      ChangeLog.2006 lisp/muse-wiki.el
3016 2006-02-14 06:35:02 GMT Michael Olson <mwolson@gnu.org> patch-14
3018     Summary:
3019       Use debian/compat to determine debhelper compat level.
3020     Revision:
3021       muse--main--1.0--patch-14
3023     * debian/compat: New file that sets the debhelper compatibility level to
3024       4.
3025     
3026     * debian/rules: Remove DH_COMPAT line.
3028     new files:
3029      debian/.arch-ids/compat.id debian/compat
3031     modified files:
3032      ChangeLog.2006 debian/rules
3035 2006-02-13 04:50:57 GMT Michael Olson <mwolson@gnu.org> patch-13
3037     Summary:
3038       Fix a couple of table-publishing edge cases.
3039     Revision:
3040       muse--main--1.0--patch-13
3042     * lisp/muse-publish.el (muse-publish-markup-regexps): Fix a table
3043       publishing error that occurs when a table line is the last thing in a
3044       document.  Thanks to cymacs for the report and suggested fix.
3045       (muse-publish-table-fields): Skip initial blank lines, and don't remove
3046       them.
3047     
3048     * lisp/muse-docbook.el (muse-docbook-markup-strings): Don't put a newline
3049       at the end of the 'end-table markup string.
3050     
3051     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
3052     
3053     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
3054     
3055     * lisp/muse-xml-common.el (muse-xml-markup-table): Always insert a
3056       newline at the end of the table.  This should fix a problem with
3057       paragraphs after tables not being published as such.  Thanks to cymacs
3058       for the report.
3059     
3060     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Don't use
3061       muse-insert-markup to insert a trailing newline.
3063     modified files:
3064      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
3065      lisp/muse-publish.el lisp/muse-texinfo.el
3066      lisp/muse-xml-common.el lisp/muse-xml.el
3069 2006-02-12 22:56:27 GMT Michael Olson <mwolson@gnu.org> patch-12
3071     Summary:
3072       Add ChangeLog for 2006 and move previous ChangeLog for 2005.
3073     Revision:
3074       muse--main--1.0--patch-12
3077     new files:
3078      .arch-ids/ChangeLog.2006.id ChangeLog.2006
3080     renamed files:
3081      .arch-ids/ChangeLog.id
3082        ==> .arch-ids/ChangeLog.2005.id
3083      ChangeLog
3084        ==> ChangeLog.2005
3087 2006-02-12 22:53:48 GMT Michael Olson <mwolson@gnu.org> patch-11
3089     Summary:
3090       Make muse-journal work with whole-document escaping.
3091     Revision:
3092       muse--main--1.0--patch-11
3094     * examples/mwolson/templates/*: Change "Published by Muse" to "Published
3095       by Emacs Muse" so that muse-journal does not get confused.
3096     
3097     * lisp/muse-journal.el (muse-journal-html-munge-buffer):
3098       (muse-journal-latex-munge-buffer, muse-journal-rss-munge-buffer): Adapt
3099       for whole-buffer escaping.  Thanks to mondoshawan for the report.
3100       (muse-journal-rss-munge-buffer): Display a warning if someone does not
3101       have "Page published by Emacs Muse (begins|ends) here" in their header
3102       or footer, since muse-journal needs this in order to determine where
3103       entries begin and end.
3105     modified files:
3106      examples/mwolson/templates/footer.html
3107      examples/mwolson/templates/generic-footer.html
3108      examples/mwolson/templates/generic-header.html
3109      examples/mwolson/templates/header.html
3110      examples/mwolson/templates/header.tex lisp/muse-journal.el
3113 2006-02-08 03:00:07 GMT Michael Olson <mwolson@gnu.org> patch-10
3115     Summary:
3116       Get simple test case for definition lists to work.
3117     Revision:
3118       muse--main--1.0--patch-10
3120     * lisp/muse-publish.el (muse-publish-surround-dl): Make simple test case
3121       publish properly.
3122       (muse-forward-list-item): Fix edge case.
3124     modified files:
3125      lisp/muse-publish.el
3128 2006-01-28 02:47:07 GMT Michael Olson <mwolson@gnu.org> patch-9
3130     Summary:
3131       Add documentation to some publishing functions.
3132     Revision:
3133       muse--main--1.0--patch-9
3135     * lisp/muse-publish.el (muse-publish-mark-read-only)
3136       (muse-publish-mark-noemphasis): Add documentation.
3138     modified files:
3139      lisp/muse-publish.el
3142 2006-01-28 02:42:03 GMT Michael Olson <mwolson@gnu.org> patch-8
3144     Summary:
3145       Fix an error with `custom-quote'.
3146     Revision:
3147       muse--main--1.0--patch-8
3149     * lisp/muse-project.el: Require 'cus-edit, since that is where
3150       `custom-quote' is defined.
3151     
3152     * muse.texi: Use copyright symbol.
3154     modified files:
3155      lisp/muse-project.el muse.texi
3158 2006-01-25 18:27:53 GMT Michael Olson <mwolson@gnu.org> patch-7
3160     Summary:
3161       muse-registry: update from author.
3162     Revision:
3163       muse--main--1.0--patch-7
3165     * lisp/muse-registry.el: Update to newest version from author.
3166       Re-tabify.
3168     modified files:
3169      lisp/muse-registry.el
3172 2006-01-21 19:26:57 GMT Michael Olson <mwolson@gnu.org> patch-6
3174     Summary:
3175       muse-latex: Handle double-quote edge case.
3176     Revision:
3177       muse--main--1.0--patch-6
3179     * lisp/muse-latex.el (muse-latex-fixup-dquotes): Handle case when a quote
3180       character begins the buffer.
3182     modified files:
3183      lisp/muse-latex.el
3186 2006-01-21 18:47:33 GMT Michael Olson <mwolson@gnu.org> patch-5
3188     Summary:
3189       Allow beginning and ending empty elements in tables.
3190     Revision:
3191       muse--main--1.0--patch-5
3193     * lisp/muse-regexps.el (muse-table-field-regexp): Allow there to be no
3194       whitespace after the field if we're at the end of a line.
3195       (muse-table-line-regexp): Allow the table to start with a "|".  The
3196       resulting initial empty cell isn't yet thrown away like it should be.
3198     modified files:
3199      lisp/muse-regexps.el
3202 2006-01-21 02:45:36 GMT Michael Olson <mwolson@gnu.org> patch-4
3204     Summary:
3205       muse-latex: Use \url to publish bare URLs.
3206     Revision:
3207       muse--main--1.0--patch-4
3209     * lisp/muse-latex.el (muse-latex-markup-strings): Use \url instead of
3210       \href for bare URLs.  Thanks to Na Li for the suggestion!
3212     modified files:
3213      lisp/muse-latex.el
3216 2006-01-20 16:22:04 GMT Michael Olson <mwolson@gnu.org> patch-3
3218     Summary:
3219       Create parents of output directories.
3220     Revision:
3221       muse--main--1.0--patch-3
3223     * lisp/muse-project.el (muse-project-publish-file): Create parent
3224       directories as well, if the output directory does not exist.  This can
3225       happen when we have nested directories in a project.
3227     modified files:
3228      lisp/muse-project.el
3231 2006-01-20 15:54:21 GMT Michael Olson <mwolson@gnu.org> patch-2
3233     Summary:
3234       Pick a better default if publishing with more than one style.
3235     Revision:
3236       muse--main--1.0--patch-2
3238     * lisp/muse-project.el (muse-project-applicable-styles): Make sure that
3239       the list we return is in the right order.  That way, if more than one
3240       publishing rule matches a link, the first one is used, rather than the
3241       last.
3243     modified files:
3244      lisp/muse-project.el
3247 2006-01-19 15:55:19 GMT Michael Olson <mwolson@gnu.org> patch-1
3249     Summary:
3250       Oops, committed to the wrong archive.
3251     Revision:
3252       muse--main--1.0--patch-1
3254     Patches applied:
3255     
3256      * mwolson@gnu.org--2005/muse--main--1.0--patch-356
3257        Debian fixups.
3258     
3259      * mwolson@gnu.org--2005/muse--main--1.0--patch-357
3260        Another Debian fix.
3262     modified files:
3263      ChangeLog debian/emacsen-startup
3265     renamed files:
3266      debian/.arch-ids/NEWS.Debian.id
3267        ==> debian/.arch-ids/NEWS.id
3268      debian/NEWS.Debian
3269        ==> debian/NEWS
3271     new patches:
3272      mwolson@gnu.org--2005/muse--main--1.0--patch-356
3273      mwolson@gnu.org--2005/muse--main--1.0--patch-357
3276 2006-01-17 06:28:50 GMT Michael Olson <mwolson@gnu.org> base-0
3278     Summary:
3279       tag of mwolson@gnu.org--2005/muse--main--1.0--patch-355
3280     Revision:
3281       muse--main--1.0--base-0
3283     See ChangeLog.2005 for earlier changes.
3285     new patches:
3286      ajk@iu.edu--2005/muse--ajk--1.0--base-0
3287      ajk@iu.edu--2005/muse--ajk--1.0--patch-1
3288      ajk@iu.edu--2005/muse--ajk--1.0--patch-2
3289      ajk@iu.edu--2005/muse--ajk--1.0--patch-3
3290      ajk@iu.edu--2005/muse--ajk--1.0--patch-4
3291      ajk@iu.edu--2005/muse--ajk--1.0--patch-5
3292      ajk@iu.edu--2005/muse--ajk--1.0--patch-6
3293      ajk@iu.edu--2005/muse--ajk--1.0--patch-7
3294      ajk@iu.edu--2005/muse--ajk--1.0--patch-8
3295      ajk@iu.edu--2005/muse--ajk--1.0--patch-9
3296      ajk@iu.edu--2005/muse--main--1.0--base-0
3297      ajk@iu.edu--2005/muse--main--1.0--patch-1
3298      ajk@iu.edu--2005/muse--main--1.0--patch-2
3299      davidsmith@acm.org--2005/muse--devo--1.0--base-0
3300      davidsmith@acm.org--main/muse--devo--1.0--base-0
3301      davidsmith@acm.org--main/muse--devo--1.0--patch-1
3302      davidsmith@acm.org--main/muse--devo--1.0--patch-2
3303      hodique@lifl.fr--2005/muse--yh--1.0--base-0
3304      hodique@lifl.fr--2005/muse--yh--1.0--patch-1
3305      hodique@lifl.fr--2005/muse--yh--1.0--patch-2
3306      hodique@lifl.fr--2005/muse--yh--1.0--patch-3
3307      hodique@lifl.fr--2005/muse--yh--1.0--patch-4
3308      hodique@lifl.fr--2005/muse--yh--1.0--patch-5
3309      hodique@lifl.fr--2005/muse--yh--1.0--patch-6
3310      hodique@lifl.fr--2005/muse--yh--1.0--patch-7
3311      hodique@lifl.fr--2005/muse--yh--1.0--patch-8
3312      hodique@lifl.fr--2005/muse--yh--1.0--patch-9
3313      hodique@lifl.fr--2005/muse--yh--1.0--patch-10
3314      hodique@lifl.fr--2005/muse--yh--1.0--patch-11
3315      hodique@lifl.fr--2005/muse--yh--1.0--patch-12
3316      hodique@lifl.fr--2005/muse--yh--1.0--patch-13
3317      hodique@lifl.fr--2005/muse--yh--1.0--patch-14
3318      hodique@lifl.fr--2005/muse--yh--1.0--patch-15
3319      hodique@lifl.fr--2005/muse--yh--1.0--patch-16
3320      hodique@lifl.fr--2005/muse--yh--1.0--patch-17
3321      hodique@lifl.fr--2005/muse--yh--1.0--patch-18
3322      hodique@lifl.fr--2005/muse--yh--1.0--patch-19
3323      hodique@lifl.fr--2005/muse--yh--1.0--patch-20
3324      hodique@lifl.fr--2005/muse--yh--1.0--patch-21
3325      hodique@lifl.fr--2005/muse--yh--1.0--patch-22
3326      hodique@lifl.fr--2005/muse--yh--1.0--patch-23
3327      hodique@lifl.fr--2005/muse--yh--1.0--patch-24
3328      hodique@lifl.fr--2005/muse--yh--1.0--patch-25
3329      hodique@lifl.fr--2005/muse--yh--1.0--patch-26
3330      hodique@lifl.fr--2005/muse--yh--1.0--patch-27
3331      hodique@lifl.fr--2005/muse--yh--1.0--patch-28
3332      hodique@lifl.fr--2005/muse--yh--1.0--patch-29
3333      hodique@lifl.fr--2005/muse--yh--1.0--patch-30
3334      hodique@lifl.fr--2005/muse--yh--1.0--patch-31
3335      hodique@lifl.fr--2005/muse--yh--1.0--patch-32
3336      hodique@lifl.fr--2005/muse--yh--1.0--patch-33
3337      hodique@lifl.fr--2005/muse--yh--1.0--patch-34
3338      hodique@lifl.fr--2005/muse--yh--1.0--patch-35
3339      hodique@lifl.fr--2005/muse--yh--1.0--patch-36
3340      hodique@lifl.fr--2005/muse--yh--1.0--patch-37
3341      hodique@lifl.fr--2005/muse--yh--1.0--patch-38
3342      hodique@lifl.fr--2005/muse--yh--1.0--patch-39
3343      hodique@lifl.fr--2005/muse--yh--1.0--patch-40
3344      hodique@lifl.fr--2005/muse--yh--1.0--patch-41
3345      hodique@lifl.fr--2005/muse--yh--1.0--patch-42
3346      hodique@lifl.fr--2005/muse--yh--1.0--patch-43
3347      hodique@lifl.fr--2005/muse--yh--1.0--patch-44
3348      hodique@lifl.fr--2005/muse--yh--1.0--patch-45
3349      jeho@jeho.org--2005/muse--jeho--1.0--base-0
3350      jeho@jeho.org--2005/muse--jeho--1.0--patch-1
3351      jeho@jeho.org--2005/muse--jeho--1.0--patch-2
3352      jeho@jeho.org--2005/muse--jeho--1.0--patch-3
3353      jeho@jeho.org--2005/muse--jeho--1.0--patch-4
3354      jeho@jeho.org--2005/muse--jeho--1.0--patch-5
3355      jeho@jeho.org--2005/muse--jeho--1.0--patch-6
3356      jeho@jeho.org--2005/muse--jeho--1.0--patch-7
3357      jeho@jeho.org--2005/muse--jeho--1.0--patch-8
3358      jeho@jeho.org--2005/muse--jeho--1.0--patch-9
3359      jeho@jeho.org--2005/muse--jeho--1.0--patch-10
3360      jeho@jeho.org--2005/muse--jeho--1.0--patch-11
3361      jeho@jeho.org--2005/muse--jeho--1.0--patch-12
3362      jeho@jeho.org--2005/muse--jeho--1.0--patch-13
3363      jeho@jeho.org--2005/muse--jeho--1.0--patch-14
3364      jeho@jeho.org--2005/muse--jeho--1.0--patch-15
3365      jeho@jeho.org--2005/muse--jeho--1.0--patch-16
3366      jeho@jeho.org--2005/muse--jeho--1.0--patch-17
3367      jeho@jeho.org--2005/muse--jeho--1.0--patch-18
3368      jeho@jeho.org--2005/muse--jeho--1.0--patch-19
3369      jeho@jeho.org--2005/muse--jeho--1.0--patch-20
3370      jeho@jeho.org--2005/muse--jeho--1.0--patch-21
3371      john@wjsullivan.net--2006/muse--johnsu01--0--base-0
3372      john@wjsullivan.net--2006/muse--johnsu01--0--patch-1
3373      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--base-0
3374      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-1
3375      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-2
3376      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-1
3377      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-2
3378      mwolson@gnu.org--2005/muse--main--1.0--base-0
3379      mwolson@gnu.org--2005/muse--main--1.0--patch-1
3380      mwolson@gnu.org--2005/muse--main--1.0--patch-2
3381      mwolson@gnu.org--2005/muse--main--1.0--patch-3
3382      mwolson@gnu.org--2005/muse--main--1.0--patch-4
3383      mwolson@gnu.org--2005/muse--main--1.0--patch-5
3384      mwolson@gnu.org--2005/muse--main--1.0--patch-6
3385      mwolson@gnu.org--2005/muse--main--1.0--patch-7
3386      mwolson@gnu.org--2005/muse--main--1.0--patch-8
3387      mwolson@gnu.org--2005/muse--main--1.0--patch-9
3388      mwolson@gnu.org--2005/muse--main--1.0--patch-10
3389      mwolson@gnu.org--2005/muse--main--1.0--patch-11
3390      mwolson@gnu.org--2005/muse--main--1.0--patch-12
3391      mwolson@gnu.org--2005/muse--main--1.0--patch-13
3392      mwolson@gnu.org--2005/muse--main--1.0--patch-14
3393      mwolson@gnu.org--2005/muse--main--1.0--patch-15
3394      mwolson@gnu.org--2005/muse--main--1.0--patch-16
3395      mwolson@gnu.org--2005/muse--main--1.0--patch-17
3396      mwolson@gnu.org--2005/muse--main--1.0--patch-18
3397      mwolson@gnu.org--2005/muse--main--1.0--patch-19
3398      mwolson@gnu.org--2005/muse--main--1.0--patch-20
3399      mwolson@gnu.org--2005/muse--main--1.0--patch-21
3400      mwolson@gnu.org--2005/muse--main--1.0--patch-22
3401      mwolson@gnu.org--2005/muse--main--1.0--patch-23
3402      mwolson@gnu.org--2005/muse--main--1.0--patch-24
3403      mwolson@gnu.org--2005/muse--main--1.0--patch-25
3404      mwolson@gnu.org--2005/muse--main--1.0--patch-26
3405      mwolson@gnu.org--2005/muse--main--1.0--patch-27
3406      mwolson@gnu.org--2005/muse--main--1.0--patch-28
3407      mwolson@gnu.org--2005/muse--main--1.0--patch-29
3408      mwolson@gnu.org--2005/muse--main--1.0--patch-30
3409      mwolson@gnu.org--2005/muse--main--1.0--patch-31
3410      mwolson@gnu.org--2005/muse--main--1.0--patch-32
3411      mwolson@gnu.org--2005/muse--main--1.0--patch-33
3412      mwolson@gnu.org--2005/muse--main--1.0--patch-34
3413      mwolson@gnu.org--2005/muse--main--1.0--patch-35
3414      mwolson@gnu.org--2005/muse--main--1.0--patch-36
3415      mwolson@gnu.org--2005/muse--main--1.0--patch-37
3416      mwolson@gnu.org--2005/muse--main--1.0--patch-38
3417      mwolson@gnu.org--2005/muse--main--1.0--patch-39
3418      mwolson@gnu.org--2005/muse--main--1.0--patch-40
3419      mwolson@gnu.org--2005/muse--main--1.0--patch-41
3420      mwolson@gnu.org--2005/muse--main--1.0--patch-42
3421      mwolson@gnu.org--2005/muse--main--1.0--patch-43
3422      mwolson@gnu.org--2005/muse--main--1.0--patch-44
3423      mwolson@gnu.org--2005/muse--main--1.0--patch-45
3424      mwolson@gnu.org--2005/muse--main--1.0--patch-46
3425      mwolson@gnu.org--2005/muse--main--1.0--patch-47
3426      mwolson@gnu.org--2005/muse--main--1.0--patch-48
3427      mwolson@gnu.org--2005/muse--main--1.0--patch-49
3428      mwolson@gnu.org--2005/muse--main--1.0--patch-50
3429      mwolson@gnu.org--2005/muse--main--1.0--patch-51
3430      mwolson@gnu.org--2005/muse--main--1.0--patch-52
3431      mwolson@gnu.org--2005/muse--main--1.0--patch-53
3432      mwolson@gnu.org--2005/muse--main--1.0--patch-54
3433      mwolson@gnu.org--2005/muse--main--1.0--patch-55
3434      mwolson@gnu.org--2005/muse--main--1.0--patch-56
3435      mwolson@gnu.org--2005/muse--main--1.0--patch-57
3436      mwolson@gnu.org--2005/muse--main--1.0--patch-58
3437      mwolson@gnu.org--2005/muse--main--1.0--patch-59
3438      mwolson@gnu.org--2005/muse--main--1.0--patch-60
3439      mwolson@gnu.org--2005/muse--main--1.0--patch-61
3440      mwolson@gnu.org--2005/muse--main--1.0--patch-62
3441      mwolson@gnu.org--2005/muse--main--1.0--patch-63
3442      mwolson@gnu.org--2005/muse--main--1.0--patch-64
3443      mwolson@gnu.org--2005/muse--main--1.0--patch-65
3444      mwolson@gnu.org--2005/muse--main--1.0--patch-66
3445      mwolson@gnu.org--2005/muse--main--1.0--patch-67
3446      mwolson@gnu.org--2005/muse--main--1.0--patch-68
3447      mwolson@gnu.org--2005/muse--main--1.0--patch-69
3448      mwolson@gnu.org--2005/muse--main--1.0--patch-70
3449      mwolson@gnu.org--2005/muse--main--1.0--patch-71
3450      mwolson@gnu.org--2005/muse--main--1.0--patch-72
3451      mwolson@gnu.org--2005/muse--main--1.0--patch-73
3452      mwolson@gnu.org--2005/muse--main--1.0--patch-74
3453      mwolson@gnu.org--2005/muse--main--1.0--patch-75
3454      mwolson@gnu.org--2005/muse--main--1.0--patch-76
3455      mwolson@gnu.org--2005/muse--main--1.0--patch-77
3456      mwolson@gnu.org--2005/muse--main--1.0--patch-78
3457      mwolson@gnu.org--2005/muse--main--1.0--patch-79
3458      mwolson@gnu.org--2005/muse--main--1.0--patch-80
3459      mwolson@gnu.org--2005/muse--main--1.0--patch-81
3460      mwolson@gnu.org--2005/muse--main--1.0--patch-82
3461      mwolson@gnu.org--2005/muse--main--1.0--patch-83
3462      mwolson@gnu.org--2005/muse--main--1.0--patch-84
3463      mwolson@gnu.org--2005/muse--main--1.0--patch-85
3464      mwolson@gnu.org--2005/muse--main--1.0--patch-86
3465      mwolson@gnu.org--2005/muse--main--1.0--patch-87
3466      mwolson@gnu.org--2005/muse--main--1.0--patch-88
3467      mwolson@gnu.org--2005/muse--main--1.0--patch-89
3468      mwolson@gnu.org--2005/muse--main--1.0--patch-90
3469      mwolson@gnu.org--2005/muse--main--1.0--patch-91
3470      mwolson@gnu.org--2005/muse--main--1.0--patch-92
3471      mwolson@gnu.org--2005/muse--main--1.0--patch-93
3472      mwolson@gnu.org--2005/muse--main--1.0--patch-94
3473      mwolson@gnu.org--2005/muse--main--1.0--patch-95
3474      mwolson@gnu.org--2005/muse--main--1.0--patch-96
3475      mwolson@gnu.org--2005/muse--main--1.0--patch-97
3476      mwolson@gnu.org--2005/muse--main--1.0--patch-98
3477      mwolson@gnu.org--2005/muse--main--1.0--patch-99
3478      mwolson@gnu.org--2005/muse--main--1.0--patch-100
3479      mwolson@gnu.org--2005/muse--main--1.0--patch-101
3480      mwolson@gnu.org--2005/muse--main--1.0--patch-102
3481      mwolson@gnu.org--2005/muse--main--1.0--patch-103
3482      mwolson@gnu.org--2005/muse--main--1.0--patch-104
3483      mwolson@gnu.org--2005/muse--main--1.0--patch-105
3484      mwolson@gnu.org--2005/muse--main--1.0--patch-106
3485      mwolson@gnu.org--2005/muse--main--1.0--patch-107
3486      mwolson@gnu.org--2005/muse--main--1.0--patch-108
3487      mwolson@gnu.org--2005/muse--main--1.0--patch-109
3488      mwolson@gnu.org--2005/muse--main--1.0--patch-110
3489      mwolson@gnu.org--2005/muse--main--1.0--patch-111
3490      mwolson@gnu.org--2005/muse--main--1.0--patch-112
3491      mwolson@gnu.org--2005/muse--main--1.0--patch-113
3492      mwolson@gnu.org--2005/muse--main--1.0--patch-114
3493      mwolson@gnu.org--2005/muse--main--1.0--patch-115
3494      mwolson@gnu.org--2005/muse--main--1.0--patch-116
3495      mwolson@gnu.org--2005/muse--main--1.0--patch-117
3496      mwolson@gnu.org--2005/muse--main--1.0--patch-118
3497      mwolson@gnu.org--2005/muse--main--1.0--patch-119
3498      mwolson@gnu.org--2005/muse--main--1.0--patch-120
3499      mwolson@gnu.org--2005/muse--main--1.0--patch-121
3500      mwolson@gnu.org--2005/muse--main--1.0--patch-122
3501      mwolson@gnu.org--2005/muse--main--1.0--patch-123
3502      mwolson@gnu.org--2005/muse--main--1.0--patch-124
3503      mwolson@gnu.org--2005/muse--main--1.0--patch-125
3504      mwolson@gnu.org--2005/muse--main--1.0--patch-126
3505      mwolson@gnu.org--2005/muse--main--1.0--patch-127
3506      mwolson@gnu.org--2005/muse--main--1.0--patch-128
3507      mwolson@gnu.org--2005/muse--main--1.0--patch-129
3508      mwolson@gnu.org--2005/muse--main--1.0--patch-130
3509      mwolson@gnu.org--2005/muse--main--1.0--patch-131
3510      mwolson@gnu.org--2005/muse--main--1.0--patch-132
3511      mwolson@gnu.org--2005/muse--main--1.0--patch-133
3512      mwolson@gnu.org--2005/muse--main--1.0--patch-134
3513      mwolson@gnu.org--2005/muse--main--1.0--patch-135
3514      mwolson@gnu.org--2005/muse--main--1.0--patch-136
3515      mwolson@gnu.org--2005/muse--main--1.0--patch-137
3516      mwolson@gnu.org--2005/muse--main--1.0--patch-138
3517      mwolson@gnu.org--2005/muse--main--1.0--patch-139
3518      mwolson@gnu.org--2005/muse--main--1.0--patch-140
3519      mwolson@gnu.org--2005/muse--main--1.0--patch-141
3520      mwolson@gnu.org--2005/muse--main--1.0--patch-142
3521      mwolson@gnu.org--2005/muse--main--1.0--patch-143
3522      mwolson@gnu.org--2005/muse--main--1.0--patch-144
3523      mwolson@gnu.org--2005/muse--main--1.0--patch-145
3524      mwolson@gnu.org--2005/muse--main--1.0--patch-146
3525      mwolson@gnu.org--2005/muse--main--1.0--patch-147
3526      mwolson@gnu.org--2005/muse--main--1.0--patch-148
3527      mwolson@gnu.org--2005/muse--main--1.0--patch-149
3528      mwolson@gnu.org--2005/muse--main--1.0--patch-150
3529      mwolson@gnu.org--2005/muse--main--1.0--patch-151
3530      mwolson@gnu.org--2005/muse--main--1.0--patch-152
3531      mwolson@gnu.org--2005/muse--main--1.0--patch-153
3532      mwolson@gnu.org--2005/muse--main--1.0--patch-154
3533      mwolson@gnu.org--2005/muse--main--1.0--patch-155
3534      mwolson@gnu.org--2005/muse--main--1.0--patch-156
3535      mwolson@gnu.org--2005/muse--main--1.0--patch-157
3536      mwolson@gnu.org--2005/muse--main--1.0--patch-158
3537      mwolson@gnu.org--2005/muse--main--1.0--patch-159
3538      mwolson@gnu.org--2005/muse--main--1.0--patch-160
3539      mwolson@gnu.org--2005/muse--main--1.0--patch-161
3540      mwolson@gnu.org--2005/muse--main--1.0--patch-162
3541      mwolson@gnu.org--2005/muse--main--1.0--patch-163
3542      mwolson@gnu.org--2005/muse--main--1.0--patch-164
3543      mwolson@gnu.org--2005/muse--main--1.0--patch-165
3544      mwolson@gnu.org--2005/muse--main--1.0--patch-166
3545      mwolson@gnu.org--2005/muse--main--1.0--patch-167
3546      mwolson@gnu.org--2005/muse--main--1.0--patch-168
3547      mwolson@gnu.org--2005/muse--main--1.0--patch-169
3548      mwolson@gnu.org--2005/muse--main--1.0--patch-170
3549      mwolson@gnu.org--2005/muse--main--1.0--patch-171
3550      mwolson@gnu.org--2005/muse--main--1.0--patch-172
3551      mwolson@gnu.org--2005/muse--main--1.0--patch-173
3552      mwolson@gnu.org--2005/muse--main--1.0--patch-174
3553      mwolson@gnu.org--2005/muse--main--1.0--patch-175
3554      mwolson@gnu.org--2005/muse--main--1.0--patch-176
3555      mwolson@gnu.org--2005/muse--main--1.0--patch-177
3556      mwolson@gnu.org--2005/muse--main--1.0--patch-178
3557      mwolson@gnu.org--2005/muse--main--1.0--patch-179
3558      mwolson@gnu.org--2005/muse--main--1.0--patch-180
3559      mwolson@gnu.org--2005/muse--main--1.0--patch-181
3560      mwolson@gnu.org--2005/muse--main--1.0--patch-182
3561      mwolson@gnu.org--2005/muse--main--1.0--patch-183
3562      mwolson@gnu.org--2005/muse--main--1.0--patch-184
3563      mwolson@gnu.org--2005/muse--main--1.0--patch-185
3564      mwolson@gnu.org--2005/muse--main--1.0--patch-186
3565      mwolson@gnu.org--2005/muse--main--1.0--patch-187
3566      mwolson@gnu.org--2005/muse--main--1.0--patch-188
3567      mwolson@gnu.org--2005/muse--main--1.0--patch-189
3568      mwolson@gnu.org--2005/muse--main--1.0--patch-190
3569      mwolson@gnu.org--2005/muse--main--1.0--patch-191
3570      mwolson@gnu.org--2005/muse--main--1.0--patch-192
3571      mwolson@gnu.org--2005/muse--main--1.0--patch-193
3572      mwolson@gnu.org--2005/muse--main--1.0--patch-194
3573      mwolson@gnu.org--2005/muse--main--1.0--patch-195
3574      mwolson@gnu.org--2005/muse--main--1.0--patch-196
3575      mwolson@gnu.org--2005/muse--main--1.0--patch-197
3576      mwolson@gnu.org--2005/muse--main--1.0--patch-198
3577      mwolson@gnu.org--2005/muse--main--1.0--patch-199
3578      mwolson@gnu.org--2005/muse--main--1.0--patch-200
3579      mwolson@gnu.org--2005/muse--main--1.0--patch-201
3580      mwolson@gnu.org--2005/muse--main--1.0--patch-202
3581      mwolson@gnu.org--2005/muse--main--1.0--patch-203
3582      mwolson@gnu.org--2005/muse--main--1.0--patch-204
3583      mwolson@gnu.org--2005/muse--main--1.0--patch-205
3584      mwolson@gnu.org--2005/muse--main--1.0--patch-206
3585      mwolson@gnu.org--2005/muse--main--1.0--patch-207
3586      mwolson@gnu.org--2005/muse--main--1.0--patch-208
3587      mwolson@gnu.org--2005/muse--main--1.0--patch-209
3588      mwolson@gnu.org--2005/muse--main--1.0--patch-210
3589      mwolson@gnu.org--2005/muse--main--1.0--patch-211
3590      mwolson@gnu.org--2005/muse--main--1.0--patch-212
3591      mwolson@gnu.org--2005/muse--main--1.0--patch-213
3592      mwolson@gnu.org--2005/muse--main--1.0--patch-214
3593      mwolson@gnu.org--2005/muse--main--1.0--patch-215
3594      mwolson@gnu.org--2005/muse--main--1.0--patch-216
3595      mwolson@gnu.org--2005/muse--main--1.0--patch-217
3596      mwolson@gnu.org--2005/muse--main--1.0--patch-218
3597      mwolson@gnu.org--2005/muse--main--1.0--patch-219
3598      mwolson@gnu.org--2005/muse--main--1.0--patch-220
3599      mwolson@gnu.org--2005/muse--main--1.0--patch-221
3600      mwolson@gnu.org--2005/muse--main--1.0--patch-222
3601      mwolson@gnu.org--2005/muse--main--1.0--patch-223
3602      mwolson@gnu.org--2005/muse--main--1.0--patch-224
3603      mwolson@gnu.org--2005/muse--main--1.0--patch-225
3604      mwolson@gnu.org--2005/muse--main--1.0--patch-226
3605      mwolson@gnu.org--2005/muse--main--1.0--patch-227
3606      mwolson@gnu.org--2005/muse--main--1.0--patch-228
3607      mwolson@gnu.org--2005/muse--main--1.0--patch-229
3608      mwolson@gnu.org--2005/muse--main--1.0--patch-230
3609      mwolson@gnu.org--2005/muse--main--1.0--patch-231
3610      mwolson@gnu.org--2005/muse--main--1.0--patch-232
3611      mwolson@gnu.org--2005/muse--main--1.0--patch-233
3612      mwolson@gnu.org--2005/muse--main--1.0--patch-234
3613      mwolson@gnu.org--2005/muse--main--1.0--patch-235
3614      mwolson@gnu.org--2005/muse--main--1.0--patch-236
3615      mwolson@gnu.org--2005/muse--main--1.0--patch-237
3616      mwolson@gnu.org--2005/muse--main--1.0--patch-238
3617      mwolson@gnu.org--2005/muse--main--1.0--patch-239
3618      mwolson@gnu.org--2005/muse--main--1.0--patch-240
3619      mwolson@gnu.org--2005/muse--main--1.0--patch-241
3620      mwolson@gnu.org--2005/muse--main--1.0--patch-242
3621      mwolson@gnu.org--2005/muse--main--1.0--patch-243
3622      mwolson@gnu.org--2005/muse--main--1.0--patch-244
3623      mwolson@gnu.org--2005/muse--main--1.0--patch-245
3624      mwolson@gnu.org--2005/muse--main--1.0--patch-246
3625      mwolson@gnu.org--2005/muse--main--1.0--patch-247
3626      mwolson@gnu.org--2005/muse--main--1.0--patch-248
3627      mwolson@gnu.org--2005/muse--main--1.0--patch-249
3628      mwolson@gnu.org--2005/muse--main--1.0--patch-250
3629      mwolson@gnu.org--2005/muse--main--1.0--patch-251
3630      mwolson@gnu.org--2005/muse--main--1.0--patch-252
3631      mwolson@gnu.org--2005/muse--main--1.0--patch-253
3632      mwolson@gnu.org--2005/muse--main--1.0--patch-254
3633      mwolson@gnu.org--2005/muse--main--1.0--patch-255
3634      mwolson@gnu.org--2005/muse--main--1.0--patch-256
3635      mwolson@gnu.org--2005/muse--main--1.0--patch-257
3636      mwolson@gnu.org--2005/muse--main--1.0--patch-258
3637      mwolson@gnu.org--2005/muse--main--1.0--patch-259
3638      mwolson@gnu.org--2005/muse--main--1.0--patch-260
3639      mwolson@gnu.org--2005/muse--main--1.0--patch-261
3640      mwolson@gnu.org--2005/muse--main--1.0--patch-262
3641      mwolson@gnu.org--2005/muse--main--1.0--patch-263
3642      mwolson@gnu.org--2005/muse--main--1.0--patch-264
3643      mwolson@gnu.org--2005/muse--main--1.0--patch-265
3644      mwolson@gnu.org--2005/muse--main--1.0--patch-266
3645      mwolson@gnu.org--2005/muse--main--1.0--patch-267
3646      mwolson@gnu.org--2005/muse--main--1.0--patch-268
3647      mwolson@gnu.org--2005/muse--main--1.0--patch-269
3648      mwolson@gnu.org--2005/muse--main--1.0--patch-270
3649      mwolson@gnu.org--2005/muse--main--1.0--patch-271
3650      mwolson@gnu.org--2005/muse--main--1.0--patch-272
3651      mwolson@gnu.org--2005/muse--main--1.0--patch-273
3652      mwolson@gnu.org--2005/muse--main--1.0--patch-274
3653      mwolson@gnu.org--2005/muse--main--1.0--patch-275
3654      mwolson@gnu.org--2005/muse--main--1.0--patch-276
3655      mwolson@gnu.org--2005/muse--main--1.0--patch-277
3656      mwolson@gnu.org--2005/muse--main--1.0--patch-278
3657      mwolson@gnu.org--2005/muse--main--1.0--patch-279
3658      mwolson@gnu.org--2005/muse--main--1.0--patch-280
3659      mwolson@gnu.org--2005/muse--main--1.0--patch-281
3660      mwolson@gnu.org--2005/muse--main--1.0--patch-282
3661      mwolson@gnu.org--2005/muse--main--1.0--patch-283
3662      mwolson@gnu.org--2005/muse--main--1.0--patch-284
3663      mwolson@gnu.org--2005/muse--main--1.0--patch-285
3664      mwolson@gnu.org--2005/muse--main--1.0--patch-286
3665      mwolson@gnu.org--2005/muse--main--1.0--patch-287
3666      mwolson@gnu.org--2005/muse--main--1.0--patch-288
3667      mwolson@gnu.org--2005/muse--main--1.0--patch-289
3668      mwolson@gnu.org--2005/muse--main--1.0--patch-290
3669      mwolson@gnu.org--2005/muse--main--1.0--patch-291
3670      mwolson@gnu.org--2005/muse--main--1.0--patch-292
3671      mwolson@gnu.org--2005/muse--main--1.0--patch-293
3672      mwolson@gnu.org--2005/muse--main--1.0--patch-294
3673      mwolson@gnu.org--2005/muse--main--1.0--patch-295
3674      mwolson@gnu.org--2005/muse--main--1.0--patch-296
3675      mwolson@gnu.org--2005/muse--main--1.0--patch-297
3676      mwolson@gnu.org--2005/muse--main--1.0--patch-298
3677      mwolson@gnu.org--2005/muse--main--1.0--patch-299
3678      mwolson@gnu.org--2005/muse--main--1.0--patch-300
3679      mwolson@gnu.org--2005/muse--main--1.0--patch-301
3680      mwolson@gnu.org--2005/muse--main--1.0--patch-302
3681      mwolson@gnu.org--2005/muse--main--1.0--patch-303
3682      mwolson@gnu.org--2005/muse--main--1.0--patch-304
3683      mwolson@gnu.org--2005/muse--main--1.0--patch-305
3684      mwolson@gnu.org--2005/muse--main--1.0--patch-306
3685      mwolson@gnu.org--2005/muse--main--1.0--patch-307
3686      mwolson@gnu.org--2005/muse--main--1.0--patch-308
3687      mwolson@gnu.org--2005/muse--main--1.0--patch-309
3688      mwolson@gnu.org--2005/muse--main--1.0--patch-310
3689      mwolson@gnu.org--2005/muse--main--1.0--patch-311
3690      mwolson@gnu.org--2005/muse--main--1.0--patch-312
3691      mwolson@gnu.org--2005/muse--main--1.0--patch-313
3692      mwolson@gnu.org--2005/muse--main--1.0--patch-314
3693      mwolson@gnu.org--2005/muse--main--1.0--patch-315
3694      mwolson@gnu.org--2005/muse--main--1.0--patch-316
3695      mwolson@gnu.org--2005/muse--main--1.0--patch-317
3696      mwolson@gnu.org--2005/muse--main--1.0--patch-318
3697      mwolson@gnu.org--2005/muse--main--1.0--patch-319
3698      mwolson@gnu.org--2005/muse--main--1.0--patch-320
3699      mwolson@gnu.org--2005/muse--main--1.0--patch-321
3700      mwolson@gnu.org--2005/muse--main--1.0--patch-322
3701      mwolson@gnu.org--2005/muse--main--1.0--patch-323
3702      mwolson@gnu.org--2005/muse--main--1.0--patch-324
3703      mwolson@gnu.org--2005/muse--main--1.0--patch-325
3704      mwolson@gnu.org--2005/muse--main--1.0--patch-326
3705      mwolson@gnu.org--2005/muse--main--1.0--patch-327
3706      mwolson@gnu.org--2005/muse--main--1.0--patch-328
3707      mwolson@gnu.org--2005/muse--main--1.0--patch-329
3708      mwolson@gnu.org--2005/muse--main--1.0--patch-330
3709      mwolson@gnu.org--2005/muse--main--1.0--patch-331
3710      mwolson@gnu.org--2005/muse--main--1.0--patch-332
3711      mwolson@gnu.org--2005/muse--main--1.0--patch-333
3712      mwolson@gnu.org--2005/muse--main--1.0--patch-334
3713      mwolson@gnu.org--2005/muse--main--1.0--patch-335
3714      mwolson@gnu.org--2005/muse--main--1.0--patch-336
3715      mwolson@gnu.org--2005/muse--main--1.0--patch-337
3716      mwolson@gnu.org--2005/muse--main--1.0--patch-338
3717      mwolson@gnu.org--2005/muse--main--1.0--patch-339
3718      mwolson@gnu.org--2005/muse--main--1.0--patch-340
3719      mwolson@gnu.org--2005/muse--main--1.0--patch-341
3720      mwolson@gnu.org--2005/muse--main--1.0--patch-342
3721      mwolson@gnu.org--2005/muse--main--1.0--patch-343
3722      mwolson@gnu.org--2005/muse--main--1.0--patch-344
3723      mwolson@gnu.org--2005/muse--main--1.0--patch-345
3724      mwolson@gnu.org--2005/muse--main--1.0--patch-346
3725      mwolson@gnu.org--2005/muse--main--1.0--patch-347
3726      mwolson@gnu.org--2005/muse--main--1.0--patch-348
3727      mwolson@gnu.org--2005/muse--main--1.0--patch-349
3728      mwolson@gnu.org--2005/muse--main--1.0--patch-350
3729      mwolson@gnu.org--2005/muse--main--1.0--patch-351
3730      mwolson@gnu.org--2005/muse--main--1.0--patch-352
3731      mwolson@gnu.org--2005/muse--main--1.0--patch-353
3732      mwolson@gnu.org--2005/muse--main--1.0--patch-354
3733      mwolson@gnu.org--2005/muse--main--1.0--patch-355
3734      mwolson@gnu.org--2005/muse--rel--3.02--base-0
3735      mwolson@gnu.org--2005/muse--rel--3.02--patch-1
3736      mwolson@gnu.org--2005/muse--rel--3.02--patch-2
3737      mwolson@gnu.org--2005/muse--rel--3.02--patch-3
3738      mwolson@gnu.org--2005/muse--rel--3.02--patch-4
3739      mwolson@gnu.org--2005/muse--rel--3.02--patch-5
3740      mwolson@gnu.org--2005/muse--rel--3.02--patch-6
3741      mwolson@gnu.org--2005/muse--rel--3.02--patch-7
3742      mwolson@gnu.org--2005/muse--rel--3.02--patch-8
3743      mwolson@gnu.org--2005/muse--rel--3.02--patch-11
3744      mwolson@gnu.org--2005/muse--rel--3.02--patch-13
3745      mwolson@gnu.org--2005/muse--rel--3.02--patch-14
3746      mwolson@gnu.org--2005/muse--rel--3.02--patch-15
3747      mwolson@gnu.org--2005/muse--rel--3.02--patch-17
3748      mwolson@gnu.org--2005/muse--rel--3.02--patch-18
3749      mwolson@gnu.org--2005/muse--rel--3.02--patch-19
3750      mwolson@gnu.org--2005/muse--rel--3.02--patch-20
3751      mwolson@gnu.org--2005/muse--rel--3.02--patch-21
3752      mwolson@gnu.org--2005/muse--rel--3.02--patch-22
3753      mwolson@gnu.org--2005/muse--rel--3.02--patch-23
3754      mwolson@gnu.org--2005/muse--rel--3.02--patch-25
3755      mwolson@gnu.org--2005/muse--rel--3.02--patch-27
3756      mwolson@gnu.org--2005/muse--rel--3.02--patch-28
3757      mwolson@gnu.org--2005/muse--rel--3.02--patch-29
3758      mwolson@gnu.org--2005/muse--rel--3.02--patch-35
3759      mwolson@gnu.org--2005/muse--rel--3.02--patch-36
3760      mwolson@gnu.org--2005/muse--rel--3.02--patch-37
3761      mwolson@gnu.org--2005/muse--rel--3.02--patch-53
3762      mwolson@gnu.org--2005/muse--rel--3.02--patch-54
3763      mwolson@gnu.org--2005/muse--rel--3.02--patch-55
3764      mwolson@gnu.org--2005/muse--rel--3.02--patch-56
3765      mwolson@member.fsf.org--2004/muse--main--1.0--base-0
3766      mwolson@member.fsf.org--2004/muse--main--1.0--patch-1
3767      mwolson@member.fsf.org--2004/muse--main--1.0--patch-2
3768      mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
3769      mwolson@member.fsf.org--2004/muse--mwolson--1.0--base-0
3770      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-1
3771      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-2
3772      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-3
3773      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-4
3774      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-5
3775      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-6
3776      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-7
3777      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-8