forked from alexott/muse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.3
3324 lines (2309 loc) · 104 KB
/
ChangeLog.3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2006-08-06 19:08:25 GMT Michael Olson <[email protected]> patch-173
Summary:
Make command, lisp, perl, python, and ruby tags interpret "markup".
Revision:
muse--main--1.0--patch-173
* lisp/muse-publish.el (muse-publish-markup-tags): Permit <lisp> to take
the "markup" argument.
(muse-publish-markup-attribute): New macro that interprets the "markup"
attribute.
(muse-publish-lisp-tag, muse-publish-command-tag): Use
muse-publish-markup-attribute.
(muse-publish-command-tag): Make sure we have a newline at end of
output.
(muse-publish-perl-tag, muse-publish-python-tag)
(muse-publish-ruby-tag): Pass remaining attributes to
muse-publish-command-tag so that the "markup" attribute works.
(muse-publish-include-tag): Use muse-publish-markup-attribute.
* muse.texi (Tag Summary): Document changes to tags.
modified files:
ChangeLog lisp/muse-publish.el muse.texi
2006-08-06 16:44:16 GMT Michael Olson <[email protected]> patch-172
Summary:
Implement <perl>, <python>, and <ruby> tags.
Revision:
muse--main--1.0--patch-172
* lisp/muse-publish.el (muse-publish-markup-tags): Add <perl>, <python>,
and <ruby> tags.
(muse-publish-command-tag): Code indentation.
(muse-publish-perl-tag): New function that publishes a <perl> tag.
(muse-publish-python-tag): New function that publishes a <python> tag.
(muse-publish-ruby-tag): New function that publishes a <ruby> tag.
* muse.texi (Tag Summary): Document <perl>, <python>, and <ruby>.
* examples/johnw/publish-johnw: Add explanatory comment.
modified files:
ChangeLog examples/johnw/publish-johnw lisp/muse-publish.el
muse.texi
2006-08-06 01:34:51 GMT Michael Olson <[email protected]> patch-171
Summary:
Tweak build system.
Revision:
muse--main--1.0--patch-171
* Makefile, Makefile.defs, contrib/Makefile, experimental/Makefile:
lisp/Makefile: Make the build system more abstract so that it can be
easily re-used in other Emacs Lisp programs.
* examples/mwolson/muse-init.el: Update.
modified files:
ChangeLog Makefile Makefile.defs contrib/Makefile
examples/mwolson/muse-init.el experimental/Makefile
lisp/Makefile
2006-08-05 15:12:38 GMT Michael Olson <[email protected]> patch-170
Summary:
Rename muse-convert-latex.el to muse-import-latex.el.
Revision:
muse--main--1.0--patch-170
* lisp/muse-import-latex.el: Rename from muse-convert-latex.el. Rename
all functions as well.
modified files:
ChangeLog lisp/muse-import-latex.el
renamed files:
lisp/.arch-ids/muse-convert-latex.el.id
==> lisp/.arch-ids/muse-import-latex.el.id
lisp/muse-convert-latex.el
==> lisp/muse-import-latex.el
2006-07-29 04:03:29 GMT Michael Olson <[email protected]> patch-169
Summary:
Manual: Update mailing list info.
Revision:
muse--main--1.0--patch-169
* muse.texi (Releases): Update mailing list info.
(Implicit Links): Fix use of future tense.
(Getting Help and Reporting Bugs): Update mailing list info.
modified files:
ChangeLog muse.texi
2006-07-29 03:49:29 GMT Michael Olson <[email protected]> patch-168
Summary:
Mention both Ubuntu and Debian throughout.
Revision:
muse--main--1.0--patch-168
* Makefile.defs, README, muse.texi: Mention Ubuntu wherever Debian is
mentioned.
modified files:
ChangeLog Makefile.defs README muse.texi
2006-07-27 22:28:13 GMT Michael Olson <[email protected]> patch-167
Summary:
Fix #5899: muse-follow-name-at-mouse breaks mouse-yank-at-point.
Revision:
muse--main--1.0--patch-167
* lisp/muse-mode.el (muse-follow-name-at-mouse): Restore the point before
calling the fallback keybinding. This fixes #5899.
* lisp/muse-publish.el (muse-publish-escape-specials): Docfix.
(muse-publish-mark-link): Docfix.
(muse-link-specials): Docfix.
modified files:
ChangeLog lisp/muse-mode.el lisp/muse-publish.el lisp/muse.el
2006-07-27 20:46:38 GMT Michael Olson <[email protected]> patch-166
Summary:
Make C-c C-t publish the current file in a more sensible way.
Revision:
muse--main--1.0--patch-166
* lisp/muse-mode.el (muse-mode-map): Make C-c C-t call
muse-project-publish-this-file instead of muse-publish-this file. Make
C-c C-T call the latter.
(muse-browse-result): Use `muse-project-get-applicable-styles'.
(muse-follow-name-at-point): Docfix.
* lisp/muse-project.el (muse-project-get-applicable-style): New function
that prompts the user for a style if more than one style applies to the
given file.
(muse-project-publish-this-file): New function that publishes the
currently-visited file according to `muse-project-alist', prompting if
more than one style applies.
* lisp/muse-publish.el (muse-publish-this-file): Docfix.
* muse.texi (Keystroke Summary): Update for the changes made. C-c C-c
was not previously documented.
modified files:
ChangeLog lisp/muse-mode.el lisp/muse-project.el
lisp/muse-publish.el muse.texi
2006-07-27 19:36:31 GMT Michael Olson <[email protected]> patch-165
Summary:
Implement interactive insertion of URLs.
Revision:
muse--main--1.0--patch-165
* lisp/muse-mode.el (muse-insert-map): Add binding for muse-insert-url.
(muse-insert-thing): Add text for URL to prompt.
(muse-insert-relative-link-to-file): Docfix, style fix.
(muse-insert-url): New function that reads a URL and description from
the user.
* muse.texi (Keystroke Summary): Mention insert-url keybinding.
modified files:
ChangeLog lisp/muse-mode.el muse.texi
2006-07-27 18:50:50 GMT Michael Olson <[email protected]> patch-164
Summary:
Make escaping of brackets in links work properly.
Revision:
muse--main--1.0--patch-164
* lisp/muse-colors.el (muse-colors-explicit-link): If the link has
escaped characters, display them unescaped.
* lisp/muse-mode.el (muse-make-link): Handle case where we are given no
link.
(muse-edit-link-at-point): Unescape the link before presenting it to
the user for editing.
* lisp/muse-publish.el (muse-publish-escape-specials-in-string): Minor
coding style fix.
(muse-publish-url): Unescape the link description before doing further
transforms on it. The link has already been unescaped.
* lisp/muse.el (muse-sort-by-rating): Minor coding style fix.
(muse-escape-specials-in-string): New function that escapes specials in
a string. This differs from Muse's other specials-escaping routines in
that it replaces strings rather than characters, and is reversible if
the specials are defined properly.
(muse-replace-regexp-in-string): Docfix.
(muse-link-specials): New variable containing the specials that Muse
uses to handle syntactic issues with link text. Namely: brackets. The
percent sign must also be escaped since it is used in the escaped text.
(muse-link-escape, muse-link-unescape): Call
muse-escape-specials-in-string. Embarrassingly, these functions
previously had no effect before.
modified files:
ChangeLog lisp/muse-colors.el lisp/muse-mode.el
lisp/muse-publish.el lisp/muse.el
2006-07-09 18:28:25 GMT Michael Olson <[email protected]> patch-163
Summary:
Make space around emdash optional.
Revision:
muse--main--1.0--patch-163
* lisp/muse-publish.el (muse-publish-markup-regexps): Make space around
emdash optional.
modified files:
ChangeLog lisp/muse-publish.el
2006-07-08 20:38:12 GMT Michael Olson <[email protected]> patch-162
Summary:
muse-latex: Make publishing of <contents> tags optional.
Revision:
muse--main--1.0--patch-162
* lisp/muse-html.el (muse-html-insert-contents): Use nreverse rather than
reverse for a minor speed boost.
* lisp/muse-latex.el (muse-latex-header, muse-latexcjk-header): Only
insert a table of contents when muse-latex-permit-contents-tag is nil.
(muse-latexcjk-header): Make comments do the right thing.
(muse-latex-permit-contents-tag): New option that specifies whether we
should take action on the <contents> tag.
(muse-latex-finalize-buffer): If muse-latex-permit-contents-tag is
non-nil, publish a table of contents in the place where the <contents>
tag is.
* muse.texi (LaTeX): Bring up-to-date with new options.
modified files:
ChangeLog lisp/muse-html.el lisp/muse-latex.el muse.texi
2006-07-04 05:00:35 GMT Michael Olson <[email protected]> patch-161
Summary:
Fix publishing bug introduced in last patch.
Revision:
muse--main--1.0--patch-161
* lisp/muse-project.el (muse-current-output-style): New variable that
holds the output style that is currently being used to publish a file.
(muse-project-page-file): When a subdirectory is used, only record
matches. Sort using matches, not entire list.
(muse-project-resolve-link): Docfix.
(muse-project-current-output-style): New function that returns the
current output style.
(muse-project-link-page): Use the local output style, not the other
kind of style.
(muse-project-publish-file): Set muse-current-output-style.
* lisp/muse-wiki.el (muse-wiki-resolve-project-page): Use
muse-current-output-style.
modified files:
ChangeLog lisp/muse-project.el lisp/muse-wiki.el
2006-07-04 04:06:44 GMT Michael Olson <[email protected]> patch-160
Summary:
Make links to files in subdirectories work.
Revision:
muse--main--1.0--patch-160
* lisp/muse-project.el (muse-project-alist-styles): Fix stray comment.
(muse-project-page-file): Change to a defun. Handle files with the
same name but in different directories. Handle case where a
subdirectory is given in a link.
(muse-project-choose-style-by-link-suffix): Move from muse-wiki.el.
(muse-project-applicable-styles): Sort entries according to how late in
the string the match for the include regexp occurs.
(muse-project-resolve-link): Moved from muse-wiki.el. Strip
subdirectory from page because we have already determined the correct
path.
(muse-project-link-page): New function that resolves a link to a page
in the same project.
* lisp/muse-publish.el (muse-publish-link-page): Simple wrapper for
muse-project-link-page.
(muse-publish-classify-url): Use muse-publish-link-page.
* lisp/muse-regexps.el (muse-file-regexp): Don't match subdirectory
links.
* lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix)
(muse-wiki-resolve-project-page-1): Move to muse-project.el.
(muse-wiki-resolve-project-page): Use muse-project-resolve-link.
* lisp/muse.el (muse-collect-alist): New function that is like assoc, but
returns a list of matches.
(muse-sort-with-closure): New convenience macro for using `sort' with a
closure argument.
(muse-sort-by-rating): New function that takes a rating list and sorts
it, discarding the rating.
* muse.texi (Projects): Mention that you can use regexps in place of
directory names in project entries. Caught that when source-diving.
modified files:
ChangeLog lisp/muse-project.el lisp/muse-publish.el
lisp/muse-regexps.el lisp/muse-wiki.el lisp/muse.el muse.texi
2006-07-03 01:33:17 GMT Michael Olson <[email protected]> patch-159
Summary:
Fix publishing of blank table fields.
Revision:
muse--main--1.0--patch-159
* lisp/muse-regexps.el (muse-table-field-regexp): Make publishing blank
fields work properly.
modified files:
ChangeLog lisp/muse-regexps.el
2006-07-03 00:39:47 GMT Michael Olson <[email protected]> patch-158
Summary:
Make muse-publish-markup-buffer usable even with no current file.
Revision:
muse--main--1.0--patch-158
* lisp/muse-publish.el (muse-publish-markup-buffer): Make this work even
if no file is associated with the buffer. Thanks to dds for the fix.
modified files:
ChangeLog lisp/muse-publish.el
2006-06-26 18:13:59 GMT Michael Olson <[email protected]> patch-157
Summary:
Don't use illegal C-c i keybinding.
Revision:
muse--main--1.0--patch-157
* lisp/muse-mode.el (muse-mode-map): Remove "C-c i" binding and use "C-c
TAB" for that purpose instead. Thanks to Adrian Aichner for the
report.
* muse.texi (Keystroke Summary): Update documentation for the above
change.
modified files:
ChangeLog lisp/muse-mode.el muse.texi
2006-06-12 13:58:59 GMT Michael Olson <[email protected]> patch-156
Summary:
Improve ignored files regexp.
Revision:
muse--main--1.0--patch-156
* lisp/muse-project.el (muse-project-ignore-regexp): Ignore Darcs and SVN
metadata directories, and use a better matching technique for autosave
files. Previously, files with '#' in them were ignored erroneously.
modified files:
ChangeLog lisp/muse-project.el
2006-06-12 13:55:17 GMT Michael Olson <[email protected]> patch-155
Summary:
Provide example for <include> in Muse manual.
Revision:
muse--main--1.0--patch-155
* muse.texi (Tag Summary): Give an example of using the <include> tag.
modified files:
ChangeLog muse.texi
2006-06-10 06:49:08 GMT Michael Olson <[email protected]> patch-154
Summary:
Make PDF version of the Muse manual be generated correctly.
Revision:
muse--main--1.0--patch-154
* muse.texi (Tag Summary): Use a slightly different syntax for the table
items. Even though texinfo published the HTML version correctly, the
PDF version was not working. Thanks to mirko.vukovic for the report.
modified files:
ChangeLog muse.texi
2006-06-03 23:38:12 GMT Michael Olson <[email protected]> patch-153
Summary:
Fix bug introduced in last patch.
Revision:
muse--main--1.0--patch-153
* muse-publish.el (muse-publish-include-tag): Fix bug introduced in last
patch.
modified files:
ChangeLog lisp/muse-publish.el
2006-06-03 21:18:35 GMT Michael Olson <[email protected]> patch-152
Summary:
Move Debian stuff into its own branch.
Revision:
muse--main--1.0--patch-152
* debian: Moved to muse--debian--0.
removed files:
debian/.arch-ids/=id debian/.arch-ids/NEWS.id
debian/.arch-ids/changelog.id debian/.arch-ids/compat.id
debian/.arch-ids/control.id debian/.arch-ids/copyright.id
debian/.arch-ids/emacsen-install.id
debian/.arch-ids/emacsen-remove.id
debian/.arch-ids/emacsen-startup.id
debian/.arch-ids/muse-el.dirs.id
debian/.arch-ids/muse-el.docs.id
debian/.arch-ids/muse-el.examples.id
debian/.arch-ids/muse-el.info.id debian/.arch-ids/rules.id
debian/NEWS debian/changelog debian/compat debian/control
debian/copyright debian/emacsen-install debian/emacsen-remove
debian/emacsen-startup debian/muse-el.dirs debian/muse-el.docs
debian/muse-el.examples debian/muse-el.info debian/rules
modified files:
ChangeLog
removed directories:
debian debian/.arch-ids
2006-06-03 21:12:36 GMT Michael Olson <[email protected]> patch-151
Summary:
Provide some markup shortcuts for the <include> tag.
Revision:
muse--main--1.0--patch-151
* lisp/muse-publish.el (muse-publish-examplify-buffer): New function that
transforms the current buffer as if it were an <example> region.
(muse-publish-versify-buffer): Ditto, but for <verse> regions.
(muse-publish-include-tag): Docfix. Support special cases for
markup="example" and markup="verse".
* muse.texi (Tag Summary): Update for new <include> shortcuts.
modified files:
ChangeLog lisp/muse-publish.el muse.texi
2006-06-01 04:14:45 GMT Michael Olson <[email protected]> patch-150
Summary:
Really update ChangeLog.2005.
Revision:
muse--main--1.0--patch-150
* ChangeLog.2005: Really update this.
new files:
.arch-ids/ChangeLog.2005.id ChangeLog.2005
removed files:
.arch-ids/ChangeLog.2005.id ChangeLog.2005
modified files:
.arch-ids/muse.texi.id ChangeLog
2006-06-01 04:05:33 GMT Michael Olson <[email protected]> patch-149
Summary:
Second attempt at fixing XEmacs beta problem.
Revision:
muse--main--1.0--patch-149
* lisp/Makefile (ELC): Revert previous change, now that I have a hunch
about what causes the problem.
* lisp/muse-publish.el (muse-publish-markup-regexps): Move anchor markup
lower to future-proof an idea that I have.
(muse-style-element): Make this a function instead of a substitution,
especially since it is potentially recursive.
modified files:
ChangeLog ChangeLog.2005 lisp/Makefile lisp/muse-publish.el
2006-06-01 03:47:49 GMT Michael Olson <[email protected]> patch-148
Summary:
Update ChangeLogs.
Revision:
muse--main--1.0--patch-148
* ChangeLog: Rename from ChangeLog.2006 to follow Emacs conventions.
* ChangeLog.2005: Mention ChangeLog.2004 for earlier changes.
* lisp/muse-regexps.el: Add a few comments.
* muse.texi (Tag Summary): Add example of <tag /> use.
modified files:
ChangeLog ChangeLog.2005 lisp/muse-regexps.el muse.texi
2006-06-01 03:44:00 GMT Michael Olson <[email protected]> patch-147
Summary:
Try to work around a bug in XEmacs beta.
Revision:
muse--main--1.0--patch-147
* lisp/Makefile (ELC): Compile muse-publish.el first, to try to work
around a bug in XEmacs beta.
modified files:
ChangeLog lisp/Makefile
2006-05-30 18:21:51 GMT Michael Olson <[email protected]> patch-146
Summary:
Fix tag-publishing in <insert> and <markup>.
Revision:
muse--main--1.0--patch-146
* lisp/muse-publish.el (muse-insert-file-or-string): Don't set
muse-publish-markup-tags, since that messes other things up for
<markup> and <insert>.
(muse-inhibit-style-tags): New variable that specifies whether to
disable looking for tag definitions that are specific to the current
style. This is useful for publishing headers and footers.
(muse-publish-markup-tag): Use `muse-inhibit-style-tags', but disable
it unconditionally when calling a tag's function, so that the effect
does not propagate.
* lisp/muse.el (muse-file-remote-p): New function that detects whether
the given file path is a remote location. This is not used yet.
modified files:
ChangeLog lisp/muse-publish.el lisp/muse.el
2006-05-30 00:19:37 GMT Michael Olson <[email protected]> patch-145
Summary:
Rename muse-convert.el to muse-latex-convert.el.
Revision:
muse--main--1.0--patch-145
* lisp/muse-convert-latex.el: Rename from muse-convert.el, since more
files of this nature are expected in the future.
modified files:
ChangeLog Makefile.defs debian/changelog
lisp/muse-convert-latex.el
renamed files:
lisp/.arch-ids/muse-convert.el.id
==> lisp/.arch-ids/muse-convert-latex.el.id
lisp/muse-convert.el
==> lisp/muse-convert-latex.el
2006-05-29 21:34:34 GMT Michael Olson <[email protected]> patch-144
Summary:
List all tags in Muse's documentation.
Revision:
muse--main--1.0--patch-144
* lisp/muse-publish.el (muse-publish-markup-region): Remove cruft that I
was trying out.
(muse-publish-contents-depth): New option that specifies the maximum
depth of headings to include with <contents> tags.
(muse-publish-contents-tag): Use it.
(muse-publish-include-tag): Docfix.
* muse.texi (Paragraphs): Mention <center> and <quote> tags.
(Tag Summary): New section that defines the syntax used for tags and
gives a complete listing of all of the tags that Muse comes with, as
well as some documentation for each tag.
(HTML): Update documentation.
modified files:
ChangeLog lisp/muse-publish.el muse.texi
2006-05-29 18:48:41 GMT Michael Olson <[email protected]> patch-143
Summary:
Implement <include> and <markup> tags.
Revision:
muse--main--1.0--patch-143
* lisp/muse-html.el (muse-html-markup-regexps): Make paragraph detection
work better when a paragraph follows some other markup, especially
tables.
* lisp/muse-publish.el (muse-publish-markup-tags): Add <include> and
<markup> tags.
(muse-publish-markup): Fix edge case.
(muse-publish-markup-header-footer-tags): New option that specifies
which tags may be used when publishing headers and footers.
(muse-insert-file-or-string): Use
muse-publish-markup-header-footer-tags instead of a hard-coded value.
(muse-publish-markup-region): Make title and style arguments optional,
so that this is easier to use.
(muse-publish-include-tag): Implement <include> tag. I've tested all
of the cases I can think of, and it works.
(muse-publish-mark-up-tag): Implement <markup> tag. This is handy for
times when you want to publish Muse markup in headers and footers.
Adding a table of contents to a header should be particularly easy now.
modified files:
ChangeLog lisp/muse-html.el lisp/muse-publish.el
2006-05-29 14:59:31 GMT Michael Olson <[email protected]> patch-142
Summary:
Make ChangeLog conform to conventions better.
Revision:
muse--main--1.0--patch-142
* ChangeLog: Renamed from ChangeLog.2006 in order to follow Emacs
conventions better. Specify the buffer encoding. Add helpful notices
near the bottom of this and ChangeLog.2005.
modified files:
ChangeLog ChangeLog.2004 ChangeLog.2005 debian/rules
{arch}/muse/muse--main/muse--main--1.0/[email protected]/patch-log/base-0
renamed files:
.arch-ids/ChangeLog.2006.id
==> .arch-ids/ChangeLog.id
ChangeLog.2006
==> ChangeLog
2006-05-28 07:45:09 GMT Michael Olson <[email protected]> patch-141
Summary:
Provide explanation of how to invoke getstamps.py.
Revision:
muse--main--1.0--patch-141
* contrib/pyblosxom/getstamps.py: Strip the Muse file extension when
writing the timestamps file.
* contrib/pyblosxom/make-blog: New example script that shows how to
invoke getstamps.py.
* examples/mwolson/stylesheets/common.css: Update.
* muse.texi (Blosxom Requirements): Mention the new example script.
Additionally, explain how to call getstamps.py.
new files:
contrib/pyblosxom/.arch-ids/make-blog.id
contrib/pyblosxom/make-blog
modified files:
ChangeLog.2006 contrib/pyblosxom/getstamps.py
examples/mwolson/stylesheets/common.css muse.texi
2006-05-28 06:40:46 GMT Michael Olson <[email protected]> patch-140
Summary:
muse-blosxom: Perform extra check on category in new entry.
Revision:
muse--main--1.0--patch-140
* lisp/muse-blosxom.el (muse-blosxom-new-entry): Make it impossible to
write an invalid categories line, which could cause other mysterious
troubles later on.
modified files:
ChangeLog.2006 lisp/muse-blosxom.el
2006-05-28 06:31:11 GMT Michael Olson <[email protected]> patch-139
Summary:
Improve documentation in the included pyblosxom plug-ins.
Revision:
muse--main--1.0--patch-139
* contrib/pyblosxom/getstamps.py, hardcodedates.py: Improve
documentation. The initial wording was very confusing.
modified files:
ChangeLog.2006 contrib/pyblosxom/getstamps.py
contrib/pyblosxom/hardcodedates.py
2006-05-27 06:25:32 GMT Michael Olson <[email protected]> patch-138
Summary:
Minor tweak in my example CSS stylesheet.
Revision:
muse--main--1.0--patch-138
* examples/mwolson/stylesheets/common.css: Be careful about
distinguishing between links and anchors.
modified files:
ChangeLog.2006 examples/mwolson/stylesheets/common.css
2006-05-26 14:38:01 GMT Michael Olson <[email protected]> patch-137
Summary:
Use better fallback when displaying warnings.
Revision:
muse--main--1.0--patch-137
* lisp/muse.el (muse-display-warning): Use a better fallback if
`display-warning' does not exist.
modified files:
ChangeLog.2006 lisp/muse.el
2006-05-25 21:23:55 GMT Michael Olson <[email protected]> patch-136
Summary:
Make the Table of Contents CSS easier to customize.
Revision:
muse--main--1.0--patch-136
* examples/mwolson/muse-init.el (muse-bad-link): Update.
* examples/mwolson/stylesheets/*.css: Update and add license.
* lisp/muse-html.el (muse-html-insert-contents): Surround contents with
<div> section for easier CSS hacking. Remove the class attribute of
other elements, since we don't need it anymore.
modified files:
ChangeLog.2006 Makefile.defs debian/changelog
examples/mwolson/muse-init.el
examples/mwolson/stylesheets/blog.css
examples/mwolson/stylesheets/common.css
examples/mwolson/stylesheets/print.css
examples/mwolson/stylesheets/screen.css lisp/muse-html.el
2006-05-24 03:30:40 GMT Michael Olson <[email protected]> patch-135
Summary:
Fix a potential unbounded recursive call.
Revision:
muse--main--1.0--patch-135
* lisp/muse-project.el (muse-updating-file-alist-p): New variable that
prevents calls to muse-project-file-alist in its hook functions from
going into an infinite loop.
(muse-project-file-alist): Use it.
* lisp/muse-wiki.el (muse-wiki-updating-wikiword-p): Remove. This is now
handled in muse-project.el.
(muse-wiki-update-local-wikiword-regexp): Remove the use of
muse-wiki-updating-wikiword-p.
modified files:
ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
2006-05-23 18:10:49 GMT Michael Olson <[email protected]> patch-134
Summary:
Try not to call tramp during publishing.
Revision:
muse--main--1.0--patch-134
* lisp/muse-publish.el (muse-insert-file-or-string): Do not call
file-readable-p on text that has a newline in it, because this could
cause tramp to be invoked.
modified files:
ChangeLog.2006 lisp/muse-publish.el
2006-05-23 15:30:02 GMT Michael Olson <[email protected]> patch-133
Summary:
Make links colored blue by default.
Revision:
muse--main--1.0--patch-133
* lisp/muse-colors.el (muse-link): Make links blue by default, like most
other Emacs modes do.
modified files:
ChangeLog.2006 lisp/muse-colors.el
2006-05-23 14:24:58 GMT Michael Olson <[email protected]> patch-132
Summary:
Fix publishing error with tables and initial whitespace.
Revision:
muse--main--1.0--patch-132
* lisp/muse-publish.el (muse-publish-markup-regexps): Move table rule
above blockquote and centered text, so that indented but blank initial
table fields publish correctly.
* lisp/muse-regexps.el (muse-table-line-regexp): Make this much simpler.
We accept anything that has at least one field delimiter.
modified files:
ChangeLog.2006 lisp/muse-publish.el lisp/muse-regexps.el
2006-05-18 06:58:58 GMT Michael Olson <[email protected]> patch-131
Summary:
Add muse-protocol-iw.el to experimental folder.
Revision:
muse--main--1.0--patch-131
* experimental/muse-protocol-iw.el: New experimental file that implements
an interwiki protocol of sorts that handles subdirectories.
new files:
experimental/.arch-ids/muse-protocol-iw.el.id
experimental/muse-protocol-iw.el
modified files:
AUTHORS ChangeLog.2006 experimental/muse-split.el
2006-05-18 06:43:30 GMT Michael Olson <[email protected]> patch-130
Summary:
Add muse-split.el to experimental folder.
Revision:
muse--main--1.0--patch-130
* experimental/muse-split.el: New experimental file that splits published
Muse files into several smaller files.
new files:
experimental/.arch-ids/muse-split.el.id
experimental/muse-split.el
modified files:
AUTHORS ChangeLog.2006 Makefile.defs debian/changelog
debian/control
2006-05-18 06:03:49 GMT Michael Olson <[email protected]> patch-129
Summary:
muse-wiki: Make the interwiki resolver a bit more clever.
Revision:
muse--main--1.0--patch-129
* lisp/muse-project.el (muse-project-choose-style): New function that
chooses a style from a list of styles, given a user-supplied test.
* lisp/muse-wiki.el (muse-wiki-choose-style-by-link-suffix): New function
that is used along with `muse-project-choose-style' to pick the first
style that matches a given value for :link-prefix.
(muse-wiki-resolve-project-page-1): New function split from
`muse-wiki-resolve-project-page' for readability. Try to match files
that have the same link-suffix. This should hopefully fix a bug
noticed by Hans Ekbrand.
modified files:
ChangeLog.2006 lisp/muse-project.el lisp/muse-wiki.el
2006-05-18 01:24:04 GMT Michael Olson <[email protected]> patch-128
Summary:
Fix bug where links with :: in them were marked up as lists.
Revision:
muse--main--1.0--patch-128
* lisp/muse-html.el, lisp/muse-publish.el, lisp/muse-xml-common.el:
Change noemphasis property to muse-link.
* lisp/muse.el (muse-forward-list-item): Respect muse-link property.
* lisp/muse-publish.el (muse-publish-surround-text)
(muse-publish-markup-list): Ditto. This should fix a bug.
(muse-publish-markup-list): Docfix.
(muse-publish-mark-link): Rename from `muse-publish-mark-noemphasis'.
* lisp/muse-regexps.el (muse-list-item-regexp, muse-dl-term-regexp):
There must be either one or more spaces or a single newline after the
colons. This prevents an ambiguity with the double-colon muse-wiki
interwiki delimiter.
modified files:
ChangeLog.2006 lisp/muse-html.el lisp/muse-publish.el
lisp/muse-regexps.el lisp/muse-xml-common.el lisp/muse.el
2006-05-17 21:27:19 GMT Michael Olson <[email protected]> patch-127
Summary:
DTRT with explicit links that have no description.
Revision:
muse--main--1.0--patch-127
* lisp/muse-publish.el (muse-publish-markup-link): If we are given an
explicit link without a description, use the name of the linked page.
modified files:
ChangeLog.2006 lisp/muse-publish.el
2006-05-16 15:53:56 GMT Michael Olson <[email protected]> patch-126
Summary:
Fix emdash in link description bug.
Revision:
muse--main--1.0--patch-126
* lisp/muse-publish.el (muse-publish-markup-emdash): Don't markup emdash
if we are in a link, since otherwise it will be incorrectly escaped.
Thanks to Chiyuan Zhang for the report.
modified files:
ChangeLog.2006 Makefile.defs debian/changelog
lisp/muse-publish.el
2006-05-12 04:16:43 GMT Michael Olson <[email protected]> patch-125
Summary:
Fix #5925: Emphasis on item breaks lists.
Revision:
muse--main--1.0--patch-125
* lisp/muse-blosxom.el ("blosxom-html", "blosxom-xhtml"): Use find-file
as the browsing function.
* lisp/muse-mode.el (muse-browse-result): Only include styles that match
the current file.
* lisp/muse.el (muse-list-item-critical-point): Take a new argument named
`offset' into account, in case the list-item regexp is nested in
another group.
(muse-forward-list-item): Call `muse-list-item-critical-point' with an
offset of 1. This should fix an unpleasant list-as-blockquote error
that was noticed recently. Thanks to John Sullivan for the report.
modified files:
ChangeLog.2006 lisp/muse-blosxom.el lisp/muse-mode.el
lisp/muse.el
2006-05-09 00:55:02 GMT Michael Olson <[email protected]> patch-124
Summary:
Fix a couple of beginning-of-buffer errors.