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