Implement interactive insertion of URLs.
[muse-el.git] / ChangeLog
blob66350ff1fe3c7606c7aeeec2f315f670e7672d68
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 19:36:31 GMT Michael Olson <mwolson@gnu.org> patch-165
7     Summary:
8       Implement interactive insertion of URLs.
9     Revision:
10       muse--main--1.0--patch-165
12     * lisp/muse-mode.el (muse-insert-map): Add binding for muse-insert-url.
13       (muse-insert-thing): Add text for URL to prompt.
14       (muse-insert-relative-link-to-file): Docfix, style fix.
15       (muse-insert-url): New function that reads a URL and description from
16       the user.
17     
18     * muse.texi (Keystroke Summary): Mention insert-url keybinding.
20     modified files:
21      ChangeLog lisp/muse-mode.el muse.texi
24 2006-07-27 18:50:50 GMT Michael Olson <mwolson@gnu.org> patch-164
26     Summary:
27       Make escaping of brackets in links work properly.
28     Revision:
29       muse--main--1.0--patch-164
31     * lisp/muse-colors.el (muse-colors-explicit-link): If the link has
32       escaped characters, display them unescaped.
33     
34     * lisp/muse-mode.el (muse-make-link): Handle case where we are given no
35       link.
36       (muse-edit-link-at-point): Unescape the link before presenting it to
37       the user for editing.
38     
39     * lisp/muse-publish.el (muse-publish-escape-specials-in-string): Minor
40       coding style fix.
41       (muse-publish-url): Unescape the link description before doing further
42       transforms on it.  The link has already been unescaped.
43     
44     * lisp/muse.el (muse-sort-by-rating): Minor coding style fix.
45       (muse-escape-specials-in-string): New function that escapes specials in
46       a string.  This differs from Muse's other specials-escaping routines in
47       that it replaces strings rather than characters, and is reversible if
48       the specials are defined properly.
49       (muse-replace-regexp-in-string): Docfix.
50       (muse-link-specials): New variable containing the specials that Muse
51       uses to handle syntactic issues with link text.  Namely: brackets.  The
52       percent sign must also be escaped since it is used in the escaped text.
53       (muse-link-escape, muse-link-unescape): Call
54       muse-escape-specials-in-string.  Embarrassingly, these functions
55       previously had no effect before.
57     modified files:
58      ChangeLog lisp/muse-colors.el lisp/muse-mode.el
59      lisp/muse-publish.el lisp/muse.el
62 2006-07-09 18:28:25 GMT Michael Olson <mwolson@gnu.org> patch-163
64     Summary:
65       Make space around emdash optional.
66     Revision:
67       muse--main--1.0--patch-163
69     * lisp/muse-publish.el (muse-publish-markup-regexps): Make space around
70       emdash optional.
72     modified files:
73      ChangeLog lisp/muse-publish.el
76 2006-07-08 20:38:12 GMT Michael Olson <mwolson@gnu.org> patch-162
78     Summary:
79       muse-latex: Make publishing of <contents> tags optional.
80     Revision:
81       muse--main--1.0--patch-162
83     * lisp/muse-html.el (muse-html-insert-contents): Use nreverse rather than
84       reverse for a minor speed boost.
85     
86     * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header): Only
87       insert a table of contents when muse-latex-permit-contents-tag is nil.
88       (muse-latexcjk-header): Make comments do the right thing.
89       (muse-latex-permit-contents-tag): New option that specifies whether we
90       should take action on the <contents> tag.
91       (muse-latex-finalize-buffer): If muse-latex-permit-contents-tag is
92       non-nil, publish a table of contents in the place where the <contents>
93       tag is.
94     
95     * muse.texi (LaTeX): Bring up-to-date with new options.
97     modified files:
98      ChangeLog lisp/muse-html.el lisp/muse-latex.el muse.texi
101 2006-07-04 05:00:35 GMT Michael Olson <mwolson@gnu.org> patch-161
103     Summary:
104       Fix publishing bug introduced in last patch.
105     Revision:
106       muse--main--1.0--patch-161
108     * lisp/muse-project.el (muse-current-output-style): New variable that
109       holds the output style that is currently being used to publish a file.
110       (muse-project-page-file): When a subdirectory is used, only record
111       matches.  Sort using matches, not entire list.
112       (muse-project-resolve-link): Docfix.
113       (muse-project-current-output-style): New function that returns the
114       current output style.
115       (muse-project-link-page): Use the local output style, not the other
116       kind of style.
117       (muse-project-publish-file): Set muse-current-output-style.
118     
119     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use
120       muse-current-output-style.
122     modified files:
123      ChangeLog lisp/muse-project.el lisp/muse-wiki.el
126 2006-07-04 04:06:44 GMT Michael Olson <mwolson@gnu.org> patch-160
128     Summary:
129       Make links to files in subdirectories work.
130     Revision:
131       muse--main--1.0--patch-160
133     * lisp/muse-project.el (muse-project-alist-styles): Fix stray comment.
134       (muse-project-page-file): Change to a defun.  Handle files with the
135       same name but in different directories.  Handle case where a
136       subdirectory is given in a link.
137       (muse-project-choose-style-by-link-suffix): Move from muse-wiki.el.
138       (muse-project-applicable-styles): Sort entries according to how late in
139       the string the match for the include regexp occurs.
140       (muse-project-resolve-link): Moved from muse-wiki.el.  Strip
141       subdirectory from page because we have already determined the correct
142       path.
143       (muse-project-link-page): New function that resolves a link to a page
144       in the same project.
145     
146     * lisp/muse-publish.el (muse-publish-link-page): Simple wrapper for
147       muse-project-link-page.
148       (muse-publish-classify-url): Use muse-publish-link-page.
149     
150     * lisp/muse-regexps.el (muse-file-regexp): Don't match subdirectory
151       links.
152     
153     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix)
154       (muse-wiki-resolve-project-page-1): Move to muse-project.el.
155       (muse-wiki-resolve-project-page): Use muse-project-resolve-link.
156     
157     * lisp/muse.el (muse-collect-alist): New function that is like assoc, but
158       returns a list of matches.
159       (muse-sort-with-closure): New convenience macro for using `sort' with a
160       closure argument.
161       (muse-sort-by-rating): New function that takes a rating list and sorts
162       it, discarding the rating.
163     
164     * muse.texi (Projects): Mention that you can use regexps in place of
165       directory names in project entries.  Caught that when source-diving.
167     modified files:
168      ChangeLog lisp/muse-project.el lisp/muse-publish.el
169      lisp/muse-regexps.el lisp/muse-wiki.el lisp/muse.el muse.texi
172 2006-07-03 01:33:17 GMT Michael Olson <mwolson@gnu.org> patch-159
174     Summary:
175       Fix publishing of blank table fields.
176     Revision:
177       muse--main--1.0--patch-159
179     * lisp/muse-regexps.el (muse-table-field-regexp): Make publishing blank
180       fields work properly.
182     modified files:
183      ChangeLog lisp/muse-regexps.el
186 2006-07-03 00:39:47 GMT Michael Olson <mwolson@gnu.org> patch-158
188     Summary:
189       Make muse-publish-markup-buffer usable even with no current file.
190     Revision:
191       muse--main--1.0--patch-158
193     * lisp/muse-publish.el (muse-publish-markup-buffer): Make this work even
194       if no file is associated with the buffer.  Thanks to dds for the fix.
196     modified files:
197      ChangeLog lisp/muse-publish.el
200 2006-06-26 18:13:59 GMT Michael Olson <mwolson@gnu.org> patch-157
202     Summary:
203       Don't use illegal C-c i keybinding.
204     Revision:
205       muse--main--1.0--patch-157
207     * lisp/muse-mode.el (muse-mode-map): Remove "C-c i" binding and use "C-c
208       TAB" for that purpose instead.  Thanks to Adrian Aichner for the
209       report.
210     
211     * muse.texi (Keystroke Summary): Update documentation for the above
212       change.
214     modified files:
215      ChangeLog lisp/muse-mode.el muse.texi
218 2006-06-12 13:58:59 GMT Michael Olson <mwolson@gnu.org> patch-156
220     Summary:
221       Improve ignored files regexp.
222     Revision:
223       muse--main--1.0--patch-156
225     * lisp/muse-project.el (muse-project-ignore-regexp): Ignore Darcs and SVN
226       metadata directories, and use a better matching technique for autosave
227       files.  Previously, files with '#' in them were ignored erroneously.
229     modified files:
230      ChangeLog lisp/muse-project.el
233 2006-06-12 13:55:17 GMT Michael Olson <mwolson@gnu.org> patch-155
235     Summary:
236       Provide example for <include> in Muse manual.
237     Revision:
238       muse--main--1.0--patch-155
240     * muse.texi (Tag Summary): Give an example of using the <include> tag.
242     modified files:
243      ChangeLog muse.texi
246 2006-06-10 06:49:08 GMT Michael Olson <mwolson@gnu.org> patch-154
248     Summary:
249       Make PDF version of the Muse manual be generated correctly.
250     Revision:
251       muse--main--1.0--patch-154
253     * muse.texi (Tag Summary): Use a slightly different syntax for the table
254       items.  Even though texinfo published the HTML version correctly, the
255       PDF version was not working.  Thanks to mirko.vukovic for the report.
257     modified files:
258      ChangeLog muse.texi
261 2006-06-03 23:38:12 GMT Michael Olson <mwolson@gnu.org> patch-153
263     Summary:
264       Fix bug introduced in last patch.
265     Revision:
266       muse--main--1.0--patch-153
268     * muse-publish.el (muse-publish-include-tag): Fix bug introduced in last
269       patch.
271     modified files:
272      ChangeLog lisp/muse-publish.el
275 2006-06-03 21:18:35 GMT Michael Olson <mwolson@gnu.org> patch-152
277     Summary:
278       Move Debian stuff into its own branch.
279     Revision:
280       muse--main--1.0--patch-152
282     * debian: Moved to muse--debian--0.
284     removed files:
285      debian/.arch-ids/=id debian/.arch-ids/NEWS.id
286      debian/.arch-ids/changelog.id debian/.arch-ids/compat.id
287      debian/.arch-ids/control.id debian/.arch-ids/copyright.id
288      debian/.arch-ids/emacsen-install.id
289      debian/.arch-ids/emacsen-remove.id
290      debian/.arch-ids/emacsen-startup.id
291      debian/.arch-ids/muse-el.dirs.id
292      debian/.arch-ids/muse-el.docs.id
293      debian/.arch-ids/muse-el.examples.id
294      debian/.arch-ids/muse-el.info.id debian/.arch-ids/rules.id
295      debian/NEWS debian/changelog debian/compat debian/control
296      debian/copyright debian/emacsen-install debian/emacsen-remove
297      debian/emacsen-startup debian/muse-el.dirs debian/muse-el.docs
298      debian/muse-el.examples debian/muse-el.info debian/rules
300     modified files:
301      ChangeLog
303     removed directories:
304      debian debian/.arch-ids
307 2006-06-03 21:12:36 GMT Michael Olson <mwolson@gnu.org> patch-151
309     Summary:
310       Provide some markup shortcuts for the <include> tag.
311     Revision:
312       muse--main--1.0--patch-151
314     * lisp/muse-publish.el (muse-publish-examplify-buffer): New function that
315       transforms the current buffer as if it were an <example> region.
316       (muse-publish-versify-buffer): Ditto, but for <verse> regions.
317       (muse-publish-include-tag): Docfix.  Support special cases for
318       markup="example" and markup="verse".
319     
320     * muse.texi (Tag Summary): Update for new <include> shortcuts.
322     modified files:
323      ChangeLog lisp/muse-publish.el muse.texi
326 2006-06-01 04:14:45 GMT Michael Olson <mwolson@gnu.org> patch-150
328     Summary:
329       Really update ChangeLog.2005.
330     Revision:
331       muse--main--1.0--patch-150
333     * ChangeLog.2005: Really update this.
335     new files:
336      .arch-ids/ChangeLog.2005.id ChangeLog.2005
338     removed files:
339      .arch-ids/ChangeLog.2005.id ChangeLog.2005
341     modified files:
342      .arch-ids/muse.texi.id ChangeLog
345 2006-06-01 04:05:33 GMT Michael Olson <mwolson@gnu.org> patch-149
347     Summary:
348       Second attempt at fixing XEmacs beta problem.
349     Revision:
350       muse--main--1.0--patch-149
352     * lisp/Makefile (ELC): Revert previous change, now that I have a hunch
353       about what causes the problem.
354     
355     * lisp/muse-publish.el (muse-publish-markup-regexps): Move anchor markup
356       lower to future-proof an idea that I have.
357       (muse-style-element): Make this a function instead of a substitution,
358       especially since it is potentially recursive.
360     modified files:
361      ChangeLog ChangeLog.2005 lisp/Makefile lisp/muse-publish.el
364 2006-06-01 03:47:49 GMT Michael Olson <mwolson@gnu.org> patch-148
366     Summary:
367       Update ChangeLogs.
368     Revision:
369       muse--main--1.0--patch-148
371     * ChangeLog: Rename from ChangeLog.2006 to follow Emacs conventions.
372     
373     * ChangeLog.2005: Mention ChangeLog.2004 for earlier changes.
374     
375     * lisp/muse-regexps.el: Add a few comments.
376     
377     * muse.texi (Tag Summary): Add example of <tag /> use.
379     modified files:
380      ChangeLog ChangeLog.2005 lisp/muse-regexps.el muse.texi
383 2006-06-01 03:44:00 GMT Michael Olson <mwolson@gnu.org> patch-147
385     Summary:
386       Try to work around a bug in XEmacs beta.
387     Revision:
388       muse--main--1.0--patch-147
390     * lisp/Makefile (ELC): Compile muse-publish.el first, to try to work
391       around a bug in XEmacs beta.
393     modified files:
394      ChangeLog lisp/Makefile
397 2006-05-30 18:21:51 GMT Michael Olson <mwolson@gnu.org> patch-146
399     Summary:
400       Fix tag-publishing in <insert> and <markup>.
401     Revision:
402       muse--main--1.0--patch-146
404     * lisp/muse-publish.el (muse-insert-file-or-string): Don't set
405       muse-publish-markup-tags, since that messes other things up for
406       <markup> and <insert>.
407       (muse-inhibit-style-tags): New variable that specifies whether to
408       disable looking for tag definitions that are specific to the current
409       style.  This is useful for publishing headers and footers.
410       (muse-publish-markup-tag): Use `muse-inhibit-style-tags', but disable
411       it unconditionally when calling a tag's function, so that the effect
412       does not propagate.
413     
414     * lisp/muse.el (muse-file-remote-p): New function that detects whether
415       the given file path is a remote location.  This is not used yet.
417     modified files:
418      ChangeLog lisp/muse-publish.el lisp/muse.el
421 2006-05-30 00:19:37 GMT Michael Olson <mwolson@gnu.org> patch-145
423     Summary:
424       Rename muse-convert.el to muse-latex-convert.el.
425     Revision:
426       muse--main--1.0--patch-145
428     * lisp/muse-convert-latex.el: Rename from muse-convert.el, since more
429       files of this nature are expected in the future.
431     modified files:
432      ChangeLog Makefile.defs debian/changelog
433      lisp/muse-convert-latex.el
435     renamed files:
436      lisp/.arch-ids/muse-convert.el.id
437        ==> lisp/.arch-ids/muse-convert-latex.el.id
438      lisp/muse-convert.el
439        ==> lisp/muse-convert-latex.el
442 2006-05-29 21:34:34 GMT Michael Olson <mwolson@gnu.org> patch-144
444     Summary:
445       List all tags in Muse's documentation.
446     Revision:
447       muse--main--1.0--patch-144
449     * lisp/muse-publish.el (muse-publish-markup-region): Remove cruft that I
450       was trying out.
451       (muse-publish-contents-depth): New option that specifies the maximum
452       depth of headings to include with <contents> tags.
453       (muse-publish-contents-tag): Use it.
454       (muse-publish-include-tag): Docfix.
455     
456     * muse.texi (Paragraphs): Mention <center> and <quote> tags.
457       (Tag Summary): New section that defines the syntax used for tags and
458       gives a complete listing of all of the tags that Muse comes with, as
459       well as some documentation for each tag.
460       (HTML): Update documentation.
462     modified files:
463      ChangeLog lisp/muse-publish.el muse.texi
466 2006-05-29 18:48:41 GMT Michael Olson <mwolson@gnu.org> patch-143
468     Summary:
469       Implement <include> and <markup> tags.
470     Revision:
471       muse--main--1.0--patch-143
473     * lisp/muse-html.el (muse-html-markup-regexps): Make paragraph detection
474       work better when a paragraph follows some other markup, especially
475       tables.
476     
477     * lisp/muse-publish.el (muse-publish-markup-tags): Add <include> and
478       <markup> tags.
479       (muse-publish-markup): Fix edge case.
480       (muse-publish-markup-header-footer-tags): New option that specifies
481       which tags may be used when publishing headers and footers.
482       (muse-insert-file-or-string): Use
483       muse-publish-markup-header-footer-tags instead of a hard-coded value.
484       (muse-publish-markup-region): Make title and style arguments optional,
485       so that this is easier to use.
486       (muse-publish-include-tag): Implement <include> tag.  I've tested all
487       of the cases I can think of, and it works.
488       (muse-publish-mark-up-tag): Implement <markup> tag.  This is handy for
489       times when you want to publish Muse markup in headers and footers.
490       Adding a table of contents to a header should be particularly easy now.
492     modified files:
493      ChangeLog lisp/muse-html.el lisp/muse-publish.el
496 2006-05-29 14:59:31 GMT Michael Olson <mwolson@gnu.org> patch-142
498     Summary:
499       Make ChangeLog conform to conventions better.
500     Revision:
501       muse--main--1.0--patch-142
503     * ChangeLog: Renamed from ChangeLog.2006 in order to follow Emacs
504       conventions better.  Specify the buffer encoding.  Add helpful notices
505       near the bottom of this and ChangeLog.2005.
507     modified files:
508      ChangeLog ChangeLog.2004 ChangeLog.2005 debian/rules
509      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/base-0
511     renamed files:
512      .arch-ids/ChangeLog.2006.id
513        ==> .arch-ids/ChangeLog.id
514      ChangeLog.2006
515        ==> ChangeLog
518 2006-05-28 07:45:09 GMT Michael Olson <mwolson@gnu.org> patch-141
520     Summary:
521       Provide explanation of how to invoke getstamps.py.
522     Revision:
523       muse--main--1.0--patch-141
525     * contrib/pyblosxom/getstamps.py: Strip the Muse file extension when
526       writing the timestamps file.
527     
528     * contrib/pyblosxom/make-blog: New example script that shows how to
529       invoke getstamps.py.
530     
531     * examples/mwolson/stylesheets/common.css: Update.
532     
533     * muse.texi (Blosxom Requirements): Mention the new example script.
534       Additionally, explain how to call getstamps.py.
536     new files:
537      contrib/pyblosxom/.arch-ids/make-blog.id
538      contrib/pyblosxom/make-blog
540     modified files:
541      ChangeLog.2006 contrib/pyblosxom/getstamps.py
542      examples/mwolson/stylesheets/common.css muse.texi
545 2006-05-28 06:40:46 GMT Michael Olson <mwolson@gnu.org> patch-140
547     Summary:
548       muse-blosxom: Perform extra check on category in new entry.
549     Revision:
550       muse--main--1.0--patch-140
552     * lisp/muse-blosxom.el (muse-blosxom-new-entry): Make it impossible to
553       write an invalid categories line, which could cause other mysterious
554       troubles later on.
556     modified files:
557      ChangeLog.2006 lisp/muse-blosxom.el
560 2006-05-28 06:31:11 GMT Michael Olson <mwolson@gnu.org> patch-139
562     Summary:
563       Improve documentation in the included pyblosxom plug-ins.
564     Revision:
565       muse--main--1.0--patch-139
567     * contrib/pyblosxom/getstamps.py, hardcodedates.py: Improve
568       documentation.  The initial wording was very confusing.
570     modified files:
571      ChangeLog.2006 contrib/pyblosxom/getstamps.py
572      contrib/pyblosxom/hardcodedates.py
575 2006-05-27 06:25:32 GMT Michael Olson <mwolson@gnu.org> patch-138
577     Summary:
578       Minor tweak in my example CSS stylesheet.
579     Revision:
580       muse--main--1.0--patch-138
582     * examples/mwolson/stylesheets/common.css: Be careful about
583       distinguishing between links and anchors.
585     modified files:
586      ChangeLog.2006 examples/mwolson/stylesheets/common.css
589 2006-05-26 14:38:01 GMT Michael Olson <mwolson@gnu.org> patch-137
591     Summary:
592       Use better fallback when displaying warnings.
593     Revision:
594       muse--main--1.0--patch-137
596     * lisp/muse.el (muse-display-warning): Use a better fallback if
597       `display-warning' does not exist.
599     modified files:
600      ChangeLog.2006 lisp/muse.el
603 2006-05-25 21:23:55 GMT Michael Olson <mwolson@gnu.org> patch-136
605     Summary:
606       Make the Table of Contents CSS easier to customize.
607     Revision:
608       muse--main--1.0--patch-136
610     * examples/mwolson/muse-init.el (muse-bad-link): Update.
611     
612     * examples/mwolson/stylesheets/*.css: Update and add license.
613     
614     * lisp/muse-html.el (muse-html-insert-contents): Surround contents with
615       <div> section for easier CSS hacking.  Remove the class attribute of
616       other elements, since we don't need it anymore.
618     modified files:
619      ChangeLog.2006 Makefile.defs debian/changelog
620      examples/mwolson/muse-init.el
621      examples/mwolson/stylesheets/blog.css
622      examples/mwolson/stylesheets/common.css
623      examples/mwolson/stylesheets/print.css
624      examples/mwolson/stylesheets/screen.css lisp/muse-html.el
627 2006-05-24 03:30:40 GMT Michael Olson <mwolson@gnu.org> patch-135
629     Summary:
630       Fix a potential unbounded recursive call.
631     Revision:
632       muse--main--1.0--patch-135
634     * lisp/muse-project.el (muse-updating-file-alist-p): New variable that
635       prevents calls to muse-project-file-alist in its hook functions from
636       going into an infinite loop.
637       (muse-project-file-alist): Use it.
638     
639     * lisp/muse-wiki.el (muse-wiki-updating-wikiword-p): Remove.  This is now
640       handled in muse-project.el.
641       (muse-wiki-update-local-wikiword-regexp): Remove the use of
642       muse-wiki-updating-wikiword-p.
644     modified files:
645      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
648 2006-05-23 18:10:49 GMT Michael Olson <mwolson@gnu.org> patch-134
650     Summary:
651       Try not to call tramp during publishing.
652     Revision:
653       muse--main--1.0--patch-134
655     * lisp/muse-publish.el (muse-insert-file-or-string): Do not call
656       file-readable-p on text that has a newline in it, because this could
657       cause tramp to be invoked.
659     modified files:
660      ChangeLog.2006 lisp/muse-publish.el
663 2006-05-23 15:30:02 GMT Michael Olson <mwolson@gnu.org> patch-133
665     Summary:
666       Make links colored blue by default.
667     Revision:
668       muse--main--1.0--patch-133
670     * lisp/muse-colors.el (muse-link): Make links blue by default, like most
671       other Emacs modes do.
673     modified files:
674      ChangeLog.2006 lisp/muse-colors.el
677 2006-05-23 14:24:58 GMT Michael Olson <mwolson@gnu.org> patch-132
679     Summary:
680       Fix publishing error with tables and initial whitespace.
681     Revision:
682       muse--main--1.0--patch-132
684     * lisp/muse-publish.el (muse-publish-markup-regexps): Move table rule
685       above blockquote and centered text, so that indented but blank initial
686       table fields publish correctly.
687     
688     * lisp/muse-regexps.el (muse-table-line-regexp): Make this much simpler.
689       We accept anything that has at least one field delimiter.
691     modified files:
692      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
695 2006-05-18 06:58:58 GMT Michael Olson <mwolson@gnu.org> patch-131
697     Summary:
698       Add muse-protocol-iw.el to experimental folder.
699     Revision:
700       muse--main--1.0--patch-131
702     * experimental/muse-protocol-iw.el: New experimental file that implements
703       an interwiki protocol of sorts that handles subdirectories.
705     new files:
706      experimental/.arch-ids/muse-protocol-iw.el.id
707      experimental/muse-protocol-iw.el
709     modified files:
710      AUTHORS ChangeLog.2006 experimental/muse-split.el
713 2006-05-18 06:43:30 GMT Michael Olson <mwolson@gnu.org> patch-130
715     Summary:
716       Add muse-split.el to experimental folder.
717     Revision:
718       muse--main--1.0--patch-130
720     * experimental/muse-split.el: New experimental file that splits published
721       Muse files into several smaller files.
723     new files:
724      experimental/.arch-ids/muse-split.el.id
725      experimental/muse-split.el
727     modified files:
728      AUTHORS ChangeLog.2006 Makefile.defs debian/changelog
729      debian/control
732 2006-05-18 06:03:49 GMT Michael Olson <mwolson@gnu.org> patch-129
734     Summary:
735       muse-wiki: Make the interwiki resolver a bit more clever.
736     Revision:
737       muse--main--1.0--patch-129
739     * lisp/muse-project.el (muse-project-choose-style): New function that
740       chooses a style from a list of styles, given a user-supplied test.
741     
742     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix): New function
743       that is used along with `muse-project-choose-style' to pick the first
744       style that matches a given value for :link-prefix.
745       (muse-wiki-resolve-project-page-1): New function split from
746       `muse-wiki-resolve-project-page' for readability.  Try to match files
747       that have the same link-suffix.  This should hopefully fix a bug
748       noticed by Hans Ekbrand.
750     modified files:
751      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
754 2006-05-18 01:24:04 GMT Michael Olson <mwolson@gnu.org> patch-128
756     Summary:
757       Fix bug where links with :: in them were marked up as lists.
758     Revision:
759       muse--main--1.0--patch-128
761     * lisp/muse-html.el, lisp/muse-publish.el, lisp/muse-xml-common.el:
762       Change noemphasis property to muse-link.
763     
764     * lisp/muse.el (muse-forward-list-item): Respect muse-link property.
765     
766     * lisp/muse-publish.el (muse-publish-surround-text)
767       (muse-publish-markup-list): Ditto.  This should fix a bug.
768       (muse-publish-markup-list): Docfix.
769       (muse-publish-mark-link): Rename from `muse-publish-mark-noemphasis'.
770     
771     * lisp/muse-regexps.el (muse-list-item-regexp, muse-dl-term-regexp):
772       There must be either one or more spaces or a single newline after the
773       colons.  This prevents an ambiguity with the double-colon muse-wiki
774       interwiki delimiter.
776     modified files:
777      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
778      lisp/muse-regexps.el lisp/muse-xml-common.el lisp/muse.el
781 2006-05-17 21:27:19 GMT Michael Olson <mwolson@gnu.org> patch-127
783     Summary:
784       DTRT with explicit links that have no description.
785     Revision:
786       muse--main--1.0--patch-127
788     * lisp/muse-publish.el (muse-publish-markup-link): If we are given an
789       explicit link without a description, use the name of the linked page.
791     modified files:
792      ChangeLog.2006 lisp/muse-publish.el
795 2006-05-16 15:53:56 GMT Michael Olson <mwolson@gnu.org> patch-126
797     Summary:
798       Fix emdash in link description bug.
799     Revision:
800       muse--main--1.0--patch-126
802     * lisp/muse-publish.el (muse-publish-markup-emdash): Don't markup emdash
803       if we are in a link, since otherwise it will be incorrectly escaped.
804       Thanks to Chiyuan Zhang for the report.
806     modified files:
807      ChangeLog.2006 Makefile.defs debian/changelog
808      lisp/muse-publish.el
811 2006-05-12 04:16:43 GMT Michael Olson <mwolson@gnu.org> patch-125
813     Summary:
814       Fix #5925: Emphasis on item breaks lists.
815     Revision:
816       muse--main--1.0--patch-125
818     * lisp/muse-blosxom.el ("blosxom-html", "blosxom-xhtml"): Use find-file
819       as the browsing function.
820     
821     * lisp/muse-mode.el (muse-browse-result): Only include styles that match
822       the current file.
823     
824     * lisp/muse.el (muse-list-item-critical-point): Take a new argument named
825       `offset' into account, in case the list-item regexp is nested in
826       another group.
827       (muse-forward-list-item): Call `muse-list-item-critical-point' with an
828       offset of 1.  This should fix an unpleasant list-as-blockquote error
829       that was noticed recently.  Thanks to John Sullivan for the report.
831     modified files:
832      ChangeLog.2006 lisp/muse-blosxom.el lisp/muse-mode.el
833      lisp/muse.el
836 2006-05-09 00:55:02 GMT Michael Olson <mwolson@gnu.org> patch-124
838     Summary:
839       Fix a couple of beginning-of-buffer errors.
840     Revision:
841       muse--main--1.0--patch-124
843     * muse-mode.el (muse-mode-flyspell-p, muse-link-at-point): Make sure we
844       don't throw an error if at the beginning of the buffer.  Thanks to John
845       Sullivan for the report.
847     modified files:
848      ChangeLog.2006 lisp/muse-mode.el
851 2006-05-08 23:42:42 GMT Michael Olson <mwolson@gnu.org> patch-123
853     Summary:
854       muse.texi: Change use of @subsubheading to @subheading.
855     Revision:
856       muse--main--1.0--patch-123
858     * muse.texi: Change use of @subsubheading to @subheading throughout
859       document.
861     modified files:
862      ChangeLog.2006 muse.texi
865 2006-05-08 23:30:58 GMT Michael Olson <mwolson@gnu.org> patch-122
867     Summary:
868       muse.texi: Change subsections to subheadings.
869     Revision:
870       muse--main--1.0--patch-122
872     (Author: John Sullivan <john@wjsullivan.net>)
873     
874     * muse.texi: Change @subsection and @strong to @subheading throughout
875       document.
877     modified files:
878      ChangeLog.2006 Makefile.defs debian/changelog muse.texi
880     new patches:
881      john@wjsullivan.net--2006/muse--johnsu01--0--patch-2
882      john@wjsullivan.net--2006/muse--johnsu01--0--patch-3
883      john@wjsullivan.net--2006/muse--johnsu01--0--patch-4
886 2006-05-08 08:53:03 GMT Michael Olson <mwolson@gnu.org> patch-121
888     Summary:
889       Update keystrokes used in muse-mode, as well as docs.
890     Revision:
891       muse--main--1.0--patch-121
893     * lisp/muse-mode.el (muse-insert-map): New variable that defines the
894       keymap to use when the user wants to insert something into the current
895       buffer using `C-c i'.
896       (muse-mode-map): Sort keys somewhat.  Remove binding of `C-c C-v' to
897       muse-follow-name-at-point, since this is already used for
898       muse-browse-result.  Call `muse-insert-thing' on `C-c i', which will
899       prompt for the thing to insert.
900       (muse-insert-thing): New function that prompts the user for something
901       to insert into the current buffer.  It tries to be as friendly as
902       possible by catching possible errors with the message "Not inserting
903       anything".
904       (muse-mode-completions): Rename from `muse-completions', since this is
905       what we use in `muse-mode'.
906       (muse-mode-current-word): Similarly.  These don't seem to work
907       correctly, for unknown reasons.
908     
909     * muse.texi (Keystroke Summary): Update to include all keystrokes that we
910       utilize.
912     modified files:
913      ChangeLog.2006 lisp/muse-mode.el muse.texi
916 2006-05-08 07:34:41 GMT Michael Olson <mwolson@gnu.org> patch-120
918     Summary:
919       Fix buggy behavior in muse-browse-result.
920     Revision:
921       muse--main--1.0--patch-120
923     * lisp/muse-mode.el (muse-browse-result): Construct a mapping of style
924       names to styles, based on the styles contained in the current Muse
925       project.  Thanks to kid kid for the analysis.
926     
927     * lisp/muse-publish.el (muse-publish-get-style): Permit styles to be
928       specified as an argument.
930     modified files:
931      ChangeLog.2006 lisp/muse-mode.el lisp/muse-publish.el
934 2006-05-08 07:29:42 GMT Michael Olson <mwolson@gnu.org> patch-119
936     Summary:
937       muse-latex: Make images look better.
938     Revision:
939       muse--main--1.0--patch-119
941     * lisp/muse-latex.el (muse-latex-markup-strings): Make width of images to
942       be 75% the width of the page, which looks better.  Enclose images in
943       figures, and center them.
945     modified files:
946      ChangeLog.2006 lisp/muse-latex.el
949 2006-04-27 00:31:01 GMT Michael Olson <mwolson@gnu.org> patch-118
951     Summary:
952       Fix a few image bugs.
953     Revision:
954       muse--main--1.0--patch-118
956     * lisp/muse-colors.el (muse-colors-insert-image): Expand file name before
957       passing it to `muse-colors-inline-image-method'.  This makes images
958       with the same current directory and publishing directory get resolved
959       correctly.
960     
961     * lisp/muse-project.el (muse-project-find-file): Don't try to add a
962       ".muse" extension to images.
964     modified files:
965      ChangeLog.2006 lisp/muse-colors.el lisp/muse-project.el
968 2006-04-25 22:28:01 GMT Michael Olson <mwolson@gnu.org> patch-117
970     Summary:
971       Make build targets more consistent.
972     Revision:
973       muse--main--1.0--patch-117
975     * contrib/Makefile (install): Make build targets more consistent.  Thanks
976       to dsmith for the report.
977     
978     * lisp/Makefile (all, lisp, install): Ditto.
980     modified files:
981      ChangeLog.2006 Makefile.defs contrib/Makefile debian/changelog
982      lisp/Makefile
985 2006-04-25 00:31:42 GMT Michael Olson <mwolson@gnu.org> patch-116
987     Summary:
988       cgi.el: Make this work without cl-seq.el.
989     Revision:
990       muse--main--1.0--patch-116
992     * contrib/cgi.el: Fix a compiler warning introduced by sample calendar
993       code.  Make this not depend on 'cl at runtime.
994       (cgi-position): New function that implements a simple replacement for
995       the position function found in cl-seq.el.
996       (cgi-decode): Use `cgi-position' instead of `position' and `substring'
997       instead of `subseq'.
998     
999     * contrib/httpd.el: Credit myself.
1001     modified files:
1002      ChangeLog.2006 contrib/cgi.el contrib/httpd.el
1005 2006-04-25 00:04:10 GMT Michael Olson <mwolson@gnu.org> patch-115
1007     Summary:
1008       Make publishing DTRT when using escaped list markup.
1009     Revision:
1010       muse--main--1.0--patch-115
1012     * lisp/muse-publish.el (muse-publish-surround-text)
1013       (muse-publish-markup-list): Ignore escaped list markup.
1014     
1015     * lisp/muse.el (muse-list-item-type): Docfix.
1016       (muse-list-item-critical-point): New function that returns the point
1017       where we should expect to find the first character in the current list
1018       item markup.
1019       (muse-forward-paragraph): Docfix and cosmetic change.
1020       (muse-forward-list-item): Ignore escaped list markup.  This should fix
1021       a few publishing errors that involve markup like =::=.
1023     modified files:
1024      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
1027 2006-04-22 03:46:04 GMT Michael Olson <mwolson@gnu.org> patch-114
1029     Summary:
1030       muse-publish: Get rid of warning when batch publishing.
1031     Revision:
1032       muse--main--1.0--patch-114
1034     * lisp/muse-publish.el (muse-batch-publish-files): Get rid of a batch
1035       publishing warning message.
1037     modified files:
1038      ChangeLog.2006 Makefile.defs debian/changelog
1039      lisp/muse-publish.el
1042 2006-04-22 03:35:12 GMT Michael Olson <mwolson@gnu.org> patch-113
1044     Summary:
1045       Try to fix face clobbering bug.
1046     Revision:
1047       muse--main--1.0--patch-113
1049     * lisp/muse-colors.el (muse-make-faces-default): New function that sets
1050       the default value of the header faces.  It can be re-used.
1051       (muse-make-faces): Simplify.  This should now fix the face clobbering
1052       bug.
1054     modified files:
1055      ChangeLog.2006 lisp/muse-colors.el
1058 2006-04-21 19:31:23 GMT Michael Olson <mwolson@gnu.org> patch-112
1060     Summary:
1061       Re-add some cgi.el stuff and update my example config.
1062     Revision:
1063       muse--main--1.0--patch-112
1065     * contrib/cgi.el (cgi-calendar-string, cgi-calendar): Re-add these, since
1066       they are mentioned in the documentation.
1067     
1068     * examples/mwolson/: Update.
1070     modified files:
1071      ChangeLog.2006 contrib/cgi.el examples/mwolson/muse-init.el
1072      examples/mwolson/templates/footer.html
1073      examples/mwolson/templates/header.html
1076 2006-04-21 15:23:13 GMT Michael Olson <mwolson@gnu.org> patch-111
1078     Summary:
1079       muse-mode: Make C-c C-e work better.
1080     Revision:
1081       muse--main--1.0--patch-111
1083     * lisp/muse-mode.el (muse-edit-link-at-point): Save link data earlier so
1084       that this is more robust.
1086     modified files:
1087      ChangeLog.2006 lisp/muse-mode.el
1090 2006-04-18 21:09:37 GMT Michael Olson <mwolson@gnu.org> patch-110
1092     Summary:
1093       muse-latex: Don't escape backslash in <example> regions.
1094     Revision:
1095       muse--main--1.0--patch-110
1097     * lisp/muse-latex.el (muse-latex-markup-specials-example): We don't need
1098       to escape the backslash after all.
1099       (muse-latex-markup-specials-literal): Docfix.
1100     
1101     * lisp/muse-publish.el (muse-publish-escape-specials): Docfix.
1103     modified files:
1104      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1107 2006-04-18 01:55:21 GMT Michael Olson <mwolson@gnu.org> patch-109
1109     Summary:
1110       Allow tab characters in the target of explicit links.
1111     Revision:
1112       muse--main--1.0--patch-109
1114     * lisp/muse-regexps.el (muse-explicit-link-regexp): Allow tab characters
1115       in the link target.  This doesn't seem like it could hurt anything, and
1116       prevents unexpected behavior.  Thanks to rubikitch AT ruby-lang.org for
1117       the report.
1119     modified files:
1120      ChangeLog.2006 lisp/muse-regexps.el
1123 2006-04-14 18:56:30 GMT Michael Olson <mwolson@gnu.org> patch-108
1125     Summary:
1126       muse-wiki: Fix bug that caused WikiWords not to publish or display.
1127     Revision:
1128       muse--main--1.0--patch-108
1130     * lisp/muse-wiki.el (muse-wiki-handle-wikiword): Logic fix.
1132     modified files:
1133      ChangeLog.2006 Makefile.defs debian/changelog
1134      lisp/muse-wiki.el
1137 2006-04-11 03:49:41 GMT Michael Olson <mwolson@gnu.org> patch-107
1139     Summary:
1140       Fix horrendous typo.
1141     Revision:
1142       muse--main--1.0--patch-107
1144     * muse-publish.el (muse-define-style): Fix typo which caused all kinds of
1145       strangeness.
1147     modified files:
1148      ChangeLog.2006 lisp/muse-publish.el
1151 2006-04-10 03:13:41 GMT Michael Olson <mwolson@gnu.org> patch-106
1153     Summary:
1154       Merged from mwolson@gnu.org--2006-muse-el (patch 53)
1155     Revision:
1156       muse--main--1.0--patch-106
1158     (Author: Per B. Sederberg <per@med.upenn.edu>)
1159     
1160     * lisp/muse-wiki.el (muse-wiki-ignore-implicit-links-to-current-page):
1161       Option to not create implicit links to the current page.
1162       (muse-wiki-handle-wikiword): Process the option to not create implicit
1163       links to the current page.
1165     modified files:
1166      ChangeLog.2006 Makefile.defs debian/changelog
1167      lisp/muse-wiki.el
1169     new patches:
1170      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-53
1173 2006-04-10 03:03:28 GMT Michael Olson <mwolson@gnu.org> patch-105
1175     Summary:
1176       Try to fix failure to recognize Muse file extension (6th attempt).
1177     Revision:
1178       muse--main--1.0--patch-105
1180     * lisp/muse-mode.el: Call `muse-mode-maybe-after-init' after the user's
1181       init file is loaded.
1182       (muse-mode-maybe-after-init): New function that causes muse-mode-maybe
1183       to be added to find-file-hooks when muse-mode-auto-p is non-nil.
1184     
1185     * lisp/muse.el: Call `muse-update-file-extension-after-init after the
1186       user's init file is loaded.  Explicitly add the Muse file extension
1187       when muse.el is loaded, to make life simpler.
1188       (muse-update-file-extension): Take several edge cases into account.
1189       (muse-file-extension): Docfix.
1190       (muse-update-file-extension-after-init): New function that causes the
1191       file extension to be updated.
1192     
1193     * muse.texi (Projects): It is no longer necessary to call
1194       `muse-mode-maybe' manually.
1196     modified files:
1197      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el muse.texi
1200 2006-04-10 00:08:01 GMT Michael Olson <mwolson@gnu.org> patch-104
1202     Summary:
1203       Merged from mwolson@gnu.org--2006-muse-el (patch 48-52)
1204     Revision:
1205       muse--main--1.0--patch-104
1207     (Author: Per B. Sederberg <per@med.upenn.edu>)
1208     
1209     * lisp/muse-wiki.el (muse-wiki-project-files-with-spaces): New function
1210       to return a list of project files that have spaces.
1211       (muse-wiki-update-interwiki-regexp): Make use of new project-files with
1212       spaces function.  Don't make this buffer-local.
1214     modified files:
1215      ChangeLog.2006 lisp/muse-wiki.el
1217     new patches:
1218      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-48
1219      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-49
1220      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-50
1221      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-51
1222      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-52
1225 2006-04-09 23:54:07 GMT Michael Olson <mwolson@gnu.org> patch-103
1227     Summary:
1228       Try to fix failure to recognize Muse file extension (5th attempt).
1229     Revision:
1230       muse--main--1.0--patch-103
1232     * lisp/muse.el: To detect whether Emacs has fully started, check
1233       `command-line-processed' instead of `inhibit-startup-hooks', since the
1234       latter only exists for Emacs22.
1236     modified files:
1237      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
1240 2006-04-09 23:48:06 GMT Michael Olson <mwolson@gnu.org> patch-102
1242     Summary:
1243       muse-html: Add :style-sheet element.
1244     Revision:
1245       muse--main--1.0--patch-102
1247     * lisp/muse-html.el (muse-html-header, muse-xhtml-header): Use the
1248       :style-sheet element.
1249       ("html", "xhtml"): Add the :style-sheet element.
1250     
1251     * lisp/muse-publish.el (muse-define-style): Don't give an error when a
1252       style already exists.  Instead, just replace the existing style.
1253       (muse-derive-style): Ditto.
1254     
1255     * muse.texi (Style Elements): Mention :style-sheet.
1257     modified files:
1258      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
1259      muse.texi
1262 2006-04-09 02:23:47 GMT Michael Olson <mwolson@gnu.org> patch-101
1264     Summary:
1265       Try to fix failure to recognize Muse file extension (4th attempt).
1266     Revision:
1267       muse--main--1.0--patch-101
1269     * lisp/muse.el: Enter Muse mode correctly on files that are specified by
1270       the command line.
1272     modified files:
1273      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
1276 2006-04-09 01:53:19 GMT Michael Olson <mwolson@gnu.org> patch-100
1278     Summary:
1279       Try to fix failure to recognize Muse file extension (3rd attempt).
1280     Revision:
1281       muse--main--1.0--patch-100
1283     * lisp/muse.el (muse-update-values-hook): Fix a sequencep error.
1285     modified files:
1286      ChangeLog.2006 lisp/muse.el
1289 2006-04-09 01:36:50 GMT Michael Olson <mwolson@gnu.org> patch-99
1291     Summary:
1292       Try to fix failure to recognize Muse file extension (2nd attempt).
1293     Revision:
1294       muse--main--1.0--patch-99
1296     * lisp/muse.el: Try to fix failure to put muse-mode-choose-mode in
1297       auto-mode-alist.
1299     modified files:
1300      ChangeLog.2006 lisp/muse.el
1303 2006-04-08 17:08:39 GMT Michael Olson <mwolson@gnu.org> patch-98
1305     Summary:
1306       Merged from mwolson@gnu.org--2006-muse-el (patch 41-47)
1307     Revision:
1308       muse--main--1.0--patch-98
1310     (Author: Per B. Sederberg <per@med.upenn.edu>)
1311     
1312     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Modify
1313       interwiki-regexp to search for any project file name.  This is so it
1314       will match files with spaces.
1316     modified files:
1317      ChangeLog.2006 lisp/muse-wiki.el
1319     new patches:
1320      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-41
1321      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-42
1322      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-43
1323      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-44
1324      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-45
1325      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-46
1326      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-47
1329 2006-04-08 16:32:00 GMT Michael Olson <mwolson@gnu.org> patch-97
1331     Summary:
1332       Try to fix failure to recognize Muse file extension.
1333     Revision:
1334       muse--main--1.0--patch-97
1336     * lisp/muse-colors.el: Use add-hook instead of add-to-list, for the sake
1337       of semantics.
1338     
1339     * lisp/muse.el: Call muse-update-file-extension in
1340       muse-update-values-hook, instead of
1341       muse-ignored-file-extensions-regexp.  Add muse-update-file-extension to
1342       emacs-startup-hook, so that the user has time to set this in their
1343       .emacs file.
1345     modified files:
1346      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1349 2006-04-08 02:46:41 GMT Michael Olson <mwolson@gnu.org> patch-96
1351     Summary:
1352       Make things in contrib directory installable.
1353     Revision:
1354       muse--main--1.0--patch-96
1356     * Makefile (SUBDIRS): Add contrib.
1357       (all): Add contrib.
1358       (contrib): New target that compiles things in the contrib directory.
1359       (install-bin): Add contrib.  Install things in the contrib directory.
1360       Also install uncompiled things in the experimental directory.
1361     
1362     * contrib/Makefile: New Makefile for the contrib directory.
1363     
1364     * contrib/httpd.el (httpd-start): Fix compiler warnings.
1365     
1366     * debian/emacsen-install: Compile files in contrib directory in addition
1367       to the normal fare.  Thanks to Junichi Uekawa for the suggestion.
1368     
1369     * debian/emacsen-startup: Add contrib directory to load-path.
1370     
1371     * experimental/Makefile (test): Remove target.
1372       (install-uncompiled): New target that installs uncompiled files.
1373     
1374     * lisp/muse.el: Set version to 3.02.90 (3.03 RC1).
1375       (muse-update-file-extension): Fix a warning that occurred when doing
1376       batch publishing.
1378     new files:
1379      contrib/.arch-ids/Makefile.id contrib/Makefile
1381     modified files:
1382      ChangeLog.2006 Makefile Makefile.defs contrib/httpd.el
1383      debian/changelog debian/emacsen-install debian/emacsen-startup
1384      experimental/Makefile lisp/muse.el muse.texi
1387 2006-04-08 01:33:27 GMT Michael Olson <mwolson@gnu.org> patch-95
1389     Summary:
1390       Remove muse-registry.el.
1391     Revision:
1392       muse--main--1.0--patch-95
1394     * lisp/muse-registry.el: Move to the Planner project, since it is a
1395       better fit with Planner than Muse.
1397     removed files:
1398      lisp/.arch-ids/muse-registry.el.id lisp/muse-registry.el
1400     modified files:
1401      AUTHORS ChangeLog.2006
1404 2006-04-08 01:23:24 GMT Michael Olson <mwolson@gnu.org> patch-94
1406     Summary:
1407       Prepare Debian package for Arch snapshot.
1408     Revision:
1409       muse--main--1.0--patch-94
1411     * Makefile.defs, debian/changelog: Prepare for Debian package of Arch
1412       snapshot.
1414     modified files:
1415      ChangeLog.2006 Makefile.defs debian/changelog
1418 2006-04-05 18:56:26 GMT Michael Olson <mwolson@gnu.org> patch-93
1420     Summary:
1421       muse-wiki: Honor setting for muse-wiki-hide-nop-tag.
1422     Revision:
1423       muse--main--1.0--patch-93
1425     * lisp/muse-wiki.el (muse-wiki-colors-nop-tag): Take the value of
1426       `muse-wiki-hide-nop-tag' into account.
1428     modified files:
1429      ChangeLog.2006 lisp/muse-wiki.el
1432 2006-04-05 18:47:54 GMT Michael Olson <mwolson@gnu.org> patch-92
1434     Summary:
1435       Fix a couple of compiler warnings.
1436     Revision:
1437       muse--main--1.0--patch-92
1439     * muse-publish.el, muse-wiki.el: Fix a couple of compiler warnings.
1441     modified files:
1442      ChangeLog.2006 lisp/muse-publish.el lisp/muse-wiki.el
1445 2006-04-05 18:45:01 GMT Michael Olson <mwolson@gnu.org> patch-91
1447     Summary:
1448       Make interwiki links work with the new option.
1449     Revision:
1450       muse--main--1.0--patch-91
1452     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Take no
1453       parameters.  Populate this correctly when
1454       `muse-wiki-match-all-project-files' is non-nil.
1456     modified files:
1457      ChangeLog.2006 lisp/muse-wiki.el
1460 2006-04-05 16:37:13 GMT Michael Olson <mwolson@gnu.org> patch-90
1462     Summary:
1463       Permit table generation to be disabled for a single Muse page.
1464     Revision:
1465       muse--main--1.0--patch-90
1467     * lisp/muse-latex.el (muse-latex-markup-table): If we don't get any table
1468       data, don't publish the table.
1469     
1470     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Ditto.
1471     
1472     * lisp/muse-xml-common.el (muse-xml-markup-table): Ditto.
1473     
1474     * lisp/muse-publish.el (muse-publish-table-fields): If the
1475       "disable-tables" publishing directive exists for the current page, do
1476       not generate a table.
1477     
1478     * muse.texi (Tables): Mention that table generation can be disabled for a
1479       single page.
1481     modified files:
1482      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1483      lisp/muse-texinfo.el lisp/muse-xml-common.el muse.texi
1486 2006-04-05 15:56:11 GMT Michael Olson <mwolson@gnu.org> patch-89
1488     Summary:
1489       muse-wiki: Match filenames before WikiWords.
1490     Revision:
1491       muse--main--1.0--patch-89
1493     * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp): Match
1494       filenames in project before the general WikiWord regexp.
1496     modified files:
1497      ChangeLog.2006 lisp/muse-wiki.el
1500 2006-04-05 15:45:07 GMT Michael Olson <mwolson@gnu.org> patch-88
1502     Summary:
1503       Use a better mechanism for updating autogenerated variables.
1504     Revision:
1505       muse--main--1.0--patch-88
1507     * lisp/muse-mode.el (muse-mode-hook): Remove ugly kludge.
1508     
1509     * lisp/muse-mode.el (muse-mode): Call muse-update-values-hook.
1510     
1511     * lisp/muse-protocols.el: Add `muse-update-url-regexp' to
1512       muse-update-values-hook.
1513     
1514     * lisp/muse-publish.el (muse-publish-markup-buffer): Call
1515       muse-update-values-hook.
1516     
1517     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' and
1518       `muse-wiki-update-interwiki-regexp' to muse-update-values-hook.
1519       (muse-wiki-update-local-wikiword-regexp): Quote an argument so that an
1520       error is fixed.
1521       (muse-wiki-update-custom-values): Replace with function that gives a
1522       warning and an explanation.
1523     
1524     * examples/mwolson/muse-init.el (muse-blosxom-base-directory): Update my
1525       example so that people who use it won't have a wrong value in
1526       muse-mode-hook.
1528     modified files:
1529      ChangeLog.2006 examples/mwolson/muse-init.el lisp/muse-mode.el
1530      lisp/muse-protocols.el lisp/muse-publish.el lisp/muse-wiki.el
1531      lisp/muse.el
1534 2006-04-05 15:00:33 GMT Michael Olson <mwolson@gnu.org> patch-87
1536     Summary:
1537       muse-wiki: Implement implicit links for all files in project.
1538     Revision:
1539       muse--main--1.0--patch-87
1541     * lisp/muse-project.el (muse-project-file-alist): Quote hook, so that we
1542       don't get errors when trying to use it.
1543     
1544     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' to
1545       muse-project-file-alist-hook.
1546       (muse-wiki-update-local-wikiword-regexp): Make sure that we can't get
1547       into a recursive call.
1548       (muse-wiki-update-wikiword-regexp): Call
1549       `muse-wiki-update-local-wikiword-regexp'.
1550     
1551     (Author: Per B. Sederberg <per@med.upenn.edu>)
1552     
1553     * lisp/muse-wiki.el:: Add muse-wiki-update-local-wikiword-regexp to
1554       muse-before-publish-hook and muse-mode-hook so that implicit links are
1555       published properly.
1556       (muse-wiki-wikiword-match-project-files): New option for determining
1557       whether to match all project files as implicit links.  This is off by
1558       default.
1559       (muse-wiki-update-local-wikiword-regexp): New function to make the
1560       wikiword-regexp local and append the files in the current project to
1561       it.
1563     modified files:
1564      AUTHORS ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
1566     new patches:
1567      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-27
1568      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-28
1569      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-29
1570      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-30
1571      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-31
1572      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-32
1573      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-33
1574      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-34
1575      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-35
1576      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-36
1577      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-37
1578      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-38
1579      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-39
1580      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-40
1583 2006-04-04 22:49:46 GMT Michael Olson <mwolson@gnu.org> patch-86
1585     Summary:
1586       Update Muse's file-alist after saving any Muse page.
1587     Revision:
1588       muse--main--1.0--patch-86
1590     * lisp/muse-project.el (muse-project-after-save-hook): New function that
1591       causes Muse's file-alist to be updated when we are saving a Muse file.
1592       This is added to after-save-hook.
1594     modified files:
1595      ChangeLog.2006 lisp/muse-project.el
1598 2006-04-04 22:39:57 GMT Michael Olson <mwolson@gnu.org> patch-85
1600     Summary:
1601       Add a hook that is called whenever Muse's file-alist is updated.
1602     Revision:
1603       muse--main--1.0--patch-85
1605     * lisp/muse-project.el (muse-project-file-alist-hook): New hook that is
1606       executed after an update to muse-project-file-alist happens.
1607       (muse-project-file-alist): Call `muse-project-file-alist-hook'.
1609     modified files:
1610      ChangeLog.2006 lisp/muse-project.el
1613 2006-04-04 22:23:40 GMT Michael Olson <mwolson@gnu.org> patch-84
1615     Summary:
1616       muse-mode: Recognize definition lists when filling text.
1617     Revision:
1618       muse--main--1.0--patch-84
1620     * lisp/muse-mode.el (muse-mode): Recognize definition lists when filling
1621       text.
1622     
1624     modified files:
1625      ChangeLog.2006 lisp/muse-mode.el
1628 2006-04-04 22:22:19 GMT Michael Olson <mwolson@gnu.org> patch-83
1630     Summary:
1631       Remove unrelated part of patch-82.
1632     Revision:
1633       muse--main--1.0--patch-83
1636     modified files:
1637      ChangeLog.2006 lisp/muse-mode.el
1640 2006-04-04 22:11:16 GMT Michael Olson <mwolson@gnu.org> patch-82
1642     Summary:
1643       muse-journal: Fix dates in RSS feeds.
1644     Revision:
1645       muse--main--1.0--patch-82
1647     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Make sure that
1648       date is in a format that RSS readers can handle.  Thanks to René
1649       Stadler for the patch.
1651     modified files:
1652      AUTHORS ChangeLog.2006 lisp/muse-journal.el lisp/muse-mode.el
1655 2006-04-01 15:32:26 GMT Michael Olson <mwolson@gnu.org> patch-81
1657     Summary:
1658       debian: Install ChangeLog properly.
1659     Revision:
1660       muse--main--1.0--patch-81
1662     * debian/rules: Create ChangeLog using ChangeLog.2006 as a base, and then
1663       appending the logs for previous years.  Thanks to Sergei V. Fleytin for
1664       the breakage report.
1666     modified files:
1667      ChangeLog.2006 debian/rules
1670 2006-04-01 04:20:45 GMT Michael Olson <mwolson@gnu.org> patch-80
1672     Summary:
1673       Fix a bug triggered by batch-publishing.
1674     Revision:
1675       muse--main--1.0--patch-80
1677     * lisp/muse-publish.el (muse-detect-invalid-style): Remove, since the
1678       right algorithm turned out to be simpler than I had thought.  Thanks to
1679       Sergei V. Fleytin for reporting breakage with the old method.
1680       (muse-publish-file): Don't be overzealous when checking for an invalid
1681       style -- use a simpler check.
1682       (muse-batch-publish-files): Don't check for invalid styles here, since
1683       we already do so in `muse-publish-file'.
1685     modified files:
1686      ChangeLog.2006 lisp/muse-publish.el
1689 2006-03-31 04:27:54 GMT Michael Olson <mwolson@gnu.org> patch-79
1691     Summary:
1692       muse.texi: Move some sections to a new Extending Muse chapter.
1693     Revision:
1694       muse--main--1.0--patch-79
1696     * muse.texi (Extending Muse): New chapter containing nodes that deal with
1697       extending Muse in various ways.
1698       (Common Elements, Deriving Styles): Move to Extending Muse chapter.
1700     modified files:
1701      ChangeLog.2006 muse.texi
1704 2006-03-26 22:38:01 GMT Michael Olson <mwolson@gnu.org> patch-78
1706     Summary:
1707       Fix a couple of recently-introduced bugs.
1708     Revision:
1709       muse--main--1.0--patch-78
1711     * lisp/muse-colors.el: Fix errors introduced in a recent patch.  Try
1712       extra hard to preserve our settings for faces, especially after a new
1713       frame or splash screen.
1714     
1715     * lisp/muse.el (muse-copy-face): New function that ensures the face is
1716       copied globally, to the extent the Emacs permits this.
1718     modified files:
1719      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1722 2006-03-26 20:02:11 GMT Michael Olson <mwolson@gnu.org> patch-77
1724     Summary:
1725       Update my example configuration file.
1726     Revision:
1727       muse--main--1.0--patch-77
1730     modified files:
1731      ChangeLog.2006 examples/mwolson/muse-init.el
1734 2006-03-26 19:54:43 GMT Michael Olson <mwolson@gnu.org> patch-76
1736     Summary:
1737       Remove cruft from patch logs.
1738     Revision:
1739       muse--main--1.0--patch-76
1742     modified files:
1743      ChangeLog.2006
1744      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-14
1745      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-25
1746      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-3
1747      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-19
1748      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-46
1749      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-58
1750      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-60
1751      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-74
1754 2006-03-26 18:38:31 GMT Michael Olson <mwolson@gnu.org> patch-75
1756     Summary:
1757       Make faces more robust and namespace-conforming.
1758     Revision:
1759       muse--main--1.0--patch-75
1761     * lisp/muse-colors.el (muse-make-faces): Make sure that each generated
1762       face has documentation and a group.
1763       (muse-link, muse-bad-link, muse-verbatim): Renamed faces to drop the
1764       "-face" suffix.
1765       (muse-emphasis-1, muse-emphasis-2, muse-emphasis-3): Make sure that the
1766       faces have documentation and a group.  Copy unconditionally from the
1767       related Emacs faces, rather than specifying face attributes.
1768       (muse-colors-verbatim, muse-colors-example-tag, muse-link-face):
1769       (muse-colors-explicit-link, muse-colors-implicit-link): Use the new
1770       face names.
1771     
1772     * lisp/muse-mode.el (muse-next-reference, muse-previous-reference): Use
1773       the 'muse-link property rather than looking at the face.
1775     modified files:
1776      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
1779 2006-03-26 18:33:12 GMT Michael Olson <mwolson@gnu.org> patch-74
1781     Summary:
1782       muse.texi: Mention the <code> tag.
1783     Revision:
1784       muse--main--1.0--patch-74
1786     * muse.texi (Emphasizing Text): Mention the <code> tag.
1788     modified files:
1789      ChangeLog.2006 muse.texi
1792 2006-03-26 06:35:49 GMT Michael Olson <mwolson@gnu.org> patch-73
1794     Summary:
1795       Fix bug in verse markup, undesired behavior with emdash.
1796     Revision:
1797       muse--main--1.0--patch-73
1799     * lisp/muse-docbook.el (muse-docbook-markup-strings): Preserve whitespace
1800       around emdash.
1801     
1802     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
1803     
1804     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
1805     
1806     * lisp/muse-publish.el (muse-publish-markup-emdash): Pass preceding and
1807       trailing whitespace to `muse-markup-text', in case the current
1808       publishing wishes to use them.
1809       (muse-publish-markup-verse): Insert newline without adding read-only
1810       properties to it.  This fixes a paragraph detection bug in HTML
1811       publishing.
1813     modified files:
1814      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
1815      lisp/muse-publish.el lisp/muse-xml.el
1818 2006-03-25 05:57:36 GMT Michael Olson <mwolson@gnu.org> patch-72
1820     Summary:
1821       httpd.el: Update to work with newer versions of Emacs.
1822     Revision:
1823       muse--main--1.0--patch-72
1825     * contrib/httpd.el (httpd-start): Update this to work with newer versions
1826       of Emacs.
1828     modified files:
1829      ChangeLog.2006 contrib/httpd.el
1832 2006-03-25 05:27:46 GMT Michael Olson <mwolson@gnu.org> patch-71
1834     Summary:
1835       muse-journal: Make custom RSS heading regexps possible.
1836     Revision:
1837       muse--main--1.0--patch-71
1839     * lisp/muse-journal.el (muse-journal-rss-heading-regexp): New option that
1840       determines the regexp to use when searching for an RSS heading.
1841       (muse-journal-rss-munge-buffer): Use `muse-journal-rss-heading-regexp'.
1843     modified files:
1844      ChangeLog.2006 lisp/muse-journal.el
1847 2006-03-25 04:33:40 GMT Michael Olson <mwolson@gnu.org> patch-70
1849     Summary:
1850       Fix #5190: Endless loop in muse style-run-hooks when muse-project-publish is called with undefined style.
1851     Revision:
1852       muse--main--1.0--patch-70
1854     * lisp/muse-project.el (muse-project-publish): If we cannot find a
1855       project to publish, indicate this in an error message.
1856     
1857     * lisp/muse-publish.el (muse-style-run-hooks): Never go into an endless
1858       loop.  This should fix #5190.  Thanks to Rod Morehead for the report.
1859       (muse-detect-invalid-style): New function that makes sure that the
1860       given style is in a valid format.
1861       (muse-publish-file): Call `muse-detect-invalid-style' before doing any
1862       publishing.
1864     modified files:
1865      ChangeLog.2006 lisp/muse-project.el lisp/muse-publish.el
1868 2006-03-25 03:31:36 GMT Michael Olson <mwolson@gnu.org> patch-69
1870     Summary:
1871       muse-mode: Don't require muse-publish.el.
1872     Revision:
1873       muse--main--1.0--patch-69
1875     * lisp/muse-mode.el: Use a few autoloads instead of requiring
1876       muse-publish.el.  This allows people to optionally have Muse mode
1877       without including the publishing features, as long as they never call a
1878       publishing function.  The documentation says that Muse is supposed to
1879       be modular in that way, so I guess we'd better follow it.
1880       (muse-insert-tag): Make sure that muse-publish is required before
1881       accessing `muse-publish-markup-tags'.
1883     modified files:
1884      ChangeLog.2006 lisp/muse-mode.el
1887 2006-03-21 01:59:03 GMT Michael Olson <mwolson@gnu.org> patch-68
1889     Summary:
1890       Minor code cleanup.
1891     Revision:
1892       muse--main--1.0--patch-68
1894     * lisp/muse-mode.el (muse-grep): Remove commented-out code.
1896     modified files:
1897      ChangeLog.2006 lisp/muse-mode.el
1900 2006-03-21 01:56:21 GMT Michael Olson <mwolson@gnu.org> patch-67
1902     Summary:
1903       Merged from mwolson@gnu.org--2006-muse-el (patch 15-26)
1904     Revision:
1905       muse--main--1.0--patch-67
1907     (Author: Per B. Sederberg <per@med.upenn.edu>)
1908     
1909     * lisp/muse-mode.el (muse-grep-command): Add custom to set up the command
1910       used for grepping.
1911       (muse-mode-map): Changed muse-browse-result to C-c C-v and made
1912       muse-find-backlinks C-c C-b
1913       (muse-grep): New function to envoke a search with the compiler.
1914       (muse-search-with-command): New function to search for text, optionally
1915       editing the command.
1916       (muse-search): New function to search for text.
1917       (muse-find-backlinks): New function to search for backlinks to the
1918       current page.
1920     modified files:
1921      ChangeLog.2006 lisp/muse-mode.el
1923     new patches:
1924      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-15
1925      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-16
1926      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-17
1927      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-18
1928      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-19
1929      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-20
1930      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-21
1931      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-22
1932      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-23
1933      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-24
1934      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-25
1935      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-26
1938 2006-03-20 18:43:15 GMT Michael Olson <mwolson@gnu.org> patch-66
1940     Summary:
1941       Make it easier to call context-specific region-escaping function.
1942     Revision:
1943       muse--main--1.0--patch-66
1945     * lisp/muse-publish.el (muse-publish-escape-specials): If a function is
1946       returned from specials, call it with beg, end, ignore-read-only args.
1947       This allows for people to specify their own functions for escaping
1948       regions, depending on context.  See `muse-xml-decide-specials' in
1949       muse-xml-common.el.  This functionality already exists for escaping
1950       specials in strings.
1952     modified files:
1953      ChangeLog.2006 lisp/muse-publish.el
1956 2006-03-17 01:56:38 GMT Michael Olson <mwolson@gnu.org> patch-65
1958     Summary:
1959       Attempt to make new syntaxes easier to support.
1960     Revision:
1961       muse--main--1.0--patch-65
1963     * lisp/muse-colors.el (muse-colors-explicit-link): Use `muse-get-link'
1964       and `muse-get-link-data'.
1965     
1966     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Ditto.
1967     
1968     * lisp/muse-mode.el (muse-edit-link-at-point): Ditto.
1969       (muse-make-link): Change argument name.
1970     
1971     * lisp/muse.el (muse-handle-explicit-link): Ditto.
1972       (muse-get-link, muse-get-link-desc): New functions that return the link
1973       and the link description, respectively, from the given TARGET.  The
1974       idea is that at least one other markup syntax puts descriptions before
1975       links, so all they would have to do is re-define these two functions.
1977     modified files:
1978      ChangeLog.2006 lisp/muse-colors.el lisp/muse-journal.el
1979      lisp/muse-mode.el lisp/muse.el
1982 2006-03-14 18:41:54 GMT Michael Olson <mwolson@gnu.org> patch-64
1984     Summary:
1985       Fix #5477: muse-replace-regexp-in-string throws error in XEmacs 21.4
1986     Revision:
1987       muse--main--1.0--patch-64
1989     * Makefile.defs, lisp/muse-colors.el: Fix typo.
1990     
1991     * lisp/muse.el (muse-replace-regexp-in-string): Switch order so that
1992       `replace-in-string' is checked before `replace-regexp-in-string', since
1993       XEmacs' implementation of the latter seems to be broken.  Thanks to Jim
1994       Ottaway for the heads up.
1996     modified files:
1997      ChangeLog.2006 Makefile.defs lisp/muse-colors.el lisp/muse.el
2000 2006-03-13 19:38:36 GMT Michael Olson <mwolson@gnu.org> patch-63
2002     Summary:
2003       muse-latex: Add footnotes to links so that they show up on printed copies.
2004     Revision:
2005       muse--main--1.0--patch-63
2007     * lisp/muse-latex.el (muse-latex-markup-strings): Add string for
2008       'url-and-desc.  Display footnotes if we have both a link and a
2009       description, since we want URLs to show up on printed documents.
2010       (muse-latex-markup-specials-document): Escape the "@" character in the
2011       entire document.
2012     
2013     * lisp/muse-publish.el (muse-publish-url): Distinguish between URLs
2014       without descriptions and URLs with descriptions.  If no markup string
2015       exists for 'url-and-desc, fall back to 'url.
2017     modified files:
2018      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
2021 2006-03-13 18:42:27 GMT Michael Olson <mwolson@gnu.org> patch-62
2023     Summary:
2024       Fix publishing error with multi-line wrapped list items.
2025     Revision:
2026       muse--main--1.0--patch-62
2028     * lisp/muse-publish.el (muse-publish-surround-text): Fix a problem with
2029       multiple lines of a wrapped list item.
2031     modified files:
2032      ChangeLog.2006 lisp/muse-publish.el
2035 2006-03-13 02:10:44 GMT Michael Olson <mwolson@gnu.org> patch-61
2037     Summary:
2038       Add COPYING file; update headers.
2039     Revision:
2040       muse--main--1.0--patch-61
2042     * COPYING: New file containing the GNU GPL.
2043     
2044     * AUTHORS: Bookkeeping.
2045     
2046     * README: Add License section.  Change Muse homepage URL.
2047     
2048     * debian/copyright: Change Muse homepage URL.  Prune list to those who
2049       have changed 15+ lines of code, since this is the amount that
2050       constitutes legal contribution to a software work, AFAICT.
2051     
2052     * examples/mwolson: Update contents of directory to match my current
2053       setup.
2054     
2055     * experimental/muse*.el, lisp/muse*.el: Update headers.
2056     
2057     * muse.texi: Change Muse homepage URL.
2059     new files:
2060      .arch-ids/COPYING.id COPYING
2062     modified files:
2063      AUTHORS ChangeLog.2006 README debian/copyright
2064      examples/mwolson/muse-init.el
2065      examples/mwolson/stylesheets/blog.css
2066      examples/mwolson/stylesheets/common.css
2067      examples/mwolson/stylesheets/print.css
2068      examples/mwolson/stylesheets/screen.css
2069      experimental/muse-cite.el experimental/muse-mathml.el
2070      experimental/muse-message.el lisp/muse-backlink.el
2071      lisp/muse-blosxom.el lisp/muse-book.el lisp/muse-colors.el
2072      lisp/muse-convert.el lisp/muse-docbook.el lisp/muse-groff.el
2073      lisp/muse-html.el lisp/muse-http.el lisp/muse-journal.el
2074      lisp/muse-latex.el lisp/muse-latex2png.el lisp/muse-mode.el
2075      lisp/muse-poem.el lisp/muse-project.el lisp/muse-protocols.el
2076      lisp/muse-publish.el lisp/muse-regexps.el
2077      lisp/muse-registry.el lisp/muse-texinfo.el lisp/muse-wiki.el
2078      lisp/muse-xml.el lisp/muse.el muse.texi
2081 2006-03-13 01:48:10 GMT Michael Olson <mwolson@gnu.org> patch-60
2083     Summary:
2084       Update Muse XML schema.
2085     Revision:
2086       muse--main--1.0--patch-60
2088     * examples/muse.rnc: Allow nested list items.  Update header.  Provide
2089       history.  We'll call this v0.3 of the schema.
2090     
2091     * lisp/muse-xml-common.el: Update header.
2092       (muse-xml-markup-table): Fix table generation when attributes are not
2093       specified.
2095     modified files:
2096      ChangeLog.2006 examples/muse.rnc lisp/muse-xml-common.el
2099 2006-03-12 21:12:48 GMT Michael Olson <mwolson@gnu.org> patch-59
2101     Summary:
2102       Fix output for consecutive list items of same type.
2103     Revision:
2104       muse--main--1.0--patch-59
2106     * lisp/muse-publish.el (muse-publish-surround-text): Make calculated
2107       post-indent and indent-found values local to each list item.  This
2108       should fix undesired behavior with consecutive list items of the same
2109       type.
2111     modified files:
2112      ChangeLog.2006 lisp/muse-publish.el
2115 2006-03-12 21:09:43 GMT Michael Olson <mwolson@gnu.org> patch-58
2117     Summary:
2118       Make C-> and C-< keybindings not indent nested items.
2119     Revision:
2120       muse--main--1.0--patch-58
2122     * lisp/muse-mode.el (muse-alter-list-item-indentation): Don't include
2123       nested items.
2124     
2125     * lisp/muse.el (muse-forward-list-item): Make skipping of nested items
2126       optional, and document this.
2128     modified files:
2129      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el
2132 2006-03-12 19:56:26 GMT Michael Olson <mwolson@gnu.org> patch-57
2134     Summary:
2135       Slightly improve flyspell integration.
2136     Revision:
2137       muse--main--1.0--patch-57
2139     * lisp/muse-mode.el (muse-mode-flyspell-p): Use the new 'muse-link text
2140       property to determine whether we are at a link.
2142     modified files:
2143      ChangeLog.2006 lisp/muse-mode.el
2146 2006-03-11 23:42:56 GMT Michael Olson <mwolson@gnu.org> patch-56
2148     Summary:
2149       Make nested definition list items work much better.
2150     Revision:
2151       muse--main--1.0--patch-56
2153     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2154       `muse-forward-list-item'.  Don't pass indent and post-indent to the
2155       move function.
2156       (muse-publish-surround-text): If we are to determine the indentation,
2157       but have found no list items, set indent to the empty string.  If we
2158       are to determine indentation but have found an item, get all leading
2159       whitespace and set indent to it.  Never try to determine post-indent
2160       using the first line.  Try to contain the amount of "damage" a nested
2161       list item can do to wrapped list item text.
2162     
2163     * lisp/muse-regexps.el (muse-list-item-regexp): Hone the definition list
2164       part so that it is easier to indicate the amount of desired initial
2165       whitespace.
2166     
2167     * lisp/muse.el (muse-list-item-type): Make initial whitespace of a dl
2168       entry optional.
2169       (muse-forward-dl-term, muse-forward-dl-entry): Remove.  Functionality
2170       merged into `muse-forward-list-item'.
2171       (muse-forward-list-item-1): New function that determines whether a
2172       nested list item is found.
2173       (muse-forward-list-item): Move hairy nested list detection algorithm
2174       into `muse-forward-list-item-1'.  Be extra careful about terminating
2175       when we go past the boundary.
2177     modified files:
2178      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2179      lisp/muse.el
2182 2006-03-11 06:10:19 GMT Michael Olson <mwolson@gnu.org> patch-55
2184     Summary:
2185       Add backlink support, thanks to Jim Ottaway.
2186     Revision:
2187       muse--main--1.0--patch-55
2189     * lisp/muse-colors.el (muse-colors-fontifying-p): New buffer-local
2190       variable that indicates whether Muse is fontifying the current buffer.
2191       (muse-colors-region): Set `muse-colors-fontifying' to t.
2192     
2193     * lisp/muse-backlinks.el: New file by Jim Ottaway that provides backlink
2194       support.  I've modified it slightly to get rid of the defadvice forms.
2196     new files:
2197      lisp/.arch-ids/muse-backlink.el.id lisp/muse-backlink.el
2199     modified files:
2200      AUTHORS ChangeLog.2006 lisp/muse-colors.el
2203 2006-03-10 22:56:22 GMT Michael Olson <mwolson@gnu.org> patch-54
2205     Summary:
2206       muse-protocols: Add Wikipedia support.
2207     Revision:
2208       muse--main--1.0--patch-54
2210     * lisp/muse-protocols.el (muse-url-protocols): Add "dict:" handler.  This
2211       is used to look up terms on the Wikipedia website.
2212       (muse-wikipedia-country): New option that specifies the country code to
2213       use for Wikipedia.
2214       (muse-resolve-url-dict, muse-browse-url-dict): New functions that
2215       resolve and browse Wikipedia URLs.
2217     modified files:
2218      ChangeLog.2006 lisp/muse-protocols.el
2221 2006-03-10 19:29:56 GMT Michael Olson <mwolson@gnu.org> patch-53
2223     Summary:
2224       muse-protocols: Add DOI handling.
2225     Revision:
2226       muse--main--1.0--patch-53
2228     * lisp/muse-protocols.el (muse-url-protocols): Add handler for DOI's.
2229       DOI's (digitial object identifiers) are a standard identifier used in
2230       the publishing industry.  Thanks to Phillip Lord for the patch.
2231       (muse-resolve-url-doi, muse-browse-url-doi): New functions that resolve
2232       and browse DOI's.
2234     modified files:
2235      AUTHORS ChangeLog.2006 lisp/muse-protocols.el
2238 2006-03-10 16:34:52 GMT Michael Olson <mwolson@gnu.org> patch-52
2240     Summary:
2241       Refine previous patch.
2242     Revision:
2243       muse--main--1.0--patch-52
2245     * lisp/muse-mode.el (muse-link-at-point): If muse-colors is loaded, don't
2246       ever use the fallback method.  Save point when using new method.
2248     modified files:
2249      ChangeLog.2006 lisp/muse-mode.el
2252 2006-03-10 16:26:53 GMT Michael Olson <mwolson@gnu.org> patch-51
2254     Summary:
2255       Make visiting of links a bit faster.
2256     Revision:
2257       muse--main--1.0--patch-51
2259     * lisp/muse-colors.el (muse-unhighlight-region): Remove muse-link
2260       property.
2261       (muse-link-properties): If we are highlighting a link, add the
2262       muse-link property.
2263     
2264     * lisp/muse-mode.el (muse-link-at-point): If the muse-link property
2265       exists at point, use it to bound the link.  Otherwise, use the old
2266       method.  This should make it easier to visit custom implicit link
2267       forms, since it does not require a change to muse-implicit-link-regexp.
2268     
2269     * lisp/muse-regexps.el (muse-implicit-link-regexp): Note that this is not
2270       used when muse-colors.el is loaded.
2272     modified files:
2273      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2274      lisp/muse-regexps.el
2277 2006-03-10 04:57:55 GMT Michael Olson <mwolson@gnu.org> patch-50
2279     Summary:
2280       Make resolving of inline image paths more flexible.
2281     Revision:
2282       muse--main--1.0--patch-50
2284     * lisp/muse-colors.el (muse-colors-inline-image-method): Rename from
2285       `muse-inline-relative-to'.  Add muse-colors-use-publishing-directory
2286       option.  Make the fallback customization type a function rather than a
2287       symbol.
2288       (muse-colors-use-publishing-directory): New function that takes the
2289       best guess at where the current Muse file will be published and makes
2290       the given link relative to that.
2291       (muse-colors-insert-image): If muse-colors-inline-image-method is
2292       'default-directory, use the default directory.  If it is a function,
2293       call that function with LINK as an argument.  Otherwise, give up.
2295     modified files:
2296      ChangeLog.2006 lisp/muse-colors.el
2299 2006-03-10 03:43:03 GMT Michael Olson <mwolson@gnu.org> patch-49
2301     Summary:
2302       Fix inline image lockup.
2303     Revision:
2304       muse--main--1.0--patch-49
2306     * lisp/muse-colors.el (muse-colors-explicit-link): Fix regression in
2307       patch-47.  This will prevent Muse from locking up after making a new
2308       inline image.
2310     modified files:
2311      ChangeLog.2006 lisp/muse-colors.el
2314 2006-03-07 03:52:11 GMT Michael Olson <mwolson@gnu.org> patch-48
2316     Summary:
2317       Fix publishing problem with XEmacs.
2318     Revision:
2319       muse--main--1.0--patch-48
2321     * lisp/muse-publish.el (muse-insert-file-or-string): Fix XEmacs
2322       publishing problem when text at beginning of buffer is read-only.
2323       Thanks to Christian Clercin for the report.
2325     modified files:
2326      ChangeLog.2006 lisp/muse-publish.el
2329 2006-03-06 06:06:38 GMT Michael Olson <mwolson@gnu.org> patch-47
2331     Summary:
2332       Get increase and decrease of list indentation to work with complex cases.
2333     Revision:
2334       muse--main--1.0--patch-47
2336     * lisp/muse-colors.el: Miscellaneous whitespace fixes.
2337       (muse-colors-explicit-link): Minor logic tweak.  The indentation seems
2338       to indicate this interpretation, though parens are different.
2339     
2340     * lisp/muse-mode.el: Miscellaneous whitespace fixes.
2341       (muse-alter-list-item-indentation): New function that alters the list
2342       structure at point.  The behavior to use is specified by the OPERATION
2343       argument.  Currently-supported operations are 'increase and 'decrease
2344       indentation level.  This now uses the same sort of list detection
2345       algorithm that is used during publishing, so it should work as expected
2346       for complicated cases.
2347       (muse-increase-list-item-indentation)
2348       (muse-decrease-list-item-indentation): Use
2349       `muse-alter-list-item-indentation'.
2351     modified files:
2352      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2355 2006-03-06 04:50:17 GMT Michael Olson <mwolson@gnu.org> patch-46
2357     Summary:
2358       Code simplification; improve muse-list-item-type function.
2359     Revision:
2360       muse--main--1.0--patch-46
2362     * lisp/muse.el (muse-list-item-type): Disambiguate between 'dl-term and
2363       'dl-entry, instead of just returning 'dl.
2364       (muse-forward-dl-term, muse-forward-dl-entry): Use
2365       muse-forward-list-item.
2366       (muse-forward-dl-part): Remove, merge functionality into
2367       muse-forward-list-item.
2368       (muse-forward-list-item): Add a few conditions needed for skipping
2369       nested 'dl-term and 'dl-entry items.
2371     modified files:
2372      ChangeLog.2006 lisp/muse.el
2375 2006-03-06 01:11:58 GMT Michael Olson <mwolson@gnu.org> patch-45
2377     Summary:
2378       Put movement by list and paragraph functions in muse.el.
2379     Revision:
2380       muse--main--1.0--patch-45
2382     * lisp/muse.el (muse-list-item-type, muse-forward-paragraph):
2383       (muse-forward-dl-term, muse-forward-dl-entry, muse-forward-dl-part):
2384       (muse-forward-list-item): Move here from muse-publish.el, so that
2385       muse-mode can make use of these.
2387     modified files:
2388      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
2391 2006-03-06 01:06:14 GMT Michael Olson <mwolson@gnu.org> patch-44
2393     Summary:
2394       Merged from mwolson@gnu.org--2006-muse-el (patch 5-14)
2395     Revision:
2396       muse--main--1.0--patch-44
2398     (Author: Per B. Sederberg <per@med.upenn.edu>)
2399     
2400     * lisp/muse-mode.el (muse-mode-map): Added key mappings to increase or
2401       decrease the current item indentation.
2402       (muse-get-paragraph-start): Helper function to determine the start of
2403       the current paragraph.
2404       (muse-insert-list-item): Cleaned up list item insertion code and made
2405       it handle definitions.
2406       (muse-increase-list-item-indentation): New interactive function to
2407       increase list item indentation.
2408       (muse-decrease-list-item-indentation): New interactive function to
2409       decrease list item indentation.
2411     modified files:
2412      ChangeLog.2006 lisp/muse-mode.el
2414     new patches:
2415      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-5
2416      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-6
2417      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-7
2418      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-8
2419      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-9
2420      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-10
2421      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-11
2422      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-12
2423      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-13
2424      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-14
2427 2006-03-06 00:58:00 GMT Michael Olson <mwolson@gnu.org> patch-43
2429     Summary:
2430       Use slightly better algorithm for removing initial whitespace.
2431     Revision:
2432       muse--main--1.0--patch-43
2434     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of whether
2435       the definition occurred on the same line as the term.
2436       (muse-publish-surround-text): Use a slightly better algorithm for
2437       removing initial indentation of list items.  This way, we preserve
2438       nesting of lists and also deal with same-level items that occur after
2439       nested items.  This probably doesn't make much of a difference in the
2440       output, but it should make support of nested definition lists a bit
2441       less troublesome in some cases.
2442       (muse-forward-dl-entry): Deal with ambiguity in muse-list-item-regexp
2443       regexp.
2444       (muse-forward-dl-part, muse-forward-list-item): Don't clobber match
2445       data.  Don't remove any text.  This makes the function easier to reuse
2446       in display-only situations.
2448     modified files:
2449      ChangeLog.2006 lisp/muse-publish.el
2452 2006-03-04 02:03:59 GMT Michael Olson <mwolson@gnu.org> patch-42
2454     Summary:
2455       In a preliminary way, make definition lists nest.
2456     Revision:
2457       muse--main--1.0--patch-42
2459     * lisp/muse-publish.el (muse-forward-dl-part): Make it so that definition
2460       lists nest a bit better.
2461     
2462     * lisp/muse-regexps.el (muse-dl-entry-regexp): Removed, since we don't
2463       use it anymore.
2465     modified files:
2466      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2469 2006-03-03 19:28:22 GMT Michael Olson <mwolson@gnu.org> patch-41
2471     Summary:
2472       Fix nested list regression.
2473     Revision:
2474       muse--main--1.0--patch-41
2476     * lisp/muse-publish.el (muse-publish-surround-text): Keep track of
2477       original indentation value and use that.  This fixes a regression
2478       caused by the last patch.
2480     modified files:
2481      ChangeLog.2006 lisp/muse-publish.el
2484 2006-03-03 05:24:59 GMT Michael Olson <mwolson@gnu.org> patch-40
2486     Summary:
2487       Make code look nicer by using muse-forward-dl-* functions.
2488     Revision:
2489       muse--main--1.0--patch-40
2491     * lisp/muse-publish.el (muse-publish-surround-dl): Factor out lambda
2492       forms into muse-forward-dl-* for increased reusability.
2493       (muse-publish-surround-text): Call move function with an indent
2494       argument so that we don't have to use partial substitution in lambda
2495       forms.
2496       (muse-forward-dl-term): New function that moves forward to the next
2497       definition list term.
2498       (muse-forward-dl-entry): New function that moves forward to the next
2499       definition list entry.
2500       (muse-forward-dl-part): Renamed from `muse-forward-dl-item', since this
2501       does not move past entire definition list items, only parts of them.
2502       (muse-publish-markup-list, muse-publish-markup-quote):
2503       (muse-publish-quote-tag): Use better lambda form, and include a
2504       parameter.
2506     modified files:
2507      ChangeLog.2006 lisp/muse-publish.el
2510 2006-03-02 05:38:41 GMT Michael Olson <mwolson@gnu.org> patch-39
2512     Summary:
2513       Handle blockquoted sections within lists properly.
2514     Revision:
2515       muse--main--1.0--patch-39
2517     * lisp/muse-publish.el (muse-forward-paragraph): Respect end-list
2518       property.  This should make blockquoted sections within a list do the
2519       right thing.
2520       (muse-forward-dl-item, muse-forward-list-item): Adjust logic for new
2521       behavior of `muse-forward-paragraph'.
2523     modified files:
2524      ChangeLog.2006 lisp/muse-publish.el
2527 2006-03-02 05:00:07 GMT Michael Olson <mwolson@gnu.org> patch-38
2529     Summary:
2530       Fix problem when previous list item was nested.
2531     Revision:
2532       muse--main--1.0--patch-38
2534     * lisp/muse-publish.el (muse-publish-surround-text): Bind nested list
2535       indicator at the correct place.  This fixes an error where a previous
2536       list was nested but the current one isn't.  Thanks to Per B. Sederberg
2537       for the report.
2539     modified files:
2540      ChangeLog.2006 lisp/muse-publish.el
2543 2006-03-02 04:36:06 GMT Michael Olson <mwolson@gnu.org> patch-37
2545     Summary:
2546       Fix #5376: Changing muse-wiki-wikiword-regexp does not seem to affect anything.
2547     Revision:
2548       muse--main--1.0--patch-37
2550     * muse.texi (Implicit Links): Mention how to customize the WikiName
2551       recognition, and note that if you're setting this manually, you have to
2552       call some additional code.  This should fix #5376.  Also remove local
2553       variables section at end, since it seems pointless.
2555     modified files:
2556      ChangeLog.2006 muse.texi
2559 2006-03-02 04:25:37 GMT Michael Olson <mwolson@gnu.org> patch-36
2561     Summary:
2562       Fix #5325: nested formatting not working in HTML output.
2563     Revision:
2564       muse--main--1.0--patch-36
2566     * lisp/muse-publish.el (muse-publish-markup-word): Make nested emphasis
2567       work.  I'm a bit worried about possible double-escaping, though.
2568       Perhaps we should write the context to a text property and escape it
2569       later.  This should fix #5325.
2571     modified files:
2572      ChangeLog.2006 lisp/muse-publish.el
2575 2006-03-02 01:08:14 GMT Michael Olson <mwolson@gnu.org> patch-35
2577     Summary:
2578       Make paragraphs respect the end of a list or list item.
2579     Revision:
2580       muse--main--1.0--patch-35
2582     * lisp/muse-docbook.el (muse-docbook-markup-paragraph): If we are at the
2583       end of a list (or list item), back up.  This allows for a nice side
2584       effect when using indented sentences in between list items.
2585     
2586     * lisp/muse-html.el (muse-html-markup-paragraph): Ditto.
2587     
2588     * lisp/muse-xml.el (muse-xml-markup-paragraph): Ditto.
2589     
2590     * lisp/muse-publish.el (muse-publish-surround-dl): Make sure that end-ddt
2591       and end-item are marked up with end-list properties.
2593     modified files:
2594      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
2595      lisp/muse-publish.el lisp/muse-xml.el
2598 2006-03-01 21:00:41 GMT Michael Olson <mwolson@gnu.org> patch-34
2600     Summary:
2601       Make sure an initial term exists before publishing definition list.
2602     Revision:
2603       muse--main--1.0--patch-34
2605     * lisp/muse-publish.el (muse-publish-markup-list): Ensure that a term
2606       exists before publishing a definition list.
2608     modified files:
2609      ChangeLog.2006 lisp/muse-publish.el
2612 2006-03-01 20:21:08 GMT Michael Olson <mwolson@gnu.org> patch-33
2614     Summary:
2615       Add comments to nested list code.
2616     Revision:
2617       muse--main--1.0--patch-33
2619     * lisp/muse-publish.el (muse-publish-surround-dl)
2620       (muse-publish-surround-text, muse-forward-dl-item):
2621       (muse-forward-list-item): Add comments, since there were many
2622       intricacies that are probably not obvious to the casual reader.
2623       (muse-forward-dl-item): Remove no-op condition.
2625     modified files:
2626      ChangeLog.2006 lisp/muse-publish.el
2629 2006-03-01 19:51:45 GMT Michael Olson <mwolson@gnu.org> patch-32
2631     Summary:
2632       Make nested list items work when separated by one blank line.
2633     Revision:
2634       muse--main--1.0--patch-32
2636     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2637       muse-forward-dl-item instead of muse-forward-list-item.  On second
2638       thought, don't unconditionally insert a newline, as that breaks some
2639       things.
2640       (muse-forward-dl-item): New function that moves forward to the next
2641       definition list item.  This was factored out from
2642       muse-forward-list-item, since it was getting too complex for my liking.
2643       (muse-forward-dl-item, muse-forward-list-item): Introduce concept of
2644       indented line, and skip past these if we have a blank line followed by
2645       an indented line.  "Indented" means "indented one past the current
2646       indentation level" here.  Remove some initial whitespace that was being
2647       overlooked before.
2649     modified files:
2650      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2653 2006-03-01 17:43:55 GMT Michael Olson <mwolson@gnu.org> patch-31
2655     Summary:
2656       Fix a couple of bugs in muse-wiki-resolve-project-page.
2657     Revision:
2658       muse--main--1.0--patch-31
2660     * lisp/muse-project.el (muse-project-applicable-styles): Use a slightly
2661       better algorithm for adding styles to a list.
2662     
2663     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Handle project more
2664       carefully.  This should fix one or two hard-to-explain bugs.
2666     modified files:
2667      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
2670 2006-03-01 17:24:23 GMT Michael Olson <mwolson@gnu.org> patch-30
2672     Summary:
2673       Fix another definition list edge case.
2674     Revision:
2675       muse--main--1.0--patch-30
2677     * lisp/muse-publish.el (muse-publish-surround-dl): Fix edge case where
2678       unordered list immediately follows definition list term.
2680     modified files:
2681      ChangeLog.2006 lisp/muse-publish.el
2684 2006-03-01 17:05:25 GMT Michael Olson <mwolson@gnu.org> patch-29
2686     Summary:
2687       Pass all current definition list test cases.
2688     Revision:
2689       muse--main--1.0--patch-29
2691     * lisp/muse-publish.el (muse-publish-surround-dl): Move correctly to next
2692       line if definition is not on the same line as the term.
2693       (muse-forward-list-item): Fix publishing incorrectness that occurred
2694       when a non-dl list follows a definition list.  Always move to the right
2695       place so as to prevent extra empty dd elements from being published.
2697     modified files:
2698      ChangeLog.2006 lisp/muse-publish.el
2701 2006-03-01 15:08:45 GMT Michael Olson <mwolson@gnu.org> patch-28
2703     Summary:
2704       Merge consecutive definition list terms properly.
2705     Revision:
2706       muse--main--1.0--patch-28
2708     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of status
2709       correctly.  This makes Muse merge several definition list items into
2710       one list.
2711       (muse-forward-list-item): Use simpler regexp for 'dl.
2712     
2713     * lisp/muse-regexps.el (muse-list-item-regexp): Make terms optional in
2714       definition lists, and make terms the 2nd matched text.
2716     modified files:
2717      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2720 2006-02-28 23:48:24 GMT Michael Olson <mwolson@gnu.org> patch-27
2722     Summary:
2723       Bookkeeping.
2724     Revision:
2725       muse--main--1.0--patch-27
2727     * AUTHORS: Update.
2728     
2729     * muse-colors.el, muse-mode.el: Credit contributions.
2731     modified files:
2732      AUTHORS ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2735 2006-02-28 23:37:26 GMT Michael Olson <mwolson@gnu.org> patch-26
2737     Summary:
2738       Merged from mwolson@gnu.org--2006-muse-el (patch 0-4)
2739     Revision:
2740       muse--main--1.0--patch-26
2742     Patches applied:
2743     
2744      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2745        Added ability to show inline images in the Emacs buffer.
2746     
2747      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2748        Added enhanced list item insertion.
2749     
2750     Detailed log:
2751     
2752     (Author: Per B. Sederberg <per@med.upenn.edu>)
2753     
2754     * lisp/muse-mode.el (muse-mode-map): Added new key binding to insert a
2755       list item.  New key mapping to toggle showing images.  Added a key
2756       mapping to insert a link to a file and modified the key map to insert a
2757       tag.
2758       (muse-on-blank-line): Helper function to determine if the point is on a
2759       line containing only blank spaces.
2760       (muse-insert-list-item): New interactive function to insert a new list
2761       item, taking into account the current list state.
2762       (muse-insert-relative-link-to-file): New function to insert a link to a
2763       file, relative to the default directory.
2764     
2765     * lisp/muse-colors.el (muse-inline-relative-to): Added custom directory
2766       for where to search for images to inline in the buffer.
2767       (muse-colors-inline-images): Added custom boolean field for whether to
2768       show inline images in the buffer.
2769       (muse-colors-toggle-inline-images): New function to toggle showing the
2770       inline images in the buffer.
2771       (muse-unhighlight-region): Now removes end-glyph text properties to
2772       support XEmacs.
2773       (muse-colors-resolve-image-file): New function to determine if a link
2774       is an image and whether the version of Emacs can support inline images.
2775       (muse-make-file-glyph): New function to create an image glyph if we are
2776       using XEmacs.
2777       (muse-colors-insert-image): New function to insert an image in an Emacs
2778       buffer.
2779       (muse-colors-explicit-link): Modified function to have the ability to
2780       insert an image instead of formatting the text of the link.
2782     modified files:
2783      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2785     new patches:
2786      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--base-0
2787      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-1
2788      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2789      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2790      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-4
2793 2006-02-28 05:20:11 GMT Michael Olson <mwolson@gnu.org> patch-25
2795     Summary:
2796       Pass testcase for definition list and nested unordered list.
2797     Revision:
2798       muse--main--1.0--patch-25
2800     * lisp/muse-publish.el (muse-publish-surround-dl): Ensure that definition
2801       lists always have at least one entry.  This appears to do the right
2802       thing with a sample nested unordered list.
2804     modified files:
2805      ChangeLog.2006 lisp/muse-publish.el
2808 2006-02-28 05:09:33 GMT Michael Olson <mwolson@gnu.org> patch-24
2810     Summary:
2811       Some definition list fixes.
2812     Revision:
2813       muse--main--1.0--patch-24
2815     * lisp/muse-publish.el (muse-publish-markup-list): Make sure to insert
2816       markup for end of list using the `muse-insert-markup-end-list'
2817       function.  Handle list items nested inside of a definition list.
2819     modified files:
2820      ChangeLog.2006 lisp/muse-publish.el
2823 2006-02-28 04:43:15 GMT Michael Olson <mwolson@gnu.org> patch-23
2825     Summary:
2826       Fix another wrapped list item edge case.
2827     Revision:
2828       muse--main--1.0--patch-23
2830     * lisp/muse-publish.el (muse-publish-surround-text): Stop removing
2831       indentation in a region when we encounter any list items.  This should
2832       fix another wrapped list item edge case.  Thanks to Per B. Sederberg
2833       for the report.
2835     modified files:
2836      ChangeLog.2006 lisp/muse-publish.el
2839 2006-02-26 18:26:05 GMT Michael Olson <mwolson@gnu.org> patch-22
2841     Summary:
2842       Fix comment in Debian packaging.
2843     Revision:
2844       muse--main--1.0--patch-22
2846     * debian/emacsen-remove: Fix comment.
2848     modified files:
2849      ChangeLog.2006 debian/emacsen-remove
2852 2006-02-24 03:23:49 GMT Michael Olson <mwolson@gnu.org> patch-21
2854     Summary:
2855       muse-blosxom: Fix order of #tags line in header.
2856     Revision:
2857       muse--main--1.0--patch-21
2859     * lisp/muse-blosxom.el (muse-blosxom-header): Put #tags line after title,
2860       rather than before it.  Thanks to bkhl for the heads up.
2862     modified files:
2863      ChangeLog.2006 lisp/muse-blosxom.el
2866 2006-02-23 03:33:03 GMT Michael Olson <mwolson@gnu.org> patch-20
2868     Summary:
2869       muse-blosxom: Add ability to use tags in entries.
2870     Revision:
2871       muse--main--1.0--patch-20
2873     * lisp/muse-blosxom.el (muse-blosxom-header): If we are using tags,
2874       publish them.
2875       (muse-blosxom-use-tags): New option that specifies whether we are using
2876       tags.
2877       (muse-blosxom-new-entry): If using tags, read tags until the user hits
2878       RET without entering one.
2880     modified files:
2881      ChangeLog.2006 lisp/muse-blosxom.el
2884 2006-02-23 03:23:51 GMT Michael Olson <mwolson@gnu.org> patch-19
2886     Summary:
2887       Fix backtrace when publishing unsaved files.
2888     Revision:
2889       muse--main--1.0--patch-19
2891     * lisp/muse-publish.el (muse-publish-file): Detect case where we are
2892       trying to publish a file that has not been saved, and give an
2893       explanation to the user.
2895     modified files:
2896      ChangeLog.2006 lisp/muse-publish.el
2899 2006-02-21 23:19:36 GMT Michael Olson <mwolson@gnu.org> patch-18
2901     Summary:
2902       muse-texinfo: Fix link suffix.
2903     Revision:
2904       muse--main--1.0--patch-18
2906     * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf
2907       styles.  This should fix a bug where links in published info files use
2908       an incorrect extension.  Thanks to Hans Ekbrand for the report!
2910     modified files:
2911      ChangeLog.2006 lisp/muse-texinfo.el
2914 2006-02-16 21:54:11 GMT Michael Olson <mwolson@gnu.org> patch-17
2916     Summary:
2917       Fix prompting of non-Muse buffers before publishing.
2918     Revision:
2919       muse--main--1.0--patch-17
2921     * lisp/muse-project.el (muse-project-of-file): Apply fix from René
2922       Stadler to ignore buffers that have no associated filename.  This fixes
2923       an annoyance where Muse prompts to save BBDB and ERC buffers before
2924       publishing.
2926     modified files:
2927      AUTHORS ChangeLog.2006 lisp/muse-project.el
2930 2006-02-16 04:43:35 GMT Michael Olson <mwolson@gnu.org> patch-16
2932     Summary:
2933       Fix wrapped nested list item edge case.
2934     Revision:
2935       muse--main--1.0--patch-16
2937     * lisp/muse-publish.el (muse-publish-markup-regexps): Remove 2300 rule,
2938       since it is no longer needed.  Tweak 2200 regexp to cover 2300's use
2939       case.
2940       (muse-publish-surround-text): Tweak prefix for muse-list-item-regexp.
2941       (muse-list-item-type): Handle the new change to muse-list-item-regexp.
2942     
2943     * lisp/muse-regexps.el (muse-list-item-regexp): Explicitly require
2944       exactly one space character in front of a unnumbered or numbered list.
2945       This should make it easier to match every list instance, since
2946       definition lists can now be handled more nicely in
2947       muse-publish-markup-regexps.  This also has the effect of fixing a
2948       wrapped nested list item edge case.
2950     modified files:
2951      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2954 2006-02-16 03:04:20 GMT Michael Olson <mwolson@gnu.org> patch-15
2956     Summary:
2957       Fix edge case in muse-wiki-publish-pretty-title.
2958     Revision:
2959       muse--main--1.0--patch-15
2961     * lisp/muse-wiki.el (muse-wiki-publish-pretty-title): If for some reason
2962       the document does not have a valid title, use the empty string.
2964     modified files:
2965      ChangeLog.2006 lisp/muse-wiki.el
2968 2006-02-14 06:35:02 GMT Michael Olson <mwolson@gnu.org> patch-14
2970     Summary:
2971       Use debian/compat to determine debhelper compat level.
2972     Revision:
2973       muse--main--1.0--patch-14
2975     * debian/compat: New file that sets the debhelper compatibility level to
2976       4.
2977     
2978     * debian/rules: Remove DH_COMPAT line.
2980     new files:
2981      debian/.arch-ids/compat.id debian/compat
2983     modified files:
2984      ChangeLog.2006 debian/rules
2987 2006-02-13 04:50:57 GMT Michael Olson <mwolson@gnu.org> patch-13
2989     Summary:
2990       Fix a couple of table-publishing edge cases.
2991     Revision:
2992       muse--main--1.0--patch-13
2994     * lisp/muse-publish.el (muse-publish-markup-regexps): Fix a table
2995       publishing error that occurs when a table line is the last thing in a
2996       document.  Thanks to cymacs for the report and suggested fix.
2997       (muse-publish-table-fields): Skip initial blank lines, and don't remove
2998       them.
2999     
3000     * lisp/muse-docbook.el (muse-docbook-markup-strings): Don't put a newline
3001       at the end of the 'end-table markup string.
3002     
3003     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
3004     
3005     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
3006     
3007     * lisp/muse-xml-common.el (muse-xml-markup-table): Always insert a
3008       newline at the end of the table.  This should fix a problem with
3009       paragraphs after tables not being published as such.  Thanks to cymacs
3010       for the report.
3011     
3012     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Don't use
3013       muse-insert-markup to insert a trailing newline.
3015     modified files:
3016      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
3017      lisp/muse-publish.el lisp/muse-texinfo.el
3018      lisp/muse-xml-common.el lisp/muse-xml.el
3021 2006-02-12 22:56:27 GMT Michael Olson <mwolson@gnu.org> patch-12
3023     Summary:
3024       Add ChangeLog for 2006 and move previous ChangeLog for 2005.
3025     Revision:
3026       muse--main--1.0--patch-12
3029     new files:
3030      .arch-ids/ChangeLog.2006.id ChangeLog.2006
3032     renamed files:
3033      .arch-ids/ChangeLog.id
3034        ==> .arch-ids/ChangeLog.2005.id
3035      ChangeLog
3036        ==> ChangeLog.2005
3039 2006-02-12 22:53:48 GMT Michael Olson <mwolson@gnu.org> patch-11
3041     Summary:
3042       Make muse-journal work with whole-document escaping.
3043     Revision:
3044       muse--main--1.0--patch-11
3046     * examples/mwolson/templates/*: Change "Published by Muse" to "Published
3047       by Emacs Muse" so that muse-journal does not get confused.
3048     
3049     * lisp/muse-journal.el (muse-journal-html-munge-buffer):
3050       (muse-journal-latex-munge-buffer, muse-journal-rss-munge-buffer): Adapt
3051       for whole-buffer escaping.  Thanks to mondoshawan for the report.
3052       (muse-journal-rss-munge-buffer): Display a warning if someone does not
3053       have "Page published by Emacs Muse (begins|ends) here" in their header
3054       or footer, since muse-journal needs this in order to determine where
3055       entries begin and end.
3057     modified files:
3058      examples/mwolson/templates/footer.html
3059      examples/mwolson/templates/generic-footer.html
3060      examples/mwolson/templates/generic-header.html
3061      examples/mwolson/templates/header.html
3062      examples/mwolson/templates/header.tex lisp/muse-journal.el
3065 2006-02-08 03:00:07 GMT Michael Olson <mwolson@gnu.org> patch-10
3067     Summary:
3068       Get simple test case for definition lists to work.
3069     Revision:
3070       muse--main--1.0--patch-10
3072     * lisp/muse-publish.el (muse-publish-surround-dl): Make simple test case
3073       publish properly.
3074       (muse-forward-list-item): Fix edge case.
3076     modified files:
3077      lisp/muse-publish.el
3080 2006-01-28 02:47:07 GMT Michael Olson <mwolson@gnu.org> patch-9
3082     Summary:
3083       Add documentation to some publishing functions.
3084     Revision:
3085       muse--main--1.0--patch-9
3087     * lisp/muse-publish.el (muse-publish-mark-read-only)
3088       (muse-publish-mark-noemphasis): Add documentation.
3090     modified files:
3091      lisp/muse-publish.el
3094 2006-01-28 02:42:03 GMT Michael Olson <mwolson@gnu.org> patch-8
3096     Summary:
3097       Fix an error with `custom-quote'.
3098     Revision:
3099       muse--main--1.0--patch-8
3101     * lisp/muse-project.el: Require 'cus-edit, since that is where
3102       `custom-quote' is defined.
3103     
3104     * muse.texi: Use copyright symbol.
3106     modified files:
3107      lisp/muse-project.el muse.texi
3110 2006-01-25 18:27:53 GMT Michael Olson <mwolson@gnu.org> patch-7
3112     Summary:
3113       muse-registry: update from author.
3114     Revision:
3115       muse--main--1.0--patch-7
3117     * lisp/muse-registry.el: Update to newest version from author.
3118       Re-tabify.
3120     modified files:
3121      lisp/muse-registry.el
3124 2006-01-21 19:26:57 GMT Michael Olson <mwolson@gnu.org> patch-6
3126     Summary:
3127       muse-latex: Handle double-quote edge case.
3128     Revision:
3129       muse--main--1.0--patch-6
3131     * lisp/muse-latex.el (muse-latex-fixup-dquotes): Handle case when a quote
3132       character begins the buffer.
3134     modified files:
3135      lisp/muse-latex.el
3138 2006-01-21 18:47:33 GMT Michael Olson <mwolson@gnu.org> patch-5
3140     Summary:
3141       Allow beginning and ending empty elements in tables.
3142     Revision:
3143       muse--main--1.0--patch-5
3145     * lisp/muse-regexps.el (muse-table-field-regexp): Allow there to be no
3146       whitespace after the field if we're at the end of a line.
3147       (muse-table-line-regexp): Allow the table to start with a "|".  The
3148       resulting initial empty cell isn't yet thrown away like it should be.
3150     modified files:
3151      lisp/muse-regexps.el
3154 2006-01-21 02:45:36 GMT Michael Olson <mwolson@gnu.org> patch-4
3156     Summary:
3157       muse-latex: Use \url to publish bare URLs.
3158     Revision:
3159       muse--main--1.0--patch-4
3161     * lisp/muse-latex.el (muse-latex-markup-strings): Use \url instead of
3162       \href for bare URLs.  Thanks to Na Li for the suggestion!
3164     modified files:
3165      lisp/muse-latex.el
3168 2006-01-20 16:22:04 GMT Michael Olson <mwolson@gnu.org> patch-3
3170     Summary:
3171       Create parents of output directories.
3172     Revision:
3173       muse--main--1.0--patch-3
3175     * lisp/muse-project.el (muse-project-publish-file): Create parent
3176       directories as well, if the output directory does not exist.  This can
3177       happen when we have nested directories in a project.
3179     modified files:
3180      lisp/muse-project.el
3183 2006-01-20 15:54:21 GMT Michael Olson <mwolson@gnu.org> patch-2
3185     Summary:
3186       Pick a better default if publishing with more than one style.
3187     Revision:
3188       muse--main--1.0--patch-2
3190     * lisp/muse-project.el (muse-project-applicable-styles): Make sure that
3191       the list we return is in the right order.  That way, if more than one
3192       publishing rule matches a link, the first one is used, rather than the
3193       last.
3195     modified files:
3196      lisp/muse-project.el
3199 2006-01-19 15:55:19 GMT Michael Olson <mwolson@gnu.org> patch-1
3201     Summary:
3202       Oops, committed to the wrong archive.
3203     Revision:
3204       muse--main--1.0--patch-1
3206     Patches applied:
3207     
3208      * mwolson@gnu.org--2005/muse--main--1.0--patch-356
3209        Debian fixups.
3210     
3211      * mwolson@gnu.org--2005/muse--main--1.0--patch-357
3212        Another Debian fix.
3214     modified files:
3215      ChangeLog debian/emacsen-startup
3217     renamed files:
3218      debian/.arch-ids/NEWS.Debian.id
3219        ==> debian/.arch-ids/NEWS.id
3220      debian/NEWS.Debian
3221        ==> debian/NEWS
3223     new patches:
3224      mwolson@gnu.org--2005/muse--main--1.0--patch-356
3225      mwolson@gnu.org--2005/muse--main--1.0--patch-357
3228 2006-01-17 06:28:50 GMT Michael Olson <mwolson@gnu.org> base-0
3230     Summary:
3231       tag of mwolson@gnu.org--2005/muse--main--1.0--patch-355
3232     Revision:
3233       muse--main--1.0--base-0
3235     See ChangeLog.2005 for earlier changes.
3237     new patches:
3238      ajk@iu.edu--2005/muse--ajk--1.0--base-0
3239      ajk@iu.edu--2005/muse--ajk--1.0--patch-1
3240      ajk@iu.edu--2005/muse--ajk--1.0--patch-2
3241      ajk@iu.edu--2005/muse--ajk--1.0--patch-3
3242      ajk@iu.edu--2005/muse--ajk--1.0--patch-4
3243      ajk@iu.edu--2005/muse--ajk--1.0--patch-5
3244      ajk@iu.edu--2005/muse--ajk--1.0--patch-6
3245      ajk@iu.edu--2005/muse--ajk--1.0--patch-7
3246      ajk@iu.edu--2005/muse--ajk--1.0--patch-8
3247      ajk@iu.edu--2005/muse--ajk--1.0--patch-9
3248      ajk@iu.edu--2005/muse--main--1.0--base-0
3249      ajk@iu.edu--2005/muse--main--1.0--patch-1
3250      ajk@iu.edu--2005/muse--main--1.0--patch-2
3251      davidsmith@acm.org--2005/muse--devo--1.0--base-0
3252      davidsmith@acm.org--main/muse--devo--1.0--base-0
3253      davidsmith@acm.org--main/muse--devo--1.0--patch-1
3254      davidsmith@acm.org--main/muse--devo--1.0--patch-2
3255      hodique@lifl.fr--2005/muse--yh--1.0--base-0
3256      hodique@lifl.fr--2005/muse--yh--1.0--patch-1
3257      hodique@lifl.fr--2005/muse--yh--1.0--patch-2
3258      hodique@lifl.fr--2005/muse--yh--1.0--patch-3
3259      hodique@lifl.fr--2005/muse--yh--1.0--patch-4
3260      hodique@lifl.fr--2005/muse--yh--1.0--patch-5
3261      hodique@lifl.fr--2005/muse--yh--1.0--patch-6
3262      hodique@lifl.fr--2005/muse--yh--1.0--patch-7
3263      hodique@lifl.fr--2005/muse--yh--1.0--patch-8
3264      hodique@lifl.fr--2005/muse--yh--1.0--patch-9
3265      hodique@lifl.fr--2005/muse--yh--1.0--patch-10
3266      hodique@lifl.fr--2005/muse--yh--1.0--patch-11
3267      hodique@lifl.fr--2005/muse--yh--1.0--patch-12
3268      hodique@lifl.fr--2005/muse--yh--1.0--patch-13
3269      hodique@lifl.fr--2005/muse--yh--1.0--patch-14
3270      hodique@lifl.fr--2005/muse--yh--1.0--patch-15
3271      hodique@lifl.fr--2005/muse--yh--1.0--patch-16
3272      hodique@lifl.fr--2005/muse--yh--1.0--patch-17
3273      hodique@lifl.fr--2005/muse--yh--1.0--patch-18
3274      hodique@lifl.fr--2005/muse--yh--1.0--patch-19
3275      hodique@lifl.fr--2005/muse--yh--1.0--patch-20
3276      hodique@lifl.fr--2005/muse--yh--1.0--patch-21
3277      hodique@lifl.fr--2005/muse--yh--1.0--patch-22
3278      hodique@lifl.fr--2005/muse--yh--1.0--patch-23
3279      hodique@lifl.fr--2005/muse--yh--1.0--patch-24
3280      hodique@lifl.fr--2005/muse--yh--1.0--patch-25
3281      hodique@lifl.fr--2005/muse--yh--1.0--patch-26
3282      hodique@lifl.fr--2005/muse--yh--1.0--patch-27
3283      hodique@lifl.fr--2005/muse--yh--1.0--patch-28
3284      hodique@lifl.fr--2005/muse--yh--1.0--patch-29
3285      hodique@lifl.fr--2005/muse--yh--1.0--patch-30
3286      hodique@lifl.fr--2005/muse--yh--1.0--patch-31
3287      hodique@lifl.fr--2005/muse--yh--1.0--patch-32
3288      hodique@lifl.fr--2005/muse--yh--1.0--patch-33
3289      hodique@lifl.fr--2005/muse--yh--1.0--patch-34
3290      hodique@lifl.fr--2005/muse--yh--1.0--patch-35
3291      hodique@lifl.fr--2005/muse--yh--1.0--patch-36
3292      hodique@lifl.fr--2005/muse--yh--1.0--patch-37
3293      hodique@lifl.fr--2005/muse--yh--1.0--patch-38
3294      hodique@lifl.fr--2005/muse--yh--1.0--patch-39
3295      hodique@lifl.fr--2005/muse--yh--1.0--patch-40
3296      hodique@lifl.fr--2005/muse--yh--1.0--patch-41
3297      hodique@lifl.fr--2005/muse--yh--1.0--patch-42
3298      hodique@lifl.fr--2005/muse--yh--1.0--patch-43
3299      hodique@lifl.fr--2005/muse--yh--1.0--patch-44
3300      hodique@lifl.fr--2005/muse--yh--1.0--patch-45
3301      jeho@jeho.org--2005/muse--jeho--1.0--base-0
3302      jeho@jeho.org--2005/muse--jeho--1.0--patch-1
3303      jeho@jeho.org--2005/muse--jeho--1.0--patch-2
3304      jeho@jeho.org--2005/muse--jeho--1.0--patch-3
3305      jeho@jeho.org--2005/muse--jeho--1.0--patch-4
3306      jeho@jeho.org--2005/muse--jeho--1.0--patch-5
3307      jeho@jeho.org--2005/muse--jeho--1.0--patch-6
3308      jeho@jeho.org--2005/muse--jeho--1.0--patch-7
3309      jeho@jeho.org--2005/muse--jeho--1.0--patch-8
3310      jeho@jeho.org--2005/muse--jeho--1.0--patch-9
3311      jeho@jeho.org--2005/muse--jeho--1.0--patch-10
3312      jeho@jeho.org--2005/muse--jeho--1.0--patch-11
3313      jeho@jeho.org--2005/muse--jeho--1.0--patch-12
3314      jeho@jeho.org--2005/muse--jeho--1.0--patch-13
3315      jeho@jeho.org--2005/muse--jeho--1.0--patch-14
3316      jeho@jeho.org--2005/muse--jeho--1.0--patch-15
3317      jeho@jeho.org--2005/muse--jeho--1.0--patch-16
3318      jeho@jeho.org--2005/muse--jeho--1.0--patch-17
3319      jeho@jeho.org--2005/muse--jeho--1.0--patch-18
3320      jeho@jeho.org--2005/muse--jeho--1.0--patch-19
3321      jeho@jeho.org--2005/muse--jeho--1.0--patch-20
3322      jeho@jeho.org--2005/muse--jeho--1.0--patch-21
3323      john@wjsullivan.net--2006/muse--johnsu01--0--base-0
3324      john@wjsullivan.net--2006/muse--johnsu01--0--patch-1
3325      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--base-0
3326      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-1
3327      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-2
3328      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-1
3329      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-2
3330      mwolson@gnu.org--2005/muse--main--1.0--base-0
3331      mwolson@gnu.org--2005/muse--main--1.0--patch-1
3332      mwolson@gnu.org--2005/muse--main--1.0--patch-2
3333      mwolson@gnu.org--2005/muse--main--1.0--patch-3
3334      mwolson@gnu.org--2005/muse--main--1.0--patch-4
3335      mwolson@gnu.org--2005/muse--main--1.0--patch-5
3336      mwolson@gnu.org--2005/muse--main--1.0--patch-6
3337      mwolson@gnu.org--2005/muse--main--1.0--patch-7
3338      mwolson@gnu.org--2005/muse--main--1.0--patch-8
3339      mwolson@gnu.org--2005/muse--main--1.0--patch-9
3340      mwolson@gnu.org--2005/muse--main--1.0--patch-10
3341      mwolson@gnu.org--2005/muse--main--1.0--patch-11
3342      mwolson@gnu.org--2005/muse--main--1.0--patch-12
3343      mwolson@gnu.org--2005/muse--main--1.0--patch-13
3344      mwolson@gnu.org--2005/muse--main--1.0--patch-14
3345      mwolson@gnu.org--2005/muse--main--1.0--patch-15
3346      mwolson@gnu.org--2005/muse--main--1.0--patch-16
3347      mwolson@gnu.org--2005/muse--main--1.0--patch-17
3348      mwolson@gnu.org--2005/muse--main--1.0--patch-18
3349      mwolson@gnu.org--2005/muse--main--1.0--patch-19
3350      mwolson@gnu.org--2005/muse--main--1.0--patch-20
3351      mwolson@gnu.org--2005/muse--main--1.0--patch-21
3352      mwolson@gnu.org--2005/muse--main--1.0--patch-22
3353      mwolson@gnu.org--2005/muse--main--1.0--patch-23
3354      mwolson@gnu.org--2005/muse--main--1.0--patch-24
3355      mwolson@gnu.org--2005/muse--main--1.0--patch-25
3356      mwolson@gnu.org--2005/muse--main--1.0--patch-26
3357      mwolson@gnu.org--2005/muse--main--1.0--patch-27
3358      mwolson@gnu.org--2005/muse--main--1.0--patch-28
3359      mwolson@gnu.org--2005/muse--main--1.0--patch-29
3360      mwolson@gnu.org--2005/muse--main--1.0--patch-30
3361      mwolson@gnu.org--2005/muse--main--1.0--patch-31
3362      mwolson@gnu.org--2005/muse--main--1.0--patch-32
3363      mwolson@gnu.org--2005/muse--main--1.0--patch-33
3364      mwolson@gnu.org--2005/muse--main--1.0--patch-34
3365      mwolson@gnu.org--2005/muse--main--1.0--patch-35
3366      mwolson@gnu.org--2005/muse--main--1.0--patch-36
3367      mwolson@gnu.org--2005/muse--main--1.0--patch-37
3368      mwolson@gnu.org--2005/muse--main--1.0--patch-38
3369      mwolson@gnu.org--2005/muse--main--1.0--patch-39
3370      mwolson@gnu.org--2005/muse--main--1.0--patch-40
3371      mwolson@gnu.org--2005/muse--main--1.0--patch-41
3372      mwolson@gnu.org--2005/muse--main--1.0--patch-42
3373      mwolson@gnu.org--2005/muse--main--1.0--patch-43
3374      mwolson@gnu.org--2005/muse--main--1.0--patch-44
3375      mwolson@gnu.org--2005/muse--main--1.0--patch-45
3376      mwolson@gnu.org--2005/muse--main--1.0--patch-46
3377      mwolson@gnu.org--2005/muse--main--1.0--patch-47
3378      mwolson@gnu.org--2005/muse--main--1.0--patch-48
3379      mwolson@gnu.org--2005/muse--main--1.0--patch-49
3380      mwolson@gnu.org--2005/muse--main--1.0--patch-50
3381      mwolson@gnu.org--2005/muse--main--1.0--patch-51
3382      mwolson@gnu.org--2005/muse--main--1.0--patch-52
3383      mwolson@gnu.org--2005/muse--main--1.0--patch-53
3384      mwolson@gnu.org--2005/muse--main--1.0--patch-54
3385      mwolson@gnu.org--2005/muse--main--1.0--patch-55
3386      mwolson@gnu.org--2005/muse--main--1.0--patch-56
3387      mwolson@gnu.org--2005/muse--main--1.0--patch-57
3388      mwolson@gnu.org--2005/muse--main--1.0--patch-58
3389      mwolson@gnu.org--2005/muse--main--1.0--patch-59
3390      mwolson@gnu.org--2005/muse--main--1.0--patch-60
3391      mwolson@gnu.org--2005/muse--main--1.0--patch-61
3392      mwolson@gnu.org--2005/muse--main--1.0--patch-62
3393      mwolson@gnu.org--2005/muse--main--1.0--patch-63
3394      mwolson@gnu.org--2005/muse--main--1.0--patch-64
3395      mwolson@gnu.org--2005/muse--main--1.0--patch-65
3396      mwolson@gnu.org--2005/muse--main--1.0--patch-66
3397      mwolson@gnu.org--2005/muse--main--1.0--patch-67
3398      mwolson@gnu.org--2005/muse--main--1.0--patch-68
3399      mwolson@gnu.org--2005/muse--main--1.0--patch-69
3400      mwolson@gnu.org--2005/muse--main--1.0--patch-70
3401      mwolson@gnu.org--2005/muse--main--1.0--patch-71
3402      mwolson@gnu.org--2005/muse--main--1.0--patch-72
3403      mwolson@gnu.org--2005/muse--main--1.0--patch-73
3404      mwolson@gnu.org--2005/muse--main--1.0--patch-74
3405      mwolson@gnu.org--2005/muse--main--1.0--patch-75
3406      mwolson@gnu.org--2005/muse--main--1.0--patch-76
3407      mwolson@gnu.org--2005/muse--main--1.0--patch-77
3408      mwolson@gnu.org--2005/muse--main--1.0--patch-78
3409      mwolson@gnu.org--2005/muse--main--1.0--patch-79
3410      mwolson@gnu.org--2005/muse--main--1.0--patch-80
3411      mwolson@gnu.org--2005/muse--main--1.0--patch-81
3412      mwolson@gnu.org--2005/muse--main--1.0--patch-82
3413      mwolson@gnu.org--2005/muse--main--1.0--patch-83
3414      mwolson@gnu.org--2005/muse--main--1.0--patch-84
3415      mwolson@gnu.org--2005/muse--main--1.0--patch-85
3416      mwolson@gnu.org--2005/muse--main--1.0--patch-86
3417      mwolson@gnu.org--2005/muse--main--1.0--patch-87
3418      mwolson@gnu.org--2005/muse--main--1.0--patch-88
3419      mwolson@gnu.org--2005/muse--main--1.0--patch-89
3420      mwolson@gnu.org--2005/muse--main--1.0--patch-90
3421      mwolson@gnu.org--2005/muse--main--1.0--patch-91
3422      mwolson@gnu.org--2005/muse--main--1.0--patch-92
3423      mwolson@gnu.org--2005/muse--main--1.0--patch-93
3424      mwolson@gnu.org--2005/muse--main--1.0--patch-94
3425      mwolson@gnu.org--2005/muse--main--1.0--patch-95
3426      mwolson@gnu.org--2005/muse--main--1.0--patch-96
3427      mwolson@gnu.org--2005/muse--main--1.0--patch-97
3428      mwolson@gnu.org--2005/muse--main--1.0--patch-98
3429      mwolson@gnu.org--2005/muse--main--1.0--patch-99
3430      mwolson@gnu.org--2005/muse--main--1.0--patch-100
3431      mwolson@gnu.org--2005/muse--main--1.0--patch-101
3432      mwolson@gnu.org--2005/muse--main--1.0--patch-102
3433      mwolson@gnu.org--2005/muse--main--1.0--patch-103
3434      mwolson@gnu.org--2005/muse--main--1.0--patch-104
3435      mwolson@gnu.org--2005/muse--main--1.0--patch-105
3436      mwolson@gnu.org--2005/muse--main--1.0--patch-106
3437      mwolson@gnu.org--2005/muse--main--1.0--patch-107
3438      mwolson@gnu.org--2005/muse--main--1.0--patch-108
3439      mwolson@gnu.org--2005/muse--main--1.0--patch-109
3440      mwolson@gnu.org--2005/muse--main--1.0--patch-110
3441      mwolson@gnu.org--2005/muse--main--1.0--patch-111
3442      mwolson@gnu.org--2005/muse--main--1.0--patch-112
3443      mwolson@gnu.org--2005/muse--main--1.0--patch-113
3444      mwolson@gnu.org--2005/muse--main--1.0--patch-114
3445      mwolson@gnu.org--2005/muse--main--1.0--patch-115
3446      mwolson@gnu.org--2005/muse--main--1.0--patch-116
3447      mwolson@gnu.org--2005/muse--main--1.0--patch-117
3448      mwolson@gnu.org--2005/muse--main--1.0--patch-118
3449      mwolson@gnu.org--2005/muse--main--1.0--patch-119
3450      mwolson@gnu.org--2005/muse--main--1.0--patch-120
3451      mwolson@gnu.org--2005/muse--main--1.0--patch-121
3452      mwolson@gnu.org--2005/muse--main--1.0--patch-122
3453      mwolson@gnu.org--2005/muse--main--1.0--patch-123
3454      mwolson@gnu.org--2005/muse--main--1.0--patch-124
3455      mwolson@gnu.org--2005/muse--main--1.0--patch-125
3456      mwolson@gnu.org--2005/muse--main--1.0--patch-126
3457      mwolson@gnu.org--2005/muse--main--1.0--patch-127
3458      mwolson@gnu.org--2005/muse--main--1.0--patch-128
3459      mwolson@gnu.org--2005/muse--main--1.0--patch-129
3460      mwolson@gnu.org--2005/muse--main--1.0--patch-130
3461      mwolson@gnu.org--2005/muse--main--1.0--patch-131
3462      mwolson@gnu.org--2005/muse--main--1.0--patch-132
3463      mwolson@gnu.org--2005/muse--main--1.0--patch-133
3464      mwolson@gnu.org--2005/muse--main--1.0--patch-134
3465      mwolson@gnu.org--2005/muse--main--1.0--patch-135
3466      mwolson@gnu.org--2005/muse--main--1.0--patch-136
3467      mwolson@gnu.org--2005/muse--main--1.0--patch-137
3468      mwolson@gnu.org--2005/muse--main--1.0--patch-138
3469      mwolson@gnu.org--2005/muse--main--1.0--patch-139
3470      mwolson@gnu.org--2005/muse--main--1.0--patch-140
3471      mwolson@gnu.org--2005/muse--main--1.0--patch-141
3472      mwolson@gnu.org--2005/muse--main--1.0--patch-142
3473      mwolson@gnu.org--2005/muse--main--1.0--patch-143
3474      mwolson@gnu.org--2005/muse--main--1.0--patch-144
3475      mwolson@gnu.org--2005/muse--main--1.0--patch-145
3476      mwolson@gnu.org--2005/muse--main--1.0--patch-146
3477      mwolson@gnu.org--2005/muse--main--1.0--patch-147
3478      mwolson@gnu.org--2005/muse--main--1.0--patch-148
3479      mwolson@gnu.org--2005/muse--main--1.0--patch-149
3480      mwolson@gnu.org--2005/muse--main--1.0--patch-150
3481      mwolson@gnu.org--2005/muse--main--1.0--patch-151
3482      mwolson@gnu.org--2005/muse--main--1.0--patch-152
3483      mwolson@gnu.org--2005/muse--main--1.0--patch-153
3484      mwolson@gnu.org--2005/muse--main--1.0--patch-154
3485      mwolson@gnu.org--2005/muse--main--1.0--patch-155
3486      mwolson@gnu.org--2005/muse--main--1.0--patch-156
3487      mwolson@gnu.org--2005/muse--main--1.0--patch-157
3488      mwolson@gnu.org--2005/muse--main--1.0--patch-158
3489      mwolson@gnu.org--2005/muse--main--1.0--patch-159
3490      mwolson@gnu.org--2005/muse--main--1.0--patch-160
3491      mwolson@gnu.org--2005/muse--main--1.0--patch-161
3492      mwolson@gnu.org--2005/muse--main--1.0--patch-162
3493      mwolson@gnu.org--2005/muse--main--1.0--patch-163
3494      mwolson@gnu.org--2005/muse--main--1.0--patch-164
3495      mwolson@gnu.org--2005/muse--main--1.0--patch-165
3496      mwolson@gnu.org--2005/muse--main--1.0--patch-166
3497      mwolson@gnu.org--2005/muse--main--1.0--patch-167
3498      mwolson@gnu.org--2005/muse--main--1.0--patch-168
3499      mwolson@gnu.org--2005/muse--main--1.0--patch-169
3500      mwolson@gnu.org--2005/muse--main--1.0--patch-170
3501      mwolson@gnu.org--2005/muse--main--1.0--patch-171
3502      mwolson@gnu.org--2005/muse--main--1.0--patch-172
3503      mwolson@gnu.org--2005/muse--main--1.0--patch-173
3504      mwolson@gnu.org--2005/muse--main--1.0--patch-174
3505      mwolson@gnu.org--2005/muse--main--1.0--patch-175
3506      mwolson@gnu.org--2005/muse--main--1.0--patch-176
3507      mwolson@gnu.org--2005/muse--main--1.0--patch-177
3508      mwolson@gnu.org--2005/muse--main--1.0--patch-178
3509      mwolson@gnu.org--2005/muse--main--1.0--patch-179
3510      mwolson@gnu.org--2005/muse--main--1.0--patch-180
3511      mwolson@gnu.org--2005/muse--main--1.0--patch-181
3512      mwolson@gnu.org--2005/muse--main--1.0--patch-182
3513      mwolson@gnu.org--2005/muse--main--1.0--patch-183
3514      mwolson@gnu.org--2005/muse--main--1.0--patch-184
3515      mwolson@gnu.org--2005/muse--main--1.0--patch-185
3516      mwolson@gnu.org--2005/muse--main--1.0--patch-186
3517      mwolson@gnu.org--2005/muse--main--1.0--patch-187
3518      mwolson@gnu.org--2005/muse--main--1.0--patch-188
3519      mwolson@gnu.org--2005/muse--main--1.0--patch-189
3520      mwolson@gnu.org--2005/muse--main--1.0--patch-190
3521      mwolson@gnu.org--2005/muse--main--1.0--patch-191
3522      mwolson@gnu.org--2005/muse--main--1.0--patch-192
3523      mwolson@gnu.org--2005/muse--main--1.0--patch-193
3524      mwolson@gnu.org--2005/muse--main--1.0--patch-194
3525      mwolson@gnu.org--2005/muse--main--1.0--patch-195
3526      mwolson@gnu.org--2005/muse--main--1.0--patch-196
3527      mwolson@gnu.org--2005/muse--main--1.0--patch-197
3528      mwolson@gnu.org--2005/muse--main--1.0--patch-198
3529      mwolson@gnu.org--2005/muse--main--1.0--patch-199
3530      mwolson@gnu.org--2005/muse--main--1.0--patch-200
3531      mwolson@gnu.org--2005/muse--main--1.0--patch-201
3532      mwolson@gnu.org--2005/muse--main--1.0--patch-202
3533      mwolson@gnu.org--2005/muse--main--1.0--patch-203
3534      mwolson@gnu.org--2005/muse--main--1.0--patch-204
3535      mwolson@gnu.org--2005/muse--main--1.0--patch-205
3536      mwolson@gnu.org--2005/muse--main--1.0--patch-206
3537      mwolson@gnu.org--2005/muse--main--1.0--patch-207
3538      mwolson@gnu.org--2005/muse--main--1.0--patch-208
3539      mwolson@gnu.org--2005/muse--main--1.0--patch-209
3540      mwolson@gnu.org--2005/muse--main--1.0--patch-210
3541      mwolson@gnu.org--2005/muse--main--1.0--patch-211
3542      mwolson@gnu.org--2005/muse--main--1.0--patch-212
3543      mwolson@gnu.org--2005/muse--main--1.0--patch-213
3544      mwolson@gnu.org--2005/muse--main--1.0--patch-214
3545      mwolson@gnu.org--2005/muse--main--1.0--patch-215
3546      mwolson@gnu.org--2005/muse--main--1.0--patch-216
3547      mwolson@gnu.org--2005/muse--main--1.0--patch-217
3548      mwolson@gnu.org--2005/muse--main--1.0--patch-218
3549      mwolson@gnu.org--2005/muse--main--1.0--patch-219
3550      mwolson@gnu.org--2005/muse--main--1.0--patch-220
3551      mwolson@gnu.org--2005/muse--main--1.0--patch-221
3552      mwolson@gnu.org--2005/muse--main--1.0--patch-222
3553      mwolson@gnu.org--2005/muse--main--1.0--patch-223
3554      mwolson@gnu.org--2005/muse--main--1.0--patch-224
3555      mwolson@gnu.org--2005/muse--main--1.0--patch-225
3556      mwolson@gnu.org--2005/muse--main--1.0--patch-226
3557      mwolson@gnu.org--2005/muse--main--1.0--patch-227
3558      mwolson@gnu.org--2005/muse--main--1.0--patch-228
3559      mwolson@gnu.org--2005/muse--main--1.0--patch-229
3560      mwolson@gnu.org--2005/muse--main--1.0--patch-230
3561      mwolson@gnu.org--2005/muse--main--1.0--patch-231
3562      mwolson@gnu.org--2005/muse--main--1.0--patch-232
3563      mwolson@gnu.org--2005/muse--main--1.0--patch-233
3564      mwolson@gnu.org--2005/muse--main--1.0--patch-234
3565      mwolson@gnu.org--2005/muse--main--1.0--patch-235
3566      mwolson@gnu.org--2005/muse--main--1.0--patch-236
3567      mwolson@gnu.org--2005/muse--main--1.0--patch-237
3568      mwolson@gnu.org--2005/muse--main--1.0--patch-238
3569      mwolson@gnu.org--2005/muse--main--1.0--patch-239
3570      mwolson@gnu.org--2005/muse--main--1.0--patch-240
3571      mwolson@gnu.org--2005/muse--main--1.0--patch-241
3572      mwolson@gnu.org--2005/muse--main--1.0--patch-242
3573      mwolson@gnu.org--2005/muse--main--1.0--patch-243
3574      mwolson@gnu.org--2005/muse--main--1.0--patch-244
3575      mwolson@gnu.org--2005/muse--main--1.0--patch-245
3576      mwolson@gnu.org--2005/muse--main--1.0--patch-246
3577      mwolson@gnu.org--2005/muse--main--1.0--patch-247
3578      mwolson@gnu.org--2005/muse--main--1.0--patch-248
3579      mwolson@gnu.org--2005/muse--main--1.0--patch-249
3580      mwolson@gnu.org--2005/muse--main--1.0--patch-250
3581      mwolson@gnu.org--2005/muse--main--1.0--patch-251
3582      mwolson@gnu.org--2005/muse--main--1.0--patch-252
3583      mwolson@gnu.org--2005/muse--main--1.0--patch-253
3584      mwolson@gnu.org--2005/muse--main--1.0--patch-254
3585      mwolson@gnu.org--2005/muse--main--1.0--patch-255
3586      mwolson@gnu.org--2005/muse--main--1.0--patch-256
3587      mwolson@gnu.org--2005/muse--main--1.0--patch-257
3588      mwolson@gnu.org--2005/muse--main--1.0--patch-258
3589      mwolson@gnu.org--2005/muse--main--1.0--patch-259
3590      mwolson@gnu.org--2005/muse--main--1.0--patch-260
3591      mwolson@gnu.org--2005/muse--main--1.0--patch-261
3592      mwolson@gnu.org--2005/muse--main--1.0--patch-262
3593      mwolson@gnu.org--2005/muse--main--1.0--patch-263
3594      mwolson@gnu.org--2005/muse--main--1.0--patch-264
3595      mwolson@gnu.org--2005/muse--main--1.0--patch-265
3596      mwolson@gnu.org--2005/muse--main--1.0--patch-266
3597      mwolson@gnu.org--2005/muse--main--1.0--patch-267
3598      mwolson@gnu.org--2005/muse--main--1.0--patch-268
3599      mwolson@gnu.org--2005/muse--main--1.0--patch-269
3600      mwolson@gnu.org--2005/muse--main--1.0--patch-270
3601      mwolson@gnu.org--2005/muse--main--1.0--patch-271
3602      mwolson@gnu.org--2005/muse--main--1.0--patch-272
3603      mwolson@gnu.org--2005/muse--main--1.0--patch-273
3604      mwolson@gnu.org--2005/muse--main--1.0--patch-274
3605      mwolson@gnu.org--2005/muse--main--1.0--patch-275
3606      mwolson@gnu.org--2005/muse--main--1.0--patch-276
3607      mwolson@gnu.org--2005/muse--main--1.0--patch-277
3608      mwolson@gnu.org--2005/muse--main--1.0--patch-278
3609      mwolson@gnu.org--2005/muse--main--1.0--patch-279
3610      mwolson@gnu.org--2005/muse--main--1.0--patch-280
3611      mwolson@gnu.org--2005/muse--main--1.0--patch-281
3612      mwolson@gnu.org--2005/muse--main--1.0--patch-282
3613      mwolson@gnu.org--2005/muse--main--1.0--patch-283
3614      mwolson@gnu.org--2005/muse--main--1.0--patch-284
3615      mwolson@gnu.org--2005/muse--main--1.0--patch-285
3616      mwolson@gnu.org--2005/muse--main--1.0--patch-286
3617      mwolson@gnu.org--2005/muse--main--1.0--patch-287
3618      mwolson@gnu.org--2005/muse--main--1.0--patch-288
3619      mwolson@gnu.org--2005/muse--main--1.0--patch-289
3620      mwolson@gnu.org--2005/muse--main--1.0--patch-290
3621      mwolson@gnu.org--2005/muse--main--1.0--patch-291
3622      mwolson@gnu.org--2005/muse--main--1.0--patch-292
3623      mwolson@gnu.org--2005/muse--main--1.0--patch-293
3624      mwolson@gnu.org--2005/muse--main--1.0--patch-294
3625      mwolson@gnu.org--2005/muse--main--1.0--patch-295
3626      mwolson@gnu.org--2005/muse--main--1.0--patch-296
3627      mwolson@gnu.org--2005/muse--main--1.0--patch-297
3628      mwolson@gnu.org--2005/muse--main--1.0--patch-298
3629      mwolson@gnu.org--2005/muse--main--1.0--patch-299
3630      mwolson@gnu.org--2005/muse--main--1.0--patch-300
3631      mwolson@gnu.org--2005/muse--main--1.0--patch-301
3632      mwolson@gnu.org--2005/muse--main--1.0--patch-302
3633      mwolson@gnu.org--2005/muse--main--1.0--patch-303
3634      mwolson@gnu.org--2005/muse--main--1.0--patch-304
3635      mwolson@gnu.org--2005/muse--main--1.0--patch-305
3636      mwolson@gnu.org--2005/muse--main--1.0--patch-306
3637      mwolson@gnu.org--2005/muse--main--1.0--patch-307
3638      mwolson@gnu.org--2005/muse--main--1.0--patch-308
3639      mwolson@gnu.org--2005/muse--main--1.0--patch-309
3640      mwolson@gnu.org--2005/muse--main--1.0--patch-310
3641      mwolson@gnu.org--2005/muse--main--1.0--patch-311
3642      mwolson@gnu.org--2005/muse--main--1.0--patch-312
3643      mwolson@gnu.org--2005/muse--main--1.0--patch-313
3644      mwolson@gnu.org--2005/muse--main--1.0--patch-314
3645      mwolson@gnu.org--2005/muse--main--1.0--patch-315
3646      mwolson@gnu.org--2005/muse--main--1.0--patch-316
3647      mwolson@gnu.org--2005/muse--main--1.0--patch-317
3648      mwolson@gnu.org--2005/muse--main--1.0--patch-318
3649      mwolson@gnu.org--2005/muse--main--1.0--patch-319
3650      mwolson@gnu.org--2005/muse--main--1.0--patch-320
3651      mwolson@gnu.org--2005/muse--main--1.0--patch-321
3652      mwolson@gnu.org--2005/muse--main--1.0--patch-322
3653      mwolson@gnu.org--2005/muse--main--1.0--patch-323
3654      mwolson@gnu.org--2005/muse--main--1.0--patch-324
3655      mwolson@gnu.org--2005/muse--main--1.0--patch-325
3656      mwolson@gnu.org--2005/muse--main--1.0--patch-326
3657      mwolson@gnu.org--2005/muse--main--1.0--patch-327
3658      mwolson@gnu.org--2005/muse--main--1.0--patch-328
3659      mwolson@gnu.org--2005/muse--main--1.0--patch-329
3660      mwolson@gnu.org--2005/muse--main--1.0--patch-330
3661      mwolson@gnu.org--2005/muse--main--1.0--patch-331
3662      mwolson@gnu.org--2005/muse--main--1.0--patch-332
3663      mwolson@gnu.org--2005/muse--main--1.0--patch-333
3664      mwolson@gnu.org--2005/muse--main--1.0--patch-334
3665      mwolson@gnu.org--2005/muse--main--1.0--patch-335
3666      mwolson@gnu.org--2005/muse--main--1.0--patch-336
3667      mwolson@gnu.org--2005/muse--main--1.0--patch-337
3668      mwolson@gnu.org--2005/muse--main--1.0--patch-338
3669      mwolson@gnu.org--2005/muse--main--1.0--patch-339
3670      mwolson@gnu.org--2005/muse--main--1.0--patch-340
3671      mwolson@gnu.org--2005/muse--main--1.0--patch-341
3672      mwolson@gnu.org--2005/muse--main--1.0--patch-342
3673      mwolson@gnu.org--2005/muse--main--1.0--patch-343
3674      mwolson@gnu.org--2005/muse--main--1.0--patch-344
3675      mwolson@gnu.org--2005/muse--main--1.0--patch-345
3676      mwolson@gnu.org--2005/muse--main--1.0--patch-346
3677      mwolson@gnu.org--2005/muse--main--1.0--patch-347
3678      mwolson@gnu.org--2005/muse--main--1.0--patch-348
3679      mwolson@gnu.org--2005/muse--main--1.0--patch-349
3680      mwolson@gnu.org--2005/muse--main--1.0--patch-350
3681      mwolson@gnu.org--2005/muse--main--1.0--patch-351
3682      mwolson@gnu.org--2005/muse--main--1.0--patch-352
3683      mwolson@gnu.org--2005/muse--main--1.0--patch-353
3684      mwolson@gnu.org--2005/muse--main--1.0--patch-354
3685      mwolson@gnu.org--2005/muse--main--1.0--patch-355
3686      mwolson@gnu.org--2005/muse--rel--3.02--base-0
3687      mwolson@gnu.org--2005/muse--rel--3.02--patch-1
3688      mwolson@gnu.org--2005/muse--rel--3.02--patch-2
3689      mwolson@gnu.org--2005/muse--rel--3.02--patch-3
3690      mwolson@gnu.org--2005/muse--rel--3.02--patch-4
3691      mwolson@gnu.org--2005/muse--rel--3.02--patch-5
3692      mwolson@gnu.org--2005/muse--rel--3.02--patch-6
3693      mwolson@gnu.org--2005/muse--rel--3.02--patch-7
3694      mwolson@gnu.org--2005/muse--rel--3.02--patch-8
3695      mwolson@gnu.org--2005/muse--rel--3.02--patch-11
3696      mwolson@gnu.org--2005/muse--rel--3.02--patch-13
3697      mwolson@gnu.org--2005/muse--rel--3.02--patch-14
3698      mwolson@gnu.org--2005/muse--rel--3.02--patch-15
3699      mwolson@gnu.org--2005/muse--rel--3.02--patch-17
3700      mwolson@gnu.org--2005/muse--rel--3.02--patch-18
3701      mwolson@gnu.org--2005/muse--rel--3.02--patch-19
3702      mwolson@gnu.org--2005/muse--rel--3.02--patch-20
3703      mwolson@gnu.org--2005/muse--rel--3.02--patch-21
3704      mwolson@gnu.org--2005/muse--rel--3.02--patch-22
3705      mwolson@gnu.org--2005/muse--rel--3.02--patch-23
3706      mwolson@gnu.org--2005/muse--rel--3.02--patch-25
3707      mwolson@gnu.org--2005/muse--rel--3.02--patch-27
3708      mwolson@gnu.org--2005/muse--rel--3.02--patch-28
3709      mwolson@gnu.org--2005/muse--rel--3.02--patch-29
3710      mwolson@gnu.org--2005/muse--rel--3.02--patch-35
3711      mwolson@gnu.org--2005/muse--rel--3.02--patch-36
3712      mwolson@gnu.org--2005/muse--rel--3.02--patch-37
3713      mwolson@gnu.org--2005/muse--rel--3.02--patch-53
3714      mwolson@gnu.org--2005/muse--rel--3.02--patch-54
3715      mwolson@gnu.org--2005/muse--rel--3.02--patch-55
3716      mwolson@gnu.org--2005/muse--rel--3.02--patch-56
3717      mwolson@member.fsf.org--2004/muse--main--1.0--base-0
3718      mwolson@member.fsf.org--2004/muse--main--1.0--patch-1
3719      mwolson@member.fsf.org--2004/muse--main--1.0--patch-2
3720      mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
3721      mwolson@member.fsf.org--2004/muse--mwolson--1.0--base-0
3722      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-1
3723      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-2
3724      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-3
3725      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-4
3726      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-5
3727      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-6
3728      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-7
3729      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-8