-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog-0.1
4524 lines (3211 loc) · 124 KB
/
ChangeLog-0.1
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
# do not edit -- automatically generated by arch changelog
# tag: automatic-ChangeLog--algernon@bonehunter.rulez.org--iluvatar-archive/ccze--0.1
#
2003-03-29 16:53:51 GMT Gergely Nagy <[email protected]> patch-243
Summary:
mod_ftpstats
Revision:
ccze--0.1--patch-243
* src/mod_ftpstats.c: New file.
* ccze.plugins: Added ftpstats.
* doc/ccze.1.in (PLUGINS): Documented it.
Thanks to Ciga for the sample logs.
new files:
src/.arch-ids/mod_ftpstats.c.id src/mod_ftpstats.c
modified files:
ChangeLog ccze.plugins doc/ccze.1.in
2003-03-29 16:14:20 GMT Gergely Nagy <[email protected]> patch-242
Summary:
Bumped Standards-Version
Revision:
ccze--0.1--patch-242
* debian/control (Standards-Version): Updated to 3.5.9.
modified files:
ChangeLog debian/control
2003-03-29 16:10:25 GMT Gergely Nagy <[email protected]> patch-241
Summary:
Support Pure-FTPD CLF format
Revision:
ccze--0.1--patch-241
* src/mod_httpd.c (ccze_httpd_setup): Modified the httpd_access regexp
to catch pure-ftpd's CLF logformat.
* doc/ccze.1.in (PLUGINS): Documented this.
Thanks to Ciga for his assistance.
modified files:
ChangeLog doc/ccze.1.in src/mod_httpd.c
2003-03-29 15:58:53 GMT Gergely Nagy <[email protected]> patch-240
Summary:
Fixed coloring of bad HTTP requests
Revision:
ccze--0.1--patch-240
* src/mod_httpd.c (ccze_httpd_setup): Changed the httpd_access regexp
to allow arbitrary request methods.
* testsuite/bug-httpd.test: New test.
* testsuite/bug-httpd.in: New test input.
* testsuite/bug-httpd.ok: New expected test output.
* testsuite/Makefile.in (TESTS): Added bug-httpd.test.
new files:
testsuite/.arch-ids/bug-httpd.in.id
testsuite/.arch-ids/bug-httpd.ok.id
testsuite/.arch-ids/bug-httpd.test.id testsuite/bug-httpd.in
testsuite/bug-httpd.ok testsuite/bug-httpd.test
modified files:
ChangeLog src/mod_httpd.c testsuite/Makefile.in
2003-03-29 15:06:27 GMT Gergely Nagy <[email protected]> patch-239
Summary:
FAQ cosmetic fix
Revision:
ccze--0.1--patch-239
* FAQ: Removed a spurious newline.
modified files:
ChangeLog FAQ
2003-03-29 15:04:28 GMT Gergely Nagy <[email protected]> patch-238
Summary:
Documentation update and a minor fix
Revision:
ccze--0.1--patch-238
* doc/ccze-plugin.7.in: Updated to reflect reality. Some parts were
really outdated.
* Makefile.in (ccze.spec): Renamed to...
(${top_srcdir}/ccze.spec): ...this.
modified files:
ChangeLog Makefile.in doc/ccze-plugin.7.in
2003-03-29 14:44:28 GMT Gergely Nagy <[email protected]> patch-237
Summary:
Preparing 0.2.0...
Revision:
ccze--0.1--patch-237
* Rules.mk.in (DIST): New variable.
(PATCHLEVEL): Support -base-*.
* ccze.spec.in: Support %{dist} (via @DIST@).
* Makefile.in (ccze.spec): Substitue @DIST@ with ${DIST}.
* debian/rules (binary-ccze): Support more than one ChangeLog.
modified files:
ChangeLog Makefile.in Rules.mk.in ccze.spec.in debian/rules
2003-03-29 14:24:27 GMT Gergely Nagy <[email protected]> patch-236
Summary:
Fixed compile-time warnings
Revision:
ccze--0.1--patch-236
* src/ccze.c (ccze_newline): Added a default ccze_mode_t handler.
(ccze_addstr_internal): Likewise.
(ccze_main): Use sigint_handler() when doing the plugin listing.
modified files:
ChangeLog src/ccze.c
2003-03-29 14:18:55 GMT Gergely Nagy <[email protected]> patch-235
Summary:
Added support for listing plugins
Revision:
ccze--0.1--patch-235
* src/ccze-private.h (ccze_mode_t): Added a CCZE_MODE_PLUGIN_LIST mode.
(ccze_plugin_list_fancy): New prototype.
* src/ccze.c (parse_opt): Handle --list-plugins.
(main): Added support for the new CCZE_MODE_PLUGIN_LIST mode.
* src/ccze.h (ccze_plugin_t): Added a new `desc' member.
[CCZE_ABI_VERSION]: Bumped to 2.
[CCZE_DEFINE_PLUGIN]: Take a third argument: desc.
* src/ccze-plugin.c (ccze_plugin_list_fancy): New function.
All plugins updated to CCZE_ABI_VERSION 2 requirements.
modified files:
ChangeLog src/ccze-plugin.c src/ccze-private.h src/ccze.c
src/ccze.h src/mod_apm.c src/mod_distcc.c src/mod_exim.c
src/mod_fetchmail.c src/mod_httpd.c src/mod_icecast.c
src/mod_oops.c src/mod_php.c src/mod_postfix.c
src/mod_procmail.c src/mod_proftpd.c src/mod_squid.c
src/mod_sulog.c src/mod_super.c src/mod_syslog.c
src/mod_ulogd.c src/mod_vsftpd.c src/mod_xferlog.c
2003-03-29 13:28:15 GMT Gergely Nagy <[email protected]> patch-234
Summary:
Code cleanup
Revision:
ccze--0.1--patch-234
* src/ccze-private.h (ccze_mode_t): New typedef.
(ccze_config_t): Replace `html', `debug' and `raw_ansi' members with
`mode'.
All users updated accordingly.
modified files:
ChangeLog src/ccze-color.c src/ccze-cssdump.c src/ccze-dump.c
src/ccze-private.h src/ccze.c
2003-03-29 13:10:13 GMT Gergely Nagy <[email protected]> patch-233
Summary:
Fixed plugin loading (well, setup)
Revision:
ccze--0.1--patch-233
* src/ccze-plugin.c (ccze_plugin_setup): Do not increment `i' while
calling ->startup.
Problem noticed & debugged by Ciga.
modified files:
ChangeLog src/ccze-plugin.c
2003-03-29 12:49:11 GMT Gergely Nagy <[email protected]> patch-232
Summary:
Fixed ICC warnings
Revision:
ccze--0.1--patch-232
* src/ccze.h [CCZE_DEFINE_PLUGIN]: Do not put a coma after the struct.
[!BUILTIN] [__default_plugin]: Start with a coma.
* src/ccze-cssdump.c: Do not declare ccze_config static.
* src/ccze-dump.c: Likewise.
modified files:
ChangeLog src/ccze-cssdump.c src/ccze-dump.c src/ccze.h
2003-03-29 12:28:49 GMT Gergely Nagy <[email protected]> patch-231
Summary:
FAQ update
Revision:
ccze--0.1--patch-231
* FAQ: Added a new Q&A.
modified files:
ChangeLog FAQ
2003-03-29 12:17:59 GMT Gergely Nagy <[email protected]> patch-230
Summary:
raw ANSI output mode
Revision:
ccze--0.1--patch-230
* src/ccze-private.h (ccze_config_t): Added a new `raw_ansi' member.
* src/ccze.c (ccze_raw_ansi_color): New variable.
(ccze_config_t): Initialise raw_ansi to off.
(parse_opt): Accept --raw-ansi, -A.
(ccze_newline): Output only a `\n' in raw_ansi mode.
(ccze_addstr_internal): Added support for outputting raw ANSI
sequences.
(sigint_handler): Likewise.
(main): Likewise.
* src/ccze-color.c (ccze_color_parse): Added support for raw ANSI
sequences.
(ccze_color_init_raw_ansi): New function.
(ccze_color_init): Use it, if appropriate.
* src/ccze-cssdump (ccze_config): New variable. Since
ccze_color_parse() needs this.
(parse_opt): Use ccze_config.rcfile.
(main): Likewise.
* src/ccze-dump (ccze_config): New variable. Since ccze_color_parse()
needs this.
(parse_opt): Use ccze_config.rcfile.
(main): Likewise.
* THANKS: Added Thomas Graf.
* doc/ccze.1.in (OPTIONS): Document --raw-ansi, -A.
Patch heavily based on the work of Thomas Graf.
modified files:
ChangeLog THANKS doc/ccze.1.in src/ccze-color.c
src/ccze-cssdump.c src/ccze-dump.c src/ccze-private.h
src/ccze.c
2003-03-29 11:11:39 GMT Gergely Nagy <[email protected]> patch-229
Summary:
Whoops..! Corrected Ciga's name.
Revision:
ccze--0.1--patch-229
* THANKS: Write Ciga's name in english-style, like all others.
Noticed by himself.
modified files:
ChangeLog THANKS
2003-03-20 22:52:15 GMT Gergely Nagy <[email protected]> patch-228
Summary:
The `Largo' release.
Revision:
ccze--0.1--patch-228
No tree's shade ever was
more serence, dear and lovely.
* NEWS: Updated.
* debian/changelog: Likewise.
modified files:
ChangeLog NEWS debian/changelog
2003-03-19 10:26:56 GMT Gergely Nagy <[email protected]> patch-227
Summary:
Support loading a module twice or more
Revision:
ccze--0.1--patch-227
* src/ccze.h (__default_plugin): New define.
(CCZE_DEFINE_PLUGIN): Use it.
(ccze_plugin_name_get): New prototype.
* src/ccze-private.h (ccze_plugin_setup): New prototype.
* src/ccze-plugin.c (ccze_plugin_setup): New function, extracted from
src/main.c's main().
(ccze_plugin_shutdown): Place the current plugin name into
`plugin_running'.
(ccze_plugin_run): Likewise.
(ccze_plugin_argv_set): Initialise ->argv[0].
(ccze_plugin_name_get): New function.
(_ccze_plugin_load): If loading in the normal way failed, check
`ccze_default_plugin', and try loading that one.
* doc/ccze-plugin.7.in: Document ccze_plugin_name_get and
CCZE_DEFINE_PLUGINS.
modified files:
ChangeLog doc/ccze-plugin.7.in src/Makefile.in
src/ccze-plugin.c src/ccze-private.h src/ccze.c src/ccze.h
2003-03-12 20:21:52 GMT Gergely Nagy <[email protected]> patch-226
Summary:
Support loading multiple plugins from a single file
Revision:
ccze--0.1--patch-226
* src/ccze.h (CCZE_DEFINE_PLUGINS): New macro.
* src/ccze-plugins.c (_ccze_plugin_load): Take a `recurse'
argument. Do not check multiple plugins if it is off. Also, before
loading a plugin, check if it is loaded already. If the plugin
opening succeeds, but the _info symbol is not found, defer bailing
out. After loaded the default plugin, or deferred exiting, check if
there are more plugins, and load them too.
modified files:
ChangeLog src/ccze-plugin.c src/ccze.h
2003-03-12 16:23:33 GMT Gergely Nagy <[email protected]> patch-225
Summary:
Testsuite overhaul
Revision:
ccze--0.1--patch-225
* testsuite/defs: Support VERBOSE=1 - echoing which test it runs, and a
description - and VERBOSE=* - the old behaviour.
* testsuite/do-test: Check for the ${testname}.in file in both the
objdir, and the sourcedir.
* testsuite/exim.in: Removed.
* testsuite/exim.ok: Likewise.
* testsuite/apm.in: Likewise.
* testsuite/apm.ok: Likewise.
* testsuite/color.test: Likewise.
* testsuite/bug-wnum.test: New test, extracted from the former
color.test.
* testsuite/bug-procmailsubj.test: Likewise.
* testsuite/procmail.in: Renamed to...
* testsuite/bug-procmailsubj.in: ...this.
* testsuite/procmail.ok: Renamed to...
* testsuite/bug-procmailsubj.ok: ...this.
* testsuite/bug-wnum.test: New test, extracted from the former
color.test.
* testsuite/bug-sysrepeat.test: Likewise.
* testsuite/syslog.in: Renamed to...
* testsuite/bug-sysrepeat.in: ...this.
* testsuite/syslog.ok: Renamed to...
* testsuite/bug-sysrepeat.ok: ...this.
* testsuite/Makefile.in (TESTS): Updated according to the above
changes.
(TEST_IO): New variable.
(EXTRA_DIST): Compute dynamically using ${TEST_IO}.
* testsuite/version.test: Added DESCRIPTION.
new files:
testsuite/.arch-ids/bug-procmailsubj.test.id
testsuite/.arch-ids/bug-sysrepeat.test.id
testsuite/.arch-ids/bug-wnum.test.id
testsuite/bug-procmailsubj.test testsuite/bug-sysrepeat.test
testsuite/bug-wnum.test
removed files:
testsuite/.arch-ids/apm.in.id testsuite/.arch-ids/apm.ok.id
testsuite/.arch-ids/exim.in.id testsuite/.arch-ids/exim.ok.id
testsuite/.arch-ids/color.test.id testsuite/apm.in
testsuite/apm.ok testsuite/exim.in testsuite/exim.ok
testsuite/color.test
modified files:
ChangeLog testsuite/Makefile.in testsuite/defs
testsuite/do-test testsuite/version.test
renamed files:
testsuite/.arch-ids/syslog.in.id
==> testsuite/.arch-ids/bug-sysrepeat.in.id
testsuite/.arch-ids/syslog.ok.id
==> testsuite/.arch-ids/bug-sysrepeat.ok.id
testsuite/.arch-ids/procmail.in.id
==> testsuite/.arch-ids/bug-procmailsubj.in.id
testsuite/.arch-ids/procmail.ok.id
==> testsuite/.arch-ids/bug-procmailsubj.ok.id
testsuite/syslog.in
==> testsuite/bug-sysrepeat.in
testsuite/syslog.ok
==> testsuite/bug-sysrepeat.ok
testsuite/procmail.in
==> testsuite/bug-procmailsubj.in
testsuite/procmail.ok
==> testsuite/bug-procmailsubj.ok
2003-03-11 08:14:43 GMT Gergely Nagy <[email protected]> patch-224
Summary:
ccze_getsubopt() redesign
Revision:
ccze--0.1--patch-224
* configure.ac: Lift the suboptarg check from Thy, and drop the
previous getsubopt() checks.
* src/ccze-compat.h (ccze_getsubopt): Define this unconditionally.
* src/ccze-compat.c [HAVE_GETSUBOPT] (ccze_getsubopt): New function.
[!HAVE_GETSUBOPT] (getsubopt): Renamed to...
[!HAVE_GETSUBOPT] (ccze_getsubopt): ...this.
* src/ccze.c (parse_opt): Updated to new ccze_getsubopt calling
conventions.
modified files:
ChangeLog configure.ac src/ccze-compat.c src/ccze-compat.h
src/ccze.c
2003-03-08 11:39:34 GMT Gergely Nagy <[email protected]> patch-223
Summary:
Fixed src/ccze.o dependencies
Revision:
ccze--0.1--patch-223
* src/Makefile.in (ccze.o): Depend on ${top_srcdir}/ChangeLog too. So it
picks up the new version number ASAP after a commit.
modified files:
ChangeLog src/Makefile.in
2003-03-08 10:30:23 GMT Gergely Nagy <[email protected]> patch-222
Summary:
Fixed a minor word coloring bug
Revision:
ccze--0.1--patch-222
* src/ccze-wordcolor (ccze_wordcolor_setup): Changed the `reg_pre' and
`reg_post' regexps to be less greedy, and work even if the matched
string is shorter than three characters.
* testsuite/bug-wnum.in: New test-case input from Mark Szabo. Tests
for the problem mentioned and fixed by the above change.
* testsuite/bug-wnum.ok: The expected output from the test case.
* testsuite/color.test (SUBTESTS): Added bug-wnum.
(SUBTEST_PLUGINS): Added bug-wnum:syslog.
* testsuite/Makefile.in (EXTRA_DIST): Added bug-wnum.in and bug-wnum.ok.
new files:
testsuite/.arch-ids/bug-wnum.in.id
testsuite/.arch-ids/bug-wnum.ok.id testsuite/bug-wnum.in
testsuite/bug-wnum.ok
modified files:
ChangeLog src/ccze-wordcolor.c testsuite/Makefile.in
testsuite/color.test
2003-03-06 16:46:01 GMT Gergely Nagy <[email protected]> patch-221
Summary:
mod_proftpd
Revision:
ccze--0.1--patch-221
* src/mod_proftpd.c: New file.
* ccze.plugins: Added proftpd.
* doc/ccze.1.in (PLUGINS): Mention it.
new files:
src/.arch-ids/mod_proftpd.c.id src/mod_proftpd.c
modified files:
ChangeLog ccze.plugins doc/ccze.1.in
2003-03-06 08:33:10 GMT Gergely Nagy <[email protected]> patch-220
Summary:
New, non-settable colors
Revision:
ccze--0.1--patch-220
* src/ccze.h (ccze_color_t): Added CCZE_COLOR_STATIC_*.
* src/ccze-color.c (ccze_color_keyword_map): Added them to the table.
(ccze_color_init): Initialise them.
* src/ccze-dump.c (ccze_dump_color_hidden): New function.
(main): Skip one iteration of the loop, if the color is hidden.
modified files:
ChangeLog src/ccze-color.c src/ccze-dump.c src/ccze.h
2003-03-06 08:12:17 GMT Gergely Nagy <[email protected]> patch-219
Summary:
make all-recursive, clean and distclean in testsuite/ too
Revision:
ccze--0.1--patch-219
* Makefile.in (all-recursive): Descend into testsuite too.
(clean): Likewise.
(distclean): Likewise.
modified files:
ChangeLog Makefile.in
2003-03-06 08:03:55 GMT Gergely Nagy <[email protected]> patch-218
Summary:
Support non-settable colors
Revision:
ccze--0.1--patch-218
* src/ccze-color.c (CCZE_KEYWORD_R): New macro.
(CCZE_KEYWORD): Use it.
(CCZE_KEYWORD_H): New macro.
(ccze_color_keyword_t): Added a ->settable member.
(ccze_color_keyword_lookup): Renamed and made it a wrapper of...
(_ccze_color_keyword_lookup): ...this.
(_ccze_colorname_map_lookup): Use _ccze_color_keyword_lookup ().
(ccze_color_parse): Likewise.
This will allow us stuff like ccze_addstr (CCZE_COLOR_STATIC_BLUE,
"Blah") in the near future...
modified files:
ChangeLog src/ccze-color.c
2003-03-05 20:38:10 GMT Gergely Nagy <[email protected]> patch-217
Summary:
Got rid of PLUGIN_LIBPATH
Revision:
ccze--0.1--patch-217
* src/ccze-plugin.c [PLUGIN_LIBPATH]: Got rid of this ancient relic. Use
PKGLIBDIR instead.
modified files:
ChangeLog src/ccze-plugin.c
2003-03-05 15:57:02 GMT Gergely Nagy <[email protected]> patch-216
Summary:
CCZE_ABI_VERSION
Revision:
ccze--0.1--patch-216
* src/ccze.h (CCZE_ABI_VERSION): New constant.
(ccze_plugin_t): The first member is now an int: abi_version.
* src/ccze-plugin.c (_ccze_plugin_load): Do not load the plugin if
abi_version does not match.
This is a safety barrier. Old plugins had a `void *dlhandle' as their
first member, initialised to NULL, thus resulting in a zero abi_version
when opened with this later CCZE, therefore, getting rejected instead of
causing a segfault later on.
Obviously, when the structure changes incompatibly, CCZE_ABI_VERSION
will get bumped.
modified files:
ChangeLog src/ccze-plugin.c src/ccze.h
2003-03-05 15:10:03 GMT Gergely Nagy <[email protected]> patch-215
Summary:
Fixed good/bad word colorising
Revision:
ccze--0.1--patch-215
* src/ccze-wordcolor.c (ccze_wordcolor_process_one): Unrolled the `if
(slookup)' branch, it was a bad idea. (This reverts patch 179).
modified files:
ChangeLog src/ccze-wordcolor.c
2003-03-05 12:51:13 GMT Gergely Nagy <[email protected]> patch-214
Summary:
Typo fixes
Revision:
ccze--0.1--patch-214
* debian/control (Description): roboust -> robust.
modified files:
ChangeLog debian/control
2003-03-05 12:46:16 GMT Gergely Nagy <[email protected]> patch-213
Summary:
ccze_getsubopt
Revision:
ccze--0.1--patch-213
* configure.ac: Check for FreeBSD and Linux-style getsubopt().
* src/ccze.c (ccze_getsubopt): New function.
(parse_opt): Use ccze_getsubopt().
modified files:
ChangeLog configure.ac src/ccze.c
2003-03-04 18:54:42 GMT Gergely Nagy <[email protected]> patch-212
Summary:
The `Avatar' release
Revision:
ccze--0.1--patch-212
(Instrumental)
* NEWS: Updated.
* debian/changelog: Likewise.
modified files:
ChangeLog NEWS debian/changelog
2003-03-04 18:51:24 GMT Gergely Nagy <[email protected]> patch-211
Summary:
Manual page corrections
Revision:
ccze--0.1--patch-211
* doc/ccze.1.in: Escaped some more `-' chars.
* doc/ccze-cssdump.1.in: Likewise.
* doc/ccze-plugin.7.in: Likewise, and corrected the section too.
modified files:
ChangeLog doc/ccze-cssdump.1.in doc/ccze-plugin.7.in
doc/ccze.1.in
2003-03-04 17:07:25 GMT Gergely Nagy <[email protected]> patch-210
Summary:
mod_procmail fix
Revision:
ccze--0.1--patch-210
* src/mod_procmail.c (ccze_procmail_setup): Added a missing `?' to the
regexps, so it catches stuff for real.
* testsuite/procmail.in: Added a test case that triggered the bug,
thanks to Morten Brix Pedersen.
* testsuite/procmail.ok: And added the expected, good output.
* testsuite/Makefile.in (EXTRA_DIST): Include them.
* testsuite/color.test (SUBTESTS): Run the new test.
* THANKS: Added Morten Brix Pedersen.
new files:
testsuite/.arch-ids/procmail.in.id
testsuite/.arch-ids/procmail.ok.id testsuite/procmail.in
testsuite/procmail.ok
modified files:
ChangeLog THANKS src/mod_procmail.c testsuite/Makefile.in
testsuite/color.test
2003-03-04 17:02:03 GMT Gergely Nagy <[email protected]> patch-209
Summary:
Documentation update
Revision:
ccze--0.1--patch-209
* doc/ccze-plugin.7.in (SYNOPSIS): Added all the important function
definitions.
(DISPLAY METHODS): Document the display methods.
(HELPER METHODS): Document the helper methods.
* doc/ccze.1.in (OPTIONS): Document that -a's arguments are whitespace
separated.
(NOTES): Removed this section.
* TODO: Updated.
* FAQ: Added a section about extensions.
modified files:
ChangeLog FAQ TODO debian/rules doc/ccze-plugin.7.in
doc/ccze.1.in
2003-03-03 18:20:30 GMT Gergely Nagy <[email protected]> patch-208
Summary:
Recompute subjlen
Revision:
ccze--0.1--patch-208
* src/ccze.c (ccze_main): Recompute subjlen before calling
ccze_plugin_run. Fixes a rare output corruption.
modified files:
ChangeLog src/ccze.c
2003-03-03 15:23:09 GMT Gergely Nagy <[email protected]> patch-207
Summary:
CCZE_PLUGIN_TYPE_ANY
Revision:
ccze--0.1--patch-207
* src/ccze.h (ccze_plugin_type_t): Added CCZE_PLUGIN_TYPE_ANY.
* src/ccze-plugin.c (ccze_plugin_run): Run the plugin if it is _ANY,
regardless of `type'.
modified files:
ChangeLog src/ccze-plugin.c src/ccze.h
2003-03-03 14:15:45 GMT Gergely Nagy <[email protected]> patch-206
Summary:
configure.ac update
Revision:
ccze--0.1--patch-206
* configure.ac: Updated, based on autoscan results.
modified files:
ChangeLog configure.ac
2003-03-03 13:47:10 GMT Gergely Nagy <[email protected]> patch-205
Summary:
ccze_color_keyword_lookup()
Revision:
ccze--0.1--patch-205
* src/ccze.h (ccze_color_keyword_lookup): New public prototype.
* src/ccze-color.c (_ccze_color_keyword_lookup): Renamed to...
(ccze_color_keyword_lookup): ..this, and removed staticness.
modified files:
ChangeLog src/ccze-color.c src/ccze.h
2003-03-02 18:18:12 GMT Gergely Nagy <[email protected]> patch-204
Summary:
Minor plugin-argument cleanup
Revision:
ccze--0.1--patch-204
* src/ccze.c (parse_opt): Removed a debugging printf.
* src/ccze-plugin.c (_ccze_plugin_load): Do not touch ->argv, so we can
check for NULL in plugins.
modified files:
ChangeLog src/ccze-plugin.c src/ccze.c
2003-03-02 17:25:05 GMT Gergely Nagy <[email protected]> patch-203
Summary:
Fixed ccze.1.in
Revision:
ccze--0.1--patch-203
* doc/ccze.1.in (PLUGINS): Fixed. There were a bunch of roff errors.
(well, not errors.. it just did not format right)
modified files:
ChangeLog doc/ccze.1.in
2003-03-02 17:20:58 GMT Gergely Nagy <[email protected]> patch-202
Summary:
Support for passing arguments to plugins
Revision:
ccze--0.1--patch-202
* src/ccze.h (ccze_plugin_t): Added an ->argv member.
(CCZE_DEFINE_PLUGIN): Modified accordingly.
(ccze_plugin_argv_get): New function prototype.
* src/ccze-private.h (ccze_plugin_argv_init): New function prototype.
(ccze_plugin_argv_set): Likewise.
(ccze_plugin_argv_finalise): Likewise.
* src/ccze-plugin.c (ccze_plugin_argv_init): New function.
(ccze_plugin_argv_set): Likewise.
(ccze_plugin_argv_finalise): Likewise.
(ccze_plugin_argv_get): Likewise.
(_ccze_plugin_load): Initialise ->argv.
(_ccze_plugin_find): New function.
(_ccze_plugin_loaded): Use it.
(ccze_plugin_shutdown): Free ->argv.
* src/ccze.c (options): Added --argument.
(parse_opt): Handle it.
(ccze_main): Call ccze_plugin_init() earlier, and
ccze_plugin_argv_finalise() after loading the plugins.
(main): Call ccze_plugin_argv_init().
* src/Makefile.in (ccze-dump): Depend on ccze-color.c too.
(ccze-cssdump): Likewise.
* doc/ccze.1: Documented --argument.
* doc/ccze-plugin.7.in: Documented ccze_plugin_argv_get().
modified files:
ChangeLog doc/ccze-plugin.7.in doc/ccze.1.in src/Makefile.in
src/ccze-plugin.c src/ccze-private.h src/ccze.c src/ccze.h
2003-02-25 09:38:40 GMT Gergely Nagy <[email protected]> patch-201
Summary:
FAQ
Revision:
ccze--0.1--patch-201
* FAQ: New file.
* Makefile.in (EXTRA_DIST): Added it.
* ccze.spec.in (%files): Include it among the %docs.
* debian/rules (install): Install it.
new files:
.arch-ids/FAQ.id FAQ
modified files:
ChangeLog Makefile.in ccze.spec.in debian/rules
2003-02-21 10:41:59 GMT Gergely Nagy <[email protected]> patch-200
Summary:
The `Enigma of the Absolute' release
Revision:
ccze--0.1--patch-200
Across the sea lies the fountain of renewal
Where you will see the whole cause of your loneliness
Can be measured in dreams that transcend all these lies
And I wish and I pray that there may come a day
For a saviour's arms...
* NEWS: Updated.
* debian/changelog: Likewise.
modified files:
ChangeLog NEWS debian/changelog
2003-02-21 09:09:02 GMT Gergely Nagy <[email protected]> patch-199
Summary:
Minor mem-leak fix in argp_parse
Revision:
ccze--0.1--patch-199
* src/ccze-compat.c [HAVE_GETOPT_LONG] (argp_parse): Free `longopts'.
modified files:
ChangeLog src/ccze-compat.c
2003-02-20 17:32:51 GMT Gergely Nagy <[email protected]> patch-198
Summary:
Fixed a malloc issue
Revision:
ccze--0.1--patch-198
* src/ccze-compat.c [HAVE_GETOPT_LONG] (argp_parse): Use ccze_calloc,
not ccze_malloc.
modified files:
ChangeLog src/ccze-compat.c
2003-02-20 17:03:45 GMT Gergely Nagy <[email protected]> patch-197
Summary:
Support long options everywhere, where getopt_long is present
Revision:
ccze--0.1--patch-197
* configure.ac: Check for getopt_long in libc and libgnugetopt.
* src/ccze-compat.c (argp_parse): Use getopt_long, if present. Also
format the --help message a bit better.
modified files:
ChangeLog configure.ac src/ccze-compat.c
2003-02-20 15:28:00 GMT Gergely Nagy <[email protected]> patch-196
Summary:
.spec update
Revision:
ccze--0.1--patch-196
* ccze.spec.in: Use %{buildroot}, %configure and %makeinstall. While
there, copied the long description from debian/control.
modified files:
ChangeLog ccze.spec.in
2003-02-20 15:16:11 GMT Gergely Nagy <[email protected]> patch-195
Summary:
Fixed make dist from an objdir
Revision:
ccze--0.1--patch-195
* Rules.mk.in (distdir): Copy from the current dir, if the file does not
exist in ${srcdir}.
modified files:
ChangeLog Rules.mk.in
2003-02-20 15:06:21 GMT Gergely Nagy <[email protected]> patch-194
Summary:
Fixed a typo
Revision:
ccze--0.1--patch-194
* src/Makefile.in (ccze-compat.o): Depend on .c, not on itself.
modified files:
ChangeLog src/Makefile.in
2003-02-20 15:01:37 GMT Gergely Nagy <[email protected]> patch-193
Summary:
Add a generator meta-tag to the HTML output
Revision:
ccze--0.1--patch-193
* src/ccze.c (ccze_main): Add a generator meta-tag to the HTML output.
modified files:
ChangeLog src/ccze.c
2003-02-20 11:40:57 GMT Gergely Nagy <[email protected]> patch-192
Summary:
True64 port
Revision:
ccze--0.1--patch-192
* src/ccze.h: #include <ncurses.h>
(ccze_malloc): New prototype.
(ccze_realloc): Likewise.
(ccze_calloc): Likewise.
* src/ccze-compat.c: #include <ccze.h>
(ccze_malloc): New function.
(ccze_realloc): Likewise.
(ccze_calloc): Likewise.
All malloc/realloc/calloc users updated.
* src/ccze-wordcolor.c: Do not #include <curses.h>, ccze.h does that
for us.
* src/Makefile.in (ccze-compat.o): New dependency-target.
* THANKS: Added Erik Braun.
modified files:
ChangeLog THANKS src/Makefile.in src/ccze-compat.c
src/ccze-dump.c src/ccze-plugin.c src/ccze-wordcolor.c