Move regexps to same group, only make 4 heading faces.
[muse-el.git] / ChangeLog
blob1c9648a4c4541f3495212fd79a8322efc2c392aa
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0
5 2005-06-11 01:28:01 GMT Michael Olson <mwolson@gnu.org> patch-48
7     Summary:
8       Move regexps to same group, only make 4 heading faces.
9     Revision:
10       muse--main--1.0--patch-48
12     * muse-colors.el (muse-make-faces): Only create 4 header faces since we
13       can only publish 3 of them specially, leaving the fourth to be in
14       plain text.
15       (muse-colors-markup): Only recognize 4 levels of heading.
16     
17     * muse-regexps.el (muse-tag-regexp, muse-link-regexp, muse-url-regexp)
18       (muse-file-regexp, muse-image-regexp)
19       (muse-ignored-extensions-regexp): Moved here from muse.el.  It seems
20       like a good idea to have all the regexps in the same group.
22     modified files:
23      ChangeLog muse-colors.el muse-regexps.el muse.el
26 2005-06-09 19:48:02 GMT Michael Olson <mwolson@gnu.org> patch-47
28     Summary:
29       Update my example config, minor code cleanup.
30     Revision:
31       muse--main--1.0--patch-47
33     * examples/mwolson/muse-init.el (muse-project-alist): Shorten project
34       names and add "Plans" project.
35     
36     * muse-docbook.el (looking-back): Delete.
37     
38     * muse-html.el (looking-back): Delete.
39     
40     * muse-html.el (muse-html-markup-paragraph): Use `muse-looking-back'
41       instead of `looking-back'.
42     
43     * muse.el (muse-looking-back): Instead of redefining the `looking-back'
44       function, use this function.  If `looking-back' exists, call it;
45       otherwise, use a workaround.
47     removed files:
48      contrib/.arch-ids/pcomplete.el.id contrib/pcomplete.el
50     modified files:
51      ChangeLog examples/mwolson/muse-init.el muse-docbook.el
52      muse-html.el muse.el
55 2005-05-30 22:15:13 GMT Michael Olson <mwolson@gnu.org> patch-46
57     Summary:
58       Handle a few paragraph publishing edge cases better.
59     Revision:
60       muse--main--1.0--patch-46
62     * muse-docbook.el (muse-docbook-markup-regexps): Consolidate the
63       beginning-of-document, end-of-document, and paragraph separator regexps
64       so that one markup rule can be used in all these cases.
65       (muse-docbook-markup-paragraph): Handle more cases correctly.  In
66       particular, blockquote or center at beginning or end of document will
67       be published properly.  Hopefully this won't slow things down too much.
68       (muse-docbook-markup-paragraph-close): Removed.
69     
70     * muse-blosxom.el (muse-blosxom-markup-regexps): Ditto.
71     
72     * muse-html.el (muse-html-markup-regexps, muse-html-markup-paragraph):
73       Ditto.
74       (muse-html-markup-paragraph-close): Removed.
76     modified files:
77      ChangeLog muse-blosxom.el muse-docbook.el muse-html.el
80 2005-05-28 23:37:11 GMT Michael Olson <mwolson@gnu.org> patch-45
82     Summary:
83       Improve prompt when reading a tag.
84     Revision:
85       muse--main--1.0--patch-45
87     * muse-mode.el (muse-insert-tag): Add a colon after "default" like some
88       other Emacs modes seem to do.
90     modified files:
91      ChangeLog muse-mode.el
94 2005-05-28 23:34:50 GMT Michael Olson <mwolson@gnu.org> patch-44
96     Summary:
97       Warn user when publishing fails due to a private directory.
98     Revision:
99       muse--main--1.0--patch-44
101     * muse-project.el (muse-project-private-p): Warn users when publishing a
102       file fails due to its directory not being readable by others.  Make
103       sure that you do a `chmod +o name_of_directory' if you want the
104       contents of that directory to be publishable.
106     modified files:
107      ChangeLog muse-project.el
110 2005-05-28 23:21:39 GMT Michael Olson <mwolson@gnu.org> patch-43
112     Summary:
113       Fix error with example tags and message publishing style.
114     Revision:
115       muse--main--1.0--patch-43
117     * muse-colors.el: Don't define `font-lock-mode' as a variable.  Check to
118       see if a previous definition for `font-lock-multiline' exists.
119     
120     * muse-message.el (muse-message-example-tag): Don't require two
121       additional (unused) arguments.
123     modified files:
124      ChangeLog muse-colors.el muse-message.el
127 2005-05-22 05:58:40 GMT Michael Olson <mwolson@gnu.org> patch-42
129     Summary:
130       Always end the published document with a newline.
131     Revision:
132       muse--main--1.0--patch-42
134     * muse-html.el (muse-html-markup-paragraph-close): Always end the
135       published document with a newline.
136     
137     * muse-docbook.el (muse-docbook-markup-paragraph-close): Ditto.
139     modified files:
140      ChangeLog muse-docbook.el muse-html.el
143 2005-05-22 01:26:13 GMT Michael Olson <mwolson@gnu.org> patch-41
145     Summary:
146       Don't let automatic backup files crash the publishing process.
147     Revision:
148       muse--main--1.0--patch-41
150     * muse-blosxom.el (muse-blosxom-markup-regexps): Remove rule for date
151       directive since this value is already processed by
152       `muse-publish-markup-directive', and may be obtained by using
153       the code: (muse-publishing-directive "date").
154     
155     * muse-colors.el (muse-colors-region): Make sure that we don't ever try
156       to run (funcall nil); this happened once during a debugging process.
157     
158     * muse-project.el (muse-project-private-p): Skip any file for which we
159       cannot fetch attributes.  This fixes a bug where having an
160       Emacs-generated automatic backup file in a publishing directory causes
161       the publishing process to halt with an error.
163     modified files:
164      ChangeLog muse-blosxom.el muse-colors.el muse-project.el
167 2005-05-20 20:44:46 GMT Michael Olson <mwolson@gnu.org> patch-40
169     Summary:
170       Apply fix in previous patch to the DocBook publishing style.
171     Revision:
172       muse--main--1.0--patch-40
174     * muse-docbook.el (muse-docbook-markup-paragraph-close): Apply fix from
175       previous patch here as well.
176     
178     modified files:
179      ChangeLog muse-docbook.el
182 2005-05-20 20:28:32 GMT Michael Olson <mwolson@gnu.org> patch-39
184     Summary:
185       Fix newly-introduced lock-up during HTML publishing.
186     Revision:
187       muse--main--1.0--patch-39
189     * muse-blosxom.el (muse-blosxom-markup-regexps): Give date directive and
190       planner rules higher priority in the publishing sequence.  Hopefully
191       this will not wreck anything; I don't use these rules, so I cannot
192       tell.  This wasn't a real bugfix, just an aesthetic code thing for me.
193     
194     * muse-html.el (muse-html-markup-paragraph-close): Don't use
195       replace-match; that seems to be slightly evil.  Return nil instead of a
196       newline since otherwise Muse thinks that we are not done yet and gets
197       into an infinite loop.  This should fix the lock-up problem that
198       resulted from the previous few patches.
200     modified files:
201      ChangeLog muse-blosxom.el muse-html.el
204 2005-05-19 23:44:16 GMT Michael Olson <mwolson@gnu.org> patch-38
206     Summary:
207       Parenthesis goofup.
208     Revision:
209       muse--main--1.0--patch-38
211     * muse-blosxom.el (muse-blosxom-markup-regexps): Remove stray parenthesis.
212     
214     modified files:
215      ChangeLog muse-blosxom.el
218 2005-05-19 23:41:54 GMT Michael Olson <mwolson@gnu.org> patch-37
220     Summary:
221       Make docbook and blosxom modes close paragraphs properly at end.
222     Revision:
223       muse--main--1.0--patch-37
225     * muse-blosxom.el (muse-blosxom-markup-regexps): Use new rule from last
226       patch.
227     
228     * muse-docbook.el (muse-docbook-markup-regexps): Ditto.
229       (muse-docbook-markup-paragraph-close): Adapt from
230       `muse-html-markup-paragraph-close'.
231     
232     * muse-html.el (muse-html-markup-paragraph-close): Add newline so that we
233       preserve the same appearance as before the last patch.
235     modified files:
236      ChangeLog muse-blosxom.el muse-docbook.el muse-html.el
239 2005-05-19 23:26:50 GMT Michael Olson <mwolson@gnu.org> patch-36
241     Summary:
242       Bugfix: Close P tag properly at end of file.
243     Revision:
244       muse--main--1.0--patch-36
246     * muse-blosxom.el: Fix bug where loading this file twice would cause an
247       error.
248     
249     * muse-html.el (muse-html-markup-regexps): Use simpler mechanism for
250       detecting whether or not a paragraph needs a closing P tag.
251       (muse-html-markup-paragraph-close): New function that only inserts a
252       closing P tag when an unclosed P tag is nearby.
254     modified files:
255      ChangeLog muse-blosxom.el muse-html.el
258 2005-05-18 06:07:02 GMT Michael Olson <mwolson@gnu.org> patch-35
260     Summary:
261       Update my example settings.
262     Revision:
263       muse--main--1.0--patch-35
265     * examples/mwolson/muse-init.el: Synchronize with my current settings.
267     modified files:
268      ChangeLog examples/mwolson/muse-init.el
271 2005-05-18 06:03:07 GMT Michael Olson <mwolson@gnu.org> patch-34
273     Summary:
274       Update documentation for C-c TAB feature.
275     Revision:
276       muse--main--1.0--patch-34
278     * muse.texi (Keystroke Summary): Note that C-c TAB calls
279       `muse-insert-tag'.
280     
282     modified files:
283      ChangeLog muse.texi
286 2005-05-18 06:00:27 GMT Michael Olson <mwolson@gnu.org> patch-33
288     Summary:
289       New feature: tag completion with C-c TAB.
290     Revision:
291       muse--main--1.0--patch-33
293     * muse-mode.el (muse-mode-map): Map C-c TAB to `muse-insert-tag'.
294       (muse-tag-history, muse-custom-tags): New variables that keep track of
295       the tag history and newly-entered tags respectively for
296       `muse-insert-tag'.
297       (muse-insert-tag): New function that interactively prompts the user for
298       a tag to use.
300     modified files:
301      ChangeLog muse-mode.el
304 2005-05-18 05:49:07 GMT Michael Olson <mwolson@gnu.org> patch-32
306     Summary:
307       Fix XHTML validation error with <hr> and <br>.
308     Revision:
309       muse--main--1.0--patch-32
311     * muse-html.el (muse-xhtml-markup-strings): Use the proper form of the BR
312       and HR tags for XHTML publishing.  This should fix a few validation
313       errors that I've been noticing lately.
315     modified files:
316      ChangeLog muse-html.el
319 2005-05-12 22:46:10 GMT Michael Olson <mwolson@gnu.org> patch-31
321     Summary:
322       Remove flyspell overlays on links.
323     Revision:
324       muse--main--1.0--patch-31
326     * muse-colors.el (muse-colors-link): Remove flyspell overlays.  This
327       should make the link clickable.  On Emacs21, the color will stay red,
328       but other Emacsen should do the right thing, which is use the normal
329       link color.  Hopefully this will fix some strange flyspell-related link
330       problems.
332     modified files:
333      ChangeLog muse-colors.el
336 2005-05-06 03:30:05 GMT Michael Olson <mwolson@gnu.org> patch-30
338     Summary:
339       Update my example Muse settings.
340     Revision:
341       muse--main--1.0--patch-30
343     * examples/mwolson/muse-init.el: Update from my latest version.
344       (muse-project-alist): Remove the francais part of my blog.
345       (my-muse-mode-flyspell-p): Split old `my-muse-mode-affect-p' function
346       into this and `my-muse-mode-fill-nobreak-p'.
347       (muse-mode-hook): Tell fill mode to avoid breaking links; hopefully
348       this is the best way to accomplish this.
349       (my-muse-blosxom-title-to-file): Replace more non-alphanumeric
350       characters in the title.
351       (my-muse-prepare-entry-for-xanga): Treat example regions better.
353     modified files:
354      ChangeLog examples/mwolson/muse-init.el
357 2005-04-21 18:25:28 GMT Michael Olson <mwolson@gnu.org> patch-29
359     Summary:
360       Add simple `muse-version' function.
361     Revision:
362       muse--main--1.0--patch-29
364     * muse.el (muse-version): New function that displays the value of the
365       `muse-version' variable.  This should be easier for the user to type
366       than C-h v muse-version.
368     modified files:
369      ChangeLog muse.el
372 2005-04-21 18:19:02 GMT Michael Olson <mwolson@gnu.org> patch-28
374     Summary:
375       Don't compile documentation by default.
376     Revision:
377       muse--main--1.0--patch-28
379     * Makefile (all): Don't compile documentation by default.
380       (doc): Use this rule to compile documentation.
382     modified files:
383      ChangeLog Makefile
386 2005-04-16 18:08:24 GMT Michael Olson <mwolson@gnu.org> patch-27
388     Summary:
389       Merge RSS 2.0 enclosure support for muse-journal.el from johnw
390     Revision:
391       muse--main--1.0--patch-27
393     2005-04-16  Michael Olson  <mwolson@gnu.org>
394     
395         * muse-journal.el: Merge in enclosure support for RSS 2.0 from
396         johnw. If a journal entry's title is a [[link]], then an
397         <enclosure> tag will be added to the XML data giving the size and
398         MIME type of the link target.  This makes podcasting with Muse
399         trivial.
400         (muse-journal-rss-entry-template): Add enclosure usage to example.
401         (muse-journal-rss-munge-buffer): Implement enclosures.
403     modified files:
404      ChangeLog muse-journal.el
407 2005-04-15 05:54:30 GMT Michael Olson <mwolson@gnu.org> patch-26
409     Summary:
410       Standardize source headers, appease elint, don't require planner
411     Revision:
412       muse--main--1.0--patch-26
414     2005-04-15  Michael Olson  <mwolson@gnu.org>
415     
416         * Makefile, scripts/muse-build.el: Moved muse-build.el to the
417         `scripts' directory since it really isn't part of Muse proper; it
418         is used to generate Muse output from the command line.
419     
420         * muse-blosxom.el: Handle case where planner is not loaded so that
421         it isn't a hard requirement.
422     
423         * muse-colors.el: Move definition of `muse-colors-tag-info' up so
424         that elint doesn't complain.
425     
426         * muse-message.el (muse-message-markup-link): Don't throw up on
427         links with no description.
428     
429         * muse-blosxom.el, muse-book.el, muse-colors.el, muse-convert.el,
430         muse-docbook.el, muse-html.el, muse-http.el, muse-journal.el,
431         muse-latex.el, muse-message.el, muse-mode.el, muse-poem.el,
432         muse-project.el, muse-publish.el, muse-regexps.el,
433         muse-texinfo.el, muse.el: Add standard header for each file in
434         preparation for the initial release, which will hopefully happen
435         sometime within the next month.
436     
438     removed files:
439      experimental/.arch-ids/=id
441     modified files:
442      ChangeLog Makefile muse-blosxom.el muse-book.el muse-colors.el
443      muse-convert.el muse-docbook.el muse-html.el muse-http.el
444      muse-journal.el muse-latex.el muse-message.el muse-mode.el
445      muse-poem.el muse-project.el muse-publish.el muse-regexps.el
446      muse-texinfo.el muse.el
448     renamed files:
449      .arch-ids/muse-build.el.id
450        ==> scripts/.arch-ids/muse-build.el.id
451      muse-build.el
452        ==> scripts/muse-build.el
454     removed directories:
455      experimental experimental/.arch-ids
458 2005-04-14 23:46:47 GMT Michael Olson <mwolson@gnu.org> patch-25
460     Summary:
461       Merge contents of muse-latexcjk.el into muse-latex.el.
462     Revision:
463       muse--main--1.0--patch-25
465     2005-04-14  Michael Olson  <mwolson@gnu.org>
466     
467         * muse-latex.el (muse-latexcjk-header, muse-latexcjk-footer)
468         (muse-latexcjk-encoding-map, muse-latexcjk-encoding-default)
469         (muse-latexcjk-encoding, muse-latexcjk-transform-content-type):
470         Merge in from muse-latexcjk.el.
471     
472         * muse-latexcjk.el: Removed, functionality merged with
473         muse-latex.el
475     removed files:
476      .arch-ids/muse-latexcjk.el.id muse-latexcjk.el
478     modified files:
479      ChangeLog muse-latex.el
482 2005-04-06 23:25:47 GMT Michael Olson <mwolson@gnu.org> patch-24
484     Summary:
485       Merge muse-xhtml.el into muse-html.el.
486     Revision:
487       muse--main--1.0--patch-24
489     2005-04-06  Michael Olson  <mwolson@gnu.org>
490     
491         * examples/mwolson/muse-init.el: Update with respect to the
492         muse-xhtml.el merge.
493     
494         * muse-html.el: The contents of muse-xhtml.el have been merged in
495         as advised by John Wiegley.
496         (muse-html-style-sheet): Add example for XHTML use in the
497         function's documentation.
498         (muse-xhtml-header, muse-xhtml-footer, muse-xhtml-markup-tags):
499         Moved from muse-xhtml.el.
500     
501         * muse-xhtml.el: Removed; contents merged into muse-html.el.
503     removed files:
504      .arch-ids/muse-xhtml.el.id muse-xhtml.el
506     modified files:
507      ChangeLog examples/mwolson/muse-init.el muse-html.el
510 2005-04-06 03:18:55 GMT Michael Olson <mwolson@gnu.org> patch-23
512     Summary:
513       Try to fix regexps for Emacs 21.4.
514     Revision:
515       muse--main--1.0--patch-23
517     2005-04-05  Michael Olson  <mwolson@gnu.org>
518     
519         * muse-regexps.el (muse-extreg-usable-p): Try to make regexps work
520         for Emacs 21.4.
522     modified files:
523      ChangeLog muse-regexps.el
526 2005-04-01 17:59:47 GMT Michael Olson <mwolson@gnu.org> patch-22
528     Summary:
529       Add comments to the publish-project example script
530     Revision:
531       muse--main--1.0--patch-22
533     2005-04-01  Michael Olson  <mwolson@gnu.org>
534     
535         * examples/publish-project: Moved here from
536         scripts/publish-project.  Added a few comments so people know what
537         it is used for.
539     modified files:
540      ChangeLog examples/publish-project
542     renamed files:
543      scripts/.arch-ids/publish-project.id
544        ==> examples/.arch-ids/publish-project.id
545      scripts/publish-project
546        ==> examples/publish-project
549 2005-04-01 02:27:08 GMT Michael Olson <mwolson@gnu.org> patch-21
551     Summary:
552       New XHTML style, add more examples to my sample muse config
553     Revision:
554       muse--main--1.0--patch-21
556     2005-03-31  Michael Olson  <mwolson@gnu.org>
557     
558         * examples/mwolson/muse-init.el: Give an example of deriving a
559         custom publishing style.
560         (my-muse-blosxom-finalize): Finalizes the "my-blosxom" style.
561         (my-muse-prepare-entry-for-xanga): Mangle the published output
562         from a blosxom project and copy the result to the clipboard for
563         easy pasting into Xanga's web form.  The file is untouched.
564     
565         * muse-html.el (muse-html-style-sheet): Include the <style
566         type="text/css"></style> wrapper around the example.
567         (muse-html-header): Don't add <style type="text/css"></style>
568         around the value of `muse-html-style-sheet' anymore.  This allows
569         for the option of putting your stylesheet(s) in a separate file.
570         An example of this is given in the documentation for this
571         variable.
572     
573         * muse-xhtml: New file that implements a publishing style which is
574         derived from HTML mode.  It uses a slightly modified version of
575         the HTML markup rules to generate XHTML-compliant output.
576     
577         * muse-blosxom.el: Add new "blosxom-xhtml" style.  The old
578         "blosxom" style has been renamed to "blosxom-html".  Fix a few
579         header gaffes.
580     
581         * muse-journal.el: Add new "journal-xhtml" style.
582     
583         * muse-message.el: Add new "message-xhtml" style.
585     new files:
586      .arch-ids/muse-xhtml.el.id muse-xhtml.el
588     modified files:
589      ChangeLog examples/mwolson/muse-init.el muse-blosxom.el
590      muse-html.el muse-journal.el muse-message.el
593 2005-03-25 03:55:13 GMT Michael Olson <mwolson@gnu.org> patch-20
595     Summary:
596       Add my muse configuration to the examples
597     Revision:
598       muse--main--1.0--patch-20
600     2005-03-24  Michael Olson  <mwolson@gnu.org>
601     
602         * examples/johnw: Move John Wiegley's configuration to this
603         directory.
604     
605         * examples/mwolson: My configuration files go here.
606     
607         * examples/mwolson/muse-init.el: My Muse configuration file.  I
608         just figured out how to keep links from being spell-checked or
609         split up by fill-mode, so the implementation of this may be found
610         here.  I also made a function that sets up a blog entry for me.
612     new files:
613      examples/johnw/.arch-ids/=id examples/mwolson/.arch-ids/=id
614      examples/mwolson/.arch-ids/muse-init.el.id
615      examples/mwolson/muse-init.el
617     modified files:
618      ChangeLog
620     renamed files:
621      examples/.arch-ids/muse-johnw.el.id
622        ==> examples/johnw/.arch-ids/muse-johnw.el.id
623      examples/.arch-ids/publish-johnw.id
624        ==> examples/johnw/.arch-ids/publish-johnw.id
625      examples/muse-johnw.el
626        ==> examples/johnw/muse-johnw.el
627      examples/publish-johnw
628        ==> examples/johnw/publish-johnw
630     new directories:
631      examples/johnw examples/johnw/.arch-ids examples/mwolson
632      examples/mwolson/.arch-ids
635 2005-03-24 22:57:10 GMT Michael Olson <mwolson@gnu.org> patch-19
637     Summary:
638       Add muse-blosxom script and plugin for pyblosxom
639     Revision:
640       muse--main--1.0--patch-19
642     2005-03-24  Michael Olson  <mwolson@gnu.org>
643     
644         * muse-blosxom.el: Update copyright notice in headers and mention
645         the pyblosxom scripts.
646     
647         * contrib/pyblosxom: New directory containing pyblosxom plugins
648         and helper scripts.
649     
650         * contrib/getstamps.py: Script that generates the "timestamps"
651         file, run on the local machine.
652     
653         * contrib/hardcodedates.py: PyBlosxom plugin that interprets the
654         timestamps file.
656     new files:
657      contrib/pyblosxom/.arch-ids/=id
658      contrib/pyblosxom/.arch-ids/getstamps.py.id
659      contrib/pyblosxom/.arch-ids/hardcodedates.py.id
660      contrib/pyblosxom/getstamps.py
661      contrib/pyblosxom/hardcodedates.py
663     modified files:
664      ChangeLog muse-blosxom.el
666     new directories:
667      contrib/pyblosxom contrib/pyblosxom/.arch-ids
670 2005-03-23 19:05:09 GMT Michael Olson <mwolson@gnu.org> patch-18
672     Summary:
673       muse-blosxom.el has matured past experimental status
674     Revision:
675       muse--main--1.0--patch-18
677     2005-03-23  Michael Olson  <mwolson@gnu.org>
678     
679         * muse-blosxom.el: Remove common functionality that has already
680         been implemented in `muse-html.el'.  Derive this mode from
681         `muse-html'.  Update documentation.  I now feel that this file is
682         ready to be included in the top-level Muse directory.
684     modified files:
685      ChangeLog muse-blosxom.el
687     renamed files:
688      experimental/.arch-ids/muse-blosxom.el.id
689        ==> .arch-ids/muse-blosxom.el.id
690      experimental/muse-blosxom.el
691        ==> muse-blosxom.el
694 2005-03-22 05:28:01 GMT Michael Olson <mwolson@gnu.org> patch-17
696     Summary:
697       Make muse-blosxom.el slightly less experimental
698     Revision:
699       muse--main--1.0--patch-17
701     2005-03-22  Michael Olson  <mwolson@gnu.org>
702     
703         * experimental/muse-blosxom.el (muse-blosxom-page-date-alist):
704         Renamed from `blosxom-page-date-alist'.  Currently it does nothing
705         useful.
706         (muse-blosxom-markup-regexps): Remove unnecessary first grouping
707         from the `muse-blosxom-markup-date-directive' rule.
708         (blosxom-set-time): Remove this function.  We're not going to be
709         touching the timestamp manually anymore -- it's too much of a
710         hassle.  Right now I've got a python program that compiles a
711         timestamp file and a pyblosxom helper that reads it.  Something
712         similar could be arranged for blosxom, I'm sure.
713     
715     modified files:
716      ChangeLog experimental/muse-blosxom.el
719 2005-03-20 19:40:10 GMT Michael Olson <mwolson@gnu.org> patch-16
721     Summary:
722       Apply latest journal-related updates from johnw
723     Revision:
724       muse--main--1.0--patch-16
727     modified files:
728      ChangeLog examples/muse-johnw.el muse-journal.el
731 2005-03-01 02:58:29 GMT Michael Olson <mwolson@gnu.org> patch-15
733     Summary:
734       Add Projects node to the manual
735     Revision:
736       muse--main--1.0--patch-15
738     2005-02-28  Michael Olson  <mwolson@gnu.org>
739     
740         * muse.texi: Change copyright notice since the FSF is now the
741         copyright holder.
742         (Projects): New node, based on a section from the README file.
744     modified files:
745      ChangeLog muse.texi
748 2005-03-01 02:25:15 GMT Michael Olson <mwolson@gnu.org> patch-14
750     Summary:
751       Correct documentation, adding some content.
752     Revision:
753       muse--main--1.0--patch-14
755     2005-02-28  Michael Olson  <mwolson@gnu.org>
756     
757         * muse.texi: Change license terms of the documentation to the GNU
758         GPL instead of the GNU FDL, as per the consent of the copyright
759         holders of the emacs-wiki manual, from which this is based.  Some
760         emacs-wiki-isms in the manual were corrected, and the Getting
761         Started section was updated.
763     modified files:
764      ChangeLog muse.texi
767 2005-02-17 19:08:19 GMT Michael Olson <mwolson@gnu.org> patch-13
769     Summary:
770       Make muse-blosxom.el a bit more sane, still need to bum it down a bit
771     Revision:
772       muse--main--1.0--patch-13
774     2005-02-17  Michael Olson  <mwolson@gnu.org>
775     
776         * experimental/muse-blosxom.el: Somehow the contents of this file
777         managed to get duplicated.  I removed the duplicates.
778         (muse-blosxom-date): Remove this, since it is not useful.
779         (muse-blosxom-header): Use the standard header that blosxom.el
780         has.
782     modified files:
783      ChangeLog experimental/muse-blosxom.el
786 2005-02-08 04:20:41 GMT Michael Olson <mwolson@gnu.org> patch-12
788     Summary:
789       Initial commit of muse.texi, nothing substantial
790     Revision:
791       muse--main--1.0--patch-12
793     2005-02-07  Michael Olson  <mwolson@gnu.org>
794     
795         * muse.texi: New file that provides the documentation for Muse.
796         It is in a very rough form at the moment.  Nothing substantial may
797         be found here yet.  Be ye warned.
799     new files:
800      .arch-ids/muse.texi.id muse.texi
802     modified files:
803      ChangeLog
806 2005-02-08 01:15:15 GMT Michael Olson <mwolson@gnu.org> patch-11
808     Summary:
809       Add docstring, new trivial function
810     Revision:
811       muse--main--1.0--patch-11
813     2005-02-07  Michael Olson  <mwolson@gnu.org>
814     
815         * muse-mode.el (muse-mode-map): Make "C-c =" trigger
816         `muse-what-changed'.  No functionality change.
817         (muse-what-changed): New function that displays in diff format the
818         changes made since the buffer was last saved.
819     
820         * muse-project.el (muse-project-publish): Add docstring.
822     modified files:
823      ChangeLog muse-mode.el muse-project.el
826 2005-02-04 18:42:08 GMT Michael Olson <mwolson@gnu.org> patch-10
828     Summary:
829       Add experimental version of muse-blosxom.el to project
830     Revision:
831       muse--main--1.0--patch-10
833     2005-02-04  Michael Olson  <mwolson@gnu.org>
834     
835         * Makefile (realclean): Remove file that gets generated when fonts
836         are missing.
837     
838         * experimental/muse-bloxsom.el: New file that implements Blosxom
839         support for Muse.  It's in a very rough state, hence its placement
840         in the `experimental' directory.
842     new files:
843      experimental/.arch-ids/=id
844      experimental/.arch-ids/muse-blosxom.el.id
845      experimental/muse-blosxom.el
847     modified files:
848      ChangeLog Makefile
850     new directories:
851      experimental experimental/.arch-ids
854 2005-02-04 18:19:44 GMT Michael Olson <mwolson@gnu.org> patch-9
856     Summary:
857       Make permissions more consistent
858     Revision:
859       muse--main--1.0--patch-9
862     modified files:
863      ChangeLog
865     modified directories:
866      contrib examples scripts
869 2005-02-04 18:13:56 GMT Michael Olson <mwolson@gnu.org> patch-8
871     Summary:
872       Fix build problems
873     Revision:
874       muse--main--1.0--patch-8
876     2005-02-04  Michael Olson  <mwolson@gnu.org>
877     
878         * muse-build.el: Add contrib directory to `load-path'.
879         (muse-elint-files): Load `muse-regexps.el'.
880     
881         * scripts/publish: Change permissions so that this script is
882         executable.  Add contrib directory to load list.  Add
883         `muse-regexps.el' to list.
885     modified files:
886      ChangeLog muse-build.el scripts/publish
889 2005-01-31 21:04:43 GMT Michael Olson <mwolson@gnu.org> patch-7
891     Summary:
892       Use "&mdash;" instead of "&#151;"
893     Revision:
894       muse--main--1.0--patch-7
896     2005-01-31  Michael Olson  <mwolson@gnu.org>
897     
898         * muse-docbook.el (muse-docbook-markup-strings): Replace "&#151;"
899         with "&mdash;" so that documents validate properly.  Thanks to
900         Björn Lindström for the suggestion.
901     
902         * muse-html.el (muse-html-markup-strings): Ditto.
904     modified files:
905      ChangeLog muse-docbook.el muse-html.el
908 2005-01-25 19:04:31 GMT Michael Olson <mwolson@gnu.org> patch-6
910     Summary:
911       Fix use of "[:blank:]" in underline markup
912     Revision:
913       muse--main--1.0--patch-6
915     2005-01-25  Michael Olson  <mwolson@gnu.org>
916     
917         * muse-colors.el (muse-colors-markup): Replace "[:blank:]" with
918         use of `muse-regexp-blank'.
920     modified files:
921      ChangeLog muse-colors.el
924 2005-01-03 06:00:43 GMT Michael Olson <mwolson@member.fsf.org>  patch-5
926     Summary:
927       Fix problem with headings being given wrong face
928     Revision:
929       muse--main--1.0--patch-5
931     2005-01-03  Michael Olson  <mwolson@gnu.org>
932     
933         * muse-colors.el: Add header.
934         (muse-colors-emphasized): Headings were being given the coloring
935         for the next level of heading instead of the real
936         level (i.e. `muse-header-2' instead of `muse-header-1' for "*
937         Heading").  Thanks to Lan Yufeng for finding this and sending a
938         patch.
939     
940         * muse-regexps.el: Fix header.
942     modified files:
943      ChangeLog muse-colors.el muse-regexps.el
946 2005-01-02 00:02:15 GMT Michael Olson <mwolson@member.fsf.org>  patch-4
948     Summary:
949       Rotate ChangeLog
950     Revision:
951       muse--main--1.0--patch-4
953     2005-01-01  Michael Olson  <mwolson@gnu.org>
954     
955         * ChangeLog: Move old ChangeLog to ChangeLog.2004.  This new
956         version will be automatically maintained by Arch.
957     
959     new files:
960      .arch-ids/ChangeLog.id ChangeLog
962     renamed files:
963      .arch-ids/ChangeLog.id
964        ==> .arch-ids/ChangeLog.2004.id
965      ChangeLog
966        ==> ChangeLog.2004
969 2004-12-30 07:26:48 GMT Michael Olson <mwolson@member.fsf.org>  patch-3
971     Summary:
972       Extended regexps fix, allow spaces in 1st part of links
973     Revision:
974       muse--main--1.0--patch-3
976     2004-12-30  Michael Olson  <mwolson@gnu.org>
977     
978         * muse.el (muse-link-regexp): Allow spaces in the first part of
979         links.
980     
981         * muse-colors.el, muse-convert.el, muse-docbook.el: Use
982         customizable alternatives to extended character classes.
983     
984         * muse-html.el, muse-mode.el, muse-publish.el: Ditto.
986     modified files:
987      ChangeLog muse-colors.el muse-convert.el muse-docbook.el
988      muse-html.el muse-mode.el muse-publish.el muse.el
991 2004-12-30 02:18:07 GMT Michael Olson <mwolson@member.fsf.org>  patch-2
993     Summary:
994       Begin to change regexp handling, tweak muse.el header
995     Revision:
996       muse--main--1.0--patch-2
998     2004-12-29  Michael Olson  <mwolson@gnu.org>
999     
1000         * muse.el: Change Copyright notice to FSF.  Change Maintainer to
1001         myself.  Update URL.
1002     
1003         * muse-regexps.el: New file that implements regexp handling.
1004         Generalized regexp options will be moved to it eventually.
1006     new files:
1007      .arch-ids/muse-regexps.el.id muse-regexps.el
1009     modified files:
1010      ChangeLog muse.el
1013 2004-12-30 01:49:50 GMT Michael Olson <mwolson@member.fsf.org>  patch-1
1015     Summary:
1016       Do some early spring cleaning
1017     Revision:
1018       muse--main--1.0--patch-1
1020     2004-12-29  Michael Olson  <mwolson@gnu.org>
1021     
1022         * Makefile: Change path to `publish' script.
1023     
1024         * contrib/pcomplete.el: New file that is used by Muse without
1025         actually being a part of it: hence its location in the contrib
1026         directory.
1027     
1028         * contrib/cgi.el, contrib/httpd.el: New location.
1029     
1030         * examples/muse-johnw.el, examples/publish-johnw: Ditto.
1031     
1032         * scripts/publish, scripts/publish-project: Ditto.
1034     new files:
1035      contrib/.arch-ids/=id contrib/.arch-ids/pcomplete.el.id
1036      contrib/pcomplete.el examples/.arch-ids/=id
1037      scripts/.arch-ids/=id
1039     modified files:
1040      ChangeLog Makefile
1042     renamed files:
1043      .arch-ids/cgi.el.id
1044        ==> contrib/.arch-ids/cgi.el.id
1045      .arch-ids/httpd.el.id
1046        ==> contrib/.arch-ids/httpd.el.id
1047      .arch-ids/muse-johnw.el.id
1048        ==> examples/.arch-ids/muse-johnw.el.id
1049      .arch-ids/publish-johnw.id
1050        ==> examples/.arch-ids/publish-johnw.id
1051      .arch-ids/publish-project.id
1052        ==> scripts/.arch-ids/publish-project.id
1053      .arch-ids/publish.id
1054        ==> scripts/.arch-ids/publish.id
1055      cgi.el
1056        ==> contrib/cgi.el
1057      httpd.el
1058        ==> contrib/httpd.el
1059      muse-johnw.el
1060        ==> examples/muse-johnw.el
1061      publish
1062        ==> scripts/publish
1063      publish-johnw
1064        ==> examples/publish-johnw
1065      publish-project
1066        ==> scripts/publish-project
1068     new directories:
1069      contrib contrib/.arch-ids examples examples/.arch-ids scripts
1070      scripts/.arch-ids
1073 2004-12-30 01:33:11 GMT Michael Olson <mwolson@member.fsf.org>  base-0
1075     Summary:
1076       tag of mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
1077     Revision:
1078       muse--main--1.0--base-0
1080     (automatically generated log message)
1082     new patches:
1083      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--base-0
1084      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-1
1085      lidaobing@gmail.com--2004-pub/muse--lidaobing--1.0--patch-2
1086      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-1
1087      lidaobing@gmail.com--2004/muse--lidaobing--1.0--patch-2
1088      mwolson@member.fsf.org--2004/muse--main--1.0--base-0
1089      mwolson@member.fsf.org--2004/muse--main--1.0--patch-1
1090      mwolson@member.fsf.org--2004/muse--main--1.0--patch-2
1091      mwolson@member.fsf.org--2004/muse--main--1.0--patch-3
1092      mwolson@member.fsf.org--2004/muse--mwolson--1.0--base-0
1093      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-1
1094      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-2
1095      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-3
1096      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-4
1097      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-5
1098      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-6
1099      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-7
1100      mwolson@member.fsf.org--2004/muse--mwolson--1.0--patch-8