Make space around emdash optional.
[muse-el.git] / ChangeLog
blob3479717735cba59b9c90b79ab4733e0691bf1ec9
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-09 18:28:25 GMT Michael Olson <mwolson@gnu.org> patch-163
7     Summary:
8       Make space around emdash optional.
9     Revision:
10       muse--main--1.0--patch-163
12     * lisp/muse-publish.el (muse-publish-markup-regexps): Make space around
13       emdash optional.
15     modified files:
16      ChangeLog lisp/muse-publish.el
19 2006-07-08 20:38:12 GMT Michael Olson <mwolson@gnu.org> patch-162
21     Summary:
22       muse-latex: Make publishing of <contents> tags optional.
23     Revision:
24       muse--main--1.0--patch-162
26     * lisp/muse-html.el (muse-html-insert-contents): Use nreverse rather than
27       reverse for a minor speed boost.
28     
29     * lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header): Only
30       insert a table of contents when muse-latex-permit-contents-tag is nil.
31       (muse-latexcjk-header): Make comments do the right thing.
32       (muse-latex-permit-contents-tag): New option that specifies whether we
33       should take action on the <contents> tag.
34       (muse-latex-finalize-buffer): If muse-latex-permit-contents-tag is
35       non-nil, publish a table of contents in the place where the <contents>
36       tag is.
37     
38     * muse.texi (LaTeX): Bring up-to-date with new options.
40     modified files:
41      ChangeLog lisp/muse-html.el lisp/muse-latex.el muse.texi
44 2006-07-04 05:00:35 GMT Michael Olson <mwolson@gnu.org> patch-161
46     Summary:
47       Fix publishing bug introduced in last patch.
48     Revision:
49       muse--main--1.0--patch-161
51     * lisp/muse-project.el (muse-current-output-style): New variable that
52       holds the output style that is currently being used to publish a file.
53       (muse-project-page-file): When a subdirectory is used, only record
54       matches.  Sort using matches, not entire list.
55       (muse-project-resolve-link): Docfix.
56       (muse-project-current-output-style): New function that returns the
57       current output style.
58       (muse-project-link-page): Use the local output style, not the other
59       kind of style.
60       (muse-project-publish-file): Set muse-current-output-style.
61     
62     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use
63       muse-current-output-style.
65     modified files:
66      ChangeLog lisp/muse-project.el lisp/muse-wiki.el
69 2006-07-04 04:06:44 GMT Michael Olson <mwolson@gnu.org> patch-160
71     Summary:
72       Make links to files in subdirectories work.
73     Revision:
74       muse--main--1.0--patch-160
76     * lisp/muse-project.el (muse-project-alist-styles): Fix stray comment.
77       (muse-project-page-file): Change to a defun.  Handle files with the
78       same name but in different directories.  Handle case where a
79       subdirectory is given in a link.
80       (muse-project-choose-style-by-link-suffix): Move from muse-wiki.el.
81       (muse-project-applicable-styles): Sort entries according to how late in
82       the string the match for the include regexp occurs.
83       (muse-project-resolve-link): Moved from muse-wiki.el.  Strip
84       subdirectory from page because we have already determined the correct
85       path.
86       (muse-project-link-page): New function that resolves a link to a page
87       in the same project.
88     
89     * lisp/muse-publish.el (muse-publish-link-page): Simple wrapper for
90       muse-project-link-page.
91       (muse-publish-classify-url): Use muse-publish-link-page.
92     
93     * lisp/muse-regexps.el (muse-file-regexp): Don't match subdirectory
94       links.
95     
96     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix)
97       (muse-wiki-resolve-project-page-1): Move to muse-project.el.
98       (muse-wiki-resolve-project-page): Use muse-project-resolve-link.
99     
100     * lisp/muse.el (muse-collect-alist): New function that is like assoc, but
101       returns a list of matches.
102       (muse-sort-with-closure): New convenience macro for using `sort' with a
103       closure argument.
104       (muse-sort-by-rating): New function that takes a rating list and sorts
105       it, discarding the rating.
106     
107     * muse.texi (Projects): Mention that you can use regexps in place of
108       directory names in project entries.  Caught that when source-diving.
110     modified files:
111      ChangeLog lisp/muse-project.el lisp/muse-publish.el
112      lisp/muse-regexps.el lisp/muse-wiki.el lisp/muse.el muse.texi
115 2006-07-03 01:33:17 GMT Michael Olson <mwolson@gnu.org> patch-159
117     Summary:
118       Fix publishing of blank table fields.
119     Revision:
120       muse--main--1.0--patch-159
122     * lisp/muse-regexps.el (muse-table-field-regexp): Make publishing blank
123       fields work properly.
125     modified files:
126      ChangeLog lisp/muse-regexps.el
129 2006-07-03 00:39:47 GMT Michael Olson <mwolson@gnu.org> patch-158
131     Summary:
132       Make muse-publish-markup-buffer usable even with no current file.
133     Revision:
134       muse--main--1.0--patch-158
136     * lisp/muse-publish.el (muse-publish-markup-buffer): Make this work even
137       if no file is associated with the buffer.  Thanks to dds for the fix.
139     modified files:
140      ChangeLog lisp/muse-publish.el
143 2006-06-26 18:13:59 GMT Michael Olson <mwolson@gnu.org> patch-157
145     Summary:
146       Don't use illegal C-c i keybinding.
147     Revision:
148       muse--main--1.0--patch-157
150     * lisp/muse-mode.el (muse-mode-map): Remove "C-c i" binding and use "C-c
151       TAB" for that purpose instead.  Thanks to Adrian Aichner for the
152       report.
153     
154     * muse.texi (Keystroke Summary): Update documentation for the above
155       change.
157     modified files:
158      ChangeLog lisp/muse-mode.el muse.texi
161 2006-06-12 13:58:59 GMT Michael Olson <mwolson@gnu.org> patch-156
163     Summary:
164       Improve ignored files regexp.
165     Revision:
166       muse--main--1.0--patch-156
168     * lisp/muse-project.el (muse-project-ignore-regexp): Ignore Darcs and SVN
169       metadata directories, and use a better matching technique for autosave
170       files.  Previously, files with '#' in them were ignored erroneously.
172     modified files:
173      ChangeLog lisp/muse-project.el
176 2006-06-12 13:55:17 GMT Michael Olson <mwolson@gnu.org> patch-155
178     Summary:
179       Provide example for <include> in Muse manual.
180     Revision:
181       muse--main--1.0--patch-155
183     * muse.texi (Tag Summary): Give an example of using the <include> tag.
185     modified files:
186      ChangeLog muse.texi
189 2006-06-10 06:49:08 GMT Michael Olson <mwolson@gnu.org> patch-154
191     Summary:
192       Make PDF version of the Muse manual be generated correctly.
193     Revision:
194       muse--main--1.0--patch-154
196     * muse.texi (Tag Summary): Use a slightly different syntax for the table
197       items.  Even though texinfo published the HTML version correctly, the
198       PDF version was not working.  Thanks to mirko.vukovic for the report.
200     modified files:
201      ChangeLog muse.texi
204 2006-06-03 23:38:12 GMT Michael Olson <mwolson@gnu.org> patch-153
206     Summary:
207       Fix bug introduced in last patch.
208     Revision:
209       muse--main--1.0--patch-153
211     * muse-publish.el (muse-publish-include-tag): Fix bug introduced in last
212       patch.
214     modified files:
215      ChangeLog lisp/muse-publish.el
218 2006-06-03 21:18:35 GMT Michael Olson <mwolson@gnu.org> patch-152
220     Summary:
221       Move Debian stuff into its own branch.
222     Revision:
223       muse--main--1.0--patch-152
225     * debian: Moved to muse--debian--0.
227     removed files:
228      debian/.arch-ids/=id debian/.arch-ids/NEWS.id
229      debian/.arch-ids/changelog.id debian/.arch-ids/compat.id
230      debian/.arch-ids/control.id debian/.arch-ids/copyright.id
231      debian/.arch-ids/emacsen-install.id
232      debian/.arch-ids/emacsen-remove.id
233      debian/.arch-ids/emacsen-startup.id
234      debian/.arch-ids/muse-el.dirs.id
235      debian/.arch-ids/muse-el.docs.id
236      debian/.arch-ids/muse-el.examples.id
237      debian/.arch-ids/muse-el.info.id debian/.arch-ids/rules.id
238      debian/NEWS debian/changelog debian/compat debian/control
239      debian/copyright debian/emacsen-install debian/emacsen-remove
240      debian/emacsen-startup debian/muse-el.dirs debian/muse-el.docs
241      debian/muse-el.examples debian/muse-el.info debian/rules
243     modified files:
244      ChangeLog
246     removed directories:
247      debian debian/.arch-ids
250 2006-06-03 21:12:36 GMT Michael Olson <mwolson@gnu.org> patch-151
252     Summary:
253       Provide some markup shortcuts for the <include> tag.
254     Revision:
255       muse--main--1.0--patch-151
257     * lisp/muse-publish.el (muse-publish-examplify-buffer): New function that
258       transforms the current buffer as if it were an <example> region.
259       (muse-publish-versify-buffer): Ditto, but for <verse> regions.
260       (muse-publish-include-tag): Docfix.  Support special cases for
261       markup="example" and markup="verse".
262     
263     * muse.texi (Tag Summary): Update for new <include> shortcuts.
265     modified files:
266      ChangeLog lisp/muse-publish.el muse.texi
269 2006-06-01 04:14:45 GMT Michael Olson <mwolson@gnu.org> patch-150
271     Summary:
272       Really update ChangeLog.2005.
273     Revision:
274       muse--main--1.0--patch-150
276     * ChangeLog.2005: Really update this.
278     new files:
279      .arch-ids/ChangeLog.2005.id ChangeLog.2005
281     removed files:
282      .arch-ids/ChangeLog.2005.id ChangeLog.2005
284     modified files:
285      .arch-ids/muse.texi.id ChangeLog
288 2006-06-01 04:05:33 GMT Michael Olson <mwolson@gnu.org> patch-149
290     Summary:
291       Second attempt at fixing XEmacs beta problem.
292     Revision:
293       muse--main--1.0--patch-149
295     * lisp/Makefile (ELC): Revert previous change, now that I have a hunch
296       about what causes the problem.
297     
298     * lisp/muse-publish.el (muse-publish-markup-regexps): Move anchor markup
299       lower to future-proof an idea that I have.
300       (muse-style-element): Make this a function instead of a substitution,
301       especially since it is potentially recursive.
303     modified files:
304      ChangeLog ChangeLog.2005 lisp/Makefile lisp/muse-publish.el
307 2006-06-01 03:47:49 GMT Michael Olson <mwolson@gnu.org> patch-148
309     Summary:
310       Update ChangeLogs.
311     Revision:
312       muse--main--1.0--patch-148
314     * ChangeLog: Rename from ChangeLog.2006 to follow Emacs conventions.
315     
316     * ChangeLog.2005: Mention ChangeLog.2004 for earlier changes.
317     
318     * lisp/muse-regexps.el: Add a few comments.
319     
320     * muse.texi (Tag Summary): Add example of <tag /> use.
322     modified files:
323      ChangeLog ChangeLog.2005 lisp/muse-regexps.el muse.texi
326 2006-06-01 03:44:00 GMT Michael Olson <mwolson@gnu.org> patch-147
328     Summary:
329       Try to work around a bug in XEmacs beta.
330     Revision:
331       muse--main--1.0--patch-147
333     * lisp/Makefile (ELC): Compile muse-publish.el first, to try to work
334       around a bug in XEmacs beta.
336     modified files:
337      ChangeLog lisp/Makefile
340 2006-05-30 18:21:51 GMT Michael Olson <mwolson@gnu.org> patch-146
342     Summary:
343       Fix tag-publishing in <insert> and <markup>.
344     Revision:
345       muse--main--1.0--patch-146
347     * lisp/muse-publish.el (muse-insert-file-or-string): Don't set
348       muse-publish-markup-tags, since that messes other things up for
349       <markup> and <insert>.
350       (muse-inhibit-style-tags): New variable that specifies whether to
351       disable looking for tag definitions that are specific to the current
352       style.  This is useful for publishing headers and footers.
353       (muse-publish-markup-tag): Use `muse-inhibit-style-tags', but disable
354       it unconditionally when calling a tag's function, so that the effect
355       does not propagate.
356     
357     * lisp/muse.el (muse-file-remote-p): New function that detects whether
358       the given file path is a remote location.  This is not used yet.
360     modified files:
361      ChangeLog lisp/muse-publish.el lisp/muse.el
364 2006-05-30 00:19:37 GMT Michael Olson <mwolson@gnu.org> patch-145
366     Summary:
367       Rename muse-convert.el to muse-latex-convert.el.
368     Revision:
369       muse--main--1.0--patch-145
371     * lisp/muse-convert-latex.el: Rename from muse-convert.el, since more
372       files of this nature are expected in the future.
374     modified files:
375      ChangeLog Makefile.defs debian/changelog
376      lisp/muse-convert-latex.el
378     renamed files:
379      lisp/.arch-ids/muse-convert.el.id
380        ==> lisp/.arch-ids/muse-convert-latex.el.id
381      lisp/muse-convert.el
382        ==> lisp/muse-convert-latex.el
385 2006-05-29 21:34:34 GMT Michael Olson <mwolson@gnu.org> patch-144
387     Summary:
388       List all tags in Muse's documentation.
389     Revision:
390       muse--main--1.0--patch-144
392     * lisp/muse-publish.el (muse-publish-markup-region): Remove cruft that I
393       was trying out.
394       (muse-publish-contents-depth): New option that specifies the maximum
395       depth of headings to include with <contents> tags.
396       (muse-publish-contents-tag): Use it.
397       (muse-publish-include-tag): Docfix.
398     
399     * muse.texi (Paragraphs): Mention <center> and <quote> tags.
400       (Tag Summary): New section that defines the syntax used for tags and
401       gives a complete listing of all of the tags that Muse comes with, as
402       well as some documentation for each tag.
403       (HTML): Update documentation.
405     modified files:
406      ChangeLog lisp/muse-publish.el muse.texi
409 2006-05-29 18:48:41 GMT Michael Olson <mwolson@gnu.org> patch-143
411     Summary:
412       Implement <include> and <markup> tags.
413     Revision:
414       muse--main--1.0--patch-143
416     * lisp/muse-html.el (muse-html-markup-regexps): Make paragraph detection
417       work better when a paragraph follows some other markup, especially
418       tables.
419     
420     * lisp/muse-publish.el (muse-publish-markup-tags): Add <include> and
421       <markup> tags.
422       (muse-publish-markup): Fix edge case.
423       (muse-publish-markup-header-footer-tags): New option that specifies
424       which tags may be used when publishing headers and footers.
425       (muse-insert-file-or-string): Use
426       muse-publish-markup-header-footer-tags instead of a hard-coded value.
427       (muse-publish-markup-region): Make title and style arguments optional,
428       so that this is easier to use.
429       (muse-publish-include-tag): Implement <include> tag.  I've tested all
430       of the cases I can think of, and it works.
431       (muse-publish-mark-up-tag): Implement <markup> tag.  This is handy for
432       times when you want to publish Muse markup in headers and footers.
433       Adding a table of contents to a header should be particularly easy now.
435     modified files:
436      ChangeLog lisp/muse-html.el lisp/muse-publish.el
439 2006-05-29 14:59:31 GMT Michael Olson <mwolson@gnu.org> patch-142
441     Summary:
442       Make ChangeLog conform to conventions better.
443     Revision:
444       muse--main--1.0--patch-142
446     * ChangeLog: Renamed from ChangeLog.2006 in order to follow Emacs
447       conventions better.  Specify the buffer encoding.  Add helpful notices
448       near the bottom of this and ChangeLog.2005.
450     modified files:
451      ChangeLog ChangeLog.2004 ChangeLog.2005 debian/rules
452      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/base-0
454     renamed files:
455      .arch-ids/ChangeLog.2006.id
456        ==> .arch-ids/ChangeLog.id
457      ChangeLog.2006
458        ==> ChangeLog
461 2006-05-28 07:45:09 GMT Michael Olson <mwolson@gnu.org> patch-141
463     Summary:
464       Provide explanation of how to invoke getstamps.py.
465     Revision:
466       muse--main--1.0--patch-141
468     * contrib/pyblosxom/getstamps.py: Strip the Muse file extension when
469       writing the timestamps file.
470     
471     * contrib/pyblosxom/make-blog: New example script that shows how to
472       invoke getstamps.py.
473     
474     * examples/mwolson/stylesheets/common.css: Update.
475     
476     * muse.texi (Blosxom Requirements): Mention the new example script.
477       Additionally, explain how to call getstamps.py.
479     new files:
480      contrib/pyblosxom/.arch-ids/make-blog.id
481      contrib/pyblosxom/make-blog
483     modified files:
484      ChangeLog.2006 contrib/pyblosxom/getstamps.py
485      examples/mwolson/stylesheets/common.css muse.texi
488 2006-05-28 06:40:46 GMT Michael Olson <mwolson@gnu.org> patch-140
490     Summary:
491       muse-blosxom: Perform extra check on category in new entry.
492     Revision:
493       muse--main--1.0--patch-140
495     * lisp/muse-blosxom.el (muse-blosxom-new-entry): Make it impossible to
496       write an invalid categories line, which could cause other mysterious
497       troubles later on.
499     modified files:
500      ChangeLog.2006 lisp/muse-blosxom.el
503 2006-05-28 06:31:11 GMT Michael Olson <mwolson@gnu.org> patch-139
505     Summary:
506       Improve documentation in the included pyblosxom plug-ins.
507     Revision:
508       muse--main--1.0--patch-139
510     * contrib/pyblosxom/getstamps.py, hardcodedates.py: Improve
511       documentation.  The initial wording was very confusing.
513     modified files:
514      ChangeLog.2006 contrib/pyblosxom/getstamps.py
515      contrib/pyblosxom/hardcodedates.py
518 2006-05-27 06:25:32 GMT Michael Olson <mwolson@gnu.org> patch-138
520     Summary:
521       Minor tweak in my example CSS stylesheet.
522     Revision:
523       muse--main--1.0--patch-138
525     * examples/mwolson/stylesheets/common.css: Be careful about
526       distinguishing between links and anchors.
528     modified files:
529      ChangeLog.2006 examples/mwolson/stylesheets/common.css
532 2006-05-26 14:38:01 GMT Michael Olson <mwolson@gnu.org> patch-137
534     Summary:
535       Use better fallback when displaying warnings.
536     Revision:
537       muse--main--1.0--patch-137
539     * lisp/muse.el (muse-display-warning): Use a better fallback if
540       `display-warning' does not exist.
542     modified files:
543      ChangeLog.2006 lisp/muse.el
546 2006-05-25 21:23:55 GMT Michael Olson <mwolson@gnu.org> patch-136
548     Summary:
549       Make the Table of Contents CSS easier to customize.
550     Revision:
551       muse--main--1.0--patch-136
553     * examples/mwolson/muse-init.el (muse-bad-link): Update.
554     
555     * examples/mwolson/stylesheets/*.css: Update and add license.
556     
557     * lisp/muse-html.el (muse-html-insert-contents): Surround contents with
558       <div> section for easier CSS hacking.  Remove the class attribute of
559       other elements, since we don't need it anymore.
561     modified files:
562      ChangeLog.2006 Makefile.defs debian/changelog
563      examples/mwolson/muse-init.el
564      examples/mwolson/stylesheets/blog.css
565      examples/mwolson/stylesheets/common.css
566      examples/mwolson/stylesheets/print.css
567      examples/mwolson/stylesheets/screen.css lisp/muse-html.el
570 2006-05-24 03:30:40 GMT Michael Olson <mwolson@gnu.org> patch-135
572     Summary:
573       Fix a potential unbounded recursive call.
574     Revision:
575       muse--main--1.0--patch-135
577     * lisp/muse-project.el (muse-updating-file-alist-p): New variable that
578       prevents calls to muse-project-file-alist in its hook functions from
579       going into an infinite loop.
580       (muse-project-file-alist): Use it.
581     
582     * lisp/muse-wiki.el (muse-wiki-updating-wikiword-p): Remove.  This is now
583       handled in muse-project.el.
584       (muse-wiki-update-local-wikiword-regexp): Remove the use of
585       muse-wiki-updating-wikiword-p.
587     modified files:
588      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
591 2006-05-23 18:10:49 GMT Michael Olson <mwolson@gnu.org> patch-134
593     Summary:
594       Try not to call tramp during publishing.
595     Revision:
596       muse--main--1.0--patch-134
598     * lisp/muse-publish.el (muse-insert-file-or-string): Do not call
599       file-readable-p on text that has a newline in it, because this could
600       cause tramp to be invoked.
602     modified files:
603      ChangeLog.2006 lisp/muse-publish.el
606 2006-05-23 15:30:02 GMT Michael Olson <mwolson@gnu.org> patch-133
608     Summary:
609       Make links colored blue by default.
610     Revision:
611       muse--main--1.0--patch-133
613     * lisp/muse-colors.el (muse-link): Make links blue by default, like most
614       other Emacs modes do.
616     modified files:
617      ChangeLog.2006 lisp/muse-colors.el
620 2006-05-23 14:24:58 GMT Michael Olson <mwolson@gnu.org> patch-132
622     Summary:
623       Fix publishing error with tables and initial whitespace.
624     Revision:
625       muse--main--1.0--patch-132
627     * lisp/muse-publish.el (muse-publish-markup-regexps): Move table rule
628       above blockquote and centered text, so that indented but blank initial
629       table fields publish correctly.
630     
631     * lisp/muse-regexps.el (muse-table-line-regexp): Make this much simpler.
632       We accept anything that has at least one field delimiter.
634     modified files:
635      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
638 2006-05-18 06:58:58 GMT Michael Olson <mwolson@gnu.org> patch-131
640     Summary:
641       Add muse-protocol-iw.el to experimental folder.
642     Revision:
643       muse--main--1.0--patch-131
645     * experimental/muse-protocol-iw.el: New experimental file that implements
646       an interwiki protocol of sorts that handles subdirectories.
648     new files:
649      experimental/.arch-ids/muse-protocol-iw.el.id
650      experimental/muse-protocol-iw.el
652     modified files:
653      AUTHORS ChangeLog.2006 experimental/muse-split.el
656 2006-05-18 06:43:30 GMT Michael Olson <mwolson@gnu.org> patch-130
658     Summary:
659       Add muse-split.el to experimental folder.
660     Revision:
661       muse--main--1.0--patch-130
663     * experimental/muse-split.el: New experimental file that splits published
664       Muse files into several smaller files.
666     new files:
667      experimental/.arch-ids/muse-split.el.id
668      experimental/muse-split.el
670     modified files:
671      AUTHORS ChangeLog.2006 Makefile.defs debian/changelog
672      debian/control
675 2006-05-18 06:03:49 GMT Michael Olson <mwolson@gnu.org> patch-129
677     Summary:
678       muse-wiki: Make the interwiki resolver a bit more clever.
679     Revision:
680       muse--main--1.0--patch-129
682     * lisp/muse-project.el (muse-project-choose-style): New function that
683       chooses a style from a list of styles, given a user-supplied test.
684     
685     * lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix): New function
686       that is used along with `muse-project-choose-style' to pick the first
687       style that matches a given value for :link-prefix.
688       (muse-wiki-resolve-project-page-1): New function split from
689       `muse-wiki-resolve-project-page' for readability.  Try to match files
690       that have the same link-suffix.  This should hopefully fix a bug
691       noticed by Hans Ekbrand.
693     modified files:
694      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
697 2006-05-18 01:24:04 GMT Michael Olson <mwolson@gnu.org> patch-128
699     Summary:
700       Fix bug where links with :: in them were marked up as lists.
701     Revision:
702       muse--main--1.0--patch-128
704     * lisp/muse-html.el, lisp/muse-publish.el, lisp/muse-xml-common.el:
705       Change noemphasis property to muse-link.
706     
707     * lisp/muse.el (muse-forward-list-item): Respect muse-link property.
708     
709     * lisp/muse-publish.el (muse-publish-surround-text)
710       (muse-publish-markup-list): Ditto.  This should fix a bug.
711       (muse-publish-markup-list): Docfix.
712       (muse-publish-mark-link): Rename from `muse-publish-mark-noemphasis'.
713     
714     * lisp/muse-regexps.el (muse-list-item-regexp, muse-dl-term-regexp):
715       There must be either one or more spaces or a single newline after the
716       colons.  This prevents an ambiguity with the double-colon muse-wiki
717       interwiki delimiter.
719     modified files:
720      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
721      lisp/muse-regexps.el lisp/muse-xml-common.el lisp/muse.el
724 2006-05-17 21:27:19 GMT Michael Olson <mwolson@gnu.org> patch-127
726     Summary:
727       DTRT with explicit links that have no description.
728     Revision:
729       muse--main--1.0--patch-127
731     * lisp/muse-publish.el (muse-publish-markup-link): If we are given an
732       explicit link without a description, use the name of the linked page.
734     modified files:
735      ChangeLog.2006 lisp/muse-publish.el
738 2006-05-16 15:53:56 GMT Michael Olson <mwolson@gnu.org> patch-126
740     Summary:
741       Fix emdash in link description bug.
742     Revision:
743       muse--main--1.0--patch-126
745     * lisp/muse-publish.el (muse-publish-markup-emdash): Don't markup emdash
746       if we are in a link, since otherwise it will be incorrectly escaped.
747       Thanks to Chiyuan Zhang for the report.
749     modified files:
750      ChangeLog.2006 Makefile.defs debian/changelog
751      lisp/muse-publish.el
754 2006-05-12 04:16:43 GMT Michael Olson <mwolson@gnu.org> patch-125
756     Summary:
757       Fix #5925: Emphasis on item breaks lists.
758     Revision:
759       muse--main--1.0--patch-125
761     * lisp/muse-blosxom.el ("blosxom-html", "blosxom-xhtml"): Use find-file
762       as the browsing function.
763     
764     * lisp/muse-mode.el (muse-browse-result): Only include styles that match
765       the current file.
766     
767     * lisp/muse.el (muse-list-item-critical-point): Take a new argument named
768       `offset' into account, in case the list-item regexp is nested in
769       another group.
770       (muse-forward-list-item): Call `muse-list-item-critical-point' with an
771       offset of 1.  This should fix an unpleasant list-as-blockquote error
772       that was noticed recently.  Thanks to John Sullivan for the report.
774     modified files:
775      ChangeLog.2006 lisp/muse-blosxom.el lisp/muse-mode.el
776      lisp/muse.el
779 2006-05-09 00:55:02 GMT Michael Olson <mwolson@gnu.org> patch-124
781     Summary:
782       Fix a couple of beginning-of-buffer errors.
783     Revision:
784       muse--main--1.0--patch-124
786     * muse-mode.el (muse-mode-flyspell-p, muse-link-at-point): Make sure we
787       don't throw an error if at the beginning of the buffer.  Thanks to John
788       Sullivan for the report.
790     modified files:
791      ChangeLog.2006 lisp/muse-mode.el
794 2006-05-08 23:42:42 GMT Michael Olson <mwolson@gnu.org> patch-123
796     Summary:
797       muse.texi: Change use of @subsubheading to @subheading.
798     Revision:
799       muse--main--1.0--patch-123
801     * muse.texi: Change use of @subsubheading to @subheading throughout
802       document.
804     modified files:
805      ChangeLog.2006 muse.texi
808 2006-05-08 23:30:58 GMT Michael Olson <mwolson@gnu.org> patch-122
810     Summary:
811       muse.texi: Change subsections to subheadings.
812     Revision:
813       muse--main--1.0--patch-122
815     (Author: John Sullivan <john@wjsullivan.net>)
816     
817     * muse.texi: Change @subsection and @strong to @subheading throughout
818       document.
820     modified files:
821      ChangeLog.2006 Makefile.defs debian/changelog muse.texi
823     new patches:
824      john@wjsullivan.net--2006/muse--johnsu01--0--patch-2
825      john@wjsullivan.net--2006/muse--johnsu01--0--patch-3
826      john@wjsullivan.net--2006/muse--johnsu01--0--patch-4
829 2006-05-08 08:53:03 GMT Michael Olson <mwolson@gnu.org> patch-121
831     Summary:
832       Update keystrokes used in muse-mode, as well as docs.
833     Revision:
834       muse--main--1.0--patch-121
836     * lisp/muse-mode.el (muse-insert-map): New variable that defines the
837       keymap to use when the user wants to insert something into the current
838       buffer using `C-c i'.
839       (muse-mode-map): Sort keys somewhat.  Remove binding of `C-c C-v' to
840       muse-follow-name-at-point, since this is already used for
841       muse-browse-result.  Call `muse-insert-thing' on `C-c i', which will
842       prompt for the thing to insert.
843       (muse-insert-thing): New function that prompts the user for something
844       to insert into the current buffer.  It tries to be as friendly as
845       possible by catching possible errors with the message "Not inserting
846       anything".
847       (muse-mode-completions): Rename from `muse-completions', since this is
848       what we use in `muse-mode'.
849       (muse-mode-current-word): Similarly.  These don't seem to work
850       correctly, for unknown reasons.
851     
852     * muse.texi (Keystroke Summary): Update to include all keystrokes that we
853       utilize.
855     modified files:
856      ChangeLog.2006 lisp/muse-mode.el muse.texi
859 2006-05-08 07:34:41 GMT Michael Olson <mwolson@gnu.org> patch-120
861     Summary:
862       Fix buggy behavior in muse-browse-result.
863     Revision:
864       muse--main--1.0--patch-120
866     * lisp/muse-mode.el (muse-browse-result): Construct a mapping of style
867       names to styles, based on the styles contained in the current Muse
868       project.  Thanks to kid kid for the analysis.
869     
870     * lisp/muse-publish.el (muse-publish-get-style): Permit styles to be
871       specified as an argument.
873     modified files:
874      ChangeLog.2006 lisp/muse-mode.el lisp/muse-publish.el
877 2006-05-08 07:29:42 GMT Michael Olson <mwolson@gnu.org> patch-119
879     Summary:
880       muse-latex: Make images look better.
881     Revision:
882       muse--main--1.0--patch-119
884     * lisp/muse-latex.el (muse-latex-markup-strings): Make width of images to
885       be 75% the width of the page, which looks better.  Enclose images in
886       figures, and center them.
888     modified files:
889      ChangeLog.2006 lisp/muse-latex.el
892 2006-04-27 00:31:01 GMT Michael Olson <mwolson@gnu.org> patch-118
894     Summary:
895       Fix a few image bugs.
896     Revision:
897       muse--main--1.0--patch-118
899     * lisp/muse-colors.el (muse-colors-insert-image): Expand file name before
900       passing it to `muse-colors-inline-image-method'.  This makes images
901       with the same current directory and publishing directory get resolved
902       correctly.
903     
904     * lisp/muse-project.el (muse-project-find-file): Don't try to add a
905       ".muse" extension to images.
907     modified files:
908      ChangeLog.2006 lisp/muse-colors.el lisp/muse-project.el
911 2006-04-25 22:28:01 GMT Michael Olson <mwolson@gnu.org> patch-117
913     Summary:
914       Make build targets more consistent.
915     Revision:
916       muse--main--1.0--patch-117
918     * contrib/Makefile (install): Make build targets more consistent.  Thanks
919       to dsmith for the report.
920     
921     * lisp/Makefile (all, lisp, install): Ditto.
923     modified files:
924      ChangeLog.2006 Makefile.defs contrib/Makefile debian/changelog
925      lisp/Makefile
928 2006-04-25 00:31:42 GMT Michael Olson <mwolson@gnu.org> patch-116
930     Summary:
931       cgi.el: Make this work without cl-seq.el.
932     Revision:
933       muse--main--1.0--patch-116
935     * contrib/cgi.el: Fix a compiler warning introduced by sample calendar
936       code.  Make this not depend on 'cl at runtime.
937       (cgi-position): New function that implements a simple replacement for
938       the position function found in cl-seq.el.
939       (cgi-decode): Use `cgi-position' instead of `position' and `substring'
940       instead of `subseq'.
941     
942     * contrib/httpd.el: Credit myself.
944     modified files:
945      ChangeLog.2006 contrib/cgi.el contrib/httpd.el
948 2006-04-25 00:04:10 GMT Michael Olson <mwolson@gnu.org> patch-115
950     Summary:
951       Make publishing DTRT when using escaped list markup.
952     Revision:
953       muse--main--1.0--patch-115
955     * lisp/muse-publish.el (muse-publish-surround-text)
956       (muse-publish-markup-list): Ignore escaped list markup.
957     
958     * lisp/muse.el (muse-list-item-type): Docfix.
959       (muse-list-item-critical-point): New function that returns the point
960       where we should expect to find the first character in the current list
961       item markup.
962       (muse-forward-paragraph): Docfix and cosmetic change.
963       (muse-forward-list-item): Ignore escaped list markup.  This should fix
964       a few publishing errors that involve markup like =::=.
966     modified files:
967      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
970 2006-04-22 03:46:04 GMT Michael Olson <mwolson@gnu.org> patch-114
972     Summary:
973       muse-publish: Get rid of warning when batch publishing.
974     Revision:
975       muse--main--1.0--patch-114
977     * lisp/muse-publish.el (muse-batch-publish-files): Get rid of a batch
978       publishing warning message.
980     modified files:
981      ChangeLog.2006 Makefile.defs debian/changelog
982      lisp/muse-publish.el
985 2006-04-22 03:35:12 GMT Michael Olson <mwolson@gnu.org> patch-113
987     Summary:
988       Try to fix face clobbering bug.
989     Revision:
990       muse--main--1.0--patch-113
992     * lisp/muse-colors.el (muse-make-faces-default): New function that sets
993       the default value of the header faces.  It can be re-used.
994       (muse-make-faces): Simplify.  This should now fix the face clobbering
995       bug.
997     modified files:
998      ChangeLog.2006 lisp/muse-colors.el
1001 2006-04-21 19:31:23 GMT Michael Olson <mwolson@gnu.org> patch-112
1003     Summary:
1004       Re-add some cgi.el stuff and update my example config.
1005     Revision:
1006       muse--main--1.0--patch-112
1008     * contrib/cgi.el (cgi-calendar-string, cgi-calendar): Re-add these, since
1009       they are mentioned in the documentation.
1010     
1011     * examples/mwolson/: Update.
1013     modified files:
1014      ChangeLog.2006 contrib/cgi.el examples/mwolson/muse-init.el
1015      examples/mwolson/templates/footer.html
1016      examples/mwolson/templates/header.html
1019 2006-04-21 15:23:13 GMT Michael Olson <mwolson@gnu.org> patch-111
1021     Summary:
1022       muse-mode: Make C-c C-e work better.
1023     Revision:
1024       muse--main--1.0--patch-111
1026     * lisp/muse-mode.el (muse-edit-link-at-point): Save link data earlier so
1027       that this is more robust.
1029     modified files:
1030      ChangeLog.2006 lisp/muse-mode.el
1033 2006-04-18 21:09:37 GMT Michael Olson <mwolson@gnu.org> patch-110
1035     Summary:
1036       muse-latex: Don't escape backslash in <example> regions.
1037     Revision:
1038       muse--main--1.0--patch-110
1040     * lisp/muse-latex.el (muse-latex-markup-specials-example): We don't need
1041       to escape the backslash after all.
1042       (muse-latex-markup-specials-literal): Docfix.
1043     
1044     * lisp/muse-publish.el (muse-publish-escape-specials): Docfix.
1046     modified files:
1047      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1050 2006-04-18 01:55:21 GMT Michael Olson <mwolson@gnu.org> patch-109
1052     Summary:
1053       Allow tab characters in the target of explicit links.
1054     Revision:
1055       muse--main--1.0--patch-109
1057     * lisp/muse-regexps.el (muse-explicit-link-regexp): Allow tab characters
1058       in the link target.  This doesn't seem like it could hurt anything, and
1059       prevents unexpected behavior.  Thanks to rubikitch AT ruby-lang.org for
1060       the report.
1062     modified files:
1063      ChangeLog.2006 lisp/muse-regexps.el
1066 2006-04-14 18:56:30 GMT Michael Olson <mwolson@gnu.org> patch-108
1068     Summary:
1069       muse-wiki: Fix bug that caused WikiWords not to publish or display.
1070     Revision:
1071       muse--main--1.0--patch-108
1073     * lisp/muse-wiki.el (muse-wiki-handle-wikiword): Logic fix.
1075     modified files:
1076      ChangeLog.2006 Makefile.defs debian/changelog
1077      lisp/muse-wiki.el
1080 2006-04-11 03:49:41 GMT Michael Olson <mwolson@gnu.org> patch-107
1082     Summary:
1083       Fix horrendous typo.
1084     Revision:
1085       muse--main--1.0--patch-107
1087     * muse-publish.el (muse-define-style): Fix typo which caused all kinds of
1088       strangeness.
1090     modified files:
1091      ChangeLog.2006 lisp/muse-publish.el
1094 2006-04-10 03:13:41 GMT Michael Olson <mwolson@gnu.org> patch-106
1096     Summary:
1097       Merged from mwolson@gnu.org--2006-muse-el (patch 53)
1098     Revision:
1099       muse--main--1.0--patch-106
1101     (Author: Per B. Sederberg <per@med.upenn.edu>)
1102     
1103     * lisp/muse-wiki.el (muse-wiki-ignore-implicit-links-to-current-page):
1104       Option to not create implicit links to the current page.
1105       (muse-wiki-handle-wikiword): Process the option to not create implicit
1106       links to the current page.
1108     modified files:
1109      ChangeLog.2006 Makefile.defs debian/changelog
1110      lisp/muse-wiki.el
1112     new patches:
1113      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-53
1116 2006-04-10 03:03:28 GMT Michael Olson <mwolson@gnu.org> patch-105
1118     Summary:
1119       Try to fix failure to recognize Muse file extension (6th attempt).
1120     Revision:
1121       muse--main--1.0--patch-105
1123     * lisp/muse-mode.el: Call `muse-mode-maybe-after-init' after the user's
1124       init file is loaded.
1125       (muse-mode-maybe-after-init): New function that causes muse-mode-maybe
1126       to be added to find-file-hooks when muse-mode-auto-p is non-nil.
1127     
1128     * lisp/muse.el: Call `muse-update-file-extension-after-init after the
1129       user's init file is loaded.  Explicitly add the Muse file extension
1130       when muse.el is loaded, to make life simpler.
1131       (muse-update-file-extension): Take several edge cases into account.
1132       (muse-file-extension): Docfix.
1133       (muse-update-file-extension-after-init): New function that causes the
1134       file extension to be updated.
1135     
1136     * muse.texi (Projects): It is no longer necessary to call
1137       `muse-mode-maybe' manually.
1139     modified files:
1140      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el muse.texi
1143 2006-04-10 00:08:01 GMT Michael Olson <mwolson@gnu.org> patch-104
1145     Summary:
1146       Merged from mwolson@gnu.org--2006-muse-el (patch 48-52)
1147     Revision:
1148       muse--main--1.0--patch-104
1150     (Author: Per B. Sederberg <per@med.upenn.edu>)
1151     
1152     * lisp/muse-wiki.el (muse-wiki-project-files-with-spaces): New function
1153       to return a list of project files that have spaces.
1154       (muse-wiki-update-interwiki-regexp): Make use of new project-files with
1155       spaces function.  Don't make this buffer-local.
1157     modified files:
1158      ChangeLog.2006 lisp/muse-wiki.el
1160     new patches:
1161      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-48
1162      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-49
1163      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-50
1164      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-51
1165      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-52
1168 2006-04-09 23:54:07 GMT Michael Olson <mwolson@gnu.org> patch-103
1170     Summary:
1171       Try to fix failure to recognize Muse file extension (5th attempt).
1172     Revision:
1173       muse--main--1.0--patch-103
1175     * lisp/muse.el: To detect whether Emacs has fully started, check
1176       `command-line-processed' instead of `inhibit-startup-hooks', since the
1177       latter only exists for Emacs22.
1179     modified files:
1180      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
1183 2006-04-09 23:48:06 GMT Michael Olson <mwolson@gnu.org> patch-102
1185     Summary:
1186       muse-html: Add :style-sheet element.
1187     Revision:
1188       muse--main--1.0--patch-102
1190     * lisp/muse-html.el (muse-html-header, muse-xhtml-header): Use the
1191       :style-sheet element.
1192       ("html", "xhtml"): Add the :style-sheet element.
1193     
1194     * lisp/muse-publish.el (muse-define-style): Don't give an error when a
1195       style already exists.  Instead, just replace the existing style.
1196       (muse-derive-style): Ditto.
1197     
1198     * muse.texi (Style Elements): Mention :style-sheet.
1200     modified files:
1201      ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
1202      muse.texi
1205 2006-04-09 02:23:47 GMT Michael Olson <mwolson@gnu.org> patch-101
1207     Summary:
1208       Try to fix failure to recognize Muse file extension (4th attempt).
1209     Revision:
1210       muse--main--1.0--patch-101
1212     * lisp/muse.el: Enter Muse mode correctly on files that are specified by
1213       the command line.
1215     modified files:
1216      ChangeLog.2006 Makefile.defs debian/changelog lisp/muse.el
1219 2006-04-09 01:53:19 GMT Michael Olson <mwolson@gnu.org> patch-100
1221     Summary:
1222       Try to fix failure to recognize Muse file extension (3rd attempt).
1223     Revision:
1224       muse--main--1.0--patch-100
1226     * lisp/muse.el (muse-update-values-hook): Fix a sequencep error.
1228     modified files:
1229      ChangeLog.2006 lisp/muse.el
1232 2006-04-09 01:36:50 GMT Michael Olson <mwolson@gnu.org> patch-99
1234     Summary:
1235       Try to fix failure to recognize Muse file extension (2nd attempt).
1236     Revision:
1237       muse--main--1.0--patch-99
1239     * lisp/muse.el: Try to fix failure to put muse-mode-choose-mode in
1240       auto-mode-alist.
1242     modified files:
1243      ChangeLog.2006 lisp/muse.el
1246 2006-04-08 17:08:39 GMT Michael Olson <mwolson@gnu.org> patch-98
1248     Summary:
1249       Merged from mwolson@gnu.org--2006-muse-el (patch 41-47)
1250     Revision:
1251       muse--main--1.0--patch-98
1253     (Author: Per B. Sederberg <per@med.upenn.edu>)
1254     
1255     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Modify
1256       interwiki-regexp to search for any project file name.  This is so it
1257       will match files with spaces.
1259     modified files:
1260      ChangeLog.2006 lisp/muse-wiki.el
1262     new patches:
1263      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-41
1264      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-42
1265      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-43
1266      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-44
1267      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-45
1268      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-46
1269      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-47
1272 2006-04-08 16:32:00 GMT Michael Olson <mwolson@gnu.org> patch-97
1274     Summary:
1275       Try to fix failure to recognize Muse file extension.
1276     Revision:
1277       muse--main--1.0--patch-97
1279     * lisp/muse-colors.el: Use add-hook instead of add-to-list, for the sake
1280       of semantics.
1281     
1282     * lisp/muse.el: Call muse-update-file-extension in
1283       muse-update-values-hook, instead of
1284       muse-ignored-file-extensions-regexp.  Add muse-update-file-extension to
1285       emacs-startup-hook, so that the user has time to set this in their
1286       .emacs file.
1288     modified files:
1289      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1292 2006-04-08 02:46:41 GMT Michael Olson <mwolson@gnu.org> patch-96
1294     Summary:
1295       Make things in contrib directory installable.
1296     Revision:
1297       muse--main--1.0--patch-96
1299     * Makefile (SUBDIRS): Add contrib.
1300       (all): Add contrib.
1301       (contrib): New target that compiles things in the contrib directory.
1302       (install-bin): Add contrib.  Install things in the contrib directory.
1303       Also install uncompiled things in the experimental directory.
1304     
1305     * contrib/Makefile: New Makefile for the contrib directory.
1306     
1307     * contrib/httpd.el (httpd-start): Fix compiler warnings.
1308     
1309     * debian/emacsen-install: Compile files in contrib directory in addition
1310       to the normal fare.  Thanks to Junichi Uekawa for the suggestion.
1311     
1312     * debian/emacsen-startup: Add contrib directory to load-path.
1313     
1314     * experimental/Makefile (test): Remove target.
1315       (install-uncompiled): New target that installs uncompiled files.
1316     
1317     * lisp/muse.el: Set version to 3.02.90 (3.03 RC1).
1318       (muse-update-file-extension): Fix a warning that occurred when doing
1319       batch publishing.
1321     new files:
1322      contrib/.arch-ids/Makefile.id contrib/Makefile
1324     modified files:
1325      ChangeLog.2006 Makefile Makefile.defs contrib/httpd.el
1326      debian/changelog debian/emacsen-install debian/emacsen-startup
1327      experimental/Makefile lisp/muse.el muse.texi
1330 2006-04-08 01:33:27 GMT Michael Olson <mwolson@gnu.org> patch-95
1332     Summary:
1333       Remove muse-registry.el.
1334     Revision:
1335       muse--main--1.0--patch-95
1337     * lisp/muse-registry.el: Move to the Planner project, since it is a
1338       better fit with Planner than Muse.
1340     removed files:
1341      lisp/.arch-ids/muse-registry.el.id lisp/muse-registry.el
1343     modified files:
1344      AUTHORS ChangeLog.2006
1347 2006-04-08 01:23:24 GMT Michael Olson <mwolson@gnu.org> patch-94
1349     Summary:
1350       Prepare Debian package for Arch snapshot.
1351     Revision:
1352       muse--main--1.0--patch-94
1354     * Makefile.defs, debian/changelog: Prepare for Debian package of Arch
1355       snapshot.
1357     modified files:
1358      ChangeLog.2006 Makefile.defs debian/changelog
1361 2006-04-05 18:56:26 GMT Michael Olson <mwolson@gnu.org> patch-93
1363     Summary:
1364       muse-wiki: Honor setting for muse-wiki-hide-nop-tag.
1365     Revision:
1366       muse--main--1.0--patch-93
1368     * lisp/muse-wiki.el (muse-wiki-colors-nop-tag): Take the value of
1369       `muse-wiki-hide-nop-tag' into account.
1371     modified files:
1372      ChangeLog.2006 lisp/muse-wiki.el
1375 2006-04-05 18:47:54 GMT Michael Olson <mwolson@gnu.org> patch-92
1377     Summary:
1378       Fix a couple of compiler warnings.
1379     Revision:
1380       muse--main--1.0--patch-92
1382     * muse-publish.el, muse-wiki.el: Fix a couple of compiler warnings.
1384     modified files:
1385      ChangeLog.2006 lisp/muse-publish.el lisp/muse-wiki.el
1388 2006-04-05 18:45:01 GMT Michael Olson <mwolson@gnu.org> patch-91
1390     Summary:
1391       Make interwiki links work with the new option.
1392     Revision:
1393       muse--main--1.0--patch-91
1395     * lisp/muse-wiki.el (muse-wiki-update-interwiki-regexp): Take no
1396       parameters.  Populate this correctly when
1397       `muse-wiki-match-all-project-files' is non-nil.
1399     modified files:
1400      ChangeLog.2006 lisp/muse-wiki.el
1403 2006-04-05 16:37:13 GMT Michael Olson <mwolson@gnu.org> patch-90
1405     Summary:
1406       Permit table generation to be disabled for a single Muse page.
1407     Revision:
1408       muse--main--1.0--patch-90
1410     * lisp/muse-latex.el (muse-latex-markup-table): If we don't get any table
1411       data, don't publish the table.
1412     
1413     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Ditto.
1414     
1415     * lisp/muse-xml-common.el (muse-xml-markup-table): Ditto.
1416     
1417     * lisp/muse-publish.el (muse-publish-table-fields): If the
1418       "disable-tables" publishing directive exists for the current page, do
1419       not generate a table.
1420     
1421     * muse.texi (Tables): Mention that table generation can be disabled for a
1422       single page.
1424     modified files:
1425      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1426      lisp/muse-texinfo.el lisp/muse-xml-common.el muse.texi
1429 2006-04-05 15:56:11 GMT Michael Olson <mwolson@gnu.org> patch-89
1431     Summary:
1432       muse-wiki: Match filenames before WikiWords.
1433     Revision:
1434       muse--main--1.0--patch-89
1436     * lisp/muse-wiki.el (muse-wiki-update-local-wikiword-regexp): Match
1437       filenames in project before the general WikiWord regexp.
1439     modified files:
1440      ChangeLog.2006 lisp/muse-wiki.el
1443 2006-04-05 15:45:07 GMT Michael Olson <mwolson@gnu.org> patch-88
1445     Summary:
1446       Use a better mechanism for updating autogenerated variables.
1447     Revision:
1448       muse--main--1.0--patch-88
1450     * lisp/muse-mode.el (muse-mode-hook): Remove ugly kludge.
1451     
1452     * lisp/muse-mode.el (muse-mode): Call muse-update-values-hook.
1453     
1454     * lisp/muse-protocols.el: Add `muse-update-url-regexp' to
1455       muse-update-values-hook.
1456     
1457     * lisp/muse-publish.el (muse-publish-markup-buffer): Call
1458       muse-update-values-hook.
1459     
1460     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' and
1461       `muse-wiki-update-interwiki-regexp' to muse-update-values-hook.
1462       (muse-wiki-update-local-wikiword-regexp): Quote an argument so that an
1463       error is fixed.
1464       (muse-wiki-update-custom-values): Replace with function that gives a
1465       warning and an explanation.
1466     
1467     * examples/mwolson/muse-init.el (muse-blosxom-base-directory): Update my
1468       example so that people who use it won't have a wrong value in
1469       muse-mode-hook.
1471     modified files:
1472      ChangeLog.2006 examples/mwolson/muse-init.el lisp/muse-mode.el
1473      lisp/muse-protocols.el lisp/muse-publish.el lisp/muse-wiki.el
1474      lisp/muse.el
1477 2006-04-05 15:00:33 GMT Michael Olson <mwolson@gnu.org> patch-87
1479     Summary:
1480       muse-wiki: Implement implicit links for all files in project.
1481     Revision:
1482       muse--main--1.0--patch-87
1484     * lisp/muse-project.el (muse-project-file-alist): Quote hook, so that we
1485       don't get errors when trying to use it.
1486     
1487     * lisp/muse-wiki.el: Add `muse-wiki-update-local-wikiword-regexp' to
1488       muse-project-file-alist-hook.
1489       (muse-wiki-update-local-wikiword-regexp): Make sure that we can't get
1490       into a recursive call.
1491       (muse-wiki-update-wikiword-regexp): Call
1492       `muse-wiki-update-local-wikiword-regexp'.
1493     
1494     (Author: Per B. Sederberg <per@med.upenn.edu>)
1495     
1496     * lisp/muse-wiki.el:: Add muse-wiki-update-local-wikiword-regexp to
1497       muse-before-publish-hook and muse-mode-hook so that implicit links are
1498       published properly.
1499       (muse-wiki-wikiword-match-project-files): New option for determining
1500       whether to match all project files as implicit links.  This is off by
1501       default.
1502       (muse-wiki-update-local-wikiword-regexp): New function to make the
1503       wikiword-regexp local and append the files in the current project to
1504       it.
1506     modified files:
1507      AUTHORS ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
1509     new patches:
1510      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-27
1511      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-28
1512      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-29
1513      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-30
1514      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-31
1515      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-32
1516      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-33
1517      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-34
1518      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-35
1519      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-36
1520      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-37
1521      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-38
1522      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-39
1523      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-40
1526 2006-04-04 22:49:46 GMT Michael Olson <mwolson@gnu.org> patch-86
1528     Summary:
1529       Update Muse's file-alist after saving any Muse page.
1530     Revision:
1531       muse--main--1.0--patch-86
1533     * lisp/muse-project.el (muse-project-after-save-hook): New function that
1534       causes Muse's file-alist to be updated when we are saving a Muse file.
1535       This is added to after-save-hook.
1537     modified files:
1538      ChangeLog.2006 lisp/muse-project.el
1541 2006-04-04 22:39:57 GMT Michael Olson <mwolson@gnu.org> patch-85
1543     Summary:
1544       Add a hook that is called whenever Muse's file-alist is updated.
1545     Revision:
1546       muse--main--1.0--patch-85
1548     * lisp/muse-project.el (muse-project-file-alist-hook): New hook that is
1549       executed after an update to muse-project-file-alist happens.
1550       (muse-project-file-alist): Call `muse-project-file-alist-hook'.
1552     modified files:
1553      ChangeLog.2006 lisp/muse-project.el
1556 2006-04-04 22:23:40 GMT Michael Olson <mwolson@gnu.org> patch-84
1558     Summary:
1559       muse-mode: Recognize definition lists when filling text.
1560     Revision:
1561       muse--main--1.0--patch-84
1563     * lisp/muse-mode.el (muse-mode): Recognize definition lists when filling
1564       text.
1565     
1567     modified files:
1568      ChangeLog.2006 lisp/muse-mode.el
1571 2006-04-04 22:22:19 GMT Michael Olson <mwolson@gnu.org> patch-83
1573     Summary:
1574       Remove unrelated part of patch-82.
1575     Revision:
1576       muse--main--1.0--patch-83
1579     modified files:
1580      ChangeLog.2006 lisp/muse-mode.el
1583 2006-04-04 22:11:16 GMT Michael Olson <mwolson@gnu.org> patch-82
1585     Summary:
1586       muse-journal: Fix dates in RSS feeds.
1587     Revision:
1588       muse--main--1.0--patch-82
1590     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Make sure that
1591       date is in a format that RSS readers can handle.  Thanks to René
1592       Stadler for the patch.
1594     modified files:
1595      AUTHORS ChangeLog.2006 lisp/muse-journal.el lisp/muse-mode.el
1598 2006-04-01 15:32:26 GMT Michael Olson <mwolson@gnu.org> patch-81
1600     Summary:
1601       debian: Install ChangeLog properly.
1602     Revision:
1603       muse--main--1.0--patch-81
1605     * debian/rules: Create ChangeLog using ChangeLog.2006 as a base, and then
1606       appending the logs for previous years.  Thanks to Sergei V. Fleytin for
1607       the breakage report.
1609     modified files:
1610      ChangeLog.2006 debian/rules
1613 2006-04-01 04:20:45 GMT Michael Olson <mwolson@gnu.org> patch-80
1615     Summary:
1616       Fix a bug triggered by batch-publishing.
1617     Revision:
1618       muse--main--1.0--patch-80
1620     * lisp/muse-publish.el (muse-detect-invalid-style): Remove, since the
1621       right algorithm turned out to be simpler than I had thought.  Thanks to
1622       Sergei V. Fleytin for reporting breakage with the old method.
1623       (muse-publish-file): Don't be overzealous when checking for an invalid
1624       style -- use a simpler check.
1625       (muse-batch-publish-files): Don't check for invalid styles here, since
1626       we already do so in `muse-publish-file'.
1628     modified files:
1629      ChangeLog.2006 lisp/muse-publish.el
1632 2006-03-31 04:27:54 GMT Michael Olson <mwolson@gnu.org> patch-79
1634     Summary:
1635       muse.texi: Move some sections to a new Extending Muse chapter.
1636     Revision:
1637       muse--main--1.0--patch-79
1639     * muse.texi (Extending Muse): New chapter containing nodes that deal with
1640       extending Muse in various ways.
1641       (Common Elements, Deriving Styles): Move to Extending Muse chapter.
1643     modified files:
1644      ChangeLog.2006 muse.texi
1647 2006-03-26 22:38:01 GMT Michael Olson <mwolson@gnu.org> patch-78
1649     Summary:
1650       Fix a couple of recently-introduced bugs.
1651     Revision:
1652       muse--main--1.0--patch-78
1654     * lisp/muse-colors.el: Fix errors introduced in a recent patch.  Try
1655       extra hard to preserve our settings for faces, especially after a new
1656       frame or splash screen.
1657     
1658     * lisp/muse.el (muse-copy-face): New function that ensures the face is
1659       copied globally, to the extent the Emacs permits this.
1661     modified files:
1662      ChangeLog.2006 lisp/muse-colors.el lisp/muse.el
1665 2006-03-26 20:02:11 GMT Michael Olson <mwolson@gnu.org> patch-77
1667     Summary:
1668       Update my example configuration file.
1669     Revision:
1670       muse--main--1.0--patch-77
1673     modified files:
1674      ChangeLog.2006 examples/mwolson/muse-init.el
1677 2006-03-26 19:54:43 GMT Michael Olson <mwolson@gnu.org> patch-76
1679     Summary:
1680       Remove cruft from patch logs.
1681     Revision:
1682       muse--main--1.0--patch-76
1685     modified files:
1686      ChangeLog.2006
1687      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-14
1688      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-25
1689      {arch}/muse-el/muse-el--devel/muse-el--devel--0/mwolson@gnu.org--2006-muse-el/patch-log/patch-3
1690      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-19
1691      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-46
1692      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-58
1693      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-60
1694      {arch}/muse/muse--main/muse--main--1.0/mwolson@gnu.org--2006/patch-log/patch-74
1697 2006-03-26 18:38:31 GMT Michael Olson <mwolson@gnu.org> patch-75
1699     Summary:
1700       Make faces more robust and namespace-conforming.
1701     Revision:
1702       muse--main--1.0--patch-75
1704     * lisp/muse-colors.el (muse-make-faces): Make sure that each generated
1705       face has documentation and a group.
1706       (muse-link, muse-bad-link, muse-verbatim): Renamed faces to drop the
1707       "-face" suffix.
1708       (muse-emphasis-1, muse-emphasis-2, muse-emphasis-3): Make sure that the
1709       faces have documentation and a group.  Copy unconditionally from the
1710       related Emacs faces, rather than specifying face attributes.
1711       (muse-colors-verbatim, muse-colors-example-tag, muse-link-face):
1712       (muse-colors-explicit-link, muse-colors-implicit-link): Use the new
1713       face names.
1714     
1715     * lisp/muse-mode.el (muse-next-reference, muse-previous-reference): Use
1716       the 'muse-link property rather than looking at the face.
1718     modified files:
1719      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
1722 2006-03-26 18:33:12 GMT Michael Olson <mwolson@gnu.org> patch-74
1724     Summary:
1725       muse.texi: Mention the <code> tag.
1726     Revision:
1727       muse--main--1.0--patch-74
1729     * muse.texi (Emphasizing Text): Mention the <code> tag.
1731     modified files:
1732      ChangeLog.2006 muse.texi
1735 2006-03-26 06:35:49 GMT Michael Olson <mwolson@gnu.org> patch-73
1737     Summary:
1738       Fix bug in verse markup, undesired behavior with emdash.
1739     Revision:
1740       muse--main--1.0--patch-73
1742     * lisp/muse-docbook.el (muse-docbook-markup-strings): Preserve whitespace
1743       around emdash.
1744     
1745     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
1746     
1747     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
1748     
1749     * lisp/muse-publish.el (muse-publish-markup-emdash): Pass preceding and
1750       trailing whitespace to `muse-markup-text', in case the current
1751       publishing wishes to use them.
1752       (muse-publish-markup-verse): Insert newline without adding read-only
1753       properties to it.  This fixes a paragraph detection bug in HTML
1754       publishing.
1756     modified files:
1757      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
1758      lisp/muse-publish.el lisp/muse-xml.el
1761 2006-03-25 05:57:36 GMT Michael Olson <mwolson@gnu.org> patch-72
1763     Summary:
1764       httpd.el: Update to work with newer versions of Emacs.
1765     Revision:
1766       muse--main--1.0--patch-72
1768     * contrib/httpd.el (httpd-start): Update this to work with newer versions
1769       of Emacs.
1771     modified files:
1772      ChangeLog.2006 contrib/httpd.el
1775 2006-03-25 05:27:46 GMT Michael Olson <mwolson@gnu.org> patch-71
1777     Summary:
1778       muse-journal: Make custom RSS heading regexps possible.
1779     Revision:
1780       muse--main--1.0--patch-71
1782     * lisp/muse-journal.el (muse-journal-rss-heading-regexp): New option that
1783       determines the regexp to use when searching for an RSS heading.
1784       (muse-journal-rss-munge-buffer): Use `muse-journal-rss-heading-regexp'.
1786     modified files:
1787      ChangeLog.2006 lisp/muse-journal.el
1790 2006-03-25 04:33:40 GMT Michael Olson <mwolson@gnu.org> patch-70
1792     Summary:
1793       Fix #5190: Endless loop in muse style-run-hooks when muse-project-publish is called with undefined style.
1794     Revision:
1795       muse--main--1.0--patch-70
1797     * lisp/muse-project.el (muse-project-publish): If we cannot find a
1798       project to publish, indicate this in an error message.
1799     
1800     * lisp/muse-publish.el (muse-style-run-hooks): Never go into an endless
1801       loop.  This should fix #5190.  Thanks to Rod Morehead for the report.
1802       (muse-detect-invalid-style): New function that makes sure that the
1803       given style is in a valid format.
1804       (muse-publish-file): Call `muse-detect-invalid-style' before doing any
1805       publishing.
1807     modified files:
1808      ChangeLog.2006 lisp/muse-project.el lisp/muse-publish.el
1811 2006-03-25 03:31:36 GMT Michael Olson <mwolson@gnu.org> patch-69
1813     Summary:
1814       muse-mode: Don't require muse-publish.el.
1815     Revision:
1816       muse--main--1.0--patch-69
1818     * lisp/muse-mode.el: Use a few autoloads instead of requiring
1819       muse-publish.el.  This allows people to optionally have Muse mode
1820       without including the publishing features, as long as they never call a
1821       publishing function.  The documentation says that Muse is supposed to
1822       be modular in that way, so I guess we'd better follow it.
1823       (muse-insert-tag): Make sure that muse-publish is required before
1824       accessing `muse-publish-markup-tags'.
1826     modified files:
1827      ChangeLog.2006 lisp/muse-mode.el
1830 2006-03-21 01:59:03 GMT Michael Olson <mwolson@gnu.org> patch-68
1832     Summary:
1833       Minor code cleanup.
1834     Revision:
1835       muse--main--1.0--patch-68
1837     * lisp/muse-mode.el (muse-grep): Remove commented-out code.
1839     modified files:
1840      ChangeLog.2006 lisp/muse-mode.el
1843 2006-03-21 01:56:21 GMT Michael Olson <mwolson@gnu.org> patch-67
1845     Summary:
1846       Merged from mwolson@gnu.org--2006-muse-el (patch 15-26)
1847     Revision:
1848       muse--main--1.0--patch-67
1850     (Author: Per B. Sederberg <per@med.upenn.edu>)
1851     
1852     * lisp/muse-mode.el (muse-grep-command): Add custom to set up the command
1853       used for grepping.
1854       (muse-mode-map): Changed muse-browse-result to C-c C-v and made
1855       muse-find-backlinks C-c C-b
1856       (muse-grep): New function to envoke a search with the compiler.
1857       (muse-search-with-command): New function to search for text, optionally
1858       editing the command.
1859       (muse-search): New function to search for text.
1860       (muse-find-backlinks): New function to search for backlinks to the
1861       current page.
1863     modified files:
1864      ChangeLog.2006 lisp/muse-mode.el
1866     new patches:
1867      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-15
1868      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-16
1869      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-17
1870      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-18
1871      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-19
1872      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-20
1873      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-21
1874      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-22
1875      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-23
1876      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-24
1877      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-25
1878      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-26
1881 2006-03-20 18:43:15 GMT Michael Olson <mwolson@gnu.org> patch-66
1883     Summary:
1884       Make it easier to call context-specific region-escaping function.
1885     Revision:
1886       muse--main--1.0--patch-66
1888     * lisp/muse-publish.el (muse-publish-escape-specials): If a function is
1889       returned from specials, call it with beg, end, ignore-read-only args.
1890       This allows for people to specify their own functions for escaping
1891       regions, depending on context.  See `muse-xml-decide-specials' in
1892       muse-xml-common.el.  This functionality already exists for escaping
1893       specials in strings.
1895     modified files:
1896      ChangeLog.2006 lisp/muse-publish.el
1899 2006-03-17 01:56:38 GMT Michael Olson <mwolson@gnu.org> patch-65
1901     Summary:
1902       Attempt to make new syntaxes easier to support.
1903     Revision:
1904       muse--main--1.0--patch-65
1906     * lisp/muse-colors.el (muse-colors-explicit-link): Use `muse-get-link'
1907       and `muse-get-link-data'.
1908     
1909     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Ditto.
1910     
1911     * lisp/muse-mode.el (muse-edit-link-at-point): Ditto.
1912       (muse-make-link): Change argument name.
1913     
1914     * lisp/muse.el (muse-handle-explicit-link): Ditto.
1915       (muse-get-link, muse-get-link-desc): New functions that return the link
1916       and the link description, respectively, from the given TARGET.  The
1917       idea is that at least one other markup syntax puts descriptions before
1918       links, so all they would have to do is re-define these two functions.
1920     modified files:
1921      ChangeLog.2006 lisp/muse-colors.el lisp/muse-journal.el
1922      lisp/muse-mode.el lisp/muse.el
1925 2006-03-14 18:41:54 GMT Michael Olson <mwolson@gnu.org> patch-64
1927     Summary:
1928       Fix #5477: muse-replace-regexp-in-string throws error in XEmacs 21.4
1929     Revision:
1930       muse--main--1.0--patch-64
1932     * Makefile.defs, lisp/muse-colors.el: Fix typo.
1933     
1934     * lisp/muse.el (muse-replace-regexp-in-string): Switch order so that
1935       `replace-in-string' is checked before `replace-regexp-in-string', since
1936       XEmacs' implementation of the latter seems to be broken.  Thanks to Jim
1937       Ottaway for the heads up.
1939     modified files:
1940      ChangeLog.2006 Makefile.defs lisp/muse-colors.el lisp/muse.el
1943 2006-03-13 19:38:36 GMT Michael Olson <mwolson@gnu.org> patch-63
1945     Summary:
1946       muse-latex: Add footnotes to links so that they show up on printed copies.
1947     Revision:
1948       muse--main--1.0--patch-63
1950     * lisp/muse-latex.el (muse-latex-markup-strings): Add string for
1951       'url-and-desc.  Display footnotes if we have both a link and a
1952       description, since we want URLs to show up on printed documents.
1953       (muse-latex-markup-specials-document): Escape the "@" character in the
1954       entire document.
1955     
1956     * lisp/muse-publish.el (muse-publish-url): Distinguish between URLs
1957       without descriptions and URLs with descriptions.  If no markup string
1958       exists for 'url-and-desc, fall back to 'url.
1960     modified files:
1961      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
1964 2006-03-13 18:42:27 GMT Michael Olson <mwolson@gnu.org> patch-62
1966     Summary:
1967       Fix publishing error with multi-line wrapped list items.
1968     Revision:
1969       muse--main--1.0--patch-62
1971     * lisp/muse-publish.el (muse-publish-surround-text): Fix a problem with
1972       multiple lines of a wrapped list item.
1974     modified files:
1975      ChangeLog.2006 lisp/muse-publish.el
1978 2006-03-13 02:10:44 GMT Michael Olson <mwolson@gnu.org> patch-61
1980     Summary:
1981       Add COPYING file; update headers.
1982     Revision:
1983       muse--main--1.0--patch-61
1985     * COPYING: New file containing the GNU GPL.
1986     
1987     * AUTHORS: Bookkeeping.
1988     
1989     * README: Add License section.  Change Muse homepage URL.
1990     
1991     * debian/copyright: Change Muse homepage URL.  Prune list to those who
1992       have changed 15+ lines of code, since this is the amount that
1993       constitutes legal contribution to a software work, AFAICT.
1994     
1995     * examples/mwolson: Update contents of directory to match my current
1996       setup.
1997     
1998     * experimental/muse*.el, lisp/muse*.el: Update headers.
1999     
2000     * muse.texi: Change Muse homepage URL.
2002     new files:
2003      .arch-ids/COPYING.id COPYING
2005     modified files:
2006      AUTHORS ChangeLog.2006 README debian/copyright
2007      examples/mwolson/muse-init.el
2008      examples/mwolson/stylesheets/blog.css
2009      examples/mwolson/stylesheets/common.css
2010      examples/mwolson/stylesheets/print.css
2011      examples/mwolson/stylesheets/screen.css
2012      experimental/muse-cite.el experimental/muse-mathml.el
2013      experimental/muse-message.el lisp/muse-backlink.el
2014      lisp/muse-blosxom.el lisp/muse-book.el lisp/muse-colors.el
2015      lisp/muse-convert.el lisp/muse-docbook.el lisp/muse-groff.el
2016      lisp/muse-html.el lisp/muse-http.el lisp/muse-journal.el
2017      lisp/muse-latex.el lisp/muse-latex2png.el lisp/muse-mode.el
2018      lisp/muse-poem.el lisp/muse-project.el lisp/muse-protocols.el
2019      lisp/muse-publish.el lisp/muse-regexps.el
2020      lisp/muse-registry.el lisp/muse-texinfo.el lisp/muse-wiki.el
2021      lisp/muse-xml.el lisp/muse.el muse.texi
2024 2006-03-13 01:48:10 GMT Michael Olson <mwolson@gnu.org> patch-60
2026     Summary:
2027       Update Muse XML schema.
2028     Revision:
2029       muse--main--1.0--patch-60
2031     * examples/muse.rnc: Allow nested list items.  Update header.  Provide
2032       history.  We'll call this v0.3 of the schema.
2033     
2034     * lisp/muse-xml-common.el: Update header.
2035       (muse-xml-markup-table): Fix table generation when attributes are not
2036       specified.
2038     modified files:
2039      ChangeLog.2006 examples/muse.rnc lisp/muse-xml-common.el
2042 2006-03-12 21:12:48 GMT Michael Olson <mwolson@gnu.org> patch-59
2044     Summary:
2045       Fix output for consecutive list items of same type.
2046     Revision:
2047       muse--main--1.0--patch-59
2049     * lisp/muse-publish.el (muse-publish-surround-text): Make calculated
2050       post-indent and indent-found values local to each list item.  This
2051       should fix undesired behavior with consecutive list items of the same
2052       type.
2054     modified files:
2055      ChangeLog.2006 lisp/muse-publish.el
2058 2006-03-12 21:09:43 GMT Michael Olson <mwolson@gnu.org> patch-58
2060     Summary:
2061       Make C-> and C-< keybindings not indent nested items.
2062     Revision:
2063       muse--main--1.0--patch-58
2065     * lisp/muse-mode.el (muse-alter-list-item-indentation): Don't include
2066       nested items.
2067     
2068     * lisp/muse.el (muse-forward-list-item): Make skipping of nested items
2069       optional, and document this.
2071     modified files:
2072      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el
2075 2006-03-12 19:56:26 GMT Michael Olson <mwolson@gnu.org> patch-57
2077     Summary:
2078       Slightly improve flyspell integration.
2079     Revision:
2080       muse--main--1.0--patch-57
2082     * lisp/muse-mode.el (muse-mode-flyspell-p): Use the new 'muse-link text
2083       property to determine whether we are at a link.
2085     modified files:
2086      ChangeLog.2006 lisp/muse-mode.el
2089 2006-03-11 23:42:56 GMT Michael Olson <mwolson@gnu.org> patch-56
2091     Summary:
2092       Make nested definition list items work much better.
2093     Revision:
2094       muse--main--1.0--patch-56
2096     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2097       `muse-forward-list-item'.  Don't pass indent and post-indent to the
2098       move function.
2099       (muse-publish-surround-text): If we are to determine the indentation,
2100       but have found no list items, set indent to the empty string.  If we
2101       are to determine indentation but have found an item, get all leading
2102       whitespace and set indent to it.  Never try to determine post-indent
2103       using the first line.  Try to contain the amount of "damage" a nested
2104       list item can do to wrapped list item text.
2105     
2106     * lisp/muse-regexps.el (muse-list-item-regexp): Hone the definition list
2107       part so that it is easier to indicate the amount of desired initial
2108       whitespace.
2109     
2110     * lisp/muse.el (muse-list-item-type): Make initial whitespace of a dl
2111       entry optional.
2112       (muse-forward-dl-term, muse-forward-dl-entry): Remove.  Functionality
2113       merged into `muse-forward-list-item'.
2114       (muse-forward-list-item-1): New function that determines whether a
2115       nested list item is found.
2116       (muse-forward-list-item): Move hairy nested list detection algorithm
2117       into `muse-forward-list-item-1'.  Be extra careful about terminating
2118       when we go past the boundary.
2120     modified files:
2121      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2122      lisp/muse.el
2125 2006-03-11 06:10:19 GMT Michael Olson <mwolson@gnu.org> patch-55
2127     Summary:
2128       Add backlink support, thanks to Jim Ottaway.
2129     Revision:
2130       muse--main--1.0--patch-55
2132     * lisp/muse-colors.el (muse-colors-fontifying-p): New buffer-local
2133       variable that indicates whether Muse is fontifying the current buffer.
2134       (muse-colors-region): Set `muse-colors-fontifying' to t.
2135     
2136     * lisp/muse-backlinks.el: New file by Jim Ottaway that provides backlink
2137       support.  I've modified it slightly to get rid of the defadvice forms.
2139     new files:
2140      lisp/.arch-ids/muse-backlink.el.id lisp/muse-backlink.el
2142     modified files:
2143      AUTHORS ChangeLog.2006 lisp/muse-colors.el
2146 2006-03-10 22:56:22 GMT Michael Olson <mwolson@gnu.org> patch-54
2148     Summary:
2149       muse-protocols: Add Wikipedia support.
2150     Revision:
2151       muse--main--1.0--patch-54
2153     * lisp/muse-protocols.el (muse-url-protocols): Add "dict:" handler.  This
2154       is used to look up terms on the Wikipedia website.
2155       (muse-wikipedia-country): New option that specifies the country code to
2156       use for Wikipedia.
2157       (muse-resolve-url-dict, muse-browse-url-dict): New functions that
2158       resolve and browse Wikipedia URLs.
2160     modified files:
2161      ChangeLog.2006 lisp/muse-protocols.el
2164 2006-03-10 19:29:56 GMT Michael Olson <mwolson@gnu.org> patch-53
2166     Summary:
2167       muse-protocols: Add DOI handling.
2168     Revision:
2169       muse--main--1.0--patch-53
2171     * lisp/muse-protocols.el (muse-url-protocols): Add handler for DOI's.
2172       DOI's (digitial object identifiers) are a standard identifier used in
2173       the publishing industry.  Thanks to Phillip Lord for the patch.
2174       (muse-resolve-url-doi, muse-browse-url-doi): New functions that resolve
2175       and browse DOI's.
2177     modified files:
2178      AUTHORS ChangeLog.2006 lisp/muse-protocols.el
2181 2006-03-10 16:34:52 GMT Michael Olson <mwolson@gnu.org> patch-52
2183     Summary:
2184       Refine previous patch.
2185     Revision:
2186       muse--main--1.0--patch-52
2188     * lisp/muse-mode.el (muse-link-at-point): If muse-colors is loaded, don't
2189       ever use the fallback method.  Save point when using new method.
2191     modified files:
2192      ChangeLog.2006 lisp/muse-mode.el
2195 2006-03-10 16:26:53 GMT Michael Olson <mwolson@gnu.org> patch-51
2197     Summary:
2198       Make visiting of links a bit faster.
2199     Revision:
2200       muse--main--1.0--patch-51
2202     * lisp/muse-colors.el (muse-unhighlight-region): Remove muse-link
2203       property.
2204       (muse-link-properties): If we are highlighting a link, add the
2205       muse-link property.
2206     
2207     * lisp/muse-mode.el (muse-link-at-point): If the muse-link property
2208       exists at point, use it to bound the link.  Otherwise, use the old
2209       method.  This should make it easier to visit custom implicit link
2210       forms, since it does not require a change to muse-implicit-link-regexp.
2211     
2212     * lisp/muse-regexps.el (muse-implicit-link-regexp): Note that this is not
2213       used when muse-colors.el is loaded.
2215     modified files:
2216      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2217      lisp/muse-regexps.el
2220 2006-03-10 04:57:55 GMT Michael Olson <mwolson@gnu.org> patch-50
2222     Summary:
2223       Make resolving of inline image paths more flexible.
2224     Revision:
2225       muse--main--1.0--patch-50
2227     * lisp/muse-colors.el (muse-colors-inline-image-method): Rename from
2228       `muse-inline-relative-to'.  Add muse-colors-use-publishing-directory
2229       option.  Make the fallback customization type a function rather than a
2230       symbol.
2231       (muse-colors-use-publishing-directory): New function that takes the
2232       best guess at where the current Muse file will be published and makes
2233       the given link relative to that.
2234       (muse-colors-insert-image): If muse-colors-inline-image-method is
2235       'default-directory, use the default directory.  If it is a function,
2236       call that function with LINK as an argument.  Otherwise, give up.
2238     modified files:
2239      ChangeLog.2006 lisp/muse-colors.el
2242 2006-03-10 03:43:03 GMT Michael Olson <mwolson@gnu.org> patch-49
2244     Summary:
2245       Fix inline image lockup.
2246     Revision:
2247       muse--main--1.0--patch-49
2249     * lisp/muse-colors.el (muse-colors-explicit-link): Fix regression in
2250       patch-47.  This will prevent Muse from locking up after making a new
2251       inline image.
2253     modified files:
2254      ChangeLog.2006 lisp/muse-colors.el
2257 2006-03-07 03:52:11 GMT Michael Olson <mwolson@gnu.org> patch-48
2259     Summary:
2260       Fix publishing problem with XEmacs.
2261     Revision:
2262       muse--main--1.0--patch-48
2264     * lisp/muse-publish.el (muse-insert-file-or-string): Fix XEmacs
2265       publishing problem when text at beginning of buffer is read-only.
2266       Thanks to Christian Clercin for the report.
2268     modified files:
2269      ChangeLog.2006 lisp/muse-publish.el
2272 2006-03-06 06:06:38 GMT Michael Olson <mwolson@gnu.org> patch-47
2274     Summary:
2275       Get increase and decrease of list indentation to work with complex cases.
2276     Revision:
2277       muse--main--1.0--patch-47
2279     * lisp/muse-colors.el: Miscellaneous whitespace fixes.
2280       (muse-colors-explicit-link): Minor logic tweak.  The indentation seems
2281       to indicate this interpretation, though parens are different.
2282     
2283     * lisp/muse-mode.el: Miscellaneous whitespace fixes.
2284       (muse-alter-list-item-indentation): New function that alters the list
2285       structure at point.  The behavior to use is specified by the OPERATION
2286       argument.  Currently-supported operations are 'increase and 'decrease
2287       indentation level.  This now uses the same sort of list detection
2288       algorithm that is used during publishing, so it should work as expected
2289       for complicated cases.
2290       (muse-increase-list-item-indentation)
2291       (muse-decrease-list-item-indentation): Use
2292       `muse-alter-list-item-indentation'.
2294     modified files:
2295      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2298 2006-03-06 04:50:17 GMT Michael Olson <mwolson@gnu.org> patch-46
2300     Summary:
2301       Code simplification; improve muse-list-item-type function.
2302     Revision:
2303       muse--main--1.0--patch-46
2305     * lisp/muse.el (muse-list-item-type): Disambiguate between 'dl-term and
2306       'dl-entry, instead of just returning 'dl.
2307       (muse-forward-dl-term, muse-forward-dl-entry): Use
2308       muse-forward-list-item.
2309       (muse-forward-dl-part): Remove, merge functionality into
2310       muse-forward-list-item.
2311       (muse-forward-list-item): Add a few conditions needed for skipping
2312       nested 'dl-term and 'dl-entry items.
2314     modified files:
2315      ChangeLog.2006 lisp/muse.el
2318 2006-03-06 01:11:58 GMT Michael Olson <mwolson@gnu.org> patch-45
2320     Summary:
2321       Put movement by list and paragraph functions in muse.el.
2322     Revision:
2323       muse--main--1.0--patch-45
2325     * lisp/muse.el (muse-list-item-type, muse-forward-paragraph):
2326       (muse-forward-dl-term, muse-forward-dl-entry, muse-forward-dl-part):
2327       (muse-forward-list-item): Move here from muse-publish.el, so that
2328       muse-mode can make use of these.
2330     modified files:
2331      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
2334 2006-03-06 01:06:14 GMT Michael Olson <mwolson@gnu.org> patch-44
2336     Summary:
2337       Merged from mwolson@gnu.org--2006-muse-el (patch 5-14)
2338     Revision:
2339       muse--main--1.0--patch-44
2341     (Author: Per B. Sederberg <per@med.upenn.edu>)
2342     
2343     * lisp/muse-mode.el (muse-mode-map): Added key mappings to increase or
2344       decrease the current item indentation.
2345       (muse-get-paragraph-start): Helper function to determine the start of
2346       the current paragraph.
2347       (muse-insert-list-item): Cleaned up list item insertion code and made
2348       it handle definitions.
2349       (muse-increase-list-item-indentation): New interactive function to
2350       increase list item indentation.
2351       (muse-decrease-list-item-indentation): New interactive function to
2352       decrease list item indentation.
2354     modified files:
2355      ChangeLog.2006 lisp/muse-mode.el
2357     new patches:
2358      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-5
2359      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-6
2360      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-7
2361      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-8
2362      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-9
2363      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-10
2364      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-11
2365      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-12
2366      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-13
2367      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-14
2370 2006-03-06 00:58:00 GMT Michael Olson <mwolson@gnu.org> patch-43
2372     Summary:
2373       Use slightly better algorithm for removing initial whitespace.
2374     Revision:
2375       muse--main--1.0--patch-43
2377     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of whether
2378       the definition occurred on the same line as the term.
2379       (muse-publish-surround-text): Use a slightly better algorithm for
2380       removing initial indentation of list items.  This way, we preserve
2381       nesting of lists and also deal with same-level items that occur after
2382       nested items.  This probably doesn't make much of a difference in the
2383       output, but it should make support of nested definition lists a bit
2384       less troublesome in some cases.
2385       (muse-forward-dl-entry): Deal with ambiguity in muse-list-item-regexp
2386       regexp.
2387       (muse-forward-dl-part, muse-forward-list-item): Don't clobber match
2388       data.  Don't remove any text.  This makes the function easier to reuse
2389       in display-only situations.
2391     modified files:
2392      ChangeLog.2006 lisp/muse-publish.el
2395 2006-03-04 02:03:59 GMT Michael Olson <mwolson@gnu.org> patch-42
2397     Summary:
2398       In a preliminary way, make definition lists nest.
2399     Revision:
2400       muse--main--1.0--patch-42
2402     * lisp/muse-publish.el (muse-forward-dl-part): Make it so that definition
2403       lists nest a bit better.
2404     
2405     * lisp/muse-regexps.el (muse-dl-entry-regexp): Removed, since we don't
2406       use it anymore.
2408     modified files:
2409      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2412 2006-03-03 19:28:22 GMT Michael Olson <mwolson@gnu.org> patch-41
2414     Summary:
2415       Fix nested list regression.
2416     Revision:
2417       muse--main--1.0--patch-41
2419     * lisp/muse-publish.el (muse-publish-surround-text): Keep track of
2420       original indentation value and use that.  This fixes a regression
2421       caused by the last patch.
2423     modified files:
2424      ChangeLog.2006 lisp/muse-publish.el
2427 2006-03-03 05:24:59 GMT Michael Olson <mwolson@gnu.org> patch-40
2429     Summary:
2430       Make code look nicer by using muse-forward-dl-* functions.
2431     Revision:
2432       muse--main--1.0--patch-40
2434     * lisp/muse-publish.el (muse-publish-surround-dl): Factor out lambda
2435       forms into muse-forward-dl-* for increased reusability.
2436       (muse-publish-surround-text): Call move function with an indent
2437       argument so that we don't have to use partial substitution in lambda
2438       forms.
2439       (muse-forward-dl-term): New function that moves forward to the next
2440       definition list term.
2441       (muse-forward-dl-entry): New function that moves forward to the next
2442       definition list entry.
2443       (muse-forward-dl-part): Renamed from `muse-forward-dl-item', since this
2444       does not move past entire definition list items, only parts of them.
2445       (muse-publish-markup-list, muse-publish-markup-quote):
2446       (muse-publish-quote-tag): Use better lambda form, and include a
2447       parameter.
2449     modified files:
2450      ChangeLog.2006 lisp/muse-publish.el
2453 2006-03-02 05:38:41 GMT Michael Olson <mwolson@gnu.org> patch-39
2455     Summary:
2456       Handle blockquoted sections within lists properly.
2457     Revision:
2458       muse--main--1.0--patch-39
2460     * lisp/muse-publish.el (muse-forward-paragraph): Respect end-list
2461       property.  This should make blockquoted sections within a list do the
2462       right thing.
2463       (muse-forward-dl-item, muse-forward-list-item): Adjust logic for new
2464       behavior of `muse-forward-paragraph'.
2466     modified files:
2467      ChangeLog.2006 lisp/muse-publish.el
2470 2006-03-02 05:00:07 GMT Michael Olson <mwolson@gnu.org> patch-38
2472     Summary:
2473       Fix problem when previous list item was nested.
2474     Revision:
2475       muse--main--1.0--patch-38
2477     * lisp/muse-publish.el (muse-publish-surround-text): Bind nested list
2478       indicator at the correct place.  This fixes an error where a previous
2479       list was nested but the current one isn't.  Thanks to Per B. Sederberg
2480       for the report.
2482     modified files:
2483      ChangeLog.2006 lisp/muse-publish.el
2486 2006-03-02 04:36:06 GMT Michael Olson <mwolson@gnu.org> patch-37
2488     Summary:
2489       Fix #5376: Changing muse-wiki-wikiword-regexp does not seem to affect anything.
2490     Revision:
2491       muse--main--1.0--patch-37
2493     * muse.texi (Implicit Links): Mention how to customize the WikiName
2494       recognition, and note that if you're setting this manually, you have to
2495       call some additional code.  This should fix #5376.  Also remove local
2496       variables section at end, since it seems pointless.
2498     modified files:
2499      ChangeLog.2006 muse.texi
2502 2006-03-02 04:25:37 GMT Michael Olson <mwolson@gnu.org> patch-36
2504     Summary:
2505       Fix #5325: nested formatting not working in HTML output.
2506     Revision:
2507       muse--main--1.0--patch-36
2509     * lisp/muse-publish.el (muse-publish-markup-word): Make nested emphasis
2510       work.  I'm a bit worried about possible double-escaping, though.
2511       Perhaps we should write the context to a text property and escape it
2512       later.  This should fix #5325.
2514     modified files:
2515      ChangeLog.2006 lisp/muse-publish.el
2518 2006-03-02 01:08:14 GMT Michael Olson <mwolson@gnu.org> patch-35
2520     Summary:
2521       Make paragraphs respect the end of a list or list item.
2522     Revision:
2523       muse--main--1.0--patch-35
2525     * lisp/muse-docbook.el (muse-docbook-markup-paragraph): If we are at the
2526       end of a list (or list item), back up.  This allows for a nice side
2527       effect when using indented sentences in between list items.
2528     
2529     * lisp/muse-html.el (muse-html-markup-paragraph): Ditto.
2530     
2531     * lisp/muse-xml.el (muse-xml-markup-paragraph): Ditto.
2532     
2533     * lisp/muse-publish.el (muse-publish-surround-dl): Make sure that end-ddt
2534       and end-item are marked up with end-list properties.
2536     modified files:
2537      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
2538      lisp/muse-publish.el lisp/muse-xml.el
2541 2006-03-01 21:00:41 GMT Michael Olson <mwolson@gnu.org> patch-34
2543     Summary:
2544       Make sure an initial term exists before publishing definition list.
2545     Revision:
2546       muse--main--1.0--patch-34
2548     * lisp/muse-publish.el (muse-publish-markup-list): Ensure that a term
2549       exists before publishing a definition list.
2551     modified files:
2552      ChangeLog.2006 lisp/muse-publish.el
2555 2006-03-01 20:21:08 GMT Michael Olson <mwolson@gnu.org> patch-33
2557     Summary:
2558       Add comments to nested list code.
2559     Revision:
2560       muse--main--1.0--patch-33
2562     * lisp/muse-publish.el (muse-publish-surround-dl)
2563       (muse-publish-surround-text, muse-forward-dl-item):
2564       (muse-forward-list-item): Add comments, since there were many
2565       intricacies that are probably not obvious to the casual reader.
2566       (muse-forward-dl-item): Remove no-op condition.
2568     modified files:
2569      ChangeLog.2006 lisp/muse-publish.el
2572 2006-03-01 19:51:45 GMT Michael Olson <mwolson@gnu.org> patch-32
2574     Summary:
2575       Make nested list items work when separated by one blank line.
2576     Revision:
2577       muse--main--1.0--patch-32
2579     * lisp/muse-publish.el (muse-publish-surround-dl): Use
2580       muse-forward-dl-item instead of muse-forward-list-item.  On second
2581       thought, don't unconditionally insert a newline, as that breaks some
2582       things.
2583       (muse-forward-dl-item): New function that moves forward to the next
2584       definition list item.  This was factored out from
2585       muse-forward-list-item, since it was getting too complex for my liking.
2586       (muse-forward-dl-item, muse-forward-list-item): Introduce concept of
2587       indented line, and skip past these if we have a blank line followed by
2588       an indented line.  "Indented" means "indented one past the current
2589       indentation level" here.  Remove some initial whitespace that was being
2590       overlooked before.
2592     modified files:
2593      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2596 2006-03-01 17:43:55 GMT Michael Olson <mwolson@gnu.org> patch-31
2598     Summary:
2599       Fix a couple of bugs in muse-wiki-resolve-project-page.
2600     Revision:
2601       muse--main--1.0--patch-31
2603     * lisp/muse-project.el (muse-project-applicable-styles): Use a slightly
2604       better algorithm for adding styles to a list.
2605     
2606     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Handle project more
2607       carefully.  This should fix one or two hard-to-explain bugs.
2609     modified files:
2610      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
2613 2006-03-01 17:24:23 GMT Michael Olson <mwolson@gnu.org> patch-30
2615     Summary:
2616       Fix another definition list edge case.
2617     Revision:
2618       muse--main--1.0--patch-30
2620     * lisp/muse-publish.el (muse-publish-surround-dl): Fix edge case where
2621       unordered list immediately follows definition list term.
2623     modified files:
2624      ChangeLog.2006 lisp/muse-publish.el
2627 2006-03-01 17:05:25 GMT Michael Olson <mwolson@gnu.org> patch-29
2629     Summary:
2630       Pass all current definition list test cases.
2631     Revision:
2632       muse--main--1.0--patch-29
2634     * lisp/muse-publish.el (muse-publish-surround-dl): Move correctly to next
2635       line if definition is not on the same line as the term.
2636       (muse-forward-list-item): Fix publishing incorrectness that occurred
2637       when a non-dl list follows a definition list.  Always move to the right
2638       place so as to prevent extra empty dd elements from being published.
2640     modified files:
2641      ChangeLog.2006 lisp/muse-publish.el
2644 2006-03-01 15:08:45 GMT Michael Olson <mwolson@gnu.org> patch-28
2646     Summary:
2647       Merge consecutive definition list terms properly.
2648     Revision:
2649       muse--main--1.0--patch-28
2651     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of status
2652       correctly.  This makes Muse merge several definition list items into
2653       one list.
2654       (muse-forward-list-item): Use simpler regexp for 'dl.
2655     
2656     * lisp/muse-regexps.el (muse-list-item-regexp): Make terms optional in
2657       definition lists, and make terms the 2nd matched text.
2659     modified files:
2660      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2663 2006-02-28 23:48:24 GMT Michael Olson <mwolson@gnu.org> patch-27
2665     Summary:
2666       Bookkeeping.
2667     Revision:
2668       muse--main--1.0--patch-27
2670     * AUTHORS: Update.
2671     
2672     * muse-colors.el, muse-mode.el: Credit contributions.
2674     modified files:
2675      AUTHORS ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2678 2006-02-28 23:37:26 GMT Michael Olson <mwolson@gnu.org> patch-26
2680     Summary:
2681       Merged from mwolson@gnu.org--2006-muse-el (patch 0-4)
2682     Revision:
2683       muse--main--1.0--patch-26
2685     Patches applied:
2686     
2687      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2688        Added ability to show inline images in the Emacs buffer.
2689     
2690      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2691        Added enhanced list item insertion.
2692     
2693     Detailed log:
2694     
2695     (Author: Per B. Sederberg <per@med.upenn.edu>)
2696     
2697     * lisp/muse-mode.el (muse-mode-map): Added new key binding to insert a
2698       list item.  New key mapping to toggle showing images.  Added a key
2699       mapping to insert a link to a file and modified the key map to insert a
2700       tag.
2701       (muse-on-blank-line): Helper function to determine if the point is on a
2702       line containing only blank spaces.
2703       (muse-insert-list-item): New interactive function to insert a new list
2704       item, taking into account the current list state.
2705       (muse-insert-relative-link-to-file): New function to insert a link to a
2706       file, relative to the default directory.
2707     
2708     * lisp/muse-colors.el (muse-inline-relative-to): Added custom directory
2709       for where to search for images to inline in the buffer.
2710       (muse-colors-inline-images): Added custom boolean field for whether to
2711       show inline images in the buffer.
2712       (muse-colors-toggle-inline-images): New function to toggle showing the
2713       inline images in the buffer.
2714       (muse-unhighlight-region): Now removes end-glyph text properties to
2715       support XEmacs.
2716       (muse-colors-resolve-image-file): New function to determine if a link
2717       is an image and whether the version of Emacs can support inline images.
2718       (muse-make-file-glyph): New function to create an image glyph if we are
2719       using XEmacs.
2720       (muse-colors-insert-image): New function to insert an image in an Emacs
2721       buffer.
2722       (muse-colors-explicit-link): Modified function to have the ability to
2723       insert an image instead of formatting the text of the link.
2725     modified files:
2726      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
2728     new patches:
2729      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--base-0
2730      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-1
2731      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
2732      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
2733      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-4
2736 2006-02-28 05:20:11 GMT Michael Olson <mwolson@gnu.org> patch-25
2738     Summary:
2739       Pass testcase for definition list and nested unordered list.
2740     Revision:
2741       muse--main--1.0--patch-25
2743     * lisp/muse-publish.el (muse-publish-surround-dl): Ensure that definition
2744       lists always have at least one entry.  This appears to do the right
2745       thing with a sample nested unordered list.
2747     modified files:
2748      ChangeLog.2006 lisp/muse-publish.el
2751 2006-02-28 05:09:33 GMT Michael Olson <mwolson@gnu.org> patch-24
2753     Summary:
2754       Some definition list fixes.
2755     Revision:
2756       muse--main--1.0--patch-24
2758     * lisp/muse-publish.el (muse-publish-markup-list): Make sure to insert
2759       markup for end of list using the `muse-insert-markup-end-list'
2760       function.  Handle list items nested inside of a definition list.
2762     modified files:
2763      ChangeLog.2006 lisp/muse-publish.el
2766 2006-02-28 04:43:15 GMT Michael Olson <mwolson@gnu.org> patch-23
2768     Summary:
2769       Fix another wrapped list item edge case.
2770     Revision:
2771       muse--main--1.0--patch-23
2773     * lisp/muse-publish.el (muse-publish-surround-text): Stop removing
2774       indentation in a region when we encounter any list items.  This should
2775       fix another wrapped list item edge case.  Thanks to Per B. Sederberg
2776       for the report.
2778     modified files:
2779      ChangeLog.2006 lisp/muse-publish.el
2782 2006-02-26 18:26:05 GMT Michael Olson <mwolson@gnu.org> patch-22
2784     Summary:
2785       Fix comment in Debian packaging.
2786     Revision:
2787       muse--main--1.0--patch-22
2789     * debian/emacsen-remove: Fix comment.
2791     modified files:
2792      ChangeLog.2006 debian/emacsen-remove
2795 2006-02-24 03:23:49 GMT Michael Olson <mwolson@gnu.org> patch-21
2797     Summary:
2798       muse-blosxom: Fix order of #tags line in header.
2799     Revision:
2800       muse--main--1.0--patch-21
2802     * lisp/muse-blosxom.el (muse-blosxom-header): Put #tags line after title,
2803       rather than before it.  Thanks to bkhl for the heads up.
2805     modified files:
2806      ChangeLog.2006 lisp/muse-blosxom.el
2809 2006-02-23 03:33:03 GMT Michael Olson <mwolson@gnu.org> patch-20
2811     Summary:
2812       muse-blosxom: Add ability to use tags in entries.
2813     Revision:
2814       muse--main--1.0--patch-20
2816     * lisp/muse-blosxom.el (muse-blosxom-header): If we are using tags,
2817       publish them.
2818       (muse-blosxom-use-tags): New option that specifies whether we are using
2819       tags.
2820       (muse-blosxom-new-entry): If using tags, read tags until the user hits
2821       RET without entering one.
2823     modified files:
2824      ChangeLog.2006 lisp/muse-blosxom.el
2827 2006-02-23 03:23:51 GMT Michael Olson <mwolson@gnu.org> patch-19
2829     Summary:
2830       Fix backtrace when publishing unsaved files.
2831     Revision:
2832       muse--main--1.0--patch-19
2834     * lisp/muse-publish.el (muse-publish-file): Detect case where we are
2835       trying to publish a file that has not been saved, and give an
2836       explanation to the user.
2838     modified files:
2839      ChangeLog.2006 lisp/muse-publish.el
2842 2006-02-21 23:19:36 GMT Michael Olson <mwolson@gnu.org> patch-18
2844     Summary:
2845       muse-texinfo: Fix link suffix.
2846     Revision:
2847       muse--main--1.0--patch-18
2849     * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf
2850       styles.  This should fix a bug where links in published info files use
2851       an incorrect extension.  Thanks to Hans Ekbrand for the report!
2853     modified files:
2854      ChangeLog.2006 lisp/muse-texinfo.el
2857 2006-02-16 21:54:11 GMT Michael Olson <mwolson@gnu.org> patch-17
2859     Summary:
2860       Fix prompting of non-Muse buffers before publishing.
2861     Revision:
2862       muse--main--1.0--patch-17
2864     * lisp/muse-project.el (muse-project-of-file): Apply fix from René
2865       Stadler to ignore buffers that have no associated filename.  This fixes
2866       an annoyance where Muse prompts to save BBDB and ERC buffers before
2867       publishing.
2869     modified files:
2870      AUTHORS ChangeLog.2006 lisp/muse-project.el
2873 2006-02-16 04:43:35 GMT Michael Olson <mwolson@gnu.org> patch-16
2875     Summary:
2876       Fix wrapped nested list item edge case.
2877     Revision:
2878       muse--main--1.0--patch-16
2880     * lisp/muse-publish.el (muse-publish-markup-regexps): Remove 2300 rule,
2881       since it is no longer needed.  Tweak 2200 regexp to cover 2300's use
2882       case.
2883       (muse-publish-surround-text): Tweak prefix for muse-list-item-regexp.
2884       (muse-list-item-type): Handle the new change to muse-list-item-regexp.
2885     
2886     * lisp/muse-regexps.el (muse-list-item-regexp): Explicitly require
2887       exactly one space character in front of a unnumbered or numbered list.
2888       This should make it easier to match every list instance, since
2889       definition lists can now be handled more nicely in
2890       muse-publish-markup-regexps.  This also has the effect of fixing a
2891       wrapped nested list item edge case.
2893     modified files:
2894      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2897 2006-02-16 03:04:20 GMT Michael Olson <mwolson@gnu.org> patch-15
2899     Summary:
2900       Fix edge case in muse-wiki-publish-pretty-title.
2901     Revision:
2902       muse--main--1.0--patch-15
2904     * lisp/muse-wiki.el (muse-wiki-publish-pretty-title): If for some reason
2905       the document does not have a valid title, use the empty string.
2907     modified files:
2908      ChangeLog.2006 lisp/muse-wiki.el
2911 2006-02-14 06:35:02 GMT Michael Olson <mwolson@gnu.org> patch-14
2913     Summary:
2914       Use debian/compat to determine debhelper compat level.
2915     Revision:
2916       muse--main--1.0--patch-14
2918     * debian/compat: New file that sets the debhelper compatibility level to
2919       4.
2920     
2921     * debian/rules: Remove DH_COMPAT line.
2923     new files:
2924      debian/.arch-ids/compat.id debian/compat
2926     modified files:
2927      ChangeLog.2006 debian/rules
2930 2006-02-13 04:50:57 GMT Michael Olson <mwolson@gnu.org> patch-13
2932     Summary:
2933       Fix a couple of table-publishing edge cases.
2934     Revision:
2935       muse--main--1.0--patch-13
2937     * lisp/muse-publish.el (muse-publish-markup-regexps): Fix a table
2938       publishing error that occurs when a table line is the last thing in a
2939       document.  Thanks to cymacs for the report and suggested fix.
2940       (muse-publish-table-fields): Skip initial blank lines, and don't remove
2941       them.
2942     
2943     * lisp/muse-docbook.el (muse-docbook-markup-strings): Don't put a newline
2944       at the end of the 'end-table markup string.
2945     
2946     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
2947     
2948     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
2949     
2950     * lisp/muse-xml-common.el (muse-xml-markup-table): Always insert a
2951       newline at the end of the table.  This should fix a problem with
2952       paragraphs after tables not being published as such.  Thanks to cymacs
2953       for the report.
2954     
2955     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Don't use
2956       muse-insert-markup to insert a trailing newline.
2958     modified files:
2959      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
2960      lisp/muse-publish.el lisp/muse-texinfo.el
2961      lisp/muse-xml-common.el lisp/muse-xml.el
2964 2006-02-12 22:56:27 GMT Michael Olson <mwolson@gnu.org> patch-12
2966     Summary:
2967       Add ChangeLog for 2006 and move previous ChangeLog for 2005.
2968     Revision:
2969       muse--main--1.0--patch-12
2972     new files:
2973      .arch-ids/ChangeLog.2006.id ChangeLog.2006
2975     renamed files:
2976      .arch-ids/ChangeLog.id
2977        ==> .arch-ids/ChangeLog.2005.id
2978      ChangeLog
2979        ==> ChangeLog.2005
2982 2006-02-12 22:53:48 GMT Michael Olson <mwolson@gnu.org> patch-11
2984     Summary:
2985       Make muse-journal work with whole-document escaping.
2986     Revision:
2987       muse--main--1.0--patch-11
2989     * examples/mwolson/templates/*: Change "Published by Muse" to "Published
2990       by Emacs Muse" so that muse-journal does not get confused.
2991     
2992     * lisp/muse-journal.el (muse-journal-html-munge-buffer):
2993       (muse-journal-latex-munge-buffer, muse-journal-rss-munge-buffer): Adapt
2994       for whole-buffer escaping.  Thanks to mondoshawan for the report.
2995       (muse-journal-rss-munge-buffer): Display a warning if someone does not
2996       have "Page published by Emacs Muse (begins|ends) here" in their header
2997       or footer, since muse-journal needs this in order to determine where
2998       entries begin and end.
3000     modified files:
3001      examples/mwolson/templates/footer.html
3002      examples/mwolson/templates/generic-footer.html
3003      examples/mwolson/templates/generic-header.html
3004      examples/mwolson/templates/header.html
3005      examples/mwolson/templates/header.tex lisp/muse-journal.el
3008 2006-02-08 03:00:07 GMT Michael Olson <mwolson@gnu.org> patch-10
3010     Summary:
3011       Get simple test case for definition lists to work.
3012     Revision:
3013       muse--main--1.0--patch-10
3015     * lisp/muse-publish.el (muse-publish-surround-dl): Make simple test case
3016       publish properly.
3017       (muse-forward-list-item): Fix edge case.
3019     modified files:
3020      lisp/muse-publish.el
3023 2006-01-28 02:47:07 GMT Michael Olson <mwolson@gnu.org> patch-9
3025     Summary:
3026       Add documentation to some publishing functions.
3027     Revision:
3028       muse--main--1.0--patch-9
3030     * lisp/muse-publish.el (muse-publish-mark-read-only)
3031       (muse-publish-mark-noemphasis): Add documentation.
3033     modified files:
3034      lisp/muse-publish.el
3037 2006-01-28 02:42:03 GMT Michael Olson <mwolson@gnu.org> patch-8
3039     Summary:
3040       Fix an error with `custom-quote'.
3041     Revision:
3042       muse--main--1.0--patch-8
3044     * lisp/muse-project.el: Require 'cus-edit, since that is where
3045       `custom-quote' is defined.
3046     
3047     * muse.texi: Use copyright symbol.
3049     modified files:
3050      lisp/muse-project.el muse.texi
3053 2006-01-25 18:27:53 GMT Michael Olson <mwolson@gnu.org> patch-7
3055     Summary:
3056       muse-registry: update from author.
3057     Revision:
3058       muse--main--1.0--patch-7
3060     * lisp/muse-registry.el: Update to newest version from author.
3061       Re-tabify.
3063     modified files:
3064      lisp/muse-registry.el
3067 2006-01-21 19:26:57 GMT Michael Olson <mwolson@gnu.org> patch-6
3069     Summary:
3070       muse-latex: Handle double-quote edge case.
3071     Revision:
3072       muse--main--1.0--patch-6
3074     * lisp/muse-latex.el (muse-latex-fixup-dquotes): Handle case when a quote
3075       character begins the buffer.
3077     modified files:
3078      lisp/muse-latex.el
3081 2006-01-21 18:47:33 GMT Michael Olson <mwolson@gnu.org> patch-5
3083     Summary:
3084       Allow beginning and ending empty elements in tables.
3085     Revision:
3086       muse--main--1.0--patch-5
3088     * lisp/muse-regexps.el (muse-table-field-regexp): Allow there to be no
3089       whitespace after the field if we're at the end of a line.
3090       (muse-table-line-regexp): Allow the table to start with a "|".  The
3091       resulting initial empty cell isn't yet thrown away like it should be.
3093     modified files:
3094      lisp/muse-regexps.el
3097 2006-01-21 02:45:36 GMT Michael Olson <mwolson@gnu.org> patch-4
3099     Summary:
3100       muse-latex: Use \url to publish bare URLs.
3101     Revision:
3102       muse--main--1.0--patch-4
3104     * lisp/muse-latex.el (muse-latex-markup-strings): Use \url instead of
3105       \href for bare URLs.  Thanks to Na Li for the suggestion!
3107     modified files:
3108      lisp/muse-latex.el
3111 2006-01-20 16:22:04 GMT Michael Olson <mwolson@gnu.org> patch-3
3113     Summary:
3114       Create parents of output directories.
3115     Revision:
3116       muse--main--1.0--patch-3
3118     * lisp/muse-project.el (muse-project-publish-file): Create parent
3119       directories as well, if the output directory does not exist.  This can
3120       happen when we have nested directories in a project.
3122     modified files:
3123      lisp/muse-project.el
3126 2006-01-20 15:54:21 GMT Michael Olson <mwolson@gnu.org> patch-2
3128     Summary:
3129       Pick a better default if publishing with more than one style.
3130     Revision:
3131       muse--main--1.0--patch-2
3133     * lisp/muse-project.el (muse-project-applicable-styles): Make sure that
3134       the list we return is in the right order.  That way, if more than one
3135       publishing rule matches a link, the first one is used, rather than the
3136       last.
3138     modified files:
3139      lisp/muse-project.el
3142 2006-01-19 15:55:19 GMT Michael Olson <mwolson@gnu.org> patch-1
3144     Summary:
3145       Oops, committed to the wrong archive.
3146     Revision:
3147       muse--main--1.0--patch-1
3149     Patches applied:
3150     
3151      * mwolson@gnu.org--2005/muse--main--1.0--patch-356
3152        Debian fixups.
3153     
3154      * mwolson@gnu.org--2005/muse--main--1.0--patch-357
3155        Another Debian fix.
3157     modified files:
3158      ChangeLog debian/emacsen-startup
3160     renamed files:
3161      debian/.arch-ids/NEWS.Debian.id
3162        ==> debian/.arch-ids/NEWS.id
3163      debian/NEWS.Debian
3164        ==> debian/NEWS
3166     new patches:
3167      mwolson@gnu.org--2005/muse--main--1.0--patch-356
3168      mwolson@gnu.org--2005/muse--main--1.0--patch-357
3171 2006-01-17 06:28:50 GMT Michael Olson <mwolson@gnu.org> base-0
3173     Summary:
3174       tag of mwolson@gnu.org--2005/muse--main--1.0--patch-355
3175     Revision:
3176       muse--main--1.0--base-0
3178     See ChangeLog.2005 for earlier changes.
3180     new patches:
3181      ajk@iu.edu--2005/muse--ajk--1.0--base-0
3182      ajk@iu.edu--2005/muse--ajk--1.0--patch-1
3183      ajk@iu.edu--2005/muse--ajk--1.0--patch-2
3184      ajk@iu.edu--2005/muse--ajk--1.0--patch-3
3185      ajk@iu.edu--2005/muse--ajk--1.0--patch-4
3186      ajk@iu.edu--2005/muse--ajk--1.0--patch-5
3187      ajk@iu.edu--2005/muse--ajk--1.0--patch-6
3188      ajk@iu.edu--2005/muse--ajk--1.0--patch-7
3189      ajk@iu.edu--2005/muse--ajk--1.0--patch-8
3190      ajk@iu.edu--2005/muse--ajk--1.0--patch-9
3191      ajk@iu.edu--2005/muse--main--1.0--base-0
3192      ajk@iu.edu--2005/muse--main--1.0--patch-1
3193      ajk@iu.edu--2005/muse--main--1.0--patch-2
3194      davidsmith@acm.org--2005/muse--devo--1.0--base-0
3195      davidsmith@acm.org--main/muse--devo--1.0--base-0
3196      davidsmith@acm.org--main/muse--devo--1.0--patch-1
3197      davidsmith@acm.org--main/muse--devo--1.0--patch-2
3198      hodique@lifl.fr--2005/muse--yh--1.0--base-0
3199      hodique@lifl.fr--2005/muse--yh--1.0--patch-1
3200      hodique@lifl.fr--2005/muse--yh--1.0--patch-2
3201      hodique@lifl.fr--2005/muse--yh--1.0--patch-3
3202      hodique@lifl.fr--2005/muse--yh--1.0--patch-4
3203      hodique@lifl.fr--2005/muse--yh--1.0--patch-5
3204      hodique@lifl.fr--2005/muse--yh--1.0--patch-6
3205      hodique@lifl.fr--2005/muse--yh--1.0--patch-7
3206      hodique@lifl.fr--2005/muse--yh--1.0--patch-8
3207      hodique@lifl.fr--2005/muse--yh--1.0--patch-9
3208      hodique@lifl.fr--2005/muse--yh--1.0--patch-10
3209      hodique@lifl.fr--2005/muse--yh--1.0--patch-11
3210      hodique@lifl.fr--2005/muse--yh--1.0--patch-12
3211      hodique@lifl.fr--2005/muse--yh--1.0--patch-13
3212      hodique@lifl.fr--2005/muse--yh--1.0--patch-14
3213      hodique@lifl.fr--2005/muse--yh--1.0--patch-15
3214      hodique@lifl.fr--2005/muse--yh--1.0--patch-16
3215      hodique@lifl.fr--2005/muse--yh--1.0--patch-17
3216      hodique@lifl.fr--2005/muse--yh--1.0--patch-18
3217      hodique@lifl.fr--2005/muse--yh--1.0--patch-19
3218      hodique@lifl.fr--2005/muse--yh--1.0--patch-20
3219      hodique@lifl.fr--2005/muse--yh--1.0--patch-21
3220      hodique@lifl.fr--2005/muse--yh--1.0--patch-22
3221      hodique@lifl.fr--2005/muse--yh--1.0--patch-23
3222      hodique@lifl.fr--2005/muse--yh--1.0--patch-24
3223      hodique@lifl.fr--2005/muse--yh--1.0--patch-25
3224      hodique@lifl.fr--2005/muse--yh--1.0--patch-26
3225      hodique@lifl.fr--2005/muse--yh--1.0--patch-27
3226      hodique@lifl.fr--2005/muse--yh--1.0--patch-28
3227      hodique@lifl.fr--2005/muse--yh--1.0--patch-29
3228      hodique@lifl.fr--2005/muse--yh--1.0--patch-30
3229      hodique@lifl.fr--2005/muse--yh--1.0--patch-31
3230      hodique@lifl.fr--2005/muse--yh--1.0--patch-32
3231      hodique@lifl.fr--2005/muse--yh--1.0--patch-33
3232      hodique@lifl.fr--2005/muse--yh--1.0--patch-34
3233      hodique@lifl.fr--2005/muse--yh--1.0--patch-35
3234      hodique@lifl.fr--2005/muse--yh--1.0--patch-36
3235      hodique@lifl.fr--2005/muse--yh--1.0--patch-37
3236      hodique@lifl.fr--2005/muse--yh--1.0--patch-38
3237      hodique@lifl.fr--2005/muse--yh--1.0--patch-39
3238      hodique@lifl.fr--2005/muse--yh--1.0--patch-40
3239      hodique@lifl.fr--2005/muse--yh--1.0--patch-41
3240      hodique@lifl.fr--2005/muse--yh--1.0--patch-42
3241      hodique@lifl.fr--2005/muse--yh--1.0--patch-43
3242      hodique@lifl.fr--2005/muse--yh--1.0--patch-44
3243      hodique@lifl.fr--2005/muse--yh--1.0--patch-45
3244      jeho@jeho.org--2005/muse--jeho--1.0--base-0
3245      jeho@jeho.org--2005/muse--jeho--1.0--patch-1
3246      jeho@jeho.org--2005/muse--jeho--1.0--patch-2
3247      jeho@jeho.org--2005/muse--jeho--1.0--patch-3
3248      jeho@jeho.org--2005/muse--jeho--1.0--patch-4
3249      jeho@jeho.org--2005/muse--jeho--1.0--patch-5
3250      jeho@jeho.org--2005/muse--jeho--1.0--patch-6
3251      jeho@jeho.org--2005/muse--jeho--1.0--patch-7
3252      jeho@jeho.org--2005/muse--jeho--1.0--patch-8
3253      jeho@jeho.org--2005/muse--jeho--1.0--patch-9
3254      jeho@jeho.org--2005/muse--jeho--1.0--patch-10
3255      jeho@jeho.org--2005/muse--jeho--1.0--patch-11
3256      jeho@jeho.org--2005/muse--jeho--1.0--patch-12
3257      jeho@jeho.org--2005/muse--jeho--1.0--patch-13
3258      jeho@jeho.org--2005/muse--jeho--1.0--patch-14
3259      jeho@jeho.org--2005/muse--jeho--1.0--patch-15
3260      jeho@jeho.org--2005/muse--jeho--1.0--patch-16
3261      jeho@jeho.org--2005/muse--jeho--1.0--patch-17
3262      jeho@jeho.org--2005/muse--jeho--1.0--patch-18
3263      jeho@jeho.org--2005/muse--jeho--1.0--patch-19
3264      jeho@jeho.org--2005/muse--jeho--1.0--patch-20
3265      jeho@jeho.org--2005/muse--jeho--1.0--patch-21
3266      john@wjsullivan.net--2006/muse--johnsu01--0--base-0
3267      john@wjsullivan.net--2006/muse--johnsu01--0--patch-1
3268      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--base-0
3269      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-1
3270      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-2
3271      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-1
3272      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-2
3273      mwolson@gnu.org--2005/muse--main--1.0--base-0
3274      mwolson@gnu.org--2005/muse--main--1.0--patch-1
3275      mwolson@gnu.org--2005/muse--main--1.0--patch-2
3276      mwolson@gnu.org--2005/muse--main--1.0--patch-3
3277      mwolson@gnu.org--2005/muse--main--1.0--patch-4
3278      mwolson@gnu.org--2005/muse--main--1.0--patch-5
3279      mwolson@gnu.org--2005/muse--main--1.0--patch-6
3280      mwolson@gnu.org--2005/muse--main--1.0--patch-7
3281      mwolson@gnu.org--2005/muse--main--1.0--patch-8
3282      mwolson@gnu.org--2005/muse--main--1.0--patch-9
3283      mwolson@gnu.org--2005/muse--main--1.0--patch-10
3284      mwolson@gnu.org--2005/muse--main--1.0--patch-11
3285      mwolson@gnu.org--2005/muse--main--1.0--patch-12
3286      mwolson@gnu.org--2005/muse--main--1.0--patch-13
3287      mwolson@gnu.org--2005/muse--main--1.0--patch-14
3288      mwolson@gnu.org--2005/muse--main--1.0--patch-15
3289      mwolson@gnu.org--2005/muse--main--1.0--patch-16
3290      mwolson@gnu.org--2005/muse--main--1.0--patch-17
3291      mwolson@gnu.org--2005/muse--main--1.0--patch-18
3292      mwolson@gnu.org--2005/muse--main--1.0--patch-19
3293      mwolson@gnu.org--2005/muse--main--1.0--patch-20
3294      mwolson@gnu.org--2005/muse--main--1.0--patch-21
3295      mwolson@gnu.org--2005/muse--main--1.0--patch-22
3296      mwolson@gnu.org--2005/muse--main--1.0--patch-23
3297      mwolson@gnu.org--2005/muse--main--1.0--patch-24
3298      mwolson@gnu.org--2005/muse--main--1.0--patch-25
3299      mwolson@gnu.org--2005/muse--main--1.0--patch-26
3300      mwolson@gnu.org--2005/muse--main--1.0--patch-27
3301      mwolson@gnu.org--2005/muse--main--1.0--patch-28
3302      mwolson@gnu.org--2005/muse--main--1.0--patch-29
3303      mwolson@gnu.org--2005/muse--main--1.0--patch-30
3304      mwolson@gnu.org--2005/muse--main--1.0--patch-31
3305      mwolson@gnu.org--2005/muse--main--1.0--patch-32
3306      mwolson@gnu.org--2005/muse--main--1.0--patch-33
3307      mwolson@gnu.org--2005/muse--main--1.0--patch-34
3308      mwolson@gnu.org--2005/muse--main--1.0--patch-35
3309      mwolson@gnu.org--2005/muse--main--1.0--patch-36
3310      mwolson@gnu.org--2005/muse--main--1.0--patch-37
3311      mwolson@gnu.org--2005/muse--main--1.0--patch-38
3312      mwolson@gnu.org--2005/muse--main--1.0--patch-39
3313      mwolson@gnu.org--2005/muse--main--1.0--patch-40
3314      mwolson@gnu.org--2005/muse--main--1.0--patch-41
3315      mwolson@gnu.org--2005/muse--main--1.0--patch-42
3316      mwolson@gnu.org--2005/muse--main--1.0--patch-43
3317      mwolson@gnu.org--2005/muse--main--1.0--patch-44
3318      mwolson@gnu.org--2005/muse--main--1.0--patch-45
3319      mwolson@gnu.org--2005/muse--main--1.0--patch-46
3320      mwolson@gnu.org--2005/muse--main--1.0--patch-47
3321      mwolson@gnu.org--2005/muse--main--1.0--patch-48
3322      mwolson@gnu.org--2005/muse--main--1.0--patch-49
3323      mwolson@gnu.org--2005/muse--main--1.0--patch-50
3324      mwolson@gnu.org--2005/muse--main--1.0--patch-51
3325      mwolson@gnu.org--2005/muse--main--1.0--patch-52
3326      mwolson@gnu.org--2005/muse--main--1.0--patch-53
3327      mwolson@gnu.org--2005/muse--main--1.0--patch-54
3328      mwolson@gnu.org--2005/muse--main--1.0--patch-55
3329      mwolson@gnu.org--2005/muse--main--1.0--patch-56
3330      mwolson@gnu.org--2005/muse--main--1.0--patch-57
3331      mwolson@gnu.org--2005/muse--main--1.0--patch-58
3332      mwolson@gnu.org--2005/muse--main--1.0--patch-59
3333      mwolson@gnu.org--2005/muse--main--1.0--patch-60
3334      mwolson@gnu.org--2005/muse--main--1.0--patch-61
3335      mwolson@gnu.org--2005/muse--main--1.0--patch-62
3336      mwolson@gnu.org--2005/muse--main--1.0--patch-63
3337      mwolson@gnu.org--2005/muse--main--1.0--patch-64
3338      mwolson@gnu.org--2005/muse--main--1.0--patch-65
3339      mwolson@gnu.org--2005/muse--main--1.0--patch-66
3340      mwolson@gnu.org--2005/muse--main--1.0--patch-67
3341      mwolson@gnu.org--2005/muse--main--1.0--patch-68
3342      mwolson@gnu.org--2005/muse--main--1.0--patch-69
3343      mwolson@gnu.org--2005/muse--main--1.0--patch-70
3344      mwolson@gnu.org--2005/muse--main--1.0--patch-71
3345      mwolson@gnu.org--2005/muse--main--1.0--patch-72
3346      mwolson@gnu.org--2005/muse--main--1.0--patch-73
3347      mwolson@gnu.org--2005/muse--main--1.0--patch-74
3348      mwolson@gnu.org--2005/muse--main--1.0--patch-75
3349      mwolson@gnu.org--2005/muse--main--1.0--patch-76
3350      mwolson@gnu.org--2005/muse--main--1.0--patch-77
3351      mwolson@gnu.org--2005/muse--main--1.0--patch-78
3352      mwolson@gnu.org--2005/muse--main--1.0--patch-79
3353      mwolson@gnu.org--2005/muse--main--1.0--patch-80
3354      mwolson@gnu.org--2005/muse--main--1.0--patch-81
3355      mwolson@gnu.org--2005/muse--main--1.0--patch-82
3356      mwolson@gnu.org--2005/muse--main--1.0--patch-83
3357      mwolson@gnu.org--2005/muse--main--1.0--patch-84
3358      mwolson@gnu.org--2005/muse--main--1.0--patch-85
3359      mwolson@gnu.org--2005/muse--main--1.0--patch-86
3360      mwolson@gnu.org--2005/muse--main--1.0--patch-87
3361      mwolson@gnu.org--2005/muse--main--1.0--patch-88
3362      mwolson@gnu.org--2005/muse--main--1.0--patch-89
3363      mwolson@gnu.org--2005/muse--main--1.0--patch-90
3364      mwolson@gnu.org--2005/muse--main--1.0--patch-91
3365      mwolson@gnu.org--2005/muse--main--1.0--patch-92
3366      mwolson@gnu.org--2005/muse--main--1.0--patch-93
3367      mwolson@gnu.org--2005/muse--main--1.0--patch-94
3368      mwolson@gnu.org--2005/muse--main--1.0--patch-95
3369      mwolson@gnu.org--2005/muse--main--1.0--patch-96
3370      mwolson@gnu.org--2005/muse--main--1.0--patch-97
3371      mwolson@gnu.org--2005/muse--main--1.0--patch-98
3372      mwolson@gnu.org--2005/muse--main--1.0--patch-99
3373      mwolson@gnu.org--2005/muse--main--1.0--patch-100
3374      mwolson@gnu.org--2005/muse--main--1.0--patch-101
3375      mwolson@gnu.org--2005/muse--main--1.0--patch-102
3376      mwolson@gnu.org--2005/muse--main--1.0--patch-103
3377      mwolson@gnu.org--2005/muse--main--1.0--patch-104
3378      mwolson@gnu.org--2005/muse--main--1.0--patch-105
3379      mwolson@gnu.org--2005/muse--main--1.0--patch-106
3380      mwolson@gnu.org--2005/muse--main--1.0--patch-107
3381      mwolson@gnu.org--2005/muse--main--1.0--patch-108
3382      mwolson@gnu.org--2005/muse--main--1.0--patch-109
3383      mwolson@gnu.org--2005/muse--main--1.0--patch-110
3384      mwolson@gnu.org--2005/muse--main--1.0--patch-111
3385      mwolson@gnu.org--2005/muse--main--1.0--patch-112
3386      mwolson@gnu.org--2005/muse--main--1.0--patch-113
3387      mwolson@gnu.org--2005/muse--main--1.0--patch-114
3388      mwolson@gnu.org--2005/muse--main--1.0--patch-115
3389      mwolson@gnu.org--2005/muse--main--1.0--patch-116
3390      mwolson@gnu.org--2005/muse--main--1.0--patch-117
3391      mwolson@gnu.org--2005/muse--main--1.0--patch-118
3392      mwolson@gnu.org--2005/muse--main--1.0--patch-119
3393      mwolson@gnu.org--2005/muse--main--1.0--patch-120
3394      mwolson@gnu.org--2005/muse--main--1.0--patch-121
3395      mwolson@gnu.org--2005/muse--main--1.0--patch-122
3396      mwolson@gnu.org--2005/muse--main--1.0--patch-123
3397      mwolson@gnu.org--2005/muse--main--1.0--patch-124
3398      mwolson@gnu.org--2005/muse--main--1.0--patch-125
3399      mwolson@gnu.org--2005/muse--main--1.0--patch-126
3400      mwolson@gnu.org--2005/muse--main--1.0--patch-127
3401      mwolson@gnu.org--2005/muse--main--1.0--patch-128
3402      mwolson@gnu.org--2005/muse--main--1.0--patch-129
3403      mwolson@gnu.org--2005/muse--main--1.0--patch-130
3404      mwolson@gnu.org--2005/muse--main--1.0--patch-131
3405      mwolson@gnu.org--2005/muse--main--1.0--patch-132
3406      mwolson@gnu.org--2005/muse--main--1.0--patch-133
3407      mwolson@gnu.org--2005/muse--main--1.0--patch-134
3408      mwolson@gnu.org--2005/muse--main--1.0--patch-135
3409      mwolson@gnu.org--2005/muse--main--1.0--patch-136
3410      mwolson@gnu.org--2005/muse--main--1.0--patch-137
3411      mwolson@gnu.org--2005/muse--main--1.0--patch-138
3412      mwolson@gnu.org--2005/muse--main--1.0--patch-139
3413      mwolson@gnu.org--2005/muse--main--1.0--patch-140
3414      mwolson@gnu.org--2005/muse--main--1.0--patch-141
3415      mwolson@gnu.org--2005/muse--main--1.0--patch-142
3416      mwolson@gnu.org--2005/muse--main--1.0--patch-143
3417      mwolson@gnu.org--2005/muse--main--1.0--patch-144
3418      mwolson@gnu.org--2005/muse--main--1.0--patch-145
3419      mwolson@gnu.org--2005/muse--main--1.0--patch-146
3420      mwolson@gnu.org--2005/muse--main--1.0--patch-147
3421      mwolson@gnu.org--2005/muse--main--1.0--patch-148
3422      mwolson@gnu.org--2005/muse--main--1.0--patch-149
3423      mwolson@gnu.org--2005/muse--main--1.0--patch-150
3424      mwolson@gnu.org--2005/muse--main--1.0--patch-151
3425      mwolson@gnu.org--2005/muse--main--1.0--patch-152
3426      mwolson@gnu.org--2005/muse--main--1.0--patch-153
3427      mwolson@gnu.org--2005/muse--main--1.0--patch-154
3428      mwolson@gnu.org--2005/muse--main--1.0--patch-155
3429      mwolson@gnu.org--2005/muse--main--1.0--patch-156
3430      mwolson@gnu.org--2005/muse--main--1.0--patch-157
3431      mwolson@gnu.org--2005/muse--main--1.0--patch-158
3432      mwolson@gnu.org--2005/muse--main--1.0--patch-159
3433      mwolson@gnu.org--2005/muse--main--1.0--patch-160
3434      mwolson@gnu.org--2005/muse--main--1.0--patch-161
3435      mwolson@gnu.org--2005/muse--main--1.0--patch-162
3436      mwolson@gnu.org--2005/muse--main--1.0--patch-163
3437      mwolson@gnu.org--2005/muse--main--1.0--patch-164
3438      mwolson@gnu.org--2005/muse--main--1.0--patch-165
3439      mwolson@gnu.org--2005/muse--main--1.0--patch-166
3440      mwolson@gnu.org--2005/muse--main--1.0--patch-167
3441      mwolson@gnu.org--2005/muse--main--1.0--patch-168
3442      mwolson@gnu.org--2005/muse--main--1.0--patch-169
3443      mwolson@gnu.org--2005/muse--main--1.0--patch-170
3444      mwolson@gnu.org--2005/muse--main--1.0--patch-171
3445      mwolson@gnu.org--2005/muse--main--1.0--patch-172
3446      mwolson@gnu.org--2005/muse--main--1.0--patch-173
3447      mwolson@gnu.org--2005/muse--main--1.0--patch-174
3448      mwolson@gnu.org--2005/muse--main--1.0--patch-175
3449      mwolson@gnu.org--2005/muse--main--1.0--patch-176
3450      mwolson@gnu.org--2005/muse--main--1.0--patch-177
3451      mwolson@gnu.org--2005/muse--main--1.0--patch-178
3452      mwolson@gnu.org--2005/muse--main--1.0--patch-179
3453      mwolson@gnu.org--2005/muse--main--1.0--patch-180
3454      mwolson@gnu.org--2005/muse--main--1.0--patch-181
3455      mwolson@gnu.org--2005/muse--main--1.0--patch-182
3456      mwolson@gnu.org--2005/muse--main--1.0--patch-183
3457      mwolson@gnu.org--2005/muse--main--1.0--patch-184
3458      mwolson@gnu.org--2005/muse--main--1.0--patch-185
3459      mwolson@gnu.org--2005/muse--main--1.0--patch-186
3460      mwolson@gnu.org--2005/muse--main--1.0--patch-187
3461      mwolson@gnu.org--2005/muse--main--1.0--patch-188
3462      mwolson@gnu.org--2005/muse--main--1.0--patch-189
3463      mwolson@gnu.org--2005/muse--main--1.0--patch-190
3464      mwolson@gnu.org--2005/muse--main--1.0--patch-191
3465      mwolson@gnu.org--2005/muse--main--1.0--patch-192
3466      mwolson@gnu.org--2005/muse--main--1.0--patch-193
3467      mwolson@gnu.org--2005/muse--main--1.0--patch-194
3468      mwolson@gnu.org--2005/muse--main--1.0--patch-195
3469      mwolson@gnu.org--2005/muse--main--1.0--patch-196
3470      mwolson@gnu.org--2005/muse--main--1.0--patch-197
3471      mwolson@gnu.org--2005/muse--main--1.0--patch-198
3472      mwolson@gnu.org--2005/muse--main--1.0--patch-199
3473      mwolson@gnu.org--2005/muse--main--1.0--patch-200
3474      mwolson@gnu.org--2005/muse--main--1.0--patch-201
3475      mwolson@gnu.org--2005/muse--main--1.0--patch-202
3476      mwolson@gnu.org--2005/muse--main--1.0--patch-203
3477      mwolson@gnu.org--2005/muse--main--1.0--patch-204
3478      mwolson@gnu.org--2005/muse--main--1.0--patch-205
3479      mwolson@gnu.org--2005/muse--main--1.0--patch-206
3480      mwolson@gnu.org--2005/muse--main--1.0--patch-207
3481      mwolson@gnu.org--2005/muse--main--1.0--patch-208
3482      mwolson@gnu.org--2005/muse--main--1.0--patch-209
3483      mwolson@gnu.org--2005/muse--main--1.0--patch-210
3484      mwolson@gnu.org--2005/muse--main--1.0--patch-211
3485      mwolson@gnu.org--2005/muse--main--1.0--patch-212
3486      mwolson@gnu.org--2005/muse--main--1.0--patch-213
3487      mwolson@gnu.org--2005/muse--main--1.0--patch-214
3488      mwolson@gnu.org--2005/muse--main--1.0--patch-215
3489      mwolson@gnu.org--2005/muse--main--1.0--patch-216
3490      mwolson@gnu.org--2005/muse--main--1.0--patch-217
3491      mwolson@gnu.org--2005/muse--main--1.0--patch-218
3492      mwolson@gnu.org--2005/muse--main--1.0--patch-219
3493      mwolson@gnu.org--2005/muse--main--1.0--patch-220
3494      mwolson@gnu.org--2005/muse--main--1.0--patch-221
3495      mwolson@gnu.org--2005/muse--main--1.0--patch-222
3496      mwolson@gnu.org--2005/muse--main--1.0--patch-223
3497      mwolson@gnu.org--2005/muse--main--1.0--patch-224
3498      mwolson@gnu.org--2005/muse--main--1.0--patch-225
3499      mwolson@gnu.org--2005/muse--main--1.0--patch-226
3500      mwolson@gnu.org--2005/muse--main--1.0--patch-227
3501      mwolson@gnu.org--2005/muse--main--1.0--patch-228
3502      mwolson@gnu.org--2005/muse--main--1.0--patch-229
3503      mwolson@gnu.org--2005/muse--main--1.0--patch-230
3504      mwolson@gnu.org--2005/muse--main--1.0--patch-231
3505      mwolson@gnu.org--2005/muse--main--1.0--patch-232
3506      mwolson@gnu.org--2005/muse--main--1.0--patch-233
3507      mwolson@gnu.org--2005/muse--main--1.0--patch-234
3508      mwolson@gnu.org--2005/muse--main--1.0--patch-235
3509      mwolson@gnu.org--2005/muse--main--1.0--patch-236
3510      mwolson@gnu.org--2005/muse--main--1.0--patch-237
3511      mwolson@gnu.org--2005/muse--main--1.0--patch-238
3512      mwolson@gnu.org--2005/muse--main--1.0--patch-239
3513      mwolson@gnu.org--2005/muse--main--1.0--patch-240
3514      mwolson@gnu.org--2005/muse--main--1.0--patch-241
3515      mwolson@gnu.org--2005/muse--main--1.0--patch-242
3516      mwolson@gnu.org--2005/muse--main--1.0--patch-243
3517      mwolson@gnu.org--2005/muse--main--1.0--patch-244
3518      mwolson@gnu.org--2005/muse--main--1.0--patch-245
3519      mwolson@gnu.org--2005/muse--main--1.0--patch-246
3520      mwolson@gnu.org--2005/muse--main--1.0--patch-247
3521      mwolson@gnu.org--2005/muse--main--1.0--patch-248
3522      mwolson@gnu.org--2005/muse--main--1.0--patch-249
3523      mwolson@gnu.org--2005/muse--main--1.0--patch-250
3524      mwolson@gnu.org--2005/muse--main--1.0--patch-251
3525      mwolson@gnu.org--2005/muse--main--1.0--patch-252
3526      mwolson@gnu.org--2005/muse--main--1.0--patch-253
3527      mwolson@gnu.org--2005/muse--main--1.0--patch-254
3528      mwolson@gnu.org--2005/muse--main--1.0--patch-255
3529      mwolson@gnu.org--2005/muse--main--1.0--patch-256
3530      mwolson@gnu.org--2005/muse--main--1.0--patch-257
3531      mwolson@gnu.org--2005/muse--main--1.0--patch-258
3532      mwolson@gnu.org--2005/muse--main--1.0--patch-259
3533      mwolson@gnu.org--2005/muse--main--1.0--patch-260
3534      mwolson@gnu.org--2005/muse--main--1.0--patch-261
3535      mwolson@gnu.org--2005/muse--main--1.0--patch-262
3536      mwolson@gnu.org--2005/muse--main--1.0--patch-263
3537      mwolson@gnu.org--2005/muse--main--1.0--patch-264
3538      mwolson@gnu.org--2005/muse--main--1.0--patch-265
3539      mwolson@gnu.org--2005/muse--main--1.0--patch-266
3540      mwolson@gnu.org--2005/muse--main--1.0--patch-267
3541      mwolson@gnu.org--2005/muse--main--1.0--patch-268
3542      mwolson@gnu.org--2005/muse--main--1.0--patch-269
3543      mwolson@gnu.org--2005/muse--main--1.0--patch-270
3544      mwolson@gnu.org--2005/muse--main--1.0--patch-271
3545      mwolson@gnu.org--2005/muse--main--1.0--patch-272
3546      mwolson@gnu.org--2005/muse--main--1.0--patch-273
3547      mwolson@gnu.org--2005/muse--main--1.0--patch-274
3548      mwolson@gnu.org--2005/muse--main--1.0--patch-275
3549      mwolson@gnu.org--2005/muse--main--1.0--patch-276
3550      mwolson@gnu.org--2005/muse--main--1.0--patch-277
3551      mwolson@gnu.org--2005/muse--main--1.0--patch-278
3552      mwolson@gnu.org--2005/muse--main--1.0--patch-279
3553      mwolson@gnu.org--2005/muse--main--1.0--patch-280
3554      mwolson@gnu.org--2005/muse--main--1.0--patch-281
3555      mwolson@gnu.org--2005/muse--main--1.0--patch-282
3556      mwolson@gnu.org--2005/muse--main--1.0--patch-283
3557      mwolson@gnu.org--2005/muse--main--1.0--patch-284
3558      mwolson@gnu.org--2005/muse--main--1.0--patch-285
3559      mwolson@gnu.org--2005/muse--main--1.0--patch-286
3560      mwolson@gnu.org--2005/muse--main--1.0--patch-287
3561      mwolson@gnu.org--2005/muse--main--1.0--patch-288
3562      mwolson@gnu.org--2005/muse--main--1.0--patch-289
3563      mwolson@gnu.org--2005/muse--main--1.0--patch-290
3564      mwolson@gnu.org--2005/muse--main--1.0--patch-291
3565      mwolson@gnu.org--2005/muse--main--1.0--patch-292
3566      mwolson@gnu.org--2005/muse--main--1.0--patch-293
3567      mwolson@gnu.org--2005/muse--main--1.0--patch-294
3568      mwolson@gnu.org--2005/muse--main--1.0--patch-295
3569      mwolson@gnu.org--2005/muse--main--1.0--patch-296
3570      mwolson@gnu.org--2005/muse--main--1.0--patch-297
3571      mwolson@gnu.org--2005/muse--main--1.0--patch-298
3572      mwolson@gnu.org--2005/muse--main--1.0--patch-299
3573      mwolson@gnu.org--2005/muse--main--1.0--patch-300
3574      mwolson@gnu.org--2005/muse--main--1.0--patch-301
3575      mwolson@gnu.org--2005/muse--main--1.0--patch-302
3576      mwolson@gnu.org--2005/muse--main--1.0--patch-303
3577      mwolson@gnu.org--2005/muse--main--1.0--patch-304
3578      mwolson@gnu.org--2005/muse--main--1.0--patch-305
3579      mwolson@gnu.org--2005/muse--main--1.0--patch-306
3580      mwolson@gnu.org--2005/muse--main--1.0--patch-307
3581      mwolson@gnu.org--2005/muse--main--1.0--patch-308
3582      mwolson@gnu.org--2005/muse--main--1.0--patch-309
3583      mwolson@gnu.org--2005/muse--main--1.0--patch-310
3584      mwolson@gnu.org--2005/muse--main--1.0--patch-311
3585      mwolson@gnu.org--2005/muse--main--1.0--patch-312
3586      mwolson@gnu.org--2005/muse--main--1.0--patch-313
3587      mwolson@gnu.org--2005/muse--main--1.0--patch-314
3588      mwolson@gnu.org--2005/muse--main--1.0--patch-315
3589      mwolson@gnu.org--2005/muse--main--1.0--patch-316
3590      mwolson@gnu.org--2005/muse--main--1.0--patch-317
3591      mwolson@gnu.org--2005/muse--main--1.0--patch-318
3592      mwolson@gnu.org--2005/muse--main--1.0--patch-319
3593      mwolson@gnu.org--2005/muse--main--1.0--patch-320
3594      mwolson@gnu.org--2005/muse--main--1.0--patch-321
3595      mwolson@gnu.org--2005/muse--main--1.0--patch-322
3596      mwolson@gnu.org--2005/muse--main--1.0--patch-323
3597      mwolson@gnu.org--2005/muse--main--1.0--patch-324
3598      mwolson@gnu.org--2005/muse--main--1.0--patch-325
3599      mwolson@gnu.org--2005/muse--main--1.0--patch-326
3600      mwolson@gnu.org--2005/muse--main--1.0--patch-327
3601      mwolson@gnu.org--2005/muse--main--1.0--patch-328
3602      mwolson@gnu.org--2005/muse--main--1.0--patch-329
3603      mwolson@gnu.org--2005/muse--main--1.0--patch-330
3604      mwolson@gnu.org--2005/muse--main--1.0--patch-331
3605      mwolson@gnu.org--2005/muse--main--1.0--patch-332
3606      mwolson@gnu.org--2005/muse--main--1.0--patch-333
3607      mwolson@gnu.org--2005/muse--main--1.0--patch-334
3608      mwolson@gnu.org--2005/muse--main--1.0--patch-335
3609      mwolson@gnu.org--2005/muse--main--1.0--patch-336
3610      mwolson@gnu.org--2005/muse--main--1.0--patch-337
3611      mwolson@gnu.org--2005/muse--main--1.0--patch-338
3612      mwolson@gnu.org--2005/muse--main--1.0--patch-339
3613      mwolson@gnu.org--2005/muse--main--1.0--patch-340
3614      mwolson@gnu.org--2005/muse--main--1.0--patch-341
3615      mwolson@gnu.org--2005/muse--main--1.0--patch-342
3616      mwolson@gnu.org--2005/muse--main--1.0--patch-343
3617      mwolson@gnu.org--2005/muse--main--1.0--patch-344
3618      mwolson@gnu.org--2005/muse--main--1.0--patch-345
3619      mwolson@gnu.org--2005/muse--main--1.0--patch-346
3620      mwolson@gnu.org--2005/muse--main--1.0--patch-347
3621      mwolson@gnu.org--2005/muse--main--1.0--patch-348
3622      mwolson@gnu.org--2005/muse--main--1.0--patch-349
3623      mwolson@gnu.org--2005/muse--main--1.0--patch-350
3624      mwolson@gnu.org--2005/muse--main--1.0--patch-351
3625      mwolson@gnu.org--2005/muse--main--1.0--patch-352
3626      mwolson@gnu.org--2005/muse--main--1.0--patch-353
3627      mwolson@gnu.org--2005/muse--main--1.0--patch-354
3628      mwolson@gnu.org--2005/muse--main--1.0--patch-355
3629      mwolson@gnu.org--2005/muse--rel--3.02--base-0
3630      mwolson@gnu.org--2005/muse--rel--3.02--patch-1
3631      mwolson@gnu.org--2005/muse--rel--3.02--patch-2
3632      mwolson@gnu.org--2005/muse--rel--3.02--patch-3
3633      mwolson@gnu.org--2005/muse--rel--3.02--patch-4
3634      mwolson@gnu.org--2005/muse--rel--3.02--patch-5
3635      mwolson@gnu.org--2005/muse--rel--3.02--patch-6
3636      mwolson@gnu.org--2005/muse--rel--3.02--patch-7
3637      mwolson@gnu.org--2005/muse--rel--3.02--patch-8
3638      mwolson@gnu.org--2005/muse--rel--3.02--patch-11
3639      mwolson@gnu.org--2005/muse--rel--3.02--patch-13
3640      mwolson@gnu.org--2005/muse--rel--3.02--patch-14
3641      mwolson@gnu.org--2005/muse--rel--3.02--patch-15
3642      mwolson@gnu.org--2005/muse--rel--3.02--patch-17
3643      mwolson@gnu.org--2005/muse--rel--3.02--patch-18
3644      mwolson@gnu.org--2005/muse--rel--3.02--patch-19
3645      mwolson@gnu.org--2005/muse--rel--3.02--patch-20
3646      mwolson@gnu.org--2005/muse--rel--3.02--patch-21
3647      mwolson@gnu.org--2005/muse--rel--3.02--patch-22
3648      mwolson@gnu.org--2005/muse--rel--3.02--patch-23
3649      mwolson@gnu.org--2005/muse--rel--3.02--patch-25
3650      mwolson@gnu.org--2005/muse--rel--3.02--patch-27
3651      mwolson@gnu.org--2005/muse--rel--3.02--patch-28
3652      mwolson@gnu.org--2005/muse--rel--3.02--patch-29
3653      mwolson@gnu.org--2005/muse--rel--3.02--patch-35
3654      mwolson@gnu.org--2005/muse--rel--3.02--patch-36
3655      mwolson@gnu.org--2005/muse--rel--3.02--patch-37
3656      mwolson@gnu.org--2005/muse--rel--3.02--patch-53
3657      mwolson@gnu.org--2005/muse--rel--3.02--patch-54
3658      mwolson@gnu.org--2005/muse--rel--3.02--patch-55
3659      mwolson@gnu.org--2005/muse--rel--3.02--patch-56
3660      mwolson@member.fsf.org--2004/muse--main--1.0--base-0
3661      mwolson@member.fsf.org--2004/muse--main--1.0--patch-1
3662      mwolson@member.fsf.org--2004/muse--main--1.0--patch-2
3663      mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
3664      mwolson@member.fsf.org--2004/muse--mwolson--1.0--base-0
3665      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-1
3666      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-2
3667      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-3
3668      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-4
3669      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-5
3670      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-6
3671      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-7
3672      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-8