Merged from mwolson@gnu.org--2006 (patch 67-68)
[muse-el.git] / ChangeLog.2006
blobc33d0686f1f14da88952f87b9d77ab4d4983da5f
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2006/muse--main--1.0
5 2006-03-21 01:59:03 GMT Michael Olson <mwolson@gnu.org> patch-68
7     Summary:
8       Minor code cleanup.
9     Revision:
10       muse--main--1.0--patch-68
12     * lisp/muse-mode.el (muse-grep): Remove commented-out code.
14     modified files:
15      ChangeLog.2006 lisp/muse-mode.el
18 2006-03-21 01:56:21 GMT Michael Olson <mwolson@gnu.org> patch-67
20     Summary:
21       Merged from mwolson@gnu.org--2006-muse-el (patch 15-26)
22     Revision:
23       muse--main--1.0--patch-67
25     (Author: Per B. Sederberg <per@med.upenn.edu>)
26     
27     * lisp/muse-mode.el (muse-grep-command): Add custom to set up the command
28       used for grepping.
29       (muse-mode-map): Changed muse-browse-result to C-c C-v and made
30       muse-find-backlinks C-c C-b
31       (muse-grep): New function to envoke a search with the compiler.
32       (muse-search-with-command): New function to search for text, optionally
33       editing the command.
34       (muse-search): New function to search for text.
35       (muse-find-backlinks): New function to search for backlinks to the
36       current page.
38     modified files:
39      ChangeLog.2006 lisp/muse-mode.el
41     new patches:
42      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-15
43      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-16
44      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-17
45      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-18
46      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-19
47      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-20
48      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-21
49      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-22
50      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-23
51      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-24
52      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-25
53      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-26
56 2006-03-20 18:43:15 GMT Michael Olson <mwolson@gnu.org> patch-66
58     Summary:
59       Make it easier to call context-specific region-escaping function.
60     Revision:
61       muse--main--1.0--patch-66
63     * lisp/muse-publish.el (muse-publish-escape-specials): If a function is
64       returned from specials, call it with beg, end, ignore-read-only args.
65       This allows for people to specify their own functions for escaping
66       regions, depending on context.  See `muse-xml-decide-specials' in
67       muse-xml-common.el.  This functionality already exists for escaping
68       specials in strings.
70     modified files:
71      ChangeLog.2006 lisp/muse-publish.el
74 2006-03-17 01:56:38 GMT Michael Olson <mwolson@gnu.org> patch-65
76     Summary:
77       Attempt to make new syntaxes easier to support.
78     Revision:
79       muse--main--1.0--patch-65
81     * lisp/muse-colors.el (muse-colors-explicit-link): Use `muse-get-link'
82       and `muse-get-link-data'.
83     
84     * lisp/muse-journal.el (muse-journal-rss-munge-buffer): Ditto.
85     
86     * lisp/muse-mode.el (muse-edit-link-at-point): Ditto.
87       (muse-make-link): Change argument name.
88     
89     * lisp/muse.el (muse-handle-explicit-link): Ditto.
90       (muse-get-link, muse-get-link-desc): New functions that return the link
91       and the link description, respectively, from the given TARGET.  The
92       idea is that at least one other markup syntax puts descriptions before
93       links, so all they would have to do is re-define these two functions.
95     modified files:
96      ChangeLog.2006 lisp/muse-colors.el lisp/muse-journal.el
97      lisp/muse-mode.el lisp/muse.el
100 2006-03-14 18:41:54 GMT Michael Olson <mwolson@gnu.org> patch-64
102     Summary:
103       Fix #5477: muse-replace-regexp-in-string throws error in XEmacs 21.4
104     Revision:
105       muse--main--1.0--patch-64
107     * Makefile.defs, lisp/muse-colors.el: Fix typo.
108     
109     * lisp/muse.el (muse-replace-regexp-in-string): Switch order so that
110       `replace-in-string' is checked before `replace-regexp-in-string', since
111       XEmacs' implementation of the latter seems to be broken.  Thanks to Jim
112       Ottaway for the heads up.
114     modified files:
115      ChangeLog.2006 Makefile.defs lisp/muse-colors.el lisp/muse.el
118 2006-03-13 19:38:36 GMT Michael Olson <mwolson@gnu.org> patch-63
120     Summary:
121       muse-latex: Add footnotes to links so that they show up on printed copies.
122     Revision:
123       muse--main--1.0--patch-63
125     * lisp/muse-latex.el (muse-latex-markup-strings): Add string for
126       'url-and-desc.  Display footnotes if we have both a link and a
127       description, since we want URLs to show up on printed documents.
128       (muse-latex-markup-specials-document): Escape the "@" character in the
129       entire document.
130     
131     * lisp/muse-publish.el (muse-publish-url): Distinguish between URLs
132       without descriptions and URLs with descriptions.  If no markup string
133       exists for 'url-and-desc, fall back to 'url.
135     modified files:
136      ChangeLog.2006 lisp/muse-latex.el lisp/muse-publish.el
139 2006-03-13 18:42:27 GMT Michael Olson <mwolson@gnu.org> patch-62
141     Summary:
142       Fix publishing error with multi-line wrapped list items.
143     Revision:
144       muse--main--1.0--patch-62
146     * lisp/muse-publish.el (muse-publish-surround-text): Fix a problem with
147       multiple lines of a wrapped list item.
149     modified files:
150      ChangeLog.2006 lisp/muse-publish.el
153 2006-03-13 02:10:44 GMT Michael Olson <mwolson@gnu.org> patch-61
155     Summary:
156       Add COPYING file; update headers.
157     Revision:
158       muse--main--1.0--patch-61
160     * COPYING: New file containing the GNU GPL.
161     
162     * AUTHORS: Bookkeeping.
163     
164     * README: Add License section.  Change Muse homepage URL.
165     
166     * debian/copyright: Change Muse homepage URL.  Prune list to those who
167       have changed 15+ lines of code, since this is the amount that
168       constitutes legal contribution to a software work, AFAICT.
169     
170     * examples/mwolson: Update contents of directory to match my current
171       setup.
172     
173     * experimental/muse*.el, lisp/muse*.el: Update headers.
174     
175     * muse.texi: Change Muse homepage URL.
177     new files:
178      .arch-ids/COPYING.id COPYING
180     modified files:
181      AUTHORS ChangeLog.2006 README debian/copyright
182      examples/mwolson/muse-init.el
183      examples/mwolson/stylesheets/blog.css
184      examples/mwolson/stylesheets/common.css
185      examples/mwolson/stylesheets/print.css
186      examples/mwolson/stylesheets/screen.css
187      experimental/muse-cite.el experimental/muse-mathml.el
188      experimental/muse-message.el lisp/muse-backlink.el
189      lisp/muse-blosxom.el lisp/muse-book.el lisp/muse-colors.el
190      lisp/muse-convert.el lisp/muse-docbook.el lisp/muse-groff.el
191      lisp/muse-html.el lisp/muse-http.el lisp/muse-journal.el
192      lisp/muse-latex.el lisp/muse-latex2png.el lisp/muse-mode.el
193      lisp/muse-poem.el lisp/muse-project.el lisp/muse-protocols.el
194      lisp/muse-publish.el lisp/muse-regexps.el
195      lisp/muse-registry.el lisp/muse-texinfo.el lisp/muse-wiki.el
196      lisp/muse-xml.el lisp/muse.el muse.texi
199 2006-03-13 01:48:10 GMT Michael Olson <mwolson@gnu.org> patch-60
201     Summary:
202       Update Muse XML schema.
203     Revision:
204       muse--main--1.0--patch-60
206     * examples/muse.rnc: Allow nested list items.  Update header.  Provide
207       history.  We'll call this v0.3 of the schema.
208     
209     * lisp/muse-xml-common.el: Update header.
210       (muse-xml-markup-table): Fix table generation when attributes are not
211       specified.
212     
213     --This line, and those below, will be ignored--
214     Files to commit:
215        lisp/muse-wiki.el
216        lisp/muse-http.el
217        lisp/muse-html.el
218        lisp/muse.el
219        lisp/muse-docbook.el
220        lisp/muse-convert.el
221        lisp/muse-colors.el
222        lisp/muse-book.el
223        lisp/muse-texinfo.el
224        lisp/muse-publish.el
225        lisp/muse-project.el
226        lisp/muse-poem.el
227        lisp/muse-mode.el
228        experimental/muse-message.el
229        lisp/muse-latex.el
230        lisp/muse-journal.el
231        lisp/muse-regexps.el
232        experimental/muse-mathml.el
233        lisp/muse-latex2png.el
234        examples/mwolson/stylesheets/screen.css
235        examples/mwolson/stylesheets/print.css
236        examples/mwolson/stylesheets/common.css
237        examples/mwolson/stylesheets/common.css
238        examples/mwolson/stylesheets/blog.css
239        examples/mwolson/stylesheets/blog.css
240        lisp/muse-registry.el
241        examples/muse.rnc
242        examples/mwolson/muse-init.el
243        AUTHORS
244        lisp/muse-backlink.el
245        debian/copyright
246        lisp/muse-xml-common.el
247        muse.texi
248        lisp/muse-protocols.el
249        experimental/muse-cite.el
250        README
251        lisp/muse-xml.el
252        lisp/muse-blosxom.el
253        lisp/muse-groff.el
254        COPYING
255        .arch-ids/COPYING.id
256     
257     This list might be incomplete or outdated if editing the log
258     message was not invoked from an up-to-date changes buffer!
260     modified files:
261      ChangeLog.2006 examples/muse.rnc lisp/muse-xml-common.el
264 2006-03-12 21:12:48 GMT Michael Olson <mwolson@gnu.org> patch-59
266     Summary:
267       Fix output for consecutive list items of same type.
268     Revision:
269       muse--main--1.0--patch-59
271     * lisp/muse-publish.el (muse-publish-surround-text): Make calculated
272       post-indent and indent-found values local to each list item.  This
273       should fix undesired behavior with consecutive list items of the same
274       type.
276     modified files:
277      ChangeLog.2006 lisp/muse-publish.el
280 2006-03-12 21:09:43 GMT Michael Olson <mwolson@gnu.org> patch-58
282     Summary:
283       Make C-> and C-< keybindings not indent nested items.
284     Revision:
285       muse--main--1.0--patch-58
287     * lisp/muse-mode.el (muse-alter-list-item-indentation): Don't include
288       nested items.
289     
290     * lisp/muse.el (muse-forward-list-item): Make skipping of nested items
291       optional, and document this.
292     
293     --This line, and those below, will be ignored--
294     Files to commit:
295        lisp/muse.el
296        lisp/muse-publish.el
297        lisp/muse-mode.el
298     
299     This list might be incomplete or outdated if editing the log
300     message was not invoked from an up-to-date changes buffer!
302     modified files:
303      ChangeLog.2006 lisp/muse-mode.el lisp/muse.el
306 2006-03-12 19:56:26 GMT Michael Olson <mwolson@gnu.org> patch-57
308     Summary:
309       Slightly improve flyspell integration.
310     Revision:
311       muse--main--1.0--patch-57
313     * lisp/muse-mode.el (muse-mode-flyspell-p): Use the new 'muse-link text
314       property to determine whether we are at a link.
316     modified files:
317      ChangeLog.2006 lisp/muse-mode.el
320 2006-03-11 23:42:56 GMT Michael Olson <mwolson@gnu.org> patch-56
322     Summary:
323       Make nested definition list items work much better.
324     Revision:
325       muse--main--1.0--patch-56
327     * lisp/muse-publish.el (muse-publish-surround-dl): Use
328       `muse-forward-list-item'.  Don't pass indent and post-indent to the
329       move function.
330       (muse-publish-surround-text): If we are to determine the indentation,
331       but have found no list items, set indent to the empty string.  If we
332       are to determine indentation but have found an item, get all leading
333       whitespace and set indent to it.  Never try to determine post-indent
334       using the first line.  Try to contain the amount of "damage" a nested
335       list item can do to wrapped list item text.
336     
337     * lisp/muse-regexps.el (muse-list-item-regexp): Hone the definition list
338       part so that it is easier to indicate the amount of desired initial
339       whitespace.
340     
341     * lisp/muse.el (muse-list-item-type): Make initial whitespace of a dl
342       entry optional.
343       (muse-forward-dl-term, muse-forward-dl-entry): Remove.  Functionality
344       merged into `muse-forward-list-item'.
345       (muse-forward-list-item-1): New function that determines whether a
346       nested list item is found.
347       (muse-forward-list-item): Move hairy nested list detection algorithm
348       into `muse-forward-list-item-1'.  Be extra careful about terminating
349       when we go past the boundary.
351     modified files:
352      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
353      lisp/muse.el
356 2006-03-11 06:10:19 GMT Michael Olson <mwolson@gnu.org> patch-55
358     Summary:
359       Add backlink support, thanks to Jim Ottaway.
360     Revision:
361       muse--main--1.0--patch-55
363     * lisp/muse-colors.el (muse-colors-fontifying-p): New buffer-local
364       variable that indicates whether Muse is fontifying the current buffer.
365       (muse-colors-region): Set `muse-colors-fontifying' to t.
366     
367     * lisp/muse-backlinks.el: New file by Jim Ottaway that provides backlink
368       support.  I've modified it slightly to get rid of the defadvice forms.
370     new files:
371      lisp/.arch-ids/muse-backlink.el.id lisp/muse-backlink.el
373     modified files:
374      AUTHORS ChangeLog.2006 lisp/muse-colors.el
377 2006-03-10 22:56:22 GMT Michael Olson <mwolson@gnu.org> patch-54
379     Summary:
380       muse-protocols: Add Wikipedia support.
381     Revision:
382       muse--main--1.0--patch-54
384     * lisp/muse-protocols.el (muse-url-protocols): Add "dict:" handler.  This
385       is used to look up terms on the Wikipedia website.
386       (muse-wikipedia-country): New option that specifies the country code to
387       use for Wikipedia.
388       (muse-resolve-url-dict, muse-browse-url-dict): New functions that
389       resolve and browse Wikipedia URLs.
391     modified files:
392      ChangeLog.2006 lisp/muse-protocols.el
395 2006-03-10 19:29:56 GMT Michael Olson <mwolson@gnu.org> patch-53
397     Summary:
398       muse-protocols: Add DOI handling.
399     Revision:
400       muse--main--1.0--patch-53
402     * lisp/muse-protocols.el (muse-url-protocols): Add handler for DOI's.
403       DOI's (digitial object identifiers) are a standard identifier used in
404       the publishing industry.  Thanks to Phillip Lord for the patch.
405       (muse-resolve-url-doi, muse-browse-url-doi): New functions that resolve
406       and browse DOI's.
408     modified files:
409      AUTHORS ChangeLog.2006 lisp/muse-protocols.el
412 2006-03-10 16:34:52 GMT Michael Olson <mwolson@gnu.org> patch-52
414     Summary:
415       Refine previous patch.
416     Revision:
417       muse--main--1.0--patch-52
419     * lisp/muse-mode.el (muse-link-at-point): If muse-colors is loaded, don't
420       ever use the fallback method.  Save point when using new method.
422     modified files:
423      ChangeLog.2006 lisp/muse-mode.el
426 2006-03-10 16:26:53 GMT Michael Olson <mwolson@gnu.org> patch-51
428     Summary:
429       Make visiting of links a bit faster.
430     Revision:
431       muse--main--1.0--patch-51
433     * lisp/muse-colors.el (muse-unhighlight-region): Remove muse-link
434       property.
435       (muse-link-properties): If we are highlighting a link, add the
436       muse-link property.
437     
438     * lisp/muse-mode.el (muse-link-at-point): If the muse-link property
439       exists at point, use it to bound the link.  Otherwise, use the old
440       method.  This should make it easier to visit custom implicit link
441       forms, since it does not require a change to muse-implicit-link-regexp.
442     
443     * lisp/muse-regexps.el (muse-implicit-link-regexp): Note that this is not
444       used when muse-colors.el is loaded.
446     modified files:
447      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
448      lisp/muse-regexps.el
451 2006-03-10 04:57:55 GMT Michael Olson <mwolson@gnu.org> patch-50
453     Summary:
454       Make resolving of inline image paths more flexible.
455     Revision:
456       muse--main--1.0--patch-50
458     * lisp/muse-colors.el (muse-colors-inline-image-method): Rename from
459       `muse-inline-relative-to'.  Add muse-colors-use-publishing-directory
460       option.  Make the fallback customization type a function rather than a
461       symbol.
462       (muse-colors-use-publishing-directory): New function that takes the
463       best guess at where the current Muse file will be published and makes
464       the given link relative to that.
465       (muse-colors-insert-image): If muse-colors-inline-image-method is
466       'default-directory, use the default directory.  If it is a function,
467       call that function with LINK as an argument.  Otherwise, give up.
469     modified files:
470      ChangeLog.2006 lisp/muse-colors.el
473 2006-03-10 03:43:03 GMT Michael Olson <mwolson@gnu.org> patch-49
475     Summary:
476       Fix inline image lockup.
477     Revision:
478       muse--main--1.0--patch-49
480     * lisp/muse-colors.el (muse-colors-explicit-link): Fix regression in
481       patch-47.  This will prevent Muse from locking up after making a new
482       inline image.
484     modified files:
485      ChangeLog.2006 lisp/muse-colors.el
488 2006-03-07 03:52:11 GMT Michael Olson <mwolson@gnu.org> patch-48
490     Summary:
491       Fix publishing problem with XEmacs.
492     Revision:
493       muse--main--1.0--patch-48
495     * lisp/muse-publish.el (muse-insert-file-or-string): Fix XEmacs
496       publishing problem when text at beginning of buffer is read-only.
497       Thanks to Christian Clercin for the report.
499     modified files:
500      ChangeLog.2006 lisp/muse-publish.el
503 2006-03-06 06:06:38 GMT Michael Olson <mwolson@gnu.org> patch-47
505     Summary:
506       Get increase and decrease of list indentation to work with complex cases.
507     Revision:
508       muse--main--1.0--patch-47
510     * lisp/muse-colors.el: Miscellaneous whitespace fixes.
511       (muse-colors-explicit-link): Minor logic tweak.  The indentation seems
512       to indicate this interpretation, though parens are different.
513     
514     * lisp/muse-mode.el: Miscellaneous whitespace fixes.
515       (muse-alter-list-item-indentation): New function that alters the list
516       structure at point.  The behavior to use is specified by the OPERATION
517       argument.  Currently-supported operations are 'increase and 'decrease
518       indentation level.  This now uses the same sort of list detection
519       algorithm that is used during publishing, so it should work as expected
520       for complicated cases.
521       (muse-increase-list-item-indentation)
522       (muse-decrease-list-item-indentation): Use
523       `muse-alter-list-item-indentation'.
525     modified files:
526      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
529 2006-03-06 04:50:17 GMT Michael Olson <mwolson@gnu.org> patch-46
531     Summary:
532       Code simplification; improve muse-list-item-type function.
533     Revision:
534       muse--main--1.0--patch-46
536     * lisp/muse.el (muse-list-item-type): Disambiguate between 'dl-term and
537       'dl-entry, instead of just returning 'dl.
538       (muse-forward-dl-term, muse-forward-dl-entry): Use
539       muse-forward-list-item.
540       (muse-forward-dl-part): Remove, merge functionality into
541       muse-forward-list-item.
542       (muse-forward-list-item): Add a few conditions needed for skipping
543       nested 'dl-term and 'dl-entry items.
544     
545     --This line, and those below, will be ignored--
546     Files to commit:
547        lisp/muse.el
548        lisp/muse-mode.el
549     
550     This list might be incomplete or outdated if editing the log
551     message was not invoked from an up-to-date changes buffer!
553     modified files:
554      ChangeLog.2006 lisp/muse.el
557 2006-03-06 01:11:58 GMT Michael Olson <mwolson@gnu.org> patch-45
559     Summary:
560       Put movement by list and paragraph functions in muse.el.
561     Revision:
562       muse--main--1.0--patch-45
564     * lisp/muse.el (muse-list-item-type, muse-forward-paragraph):
565       (muse-forward-dl-term, muse-forward-dl-entry, muse-forward-dl-part):
566       (muse-forward-list-item): Move here from muse-publish.el, so that
567       muse-mode can make use of these.
569     modified files:
570      ChangeLog.2006 lisp/muse-publish.el lisp/muse.el
573 2006-03-06 01:06:14 GMT Michael Olson <mwolson@gnu.org> patch-44
575     Summary:
576       Merged from mwolson@gnu.org--2006-muse-el (patch 5-14)
577     Revision:
578       muse--main--1.0--patch-44
580     (Author: Per B. Sederberg <per@med.upenn.edu>)
581     
582     * lisp/muse-mode.el (muse-mode-map): Added key mappings to increase or
583       decrease the current item indentation.
584       (muse-get-paragraph-start): Helper function to determine the start of
585       the current paragraph.
586       (muse-insert-list-item): Cleaned up list item insertion code and made
587       it handle definitions.
588       (muse-increase-list-item-indentation): New interactive function to
589       increase list item indentation.
590       (muse-decrease-list-item-indentation): New interactive function to
591       decrease list item indentation.
593     modified files:
594      ChangeLog.2006 lisp/muse-mode.el
596     new patches:
597      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-5
598      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-6
599      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-7
600      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-8
601      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-9
602      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-10
603      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-11
604      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-12
605      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-13
606      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-14
609 2006-03-06 00:58:00 GMT Michael Olson <mwolson@gnu.org> patch-43
611     Summary:
612       Use slightly better algorithm for removing initial whitespace.
613     Revision:
614       muse--main--1.0--patch-43
616     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of whether
617       the definition occurred on the same line as the term.
618       (muse-publish-surround-text): Use a slightly better algorithm for
619       removing initial indentation of list items.  This way, we preserve
620       nesting of lists and also deal with same-level items that occur after
621       nested items.  This probably doesn't make much of a difference in the
622       output, but it should make support of nested definition lists a bit
623       less troublesome in some cases.
624       (muse-forward-dl-entry): Deal with ambiguity in muse-list-item-regexp
625       regexp.
626       (muse-forward-dl-part, muse-forward-list-item): Don't clobber match
627       data.  Don't remove any text.  This makes the function easier to reuse
628       in display-only situations.
630     modified files:
631      ChangeLog.2006 lisp/muse-publish.el
634 2006-03-04 02:03:59 GMT Michael Olson <mwolson@gnu.org> patch-42
636     Summary:
637       In a preliminary way, make definition lists nest.
638     Revision:
639       muse--main--1.0--patch-42
641     * lisp/muse-publish.el (muse-forward-dl-part): Make it so that definition
642       lists nest a bit better.
643     
644     * lisp/muse-regexps.el (muse-dl-entry-regexp): Removed, since we don't
645       use it anymore.
647     modified files:
648      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
651 2006-03-03 19:28:22 GMT Michael Olson <mwolson@gnu.org> patch-41
653     Summary:
654       Fix nested list regression.
655     Revision:
656       muse--main--1.0--patch-41
658     * lisp/muse-publish.el (muse-publish-surround-text): Keep track of
659       original indentation value and use that.  This fixes a regression
660       caused by the last patch.
662     modified files:
663      ChangeLog.2006 lisp/muse-publish.el
666 2006-03-03 05:24:59 GMT Michael Olson <mwolson@gnu.org> patch-40
668     Summary:
669       Make code look nicer by using muse-forward-dl-* functions.
670     Revision:
671       muse--main--1.0--patch-40
673     * lisp/muse-publish.el (muse-publish-surround-dl): Factor out lambda
674       forms into muse-forward-dl-* for increased reusability.
675       (muse-publish-surround-text): Call move function with an indent
676       argument so that we don't have to use partial substitution in lambda
677       forms.
678       (muse-forward-dl-term): New function that moves forward to the next
679       definition list term.
680       (muse-forward-dl-entry): New function that moves forward to the next
681       definition list entry.
682       (muse-forward-dl-part): Renamed from `muse-forward-dl-item', since this
683       does not move past entire definition list items, only parts of them.
684       (muse-publish-markup-list, muse-publish-markup-quote):
685       (muse-publish-quote-tag): Use better lambda form, and include a
686       parameter.
688     modified files:
689      ChangeLog.2006 lisp/muse-publish.el
692 2006-03-02 05:38:41 GMT Michael Olson <mwolson@gnu.org> patch-39
694     Summary:
695       Handle blockquoted sections within lists properly.
696     Revision:
697       muse--main--1.0--patch-39
699     * lisp/muse-publish.el (muse-forward-paragraph): Respect end-list
700       property.  This should make blockquoted sections within a list do the
701       right thing.
702       (muse-forward-dl-item, muse-forward-list-item): Adjust logic for new
703       behavior of `muse-forward-paragraph'.
705     modified files:
706      ChangeLog.2006 lisp/muse-publish.el
709 2006-03-02 05:00:07 GMT Michael Olson <mwolson@gnu.org> patch-38
711     Summary:
712       Fix problem when previous list item was nested.
713     Revision:
714       muse--main--1.0--patch-38
716     * lisp/muse-publish.el (muse-publish-surround-text): Bind nested list
717       indicator at the correct place.  This fixes an error where a previous
718       list was nested but the current one isn't.  Thanks to Per B. Sederberg
719       for the report.
721     modified files:
722      ChangeLog.2006 lisp/muse-publish.el
725 2006-03-02 04:36:06 GMT Michael Olson <mwolson@gnu.org> patch-37
727     Summary:
728       Fix #5376: Changing muse-wiki-wikiword-regexp does not seem to affect anything.
729     Revision:
730       muse--main--1.0--patch-37
732     * muse.texi (Implicit Links): Mention how to customize the WikiName
733       recognition, and note that if you're setting this manually, you have to
734       call some additional code.  This should fix #5376.  Also remove local
735       variables section at end, since it seems pointless.
737     modified files:
738      ChangeLog.2006 muse.texi
741 2006-03-02 04:25:37 GMT Michael Olson <mwolson@gnu.org> patch-36
743     Summary:
744       Fix #5325: nested formatting not working in HTML output.
745     Revision:
746       muse--main--1.0--patch-36
748     * lisp/muse-publish.el (muse-publish-markup-word): Make nested emphasis
749       work.  I'm a bit worried about possible double-escaping, though.
750       Perhaps we should write the context to a text property and escape it
751       later.  This should fix #5325.
753     modified files:
754      ChangeLog.2006 lisp/muse-publish.el
757 2006-03-02 01:08:14 GMT Michael Olson <mwolson@gnu.org> patch-35
759     Summary:
760       Make paragraphs respect the end of a list or list item.
761     Revision:
762       muse--main--1.0--patch-35
764     * lisp/muse-docbook.el (muse-docbook-markup-paragraph): If we are at the
765       end of a list (or list item), back up.  This allows for a nice side
766       effect when using indented sentences in between list items.
767     
768     * lisp/muse-html.el (muse-html-markup-paragraph): Ditto.
769     
770     * lisp/muse-xml.el (muse-xml-markup-paragraph): Ditto.
771     
772     * lisp/muse-publish.el (muse-publish-surround-dl): Make sure that end-ddt
773       and end-item are marked up with end-list properties.
775     modified files:
776      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
777      lisp/muse-publish.el lisp/muse-xml.el
780 2006-03-01 21:00:41 GMT Michael Olson <mwolson@gnu.org> patch-34
782     Summary:
783       Make sure an initial term exists before publishing definition list.
784     Revision:
785       muse--main--1.0--patch-34
787     * lisp/muse-publish.el (muse-publish-markup-list): Ensure that a term
788       exists before publishing a definition list.
790     modified files:
791      ChangeLog.2006 lisp/muse-publish.el
794 2006-03-01 20:21:08 GMT Michael Olson <mwolson@gnu.org> patch-33
796     Summary:
797       Add comments to nested list code.
798     Revision:
799       muse--main--1.0--patch-33
801     * lisp/muse-publish.el (muse-publish-surround-dl)
802       (muse-publish-surround-text, muse-forward-dl-item):
803       (muse-forward-list-item): Add comments, since there were many
804       intricacies that are probably not obvious to the casual reader.
805       (muse-forward-dl-item): Remove no-op condition.
807     modified files:
808      ChangeLog.2006 lisp/muse-publish.el
811 2006-03-01 19:51:45 GMT Michael Olson <mwolson@gnu.org> patch-32
813     Summary:
814       Make nested list items work when separated by one blank line.
815     Revision:
816       muse--main--1.0--patch-32
818     * lisp/muse-publish.el (muse-publish-surround-dl): Use
819       muse-forward-dl-item instead of muse-forward-list-item.  On second
820       thought, don't unconditionally insert a newline, as that breaks some
821       things.
822       (muse-forward-dl-item): New function that moves forward to the next
823       definition list item.  This was factored out from
824       muse-forward-list-item, since it was getting too complex for my liking.
825       (muse-forward-dl-item, muse-forward-list-item): Introduce concept of
826       indented line, and skip past these if we have a blank line followed by
827       an indented line.  "Indented" means "indented one past the current
828       indentation level" here.  Remove some initial whitespace that was being
829       overlooked before.
831     modified files:
832      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
835 2006-03-01 17:43:55 GMT Michael Olson <mwolson@gnu.org> patch-31
837     Summary:
838       Fix a couple of bugs in muse-wiki-resolve-project-page.
839     Revision:
840       muse--main--1.0--patch-31
842     * lisp/muse-project.el (muse-project-applicable-styles): Use a slightly
843       better algorithm for adding styles to a list.
844     
845     * lisp/muse-wiki.el (muse-wiki-resolve-project-page): Handle project more
846       carefully.  This should fix one or two hard-to-explain bugs.
848     modified files:
849      ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
852 2006-03-01 17:24:23 GMT Michael Olson <mwolson@gnu.org> patch-30
854     Summary:
855       Fix another definition list edge case.
856     Revision:
857       muse--main--1.0--patch-30
859     * lisp/muse-publish.el (muse-publish-surround-dl): Fix edge case where
860       unordered list immediately follows definition list term.
862     modified files:
863      ChangeLog.2006 lisp/muse-publish.el
866 2006-03-01 17:05:25 GMT Michael Olson <mwolson@gnu.org> patch-29
868     Summary:
869       Pass all current definition list test cases.
870     Revision:
871       muse--main--1.0--patch-29
873     * lisp/muse-publish.el (muse-publish-surround-dl): Move correctly to next
874       line if definition is not on the same line as the term.
875       (muse-forward-list-item): Fix publishing incorrectness that occurred
876       when a non-dl list follows a definition list.  Always move to the right
877       place so as to prevent extra empty dd elements from being published.
879     modified files:
880      ChangeLog.2006 lisp/muse-publish.el
883 2006-03-01 15:08:45 GMT Michael Olson <mwolson@gnu.org> patch-28
885     Summary:
886       Merge consecutive definition list terms properly.
887     Revision:
888       muse--main--1.0--patch-28
890     * lisp/muse-publish.el (muse-publish-surround-dl): Keep track of status
891       correctly.  This makes Muse merge several definition list items into
892       one list.
893       (muse-forward-list-item): Use simpler regexp for 'dl.
894     
895     * lisp/muse-regexps.el (muse-list-item-regexp): Make terms optional in
896       definition lists, and make terms the 2nd matched text.
898     modified files:
899      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
902 2006-02-28 23:48:24 GMT Michael Olson <mwolson@gnu.org> patch-27
904     Summary:
905       Bookkeeping.
906     Revision:
907       muse--main--1.0--patch-27
909     * AUTHORS: Update.
910     
911     * muse-colors.el, muse-mode.el: Credit contributions.
913     modified files:
914      AUTHORS ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
917 2006-02-28 23:37:26 GMT Michael Olson <mwolson@gnu.org> patch-26
919     Summary:
920       Merged from mwolson@gnu.org--2006-muse-el (patch 0-4)
921     Revision:
922       muse--main--1.0--patch-26
924     Patches applied:
925     
926      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
927        Added ability to show inline images in the Emacs buffer.
928     
929      * mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
930        Added enhanced list item insertion.
931     
932     Detailed log:
933     
934     (Author: Per B. Sederberg <per@med.upenn.edu>)
935     
936     * lisp/muse-mode.el (muse-mode-map): Added new key binding to insert a
937       list item.  New key mapping to toggle showing images.  Added a key
938       mapping to insert a link to a file and modified the key map to insert a
939       tag.
940       (muse-on-blank-line): Helper function to determine if the point is on a
941       line containing only blank spaces.
942       (muse-insert-list-item): New interactive function to insert a new list
943       item, taking into account the current list state.
944       (muse-insert-relative-link-to-file): New function to insert a link to a
945       file, relative to the default directory.
946     
947     * lisp/muse-colors.el (muse-inline-relative-to): Added custom directory
948       for where to search for images to inline in the buffer.
949       (muse-colors-inline-images): Added custom boolean field for whether to
950       show inline images in the buffer.
951       (muse-colors-toggle-inline-images): New function to toggle showing the
952       inline images in the buffer.
953       (muse-unhighlight-region): Now removes end-glyph text properties to
954       support XEmacs.
955       (muse-colors-resolve-image-file): New function to determine if a link
956       is an image and whether the version of Emacs can support inline images.
957       (muse-make-file-glyph): New function to create an image glyph if we are
958       using XEmacs.
959       (muse-colors-insert-image): New function to insert an image in an Emacs
960       buffer.
961       (muse-colors-explicit-link): Modified function to have the ability to
962       insert an image instead of formatting the text of the link.
964     modified files:
965      ChangeLog.2006 lisp/muse-colors.el lisp/muse-mode.el
967     new patches:
968      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--base-0
969      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-1
970      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-2
971      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-3
972      mwolson@gnu.org--2006-muse-el/muse-el--devel--0--patch-4
975 2006-02-28 05:20:11 GMT Michael Olson <mwolson@gnu.org> patch-25
977     Summary:
978       Pass testcase for definition list and nested unordered list.
979     Revision:
980       muse--main--1.0--patch-25
982     * lisp/muse-publish.el (muse-publish-surround-dl): Ensure that definition
983       lists always have at least one entry.  This appears to do the right
984       thing with a sample nested unordered list.
986     modified files:
987      ChangeLog.2006 lisp/muse-publish.el
990 2006-02-28 05:09:33 GMT Michael Olson <mwolson@gnu.org> patch-24
992     Summary:
993       Some definition list fixes.
994     Revision:
995       muse--main--1.0--patch-24
997     * lisp/muse-publish.el (muse-publish-markup-list): Make sure to insert
998       markup for end of list using the `muse-insert-markup-end-list'
999       function.  Handle list items nested inside of a definition list.
1001     modified files:
1002      ChangeLog.2006 lisp/muse-publish.el
1005 2006-02-28 04:43:15 GMT Michael Olson <mwolson@gnu.org> patch-23
1007     Summary:
1008       Fix another wrapped list item edge case.
1009     Revision:
1010       muse--main--1.0--patch-23
1012     * lisp/muse-publish.el (muse-publish-surround-text): Stop removing
1013       indentation in a region when we encounter any list items.  This should
1014       fix another wrapped list item edge case.  Thanks to Per B. Sederberg
1015       for the report.
1017     modified files:
1018      ChangeLog.2006 lisp/muse-publish.el
1021 2006-02-26 18:26:05 GMT Michael Olson <mwolson@gnu.org> patch-22
1023     Summary:
1024       Fix comment in Debian packaging.
1025     Revision:
1026       muse--main--1.0--patch-22
1028     * debian/emacsen-remove: Fix comment.
1030     modified files:
1031      ChangeLog.2006 debian/emacsen-remove
1034 2006-02-24 03:23:49 GMT Michael Olson <mwolson@gnu.org> patch-21
1036     Summary:
1037       muse-blosxom: Fix order of #tags line in header.
1038     Revision:
1039       muse--main--1.0--patch-21
1041     * lisp/muse-blosxom.el (muse-blosxom-header): Put #tags line after title,
1042       rather than before it.  Thanks to bkhl for the heads up.
1044     modified files:
1045      ChangeLog.2006 lisp/muse-blosxom.el
1048 2006-02-23 03:33:03 GMT Michael Olson <mwolson@gnu.org> patch-20
1050     Summary:
1051       muse-blosxom: Add ability to use tags in entries.
1052     Revision:
1053       muse--main--1.0--patch-20
1055     * lisp/muse-blosxom.el (muse-blosxom-header): If we are using tags,
1056       publish them.
1057       (muse-blosxom-use-tags): New option that specifies whether we are using
1058       tags.
1059       (muse-blosxom-new-entry): If using tags, read tags until the user hits
1060       RET without entering one.
1062     modified files:
1063      ChangeLog.2006 lisp/muse-blosxom.el
1066 2006-02-23 03:23:51 GMT Michael Olson <mwolson@gnu.org> patch-19
1068     Summary:
1069       Fix backtrace when publishing unsaved files.
1070     Revision:
1071       muse--main--1.0--patch-19
1073     * lisp/muse-publish.el (muse-publish-file): Detect case where we are
1074       trying to publish a file that has not been saved, and give an
1075       explanation to the user.
1076     
1077     --This line, and those below, will be ignored--
1078     Files to commit:
1079        lisp/muse-publish.el
1080        lisp/muse-blosxom.el
1081     
1082     This list might be incomplete or outdated if editing the log
1083     message was not invoked from an up-to-date changes buffer!
1085     modified files:
1086      ChangeLog.2006 lisp/muse-publish.el
1089 2006-02-21 23:19:36 GMT Michael Olson <mwolson@gnu.org> patch-18
1091     Summary:
1092       muse-texinfo: Fix link suffix.
1093     Revision:
1094       muse--main--1.0--patch-18
1096     * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf
1097       styles.  This should fix a bug where links in published info files use
1098       an incorrect extension.  Thanks to Hans Ekbrand for the report!
1100     modified files:
1101      ChangeLog.2006 lisp/muse-texinfo.el
1104 2006-02-16 21:54:11 GMT Michael Olson <mwolson@gnu.org> patch-17
1106     Summary:
1107       Fix prompting of non-Muse buffers before publishing.
1108     Revision:
1109       muse--main--1.0--patch-17
1111     * lisp/muse-project.el (muse-project-of-file): Apply fix from René
1112       Stadler to ignore buffers that have no associated filename.  This fixes
1113       an annoyance where Muse prompts to save BBDB and ERC buffers before
1114       publishing.
1116     modified files:
1117      AUTHORS ChangeLog.2006 lisp/muse-project.el
1120 2006-02-16 04:43:35 GMT Michael Olson <mwolson@gnu.org> patch-16
1122     Summary:
1123       Fix wrapped nested list item edge case.
1124     Revision:
1125       muse--main--1.0--patch-16
1127     * lisp/muse-publish.el (muse-publish-markup-regexps): Remove 2300 rule,
1128       since it is no longer needed.  Tweak 2200 regexp to cover 2300's use
1129       case.
1130       (muse-publish-surround-text): Tweak prefix for muse-list-item-regexp.
1131       (muse-list-item-type): Handle the new change to muse-list-item-regexp.
1132     
1133     * lisp/muse-regexps.el (muse-list-item-regexp): Explicitly require
1134       exactly one space character in front of a unnumbered or numbered list.
1135       This should make it easier to match every list instance, since
1136       definition lists can now be handled more nicely in
1137       muse-publish-markup-regexps.  This also has the effect of fixing a
1138       wrapped nested list item edge case.
1140     modified files:
1141      ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
1144 2006-02-16 03:04:20 GMT Michael Olson <mwolson@gnu.org> patch-15
1146     Summary:
1147       Fix edge case in muse-wiki-publish-pretty-title.
1148     Revision:
1149       muse--main--1.0--patch-15
1151     * lisp/muse-wiki.el (muse-wiki-publish-pretty-title): If for some reason
1152       the document does not have a valid title, use the empty string.
1154     modified files:
1155      ChangeLog.2006 lisp/muse-wiki.el
1158 2006-02-14 06:35:02 GMT Michael Olson <mwolson@gnu.org> patch-14
1160     Summary:
1161       Use debian/compat to determine debhelper compat level.
1162     Revision:
1163       muse--main--1.0--patch-14
1165     * debian/compat: New file that sets the debhelper compatibility level to
1166       4.
1167     
1168     * debian/rules: Remove DH_COMPAT line.
1170     new files:
1171      debian/.arch-ids/compat.id debian/compat
1173     modified files:
1174      ChangeLog.2006 debian/rules
1177 2006-02-13 04:50:57 GMT Michael Olson <mwolson@gnu.org> patch-13
1179     Summary:
1180       Fix a couple of table-publishing edge cases.
1181     Revision:
1182       muse--main--1.0--patch-13
1184     * lisp/muse-publish.el (muse-publish-markup-regexps): Fix a table
1185       publishing error that occurs when a table line is the last thing in a
1186       document.  Thanks to cymacs for the report and suggested fix.
1187       (muse-publish-table-fields): Skip initial blank lines, and don't remove
1188       them.
1189     
1190     * lisp/muse-docbook.el (muse-docbook-markup-strings): Don't put a newline
1191       at the end of the 'end-table markup string.
1192     
1193     * lisp/muse-html.el (muse-html-markup-strings): Ditto.
1194     
1195     * lisp/muse-xml.el (muse-xml-markup-strings): Ditto.
1196     
1197     * lisp/muse-xml-common.el (muse-xml-markup-table): Always insert a
1198       newline at the end of the table.  This should fix a problem with
1199       paragraphs after tables not being published as such.  Thanks to cymacs
1200       for the report.
1201     
1202     * lisp/muse-texinfo.el (muse-texinfo-markup-table): Don't use
1203       muse-insert-markup to insert a trailing newline.
1205     modified files:
1206      ChangeLog.2006 lisp/muse-docbook.el lisp/muse-html.el
1207      lisp/muse-publish.el lisp/muse-texinfo.el
1208      lisp/muse-xml-common.el lisp/muse-xml.el
1211 2006-02-12 22:56:27 GMT Michael Olson <mwolson@gnu.org> patch-12
1213     Summary:
1214       Add ChangeLog for 2006 and move previous ChangeLog for 2005.
1215     Revision:
1216       muse--main--1.0--patch-12
1219     new files:
1220      .arch-ids/ChangeLog.2006.id ChangeLog.2006
1222     renamed files:
1223      .arch-ids/ChangeLog.id
1224        ==> .arch-ids/ChangeLog.2005.id
1225      ChangeLog
1226        ==> ChangeLog.2005
1229 2006-02-12 22:53:48 GMT Michael Olson <mwolson@gnu.org> patch-11
1231     Summary:
1232       Make muse-journal work with whole-document escaping.
1233     Revision:
1234       muse--main--1.0--patch-11
1236     * examples/mwolson/templates/*: Change "Published by Muse" to "Published
1237       by Emacs Muse" so that muse-journal does not get confused.
1238     
1239     * lisp/muse-journal.el (muse-journal-html-munge-buffer):
1240       (muse-journal-latex-munge-buffer, muse-journal-rss-munge-buffer): Adapt
1241       for whole-buffer escaping.  Thanks to mondoshawan for the report.
1242       (muse-journal-rss-munge-buffer): Display a warning if someone does not
1243       have "Page published by Emacs Muse (begins|ends) here" in their header
1244       or footer, since muse-journal needs this in order to determine where
1245       entries begin and end.
1247     modified files:
1248      examples/mwolson/templates/footer.html
1249      examples/mwolson/templates/generic-footer.html
1250      examples/mwolson/templates/generic-header.html
1251      examples/mwolson/templates/header.html
1252      examples/mwolson/templates/header.tex lisp/muse-journal.el
1255 2006-02-08 03:00:07 GMT Michael Olson <mwolson@gnu.org> patch-10
1257     Summary:
1258       Get simple test case for definition lists to work.
1259     Revision:
1260       muse--main--1.0--patch-10
1262     * lisp/muse-publish.el (muse-publish-surround-dl): Make simple test case
1263       publish properly.
1264       (muse-forward-list-item): Fix edge case.
1266     modified files:
1267      lisp/muse-publish.el
1270 2006-01-28 02:47:07 GMT Michael Olson <mwolson@gnu.org> patch-9
1272     Summary:
1273       Add documentation to some publishing functions.
1274     Revision:
1275       muse--main--1.0--patch-9
1277     * lisp/muse-publish.el (muse-publish-mark-read-only)
1278       (muse-publish-mark-noemphasis): Add documentation.
1280     modified files:
1281      lisp/muse-publish.el
1284 2006-01-28 02:42:03 GMT Michael Olson <mwolson@gnu.org> patch-8
1286     Summary:
1287       Fix an error with `custom-quote'.
1288     Revision:
1289       muse--main--1.0--patch-8
1291     * lisp/muse-project.el: Require 'cus-edit, since that is where
1292       `custom-quote' is defined.
1293     
1294     * muse.texi: Use copyright symbol.
1296     modified files:
1297      lisp/muse-project.el muse.texi
1300 2006-01-25 18:27:53 GMT Michael Olson <mwolson@gnu.org> patch-7
1302     Summary:
1303       muse-registry: update from author.
1304     Revision:
1305       muse--main--1.0--patch-7
1307     * lisp/muse-registry.el: Update to newest version from author.
1308       Re-tabify.
1310     modified files:
1311      lisp/muse-registry.el
1314 2006-01-21 19:26:57 GMT Michael Olson <mwolson@gnu.org> patch-6
1316     Summary:
1317       muse-latex: Handle double-quote edge case.
1318     Revision:
1319       muse--main--1.0--patch-6
1321     * lisp/muse-latex.el (muse-latex-fixup-dquotes): Handle case when a quote
1322       character begins the buffer.
1324     modified files:
1325      lisp/muse-latex.el
1328 2006-01-21 18:47:33 GMT Michael Olson <mwolson@gnu.org> patch-5
1330     Summary:
1331       Allow beginning and ending empty elements in tables.
1332     Revision:
1333       muse--main--1.0--patch-5
1335     * lisp/muse-regexps.el (muse-table-field-regexp): Allow there to be no
1336       whitespace after the field if we're at the end of a line.
1337       (muse-table-line-regexp): Allow the table to start with a "|".  The
1338       resulting initial empty cell isn't yet thrown away like it should be.
1340     modified files:
1341      lisp/muse-regexps.el
1344 2006-01-21 02:45:36 GMT Michael Olson <mwolson@gnu.org> patch-4
1346     Summary:
1347       muse-latex: Use \url to publish bare URLs.
1348     Revision:
1349       muse--main--1.0--patch-4
1351     * lisp/muse-latex.el (muse-latex-markup-strings): Use \url instead of
1352       \href for bare URLs.  Thanks to Na Li for the suggestion!
1354     modified files:
1355      lisp/muse-latex.el
1358 2006-01-20 16:22:04 GMT Michael Olson <mwolson@gnu.org> patch-3
1360     Summary:
1361       Create parents of output directories.
1362     Revision:
1363       muse--main--1.0--patch-3
1365     * lisp/muse-project.el (muse-project-publish-file): Create parent
1366       directories as well, if the output directory does not exist.  This can
1367       happen when we have nested directories in a project.
1369     modified files:
1370      lisp/muse-project.el
1373 2006-01-20 15:54:21 GMT Michael Olson <mwolson@gnu.org> patch-2
1375     Summary:
1376       Pick a better default if publishing with more than one style.
1377     Revision:
1378       muse--main--1.0--patch-2
1380     * lisp/muse-project.el (muse-project-applicable-styles): Make sure that
1381       the list we return is in the right order.  That way, if more than one
1382       publishing rule matches a link, the first one is used, rather than the
1383       last.
1385     modified files:
1386      lisp/muse-project.el
1389 2006-01-19 15:55:19 GMT Michael Olson <mwolson@gnu.org> patch-1
1391     Summary:
1392       Oops, committed to the wrong archive.
1393     Revision:
1394       muse--main--1.0--patch-1
1396     Patches applied:
1397     
1398      * mwolson@gnu.org--2005/muse--main--1.0--patch-356
1399        Debian fixups.
1400     
1401      * mwolson@gnu.org--2005/muse--main--1.0--patch-357
1402        Another Debian fix.
1404     modified files:
1405      ChangeLog debian/emacsen-startup
1407     renamed files:
1408      debian/.arch-ids/NEWS.Debian.id
1409        ==> debian/.arch-ids/NEWS.id
1410      debian/NEWS.Debian
1411        ==> debian/NEWS
1413     new patches:
1414      mwolson@gnu.org--2005/muse--main--1.0--patch-356
1415      mwolson@gnu.org--2005/muse--main--1.0--patch-357
1418 2006-01-17 06:28:50 GMT Michael Olson <mwolson@gnu.org> base-0
1420     Summary:
1421       tag of mwolson@gnu.org--2005/muse--main--1.0--patch-355
1422     Revision:
1423       muse--main--1.0--base-0
1425     (automatically generated log message)
1427     new patches:
1428      ajk@iu.edu--2005/muse--ajk--1.0--base-0
1429      ajk@iu.edu--2005/muse--ajk--1.0--patch-1
1430      ajk@iu.edu--2005/muse--ajk--1.0--patch-2
1431      ajk@iu.edu--2005/muse--ajk--1.0--patch-3
1432      ajk@iu.edu--2005/muse--ajk--1.0--patch-4
1433      ajk@iu.edu--2005/muse--ajk--1.0--patch-5
1434      ajk@iu.edu--2005/muse--ajk--1.0--patch-6
1435      ajk@iu.edu--2005/muse--ajk--1.0--patch-7
1436      ajk@iu.edu--2005/muse--ajk--1.0--patch-8
1437      ajk@iu.edu--2005/muse--ajk--1.0--patch-9
1438      ajk@iu.edu--2005/muse--main--1.0--base-0
1439      ajk@iu.edu--2005/muse--main--1.0--patch-1
1440      ajk@iu.edu--2005/muse--main--1.0--patch-2
1441      davidsmith@acm.org--2005/muse--devo--1.0--base-0
1442      davidsmith@acm.org--main/muse--devo--1.0--base-0
1443      davidsmith@acm.org--main/muse--devo--1.0--patch-1
1444      davidsmith@acm.org--main/muse--devo--1.0--patch-2
1445      hodique@lifl.fr--2005/muse--yh--1.0--base-0
1446      hodique@lifl.fr--2005/muse--yh--1.0--patch-1
1447      hodique@lifl.fr--2005/muse--yh--1.0--patch-2
1448      hodique@lifl.fr--2005/muse--yh--1.0--patch-3
1449      hodique@lifl.fr--2005/muse--yh--1.0--patch-4
1450      hodique@lifl.fr--2005/muse--yh--1.0--patch-5
1451      hodique@lifl.fr--2005/muse--yh--1.0--patch-6
1452      hodique@lifl.fr--2005/muse--yh--1.0--patch-7
1453      hodique@lifl.fr--2005/muse--yh--1.0--patch-8
1454      hodique@lifl.fr--2005/muse--yh--1.0--patch-9
1455      hodique@lifl.fr--2005/muse--yh--1.0--patch-10
1456      hodique@lifl.fr--2005/muse--yh--1.0--patch-11
1457      hodique@lifl.fr--2005/muse--yh--1.0--patch-12
1458      hodique@lifl.fr--2005/muse--yh--1.0--patch-13
1459      hodique@lifl.fr--2005/muse--yh--1.0--patch-14
1460      hodique@lifl.fr--2005/muse--yh--1.0--patch-15
1461      hodique@lifl.fr--2005/muse--yh--1.0--patch-16
1462      hodique@lifl.fr--2005/muse--yh--1.0--patch-17
1463      hodique@lifl.fr--2005/muse--yh--1.0--patch-18
1464      hodique@lifl.fr--2005/muse--yh--1.0--patch-19
1465      hodique@lifl.fr--2005/muse--yh--1.0--patch-20
1466      hodique@lifl.fr--2005/muse--yh--1.0--patch-21
1467      hodique@lifl.fr--2005/muse--yh--1.0--patch-22
1468      hodique@lifl.fr--2005/muse--yh--1.0--patch-23
1469      hodique@lifl.fr--2005/muse--yh--1.0--patch-24
1470      hodique@lifl.fr--2005/muse--yh--1.0--patch-25
1471      hodique@lifl.fr--2005/muse--yh--1.0--patch-26
1472      hodique@lifl.fr--2005/muse--yh--1.0--patch-27
1473      hodique@lifl.fr--2005/muse--yh--1.0--patch-28
1474      hodique@lifl.fr--2005/muse--yh--1.0--patch-29
1475      hodique@lifl.fr--2005/muse--yh--1.0--patch-30
1476      hodique@lifl.fr--2005/muse--yh--1.0--patch-31
1477      hodique@lifl.fr--2005/muse--yh--1.0--patch-32
1478      hodique@lifl.fr--2005/muse--yh--1.0--patch-33
1479      hodique@lifl.fr--2005/muse--yh--1.0--patch-34
1480      hodique@lifl.fr--2005/muse--yh--1.0--patch-35
1481      hodique@lifl.fr--2005/muse--yh--1.0--patch-36
1482      hodique@lifl.fr--2005/muse--yh--1.0--patch-37
1483      hodique@lifl.fr--2005/muse--yh--1.0--patch-38
1484      hodique@lifl.fr--2005/muse--yh--1.0--patch-39
1485      hodique@lifl.fr--2005/muse--yh--1.0--patch-40
1486      hodique@lifl.fr--2005/muse--yh--1.0--patch-41
1487      hodique@lifl.fr--2005/muse--yh--1.0--patch-42
1488      hodique@lifl.fr--2005/muse--yh--1.0--patch-43
1489      hodique@lifl.fr--2005/muse--yh--1.0--patch-44
1490      hodique@lifl.fr--2005/muse--yh--1.0--patch-45
1491      jeho@jeho.org--2005/muse--jeho--1.0--base-0
1492      jeho@jeho.org--2005/muse--jeho--1.0--patch-1
1493      jeho@jeho.org--2005/muse--jeho--1.0--patch-2
1494      jeho@jeho.org--2005/muse--jeho--1.0--patch-3
1495      jeho@jeho.org--2005/muse--jeho--1.0--patch-4
1496      jeho@jeho.org--2005/muse--jeho--1.0--patch-5
1497      jeho@jeho.org--2005/muse--jeho--1.0--patch-6
1498      jeho@jeho.org--2005/muse--jeho--1.0--patch-7
1499      jeho@jeho.org--2005/muse--jeho--1.0--patch-8
1500      jeho@jeho.org--2005/muse--jeho--1.0--patch-9
1501      jeho@jeho.org--2005/muse--jeho--1.0--patch-10
1502      jeho@jeho.org--2005/muse--jeho--1.0--patch-11
1503      jeho@jeho.org--2005/muse--jeho--1.0--patch-12
1504      jeho@jeho.org--2005/muse--jeho--1.0--patch-13
1505      jeho@jeho.org--2005/muse--jeho--1.0--patch-14
1506      jeho@jeho.org--2005/muse--jeho--1.0--patch-15
1507      jeho@jeho.org--2005/muse--jeho--1.0--patch-16
1508      jeho@jeho.org--2005/muse--jeho--1.0--patch-17
1509      jeho@jeho.org--2005/muse--jeho--1.0--patch-18
1510      jeho@jeho.org--2005/muse--jeho--1.0--patch-19
1511      jeho@jeho.org--2005/muse--jeho--1.0--patch-20
1512      jeho@jeho.org--2005/muse--jeho--1.0--patch-21
1513      john@wjsullivan.net--2006/muse--johnsu01--0--base-0
1514      john@wjsullivan.net--2006/muse--johnsu01--0--patch-1
1515      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--base-0
1516      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-1
1517      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-2
1518      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-1
1519      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-2
1520      mwolson@gnu.org--2005/muse--main--1.0--base-0
1521      mwolson@gnu.org--2005/muse--main--1.0--patch-1
1522      mwolson@gnu.org--2005/muse--main--1.0--patch-2
1523      mwolson@gnu.org--2005/muse--main--1.0--patch-3
1524      mwolson@gnu.org--2005/muse--main--1.0--patch-4
1525      mwolson@gnu.org--2005/muse--main--1.0--patch-5
1526      mwolson@gnu.org--2005/muse--main--1.0--patch-6
1527      mwolson@gnu.org--2005/muse--main--1.0--patch-7
1528      mwolson@gnu.org--2005/muse--main--1.0--patch-8
1529      mwolson@gnu.org--2005/muse--main--1.0--patch-9
1530      mwolson@gnu.org--2005/muse--main--1.0--patch-10
1531      mwolson@gnu.org--2005/muse--main--1.0--patch-11
1532      mwolson@gnu.org--2005/muse--main--1.0--patch-12
1533      mwolson@gnu.org--2005/muse--main--1.0--patch-13
1534      mwolson@gnu.org--2005/muse--main--1.0--patch-14
1535      mwolson@gnu.org--2005/muse--main--1.0--patch-15
1536      mwolson@gnu.org--2005/muse--main--1.0--patch-16
1537      mwolson@gnu.org--2005/muse--main--1.0--patch-17
1538      mwolson@gnu.org--2005/muse--main--1.0--patch-18
1539      mwolson@gnu.org--2005/muse--main--1.0--patch-19
1540      mwolson@gnu.org--2005/muse--main--1.0--patch-20
1541      mwolson@gnu.org--2005/muse--main--1.0--patch-21
1542      mwolson@gnu.org--2005/muse--main--1.0--patch-22
1543      mwolson@gnu.org--2005/muse--main--1.0--patch-23
1544      mwolson@gnu.org--2005/muse--main--1.0--patch-24
1545      mwolson@gnu.org--2005/muse--main--1.0--patch-25
1546      mwolson@gnu.org--2005/muse--main--1.0--patch-26
1547      mwolson@gnu.org--2005/muse--main--1.0--patch-27
1548      mwolson@gnu.org--2005/muse--main--1.0--patch-28
1549      mwolson@gnu.org--2005/muse--main--1.0--patch-29
1550      mwolson@gnu.org--2005/muse--main--1.0--patch-30
1551      mwolson@gnu.org--2005/muse--main--1.0--patch-31
1552      mwolson@gnu.org--2005/muse--main--1.0--patch-32
1553      mwolson@gnu.org--2005/muse--main--1.0--patch-33
1554      mwolson@gnu.org--2005/muse--main--1.0--patch-34
1555      mwolson@gnu.org--2005/muse--main--1.0--patch-35
1556      mwolson@gnu.org--2005/muse--main--1.0--patch-36
1557      mwolson@gnu.org--2005/muse--main--1.0--patch-37
1558      mwolson@gnu.org--2005/muse--main--1.0--patch-38
1559      mwolson@gnu.org--2005/muse--main--1.0--patch-39
1560      mwolson@gnu.org--2005/muse--main--1.0--patch-40
1561      mwolson@gnu.org--2005/muse--main--1.0--patch-41
1562      mwolson@gnu.org--2005/muse--main--1.0--patch-42
1563      mwolson@gnu.org--2005/muse--main--1.0--patch-43
1564      mwolson@gnu.org--2005/muse--main--1.0--patch-44
1565      mwolson@gnu.org--2005/muse--main--1.0--patch-45
1566      mwolson@gnu.org--2005/muse--main--1.0--patch-46
1567      mwolson@gnu.org--2005/muse--main--1.0--patch-47
1568      mwolson@gnu.org--2005/muse--main--1.0--patch-48
1569      mwolson@gnu.org--2005/muse--main--1.0--patch-49
1570      mwolson@gnu.org--2005/muse--main--1.0--patch-50
1571      mwolson@gnu.org--2005/muse--main--1.0--patch-51
1572      mwolson@gnu.org--2005/muse--main--1.0--patch-52
1573      mwolson@gnu.org--2005/muse--main--1.0--patch-53
1574      mwolson@gnu.org--2005/muse--main--1.0--patch-54
1575      mwolson@gnu.org--2005/muse--main--1.0--patch-55
1576      mwolson@gnu.org--2005/muse--main--1.0--patch-56
1577      mwolson@gnu.org--2005/muse--main--1.0--patch-57
1578      mwolson@gnu.org--2005/muse--main--1.0--patch-58
1579      mwolson@gnu.org--2005/muse--main--1.0--patch-59
1580      mwolson@gnu.org--2005/muse--main--1.0--patch-60
1581      mwolson@gnu.org--2005/muse--main--1.0--patch-61
1582      mwolson@gnu.org--2005/muse--main--1.0--patch-62
1583      mwolson@gnu.org--2005/muse--main--1.0--patch-63
1584      mwolson@gnu.org--2005/muse--main--1.0--patch-64
1585      mwolson@gnu.org--2005/muse--main--1.0--patch-65
1586      mwolson@gnu.org--2005/muse--main--1.0--patch-66
1587      mwolson@gnu.org--2005/muse--main--1.0--patch-67
1588      mwolson@gnu.org--2005/muse--main--1.0--patch-68
1589      mwolson@gnu.org--2005/muse--main--1.0--patch-69
1590      mwolson@gnu.org--2005/muse--main--1.0--patch-70
1591      mwolson@gnu.org--2005/muse--main--1.0--patch-71
1592      mwolson@gnu.org--2005/muse--main--1.0--patch-72
1593      mwolson@gnu.org--2005/muse--main--1.0--patch-73
1594      mwolson@gnu.org--2005/muse--main--1.0--patch-74
1595      mwolson@gnu.org--2005/muse--main--1.0--patch-75
1596      mwolson@gnu.org--2005/muse--main--1.0--patch-76
1597      mwolson@gnu.org--2005/muse--main--1.0--patch-77
1598      mwolson@gnu.org--2005/muse--main--1.0--patch-78
1599      mwolson@gnu.org--2005/muse--main--1.0--patch-79
1600      mwolson@gnu.org--2005/muse--main--1.0--patch-80
1601      mwolson@gnu.org--2005/muse--main--1.0--patch-81
1602      mwolson@gnu.org--2005/muse--main--1.0--patch-82
1603      mwolson@gnu.org--2005/muse--main--1.0--patch-83
1604      mwolson@gnu.org--2005/muse--main--1.0--patch-84
1605      mwolson@gnu.org--2005/muse--main--1.0--patch-85
1606      mwolson@gnu.org--2005/muse--main--1.0--patch-86
1607      mwolson@gnu.org--2005/muse--main--1.0--patch-87
1608      mwolson@gnu.org--2005/muse--main--1.0--patch-88
1609      mwolson@gnu.org--2005/muse--main--1.0--patch-89
1610      mwolson@gnu.org--2005/muse--main--1.0--patch-90
1611      mwolson@gnu.org--2005/muse--main--1.0--patch-91
1612      mwolson@gnu.org--2005/muse--main--1.0--patch-92
1613      mwolson@gnu.org--2005/muse--main--1.0--patch-93
1614      mwolson@gnu.org--2005/muse--main--1.0--patch-94
1615      mwolson@gnu.org--2005/muse--main--1.0--patch-95
1616      mwolson@gnu.org--2005/muse--main--1.0--patch-96
1617      mwolson@gnu.org--2005/muse--main--1.0--patch-97
1618      mwolson@gnu.org--2005/muse--main--1.0--patch-98
1619      mwolson@gnu.org--2005/muse--main--1.0--patch-99
1620      mwolson@gnu.org--2005/muse--main--1.0--patch-100
1621      mwolson@gnu.org--2005/muse--main--1.0--patch-101
1622      mwolson@gnu.org--2005/muse--main--1.0--patch-102
1623      mwolson@gnu.org--2005/muse--main--1.0--patch-103
1624      mwolson@gnu.org--2005/muse--main--1.0--patch-104
1625      mwolson@gnu.org--2005/muse--main--1.0--patch-105
1626      mwolson@gnu.org--2005/muse--main--1.0--patch-106
1627      mwolson@gnu.org--2005/muse--main--1.0--patch-107
1628      mwolson@gnu.org--2005/muse--main--1.0--patch-108
1629      mwolson@gnu.org--2005/muse--main--1.0--patch-109
1630      mwolson@gnu.org--2005/muse--main--1.0--patch-110
1631      mwolson@gnu.org--2005/muse--main--1.0--patch-111
1632      mwolson@gnu.org--2005/muse--main--1.0--patch-112
1633      mwolson@gnu.org--2005/muse--main--1.0--patch-113
1634      mwolson@gnu.org--2005/muse--main--1.0--patch-114
1635      mwolson@gnu.org--2005/muse--main--1.0--patch-115
1636      mwolson@gnu.org--2005/muse--main--1.0--patch-116
1637      mwolson@gnu.org--2005/muse--main--1.0--patch-117
1638      mwolson@gnu.org--2005/muse--main--1.0--patch-118
1639      mwolson@gnu.org--2005/muse--main--1.0--patch-119
1640      mwolson@gnu.org--2005/muse--main--1.0--patch-120
1641      mwolson@gnu.org--2005/muse--main--1.0--patch-121
1642      mwolson@gnu.org--2005/muse--main--1.0--patch-122
1643      mwolson@gnu.org--2005/muse--main--1.0--patch-123
1644      mwolson@gnu.org--2005/muse--main--1.0--patch-124
1645      mwolson@gnu.org--2005/muse--main--1.0--patch-125
1646      mwolson@gnu.org--2005/muse--main--1.0--patch-126
1647      mwolson@gnu.org--2005/muse--main--1.0--patch-127
1648      mwolson@gnu.org--2005/muse--main--1.0--patch-128
1649      mwolson@gnu.org--2005/muse--main--1.0--patch-129
1650      mwolson@gnu.org--2005/muse--main--1.0--patch-130
1651      mwolson@gnu.org--2005/muse--main--1.0--patch-131
1652      mwolson@gnu.org--2005/muse--main--1.0--patch-132
1653      mwolson@gnu.org--2005/muse--main--1.0--patch-133
1654      mwolson@gnu.org--2005/muse--main--1.0--patch-134
1655      mwolson@gnu.org--2005/muse--main--1.0--patch-135
1656      mwolson@gnu.org--2005/muse--main--1.0--patch-136
1657      mwolson@gnu.org--2005/muse--main--1.0--patch-137
1658      mwolson@gnu.org--2005/muse--main--1.0--patch-138
1659      mwolson@gnu.org--2005/muse--main--1.0--patch-139
1660      mwolson@gnu.org--2005/muse--main--1.0--patch-140
1661      mwolson@gnu.org--2005/muse--main--1.0--patch-141
1662      mwolson@gnu.org--2005/muse--main--1.0--patch-142
1663      mwolson@gnu.org--2005/muse--main--1.0--patch-143
1664      mwolson@gnu.org--2005/muse--main--1.0--patch-144
1665      mwolson@gnu.org--2005/muse--main--1.0--patch-145
1666      mwolson@gnu.org--2005/muse--main--1.0--patch-146
1667      mwolson@gnu.org--2005/muse--main--1.0--patch-147
1668      mwolson@gnu.org--2005/muse--main--1.0--patch-148
1669      mwolson@gnu.org--2005/muse--main--1.0--patch-149
1670      mwolson@gnu.org--2005/muse--main--1.0--patch-150
1671      mwolson@gnu.org--2005/muse--main--1.0--patch-151
1672      mwolson@gnu.org--2005/muse--main--1.0--patch-152
1673      mwolson@gnu.org--2005/muse--main--1.0--patch-153
1674      mwolson@gnu.org--2005/muse--main--1.0--patch-154
1675      mwolson@gnu.org--2005/muse--main--1.0--patch-155
1676      mwolson@gnu.org--2005/muse--main--1.0--patch-156
1677      mwolson@gnu.org--2005/muse--main--1.0--patch-157
1678      mwolson@gnu.org--2005/muse--main--1.0--patch-158
1679      mwolson@gnu.org--2005/muse--main--1.0--patch-159
1680      mwolson@gnu.org--2005/muse--main--1.0--patch-160
1681      mwolson@gnu.org--2005/muse--main--1.0--patch-161
1682      mwolson@gnu.org--2005/muse--main--1.0--patch-162
1683      mwolson@gnu.org--2005/muse--main--1.0--patch-163
1684      mwolson@gnu.org--2005/muse--main--1.0--patch-164
1685      mwolson@gnu.org--2005/muse--main--1.0--patch-165
1686      mwolson@gnu.org--2005/muse--main--1.0--patch-166
1687      mwolson@gnu.org--2005/muse--main--1.0--patch-167
1688      mwolson@gnu.org--2005/muse--main--1.0--patch-168
1689      mwolson@gnu.org--2005/muse--main--1.0--patch-169
1690      mwolson@gnu.org--2005/muse--main--1.0--patch-170
1691      mwolson@gnu.org--2005/muse--main--1.0--patch-171
1692      mwolson@gnu.org--2005/muse--main--1.0--patch-172
1693      mwolson@gnu.org--2005/muse--main--1.0--patch-173
1694      mwolson@gnu.org--2005/muse--main--1.0--patch-174
1695      mwolson@gnu.org--2005/muse--main--1.0--patch-175
1696      mwolson@gnu.org--2005/muse--main--1.0--patch-176
1697      mwolson@gnu.org--2005/muse--main--1.0--patch-177
1698      mwolson@gnu.org--2005/muse--main--1.0--patch-178
1699      mwolson@gnu.org--2005/muse--main--1.0--patch-179
1700      mwolson@gnu.org--2005/muse--main--1.0--patch-180
1701      mwolson@gnu.org--2005/muse--main--1.0--patch-181
1702      mwolson@gnu.org--2005/muse--main--1.0--patch-182
1703      mwolson@gnu.org--2005/muse--main--1.0--patch-183
1704      mwolson@gnu.org--2005/muse--main--1.0--patch-184
1705      mwolson@gnu.org--2005/muse--main--1.0--patch-185
1706      mwolson@gnu.org--2005/muse--main--1.0--patch-186
1707      mwolson@gnu.org--2005/muse--main--1.0--patch-187
1708      mwolson@gnu.org--2005/muse--main--1.0--patch-188
1709      mwolson@gnu.org--2005/muse--main--1.0--patch-189
1710      mwolson@gnu.org--2005/muse--main--1.0--patch-190
1711      mwolson@gnu.org--2005/muse--main--1.0--patch-191
1712      mwolson@gnu.org--2005/muse--main--1.0--patch-192
1713      mwolson@gnu.org--2005/muse--main--1.0--patch-193
1714      mwolson@gnu.org--2005/muse--main--1.0--patch-194
1715      mwolson@gnu.org--2005/muse--main--1.0--patch-195
1716      mwolson@gnu.org--2005/muse--main--1.0--patch-196
1717      mwolson@gnu.org--2005/muse--main--1.0--patch-197
1718      mwolson@gnu.org--2005/muse--main--1.0--patch-198
1719      mwolson@gnu.org--2005/muse--main--1.0--patch-199
1720      mwolson@gnu.org--2005/muse--main--1.0--patch-200
1721      mwolson@gnu.org--2005/muse--main--1.0--patch-201
1722      mwolson@gnu.org--2005/muse--main--1.0--patch-202
1723      mwolson@gnu.org--2005/muse--main--1.0--patch-203
1724      mwolson@gnu.org--2005/muse--main--1.0--patch-204
1725      mwolson@gnu.org--2005/muse--main--1.0--patch-205
1726      mwolson@gnu.org--2005/muse--main--1.0--patch-206
1727      mwolson@gnu.org--2005/muse--main--1.0--patch-207
1728      mwolson@gnu.org--2005/muse--main--1.0--patch-208
1729      mwolson@gnu.org--2005/muse--main--1.0--patch-209
1730      mwolson@gnu.org--2005/muse--main--1.0--patch-210
1731      mwolson@gnu.org--2005/muse--main--1.0--patch-211
1732      mwolson@gnu.org--2005/muse--main--1.0--patch-212
1733      mwolson@gnu.org--2005/muse--main--1.0--patch-213
1734      mwolson@gnu.org--2005/muse--main--1.0--patch-214
1735      mwolson@gnu.org--2005/muse--main--1.0--patch-215
1736      mwolson@gnu.org--2005/muse--main--1.0--patch-216
1737      mwolson@gnu.org--2005/muse--main--1.0--patch-217
1738      mwolson@gnu.org--2005/muse--main--1.0--patch-218
1739      mwolson@gnu.org--2005/muse--main--1.0--patch-219
1740      mwolson@gnu.org--2005/muse--main--1.0--patch-220
1741      mwolson@gnu.org--2005/muse--main--1.0--patch-221
1742      mwolson@gnu.org--2005/muse--main--1.0--patch-222
1743      mwolson@gnu.org--2005/muse--main--1.0--patch-223
1744      mwolson@gnu.org--2005/muse--main--1.0--patch-224
1745      mwolson@gnu.org--2005/muse--main--1.0--patch-225
1746      mwolson@gnu.org--2005/muse--main--1.0--patch-226
1747      mwolson@gnu.org--2005/muse--main--1.0--patch-227
1748      mwolson@gnu.org--2005/muse--main--1.0--patch-228
1749      mwolson@gnu.org--2005/muse--main--1.0--patch-229
1750      mwolson@gnu.org--2005/muse--main--1.0--patch-230
1751      mwolson@gnu.org--2005/muse--main--1.0--patch-231
1752      mwolson@gnu.org--2005/muse--main--1.0--patch-232
1753      mwolson@gnu.org--2005/muse--main--1.0--patch-233
1754      mwolson@gnu.org--2005/muse--main--1.0--patch-234
1755      mwolson@gnu.org--2005/muse--main--1.0--patch-235
1756      mwolson@gnu.org--2005/muse--main--1.0--patch-236
1757      mwolson@gnu.org--2005/muse--main--1.0--patch-237
1758      mwolson@gnu.org--2005/muse--main--1.0--patch-238
1759      mwolson@gnu.org--2005/muse--main--1.0--patch-239
1760      mwolson@gnu.org--2005/muse--main--1.0--patch-240
1761      mwolson@gnu.org--2005/muse--main--1.0--patch-241
1762      mwolson@gnu.org--2005/muse--main--1.0--patch-242
1763      mwolson@gnu.org--2005/muse--main--1.0--patch-243
1764      mwolson@gnu.org--2005/muse--main--1.0--patch-244
1765      mwolson@gnu.org--2005/muse--main--1.0--patch-245
1766      mwolson@gnu.org--2005/muse--main--1.0--patch-246
1767      mwolson@gnu.org--2005/muse--main--1.0--patch-247
1768      mwolson@gnu.org--2005/muse--main--1.0--patch-248
1769      mwolson@gnu.org--2005/muse--main--1.0--patch-249
1770      mwolson@gnu.org--2005/muse--main--1.0--patch-250
1771      mwolson@gnu.org--2005/muse--main--1.0--patch-251
1772      mwolson@gnu.org--2005/muse--main--1.0--patch-252
1773      mwolson@gnu.org--2005/muse--main--1.0--patch-253
1774      mwolson@gnu.org--2005/muse--main--1.0--patch-254
1775      mwolson@gnu.org--2005/muse--main--1.0--patch-255
1776      mwolson@gnu.org--2005/muse--main--1.0--patch-256
1777      mwolson@gnu.org--2005/muse--main--1.0--patch-257
1778      mwolson@gnu.org--2005/muse--main--1.0--patch-258
1779      mwolson@gnu.org--2005/muse--main--1.0--patch-259
1780      mwolson@gnu.org--2005/muse--main--1.0--patch-260
1781      mwolson@gnu.org--2005/muse--main--1.0--patch-261
1782      mwolson@gnu.org--2005/muse--main--1.0--patch-262
1783      mwolson@gnu.org--2005/muse--main--1.0--patch-263
1784      mwolson@gnu.org--2005/muse--main--1.0--patch-264
1785      mwolson@gnu.org--2005/muse--main--1.0--patch-265
1786      mwolson@gnu.org--2005/muse--main--1.0--patch-266
1787      mwolson@gnu.org--2005/muse--main--1.0--patch-267
1788      mwolson@gnu.org--2005/muse--main--1.0--patch-268
1789      mwolson@gnu.org--2005/muse--main--1.0--patch-269
1790      mwolson@gnu.org--2005/muse--main--1.0--patch-270
1791      mwolson@gnu.org--2005/muse--main--1.0--patch-271
1792      mwolson@gnu.org--2005/muse--main--1.0--patch-272
1793      mwolson@gnu.org--2005/muse--main--1.0--patch-273
1794      mwolson@gnu.org--2005/muse--main--1.0--patch-274
1795      mwolson@gnu.org--2005/muse--main--1.0--patch-275
1796      mwolson@gnu.org--2005/muse--main--1.0--patch-276
1797      mwolson@gnu.org--2005/muse--main--1.0--patch-277
1798      mwolson@gnu.org--2005/muse--main--1.0--patch-278
1799      mwolson@gnu.org--2005/muse--main--1.0--patch-279
1800      mwolson@gnu.org--2005/muse--main--1.0--patch-280
1801      mwolson@gnu.org--2005/muse--main--1.0--patch-281
1802      mwolson@gnu.org--2005/muse--main--1.0--patch-282
1803      mwolson@gnu.org--2005/muse--main--1.0--patch-283
1804      mwolson@gnu.org--2005/muse--main--1.0--patch-284
1805      mwolson@gnu.org--2005/muse--main--1.0--patch-285
1806      mwolson@gnu.org--2005/muse--main--1.0--patch-286
1807      mwolson@gnu.org--2005/muse--main--1.0--patch-287
1808      mwolson@gnu.org--2005/muse--main--1.0--patch-288
1809      mwolson@gnu.org--2005/muse--main--1.0--patch-289
1810      mwolson@gnu.org--2005/muse--main--1.0--patch-290
1811      mwolson@gnu.org--2005/muse--main--1.0--patch-291
1812      mwolson@gnu.org--2005/muse--main--1.0--patch-292
1813      mwolson@gnu.org--2005/muse--main--1.0--patch-293
1814      mwolson@gnu.org--2005/muse--main--1.0--patch-294
1815      mwolson@gnu.org--2005/muse--main--1.0--patch-295
1816      mwolson@gnu.org--2005/muse--main--1.0--patch-296
1817      mwolson@gnu.org--2005/muse--main--1.0--patch-297
1818      mwolson@gnu.org--2005/muse--main--1.0--patch-298
1819      mwolson@gnu.org--2005/muse--main--1.0--patch-299
1820      mwolson@gnu.org--2005/muse--main--1.0--patch-300
1821      mwolson@gnu.org--2005/muse--main--1.0--patch-301
1822      mwolson@gnu.org--2005/muse--main--1.0--patch-302
1823      mwolson@gnu.org--2005/muse--main--1.0--patch-303
1824      mwolson@gnu.org--2005/muse--main--1.0--patch-304
1825      mwolson@gnu.org--2005/muse--main--1.0--patch-305
1826      mwolson@gnu.org--2005/muse--main--1.0--patch-306
1827      mwolson@gnu.org--2005/muse--main--1.0--patch-307
1828      mwolson@gnu.org--2005/muse--main--1.0--patch-308
1829      mwolson@gnu.org--2005/muse--main--1.0--patch-309
1830      mwolson@gnu.org--2005/muse--main--1.0--patch-310
1831      mwolson@gnu.org--2005/muse--main--1.0--patch-311
1832      mwolson@gnu.org--2005/muse--main--1.0--patch-312
1833      mwolson@gnu.org--2005/muse--main--1.0--patch-313
1834      mwolson@gnu.org--2005/muse--main--1.0--patch-314
1835      mwolson@gnu.org--2005/muse--main--1.0--patch-315
1836      mwolson@gnu.org--2005/muse--main--1.0--patch-316
1837      mwolson@gnu.org--2005/muse--main--1.0--patch-317
1838      mwolson@gnu.org--2005/muse--main--1.0--patch-318
1839      mwolson@gnu.org--2005/muse--main--1.0--patch-319
1840      mwolson@gnu.org--2005/muse--main--1.0--patch-320
1841      mwolson@gnu.org--2005/muse--main--1.0--patch-321
1842      mwolson@gnu.org--2005/muse--main--1.0--patch-322
1843      mwolson@gnu.org--2005/muse--main--1.0--patch-323
1844      mwolson@gnu.org--2005/muse--main--1.0--patch-324
1845      mwolson@gnu.org--2005/muse--main--1.0--patch-325
1846      mwolson@gnu.org--2005/muse--main--1.0--patch-326
1847      mwolson@gnu.org--2005/muse--main--1.0--patch-327
1848      mwolson@gnu.org--2005/muse--main--1.0--patch-328
1849      mwolson@gnu.org--2005/muse--main--1.0--patch-329
1850      mwolson@gnu.org--2005/muse--main--1.0--patch-330
1851      mwolson@gnu.org--2005/muse--main--1.0--patch-331
1852      mwolson@gnu.org--2005/muse--main--1.0--patch-332
1853      mwolson@gnu.org--2005/muse--main--1.0--patch-333
1854      mwolson@gnu.org--2005/muse--main--1.0--patch-334
1855      mwolson@gnu.org--2005/muse--main--1.0--patch-335
1856      mwolson@gnu.org--2005/muse--main--1.0--patch-336
1857      mwolson@gnu.org--2005/muse--main--1.0--patch-337
1858      mwolson@gnu.org--2005/muse--main--1.0--patch-338
1859      mwolson@gnu.org--2005/muse--main--1.0--patch-339
1860      mwolson@gnu.org--2005/muse--main--1.0--patch-340
1861      mwolson@gnu.org--2005/muse--main--1.0--patch-341
1862      mwolson@gnu.org--2005/muse--main--1.0--patch-342
1863      mwolson@gnu.org--2005/muse--main--1.0--patch-343
1864      mwolson@gnu.org--2005/muse--main--1.0--patch-344
1865      mwolson@gnu.org--2005/muse--main--1.0--patch-345
1866      mwolson@gnu.org--2005/muse--main--1.0--patch-346
1867      mwolson@gnu.org--2005/muse--main--1.0--patch-347
1868      mwolson@gnu.org--2005/muse--main--1.0--patch-348
1869      mwolson@gnu.org--2005/muse--main--1.0--patch-349
1870      mwolson@gnu.org--2005/muse--main--1.0--patch-350
1871      mwolson@gnu.org--2005/muse--main--1.0--patch-351
1872      mwolson@gnu.org--2005/muse--main--1.0--patch-352
1873      mwolson@gnu.org--2005/muse--main--1.0--patch-353
1874      mwolson@gnu.org--2005/muse--main--1.0--patch-354
1875      mwolson@gnu.org--2005/muse--main--1.0--patch-355
1876      mwolson@gnu.org--2005/muse--rel--3.02--base-0
1877      mwolson@gnu.org--2005/muse--rel--3.02--patch-1
1878      mwolson@gnu.org--2005/muse--rel--3.02--patch-2
1879      mwolson@gnu.org--2005/muse--rel--3.02--patch-3
1880      mwolson@gnu.org--2005/muse--rel--3.02--patch-4
1881      mwolson@gnu.org--2005/muse--rel--3.02--patch-5
1882      mwolson@gnu.org--2005/muse--rel--3.02--patch-6
1883      mwolson@gnu.org--2005/muse--rel--3.02--patch-7
1884      mwolson@gnu.org--2005/muse--rel--3.02--patch-8
1885      mwolson@gnu.org--2005/muse--rel--3.02--patch-11
1886      mwolson@gnu.org--2005/muse--rel--3.02--patch-13
1887      mwolson@gnu.org--2005/muse--rel--3.02--patch-14
1888      mwolson@gnu.org--2005/muse--rel--3.02--patch-15
1889      mwolson@gnu.org--2005/muse--rel--3.02--patch-17
1890      mwolson@gnu.org--2005/muse--rel--3.02--patch-18
1891      mwolson@gnu.org--2005/muse--rel--3.02--patch-19
1892      mwolson@gnu.org--2005/muse--rel--3.02--patch-20
1893      mwolson@gnu.org--2005/muse--rel--3.02--patch-21
1894      mwolson@gnu.org--2005/muse--rel--3.02--patch-22
1895      mwolson@gnu.org--2005/muse--rel--3.02--patch-23
1896      mwolson@gnu.org--2005/muse--rel--3.02--patch-25
1897      mwolson@gnu.org--2005/muse--rel--3.02--patch-27
1898      mwolson@gnu.org--2005/muse--rel--3.02--patch-28
1899      mwolson@gnu.org--2005/muse--rel--3.02--patch-29
1900      mwolson@gnu.org--2005/muse--rel--3.02--patch-35
1901      mwolson@gnu.org--2005/muse--rel--3.02--patch-36
1902      mwolson@gnu.org--2005/muse--rel--3.02--patch-37
1903      mwolson@gnu.org--2005/muse--rel--3.02--patch-53
1904      mwolson@gnu.org--2005/muse--rel--3.02--patch-54
1905      mwolson@gnu.org--2005/muse--rel--3.02--patch-55
1906      mwolson@gnu.org--2005/muse--rel--3.02--patch-56
1907      mwolson@member.fsf.org--2004/muse--main--1.0--base-0
1908      mwolson@member.fsf.org--2004/muse--main--1.0--patch-1
1909      mwolson@member.fsf.org--2004/muse--main--1.0--patch-2
1910      mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
1911      mwolson@member.fsf.org--2004/muse--mwolson--1.0--base-0
1912      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-1
1913      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-2
1914      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-3
1915      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-4
1916      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-5
1917      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-6
1918      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-7
1919      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-8