-
Notifications
You must be signed in to change notification settings - Fork 21
/
ChangeLog.old
6407 lines (3640 loc) · 158 KB
/
ChangeLog.old
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
2004-06-19 lha <lha>
* Fix handling of boolean_keywords in phrases The patch of June 11 avoids endless loop when combining phrases and
boolean search, but searches fails. This patch distinguishes if a boolean keyword is in a phrase or not.
When it is in a phrase it isn't treated special (that is, as a
boolean), but as a part of the phrase.
2004-06-14 lha <lha>
* Don't omit URL from url_log if interrupted. The interrupt signal is checked in the same while condition, the
next URL is popped. The signal has to be checked first, so the next
URL is still in the list of URLs not yet checked.
2005-02-25 nealr <nealr>
* correct version number in Berkely DB License correct version number in Berkely DB License per Michael Olson @
Sleepycat. (cherry picked from commit 53da03c74f1a2d3fad3d391a9966eb80f4082098)
2013-08-17 Jim Cole <[email protected]>
* Fix external command parsing bug. The single argument StringList constructor only considers a tab to
be a valid separator. As such a space between a command and argument
(e.g. "convert.pl -x") is not treated as a separator, and the
string is not split properly. This results in execv calling a
command that generally doesn't exist (e.g. "convert.pl -x" rather
than convert.pl). Incidentally this change merges: - Patch from ht://Dig ftp server: CommandParsing.0 - fedora: htdig-3.2.0-external_parsers part 1 - old htdig tree after 3.2.0-b6: first part of "patches from Jim Cole" (commit f0482c39bc87bd008783fc355f10270bec036210)
* Fix bug in handling SSL connections. Corrects a bug in the Read_Partial code used for handling SSL
connections. Incidentally this change merges: - Patch from ht://Dig ftp server: SSL_pending.0 - openSUSE Patch: htdig-SSLConnection.patch - old htdig tree after 3.2.0-b6: third part of "patches from Jim Cole" (commit f0482c39bc87bd008783fc355f10270bec036210)
* Fix typo in htdig/ExternalParser.cc. Incidentally this change merges: - Patch from ht://Dig ftp server: ExternalParsersTypo.0 - openSUSE Patch: htdig-ExternalParser-typo.patch - fedora: third part of htdig-3.2.0-external_parsers.patch - old htdig tree after 3.2.0-b6: second part of "patches from Jim
Cole" (commit f0482c39bc87bd008783fc355f10270bec036210)
2013-08-17 Robert Klein (roklein) <[email protected]>
* Fix CVE-2007-6110 XSS Vulnerability. From CVE entry: Cross-site scripting (XSS) vulnerability in htsearch
in htdig 3.2.0b6 allows remote attackers to inject arbitrary web
script or HTML via the sort parameter.) Incidentally this change merges: - openSUSE Patch: htdig-quoting.patch - fedora Patch: htdig-3.2-CVE-2007-6110.patch Can't identify original patch author.
* Fix CVE-2005-085 XSS Vulnerability. From CVE entry: Cross-site scripting (XSS) vulnerability in ht://dig (htdig) allows remote attackers to execute arbitrary web script or
HTML via the config parameter, which is not properly sanitized
before it is displayed in an error message. Incidentally this change merges: - openSUSE Patch: htdig-cross-site-CAN-2005-0085.patch - fedora Patch: htdig-3.2.0b6-unescaped_output.patch Can't identify original patch author. Probably a Michael Krax.
2013-08-17 Gilles Detillieux <[email protected]>
* Give meaningful error message if execv fails. This change fixes bug #1087186. Previuosly committed (in the
htdig-legacy branch) as: - b000f1dacfbc4ae9ee65a2fcde217ecbbe0c2640 and - fbb37dba767fe37f7c94ab7b0158950f59135f6b Incidentally this change merges: - Patch from ht://Dig ftp server: external_parsers.0 (without typo) - fedora patch: second part of htdig-3.2.0-external_parsers.patc
2013-08-17 Robert Klein (roklein) <[email protected]>
* Remove class qualifier from method declaration. Incidentally this change merges: - openSUSE Patch: htsearch-gcc41.patch - fedora Patch: htdig-3.2.0b6-compile-fix.patch Original patch author is unknown, but probably found and fixed
independently several times.
2013-07-05 Robert Klein <[email protected]>
* branch for htdig 3.2 development
2004-06-13 lha <lha>
* RE-fix Cygwin database-empty bug
2004-06-12 lha <lha>
* Update "files" section of documentation, esp. hyperlink ..._DIR
parts
2004-06-11 grdetil <grdetil>
* htsearch/parser.cc (phrase): Applied Lachlan's patch to prevent
endless loop when boolean keywords appear in a phrase in boolean
match method.
* db/hash.c (CDB___ham_open): Applied Red Hat's h_hash patch, to
ensure that hash function always set to something valid.
* installdir/HtFileType: Added -f to rm command.
* htsearch/parser.cc (perform_or): Added missing & in if clause.
* contrib/htdig-3.2.0.spec: Updated for 3.2.0b6.
* installdir/Makefile.{am,in}: Don't stick $(DESTDIR) in HtFileType.
2004-06-10 angusgb <angusgb>
* - Updated RELEASE.html and ChangeLog before the release
* - Tagged release 3.2.0b6
* htcommon/conf_(lexer.lxx,parser.yxx): applied Gilles' patch (April
22) which features: - improved error handling, gives file name and correct line
number, even if using include files - allows space before comment, because otherwise it would just
complain about the "#" character and go on to parse the
text after it as a definition - allows config file with an unterminated line at end of file, by
pushing an extra newline token to the parser at EOF - parser correctly handles extra newline tokens, by moving this
handling out of simple_expression, and into simple_expression_list
and block, as simple_expression must return a new ConfigDefaults
object and a newline token doesn't cut it (caused segfaults when
dealing with fix above)
* htcommon/conf_lexer.cxx: Regenerate using flex 2.5.31.
* htcommon/conf_parser.cxx: Regenerate using bison 1.875a.
2004-06-09 grdetil <grdetil>
* htdig/HTML.cc (do_tag): Fixed meta date handling fix of June 3 to ensure null byte gets put in by get() call.
2004-06-09 lha <lha>
* Add OpenOffice support to doc2html
2004-06-05 lha <lha>
* Avoid failure and spurious warnings for two tests on
non-linux/gnu systems
* Hyperlink attrs.html for default values defined in terms of
other attributes.
* defaults.cc: Escaped new-line in file-space entry, and fixed
no_next_page_text
2004-06-04 grdetil <grdetil>
* htdig/HTML.cc (do_tag): Fixed meta date handling to avoid
inadvertently matching names like DC.Date.Review.
* - htcommon/URL.cc: added "allow_space_in_url" (from fileSpace.1
patch) - htcommon/defaults.[cc,xml]: added documentation of
allow_space_in_url - htdoc/attrs.html.in: regenerated using cf_generate.pl - htdoc/cf_byname.html: ditto - htdoc/cf_byprog.html: ditto - htdoc/RELEASE.html: updated with info regarding this attribute
2004-06-03 angusgb <angusgb>
* - Tagged release htdig-3-2-0b6
* - global: updated with 'autoreconf -if' (autoconf 2.59, libtool
1.5.6 and automake 1.7.9)
* - htdoc/RELEASE.html: updated release notes and changes - htdoc/THANKS.html: updated the 'thanks' section
2004-06-02 angusgb <angusgb>
* - Updated for htdig-3.2.0b6 release
* - contrib/rtf2html: added the rtf2html.c source as modified by David
Lippi and Gabriele Bartolini of the Comune di Prato. The source code
is now released under GNU GPL and included in the ht://Dig package.
2004-06-01 angusgb <angusgb>
* - htcommon/HtSGMLCodec.cc: changed ¤ to €
2004-05-28 lha <lha>
* Update copyright to 2004
2004-05-23 lha <lha>
* Sync htdoc/FAQ.html with offical FAQ on www.htdig.org
* Fix evaluation of variables (like BINDIR) used in attrs.html
* Prepare documentation for 3.2.0b6 release
2004-04-26 grdetil <grdetil>
* htfuzzy/Soundex.cc (generateKey): Applied Alex Kiesel's fix to
prevent segfaults when word has no letters.
2004-04-25 lha <lha>
* Handle empty noindex_start/end. Restore an accidentally
backed-out patch.
* Defensive programming: Don't crash if error returned by
getDocumentRef()
* Correctly detect paths beginning C: as absolute paths in
Windows. Fix #814268
* Gilles's patch to compile exclude_urls only when it is
changed, not each URL.
* Use mktemp to create safe temporary file
2004-04-07 grdetil <grdetil>
* htdig/Retriever.cc (IsValidURL): Fixed bug #931377 so
bad_extensions and valid_extensions not thrown off by periods in
query strings.
2004-03-20 nealr <nealr>
* commit libhtdigphp addition
2004-03-15 angusgb <angusgb>
* - htsearch/Display.cc: changed (and fixed) the date factor formula
as Lachlan and David Lippi suggested, in order not to give negative
results.
2004-03-12 angusgb <angusgb>
* I forgot to: - specify that bug #909674 is fixed (according to me) - remove older man pages (I had a connection error while removing
them)
2004-03-12 angusgb <angusgb>
* - configure.in: removed 'eval' expressions which caused the 'NONE'
prefix path to be instantiated and the make script to hang - acinclude.in: fixed AC_DEFINEs for SSL and ZLIB check macros,
which prevented autoheader (and therefore autoreconf) to correctly
work - moved manual pages from htdoc to installdir - htdoc/[manpages].in: removed - installdir/*.[1,8]: removed man pages (htdig-pdfparser.1, htdig.1,
htdump.1, htfuzzy.1, htload.1, htmerge.1, htnotify.1, htpurge.1,
htsearch.1, htstat.1, rundig.1, htdigconfig.8) - installdir/*.[1,8].in: added pre-configure man pages
(htdig-pdfparser.1.in, htdig.1.in, htdump.1.in, htfuzzy.1.in,
htload.1.in, htmerge.1.in, htnotify.1.in, htpurge.1.in,
htsearch.1.in, htstat.1.in, rundig.1.in, htdigconfig.8.in) - regenerated configure scripts with autoreconf
2004-03-03 lha <lha>
* Use mktemp to create safe temporary file
2004-02-25 angusgb <angusgb>
* - htdocs/THANKS.html: added Robert Ribnitz to the 'thanks' page and
fixed Nenciarini's position (it was not in alphabetical order -
sorry!).
2004-02-25 angusgb <angusgb>
* - installdir/*.[1,8]: added man pages (htdig-pdfparser.1, htdig.1,
htdump.1, htfuzzy.1, htload.1, htmerge.1, htnotify.1, htpurge.1,
htsearch.1, htstat.1, rundig.1, htdigconfig.8) provided by Robert
Ribnitz <[email protected]> of the Debian Project - installdir/Makefile.am: prepared the automake script for correctly
handling the man pages
2004-02-20 lha <lha>
* Back out buggy fix to allow spaces in restrict/exclude arguments
2004-02-19 lha <lha>
* Added man pages. Many changes to configuration process.
2004-02-13 lha <lha>
* Fix bug with --without-zlib
2004-02-08 lha <lha>
* Several patches to fix attributes related to spidering
2004-02-03 angusgb <angusgb>
* - htcommon/HtConfiguration.cc: changed the Find method in order not
to ignore empty string results for string attributes
whenever they are defined in the configuration file by
the user - htdig/Document.cc: fixed bugs in handling the http_proxy,
http_proxy_authorization, authorization attributes - htlib/Configuration.[h,cc]: added the Exists method in order to
query whether an attribute's definition is present in the
configuration dictionary (before it was checked
against its string's length which prevented empty
attributes to be correctly used) - these changes fix bug #887552
2004-01-18 lha <lha>
* Fix name of allow_double_slash attribute. (Was ..._dbl_... in
places.)
2004-01-17 lha <lha>
* Expanded test suite
2004-01-17 lha <lha>
* Fix bug causing max_descriptions to be ignored. Update docs.
2004-01-12 lha <lha>
* Change C++ style comments to C style comments in all C files
2004-01-12 lha <lha>
* Add t_parsing to test config some attributes
2003-12-29 lha <lha>
* Test validity of all URLs, including first from each server
2003-12-29 lha <lha>
* Accept list of starting urls from stdin if "-" given as argument
of -m
2003-12-29 lha <lha>
* Make rundig -a use correct (possibly non-default) database
directory
2003-12-21 lha <lha>
* Improve handling of restrict/exclude URLs with spaces
2003-12-21 lha <lha>
* Correctly split URL patterns at | for url_seed_score and
search_results_order
2003-12-14 lha <lha>
* Allow indexing if robots.txt has an empty "disallow" line
2003-12-14 lha <lha>
* Warn if config file has entries for obsolete attributes
2003-12-14 lha <lha>
* Replace 'Value("start_ellipses")' with 'Find(...)'
2003-12-14 lha <lha>
* Add t_fuzzy t_templates t_validwords and t_factors to test
suite
2003-12-14 lha <lha>
* Abandon patch to add extra "blank" line to config, as junk line
added instead.
2003-12-13 lha <lha>
* Fix cross-referencing of max_excerpts attribute
2003-12-03 lha <lha>
* Add missing brackets to previous change in conf_lexer.{cxx,lxx}
(Can't add a Changelog entry -- cvs hangs while processing it!?? ):
2003-11-22 lha <lha>
* Fix bug when config file doesn't end in newline
2003-11-11 angusgb <angusgb>
* - Updated 'where' and the static version of the news
2003-11-10 nealr <nealr>
* Update link to 3.2.0b5 snapshot
2003-11-09 angusgb <angusgb>
* - Added entry for htdig-3.2.0b5 release
2003-11-09 angusgb <angusgb>
* - Added Marco Nenciarini
2003-11-08 angusgb <angusgb>
* - Updated ChangeLog in the htdoc directory
2003-11-08 lha <lha>
* Updated docs ready for 3.2.0b5 release
2003-11-07 lha <lha>
* Fix backlink_factor, and use of multimatch_factor
2003-11-01 lha <lha>
* Get alignment right if first word in phrase is a bad word.
2003-10-28 angusgb <angusgb>
* - htdig/htdig.cc: set the debug level when we are importing a cookie
file. Fix bug #831478.
2003-10-27 grdetil <grdetil>
* htdig/Server.cc: Fix bug #831407. Make sure time properly reset
after delay.
2003-10-27 grdetil <grdetil>
* htdoc/THANKS.html: Added Lachlan, Jim and Neal to the active
developers list.
2003-10-26 lha <lha>
* Clarify documentation for NEXTPAGE/PREVPAGE when there is only
one page
2003-10-26 lha <lha>
* Removed spurious '>' from boolean_syntax_errors, and clarified
that noindex_start/end do not introduce whitespace.
2003-10-26 angusgb <angusgb>
* - htcommon/defaults.cc: Fixed description of 'head_before_get' after
Lachlan fixes. - htdoc/attrs.html: rerun cf_generate.pl
2003-10-25 lha <lha>
* When filenames are used as titles, URL-decode them to remove
%20.
2003-10-25 lha <lha>
* Don't assume time_t is signed. Only use positive times in
Server::delay()
2003-10-24 grdetil <grdetil>
* htdoc/htdig.html, htdoc/meta.html, htdoc/require.html: Update URL
for the Standard for Robot Exclusion.
2003-10-24 grdetil <grdetil>
* htdoc/htmerge.html: Added two clarifications to -m option
description.
2003-10-24 grdetil <grdetil>
* htdoc/cf_types.html: Make clear distinction between String List
and Quoted String List.
2003-10-24 grdetil <grdetil>
* htsearch/Display.cc: Fix bug #829746. Applied Niel Kohl's fix for
this, to check if words input given before trying to use it.
2003-10-24 grdetil <grdetil>
* htsearch/Display.cc: Fix bug #578570. The enddate handling now
works correctly for a large, negative startday value.
2003-10-24 grdetil <grdetil>
* htdig/HTML.cc (ctor): Fix obvious typo in metadatetags.Pattern
setting.
2003-10-23 lha <lha>
* Remove explicit default startyear of 1970
2003-10-23 angusgb <angusgb>
* - htdig/htdig.cc: restored the code before Oct 21 (fixes ##828628)
2003-10-23 angusgb <angusgb>
* - htdig/Retriever.[h,cc]: removed 'head_before_get' overriding by
restoring the code before Oct 21. - htdig/Document.[h,cc]: ditto, with the exception of detaching the
HEAD before GET mechanism from the persistent connections'. - htcommon/defaults.cc: improved documentation (even though it needs
corrections by an english-speaking developer). - These changes fix bug #828628
2003-10-22 lha <lha>
* Correct error of counting urls whose display is suppressed
2003-10-21 angusgb <angusgb>
* - htdig/Retriever.h: added the 'RetrieverType' enum and an object
variable for storing the type of dig we are performing (default
initial); - htdig/Retriever.cc: changed constructor in order to handle the
type, added some debugging explanation regarding the override of the
'head_before_get' attribute, added checks regarding an empty
database of URLs to be updated (set the type to initial). - htdig/Document.h: added the attribute 'is_initial' which stores
the information regarding the type of indexing (initial or
incremental) we are currently performing. Added access methods
(get-and-set-like) - htdig/Document.cc: modified the logic of the HeadBeforeGet
settings during the retrieval phase, in order to always override
user's settings in an incremental dig and automatically set the
'HEAD' call in this case. - htcommon/defaults.cc: modified the default value of
'head_before_get' and a bit of its explanation. - htnet/HtHTTP.cc: detached the HEAD before GET mechanism to the
persistent connections one - htdig/Server.cc: added one level of debugging to the display of
the server settings in the server constructor
2003-10-17 lha <lha>
* Fix allow_numbers
2003-10-17 lha <lha>
* Escape $ in valid punctuation, and document need to escape $ and
\.
2003-10-15 grdetil <grdetil>
* htdig/Server.cc (robotstxt): Patched to fix bug #765726. Don't block paths with subpaths excluded by robots.txt, and make sure any regex meta characters are properly escaped.
2003-10-14 angusgb <angusgb>
* htnet/HtHTTP.cc: add an empty Accept-Encoding header - this inform
the server that htdig is only able to manage documents that are not
encoded (if no Accept-Encoding is sent, the server assumes that the
client is capable of handling every content encoding - i.e. zipped
documents with Apache's mod_gzip module). Partial fix of bug #594790
(which now becomes a feature request)
2003-10-14 angusgb <angusgb>
* - Inserted a missing '</a>'
2003-10-13 lha <lha>
* Fix bugs in Speling and Regex fuzzy rules. Update some
documentation.
2003-10-12 lha <lha>
* Fix bug in insertion of "exact" word, if fuzzy algorithm give no
search term
2003-10-12 lha <lha>
* Back out change to Robots.txt handling
2003-10-05 lha <lha>
* Fix robot exclusions. Jim Cole's patch with bug report #765726.
2003-10-05 lha <lha>
* Fix highlighting of phrases containing bad_words or short words
2003-09-27 lha <lha>
* Pass arguments correctly to test_functions. Was broken on
FreeBSD.
2003-09-27 lha <lha>
* Fix for HP-UX -- avoid ambiguity between time_t and int.
2003-09-22 ghutchis <ghutchis>
* Updated with Dave Bannon's test of ItaniumII RH AdvancedServer
2003-08-29 nealr <nealr>
* remove unused vars
2003-08-29 nealr <nealr>
* remove references to CDB_set_mp_diry_level,
CDB_get_mp_diry_level and CDB___mp_dirty_level
2003-08-28 nealr <nealr>
* added notes for new Sleepycat license and mp_alloc.c rollback
2003-08-28 nealr <nealr>
* backout last three changes (revert to Revision 1.2 , Sat Feb 2
18:18:05 2002) - they caused very large DB growth - the data was the
same but the files were MUCH larger
2003-08-28 nealr <nealr>
* Changeover to New Berkeley DB License from Sleepycat
2003-08-28 angusgb <angusgb>
* - global: updated with 'autoreconf -if' (autoconf 2.57, libtool
1.5.0a and automake 1.7.6) - 'make check' successful on: AMD64 Linux 2.4, Alpha Linux 2.2,
RedHat Linux 7.3 (2.4), SPARC Ultra60 Linux 2.4, Sparc R220 Sun
Solaris (5.8). - README.developer: added further info
2003-08-28 angusgb <angusgb>
* - db/[config.guess,config.sub,install-sh,ltmain.sh,missing]: added
in the database directory (this way 'make dist' goes on); I have not
been able to tell the db/configure script to get the 'top_srcdir'
ones (which should be the default behaviour). Maybe in the future
we'll look for this.
2003-08-28 angusgb <angusgb>
* - db/configure.in: changed AC_PROG_INSTALL() to AC_PROG_INSTALL and
removed AC_CONFIG_AUX_DIR; this implies that autotools copies will
be made for the db directory as well.
2003-08-28 angusgb <angusgb>
* -
[htcommon,htdb,htdig,htfuzzy,htlib,htnet,htsearch,httools,htword,test]/Makefile.am:added the option above to every
*_LDFLAGS
2003-08-28 angusgb <angusgb>
* - Makefile.am: removed acconfig.h from the EXTRA_DIST list
2003-08-28 angusgb <angusgb>
* configure.in: removed portability checks for error, stat and lstat
that caused a compile errors on Solaris. Added the '-mimpure-text'
extra ld flag for GCC on solaris systems (a linkage error occurs
when libstdc++ is not shared)
2003-08-28 angusgb <angusgb>
* include/Makefile.am: changed htconfig.h.in into config.h.in
2003-08-28 angusgb <angusgb>
* - htlib/error.[h,c]: removed for now, until replacement functions
will be correctly performed.
2003-08-28 angusgb <angusgb>
* - htdoc/cf_generate.pl: fixed an error when opening tail and head
files - Makefile.am: enabled rebuild from a different directory (it is
used my 'make dist')
2003-08-28 angusgb <angusgb>
* - htlib/malloc.c: modified according to autoconf specifications as
far as replacement functions are regarded - htlib/[lstat, stat].c: removed for now
2003-08-28 angusgb <angusgb>
* - htdoc/cf_generate.pl: accept an optional parameter (top source
directory) - htcommon/defaults.cc: fixed some broken lines which prevented
cf_generate.pl from correctly working - htdoc/Makefile.am: modified the automake file for passing the top
source directory to cf_generate.pl - htdoc/attrs.html, htdoc/cf_byname.html, htdoc/cf_byprog.html:
Regenerated using cf_generate.pl.
2003-08-26 angusgb <angusgb>
* - configure.in: removed AC_FUNC_MKTIME because it may not work
properly and added default replacement directory (htlib) for future
uses - htlib/Makefile.am: back-step with re-inclusion of mktime.c in the
list of files to be always compiled (caused linking errors for the
__mktime_internal function) - global: updated with 'autoreconf -if'
2003-08-24 angusgb <angusgb>
* - updated with 'autoreconf -if': autoconf 2.57, automake 1.7.6 and
libtool 1.5.0a (autotools that come with Debian SID)
2003-08-24 angusgb <angusgb>
* - configure.in: moved AC_PROG_LEX to AM_PROG_LEX - db/configure.in: enabled AM_MAINTAINER_MODE which prevented users
without autotools to configure and compile the program (relatively
to the db directory) - include/htconfig.h: previously excluded from the branch (severe
error!)
2003-07-21 angusgb <angusgb>
* - htlib/(malloc|error|lstat|stat|realloc).c: added for
cross-compiling reasons (as suggested by automake) - htlib/error.h: ditto - db/acconfig.h: removed as suggested by autotools' new versions - configure.in: removed AC_PROG_RANLIB (overriden by
AC_PROG_LIBTOOL) - updated as of rerun 'autoreconf -if'
2003-07-21 angusgb <angusgb>
* - Patch provided by Marco Nenciarini <[email protected]> has been
completely applied; the patch adds support for detection of standard
C++ library - all sources using <iostream.h> <fstream.h> <iomanip.h>: modified
to use standard ISO C++ library, if present - db/configure scripts: modified for autoconf 2.57
2003-07-21 angusgb <angusgb>
* - [.,*]/Makefile.in: regenerated by new automake against new
configure.in - Makefile.config: now looking for the global configuration file in
the source directory
2003-07-21 angusgb <angusgb>
* - configure.in: completely rewritten, deprecated directives have
been removed and now version 2.57 is a prerequisite. - acinclude.m4: moved all the macros here - aclocal.m4, configure: regenerated by aclocal and autoconf - acconfig.h: removed as now it is deprecated - include/htconfig.h.in: removed, as 'config.h.in' is preferred and
auto-generated - config.[guess,sub]: updated with newer versions
2003-07-08 grdetil <grdetil>
* htsearch/parser.cc (checkSyntax): Fixed boolean_syntax_errors handling to work over multiple config files.
2003-07-05 lha <lha>
* Wait 2 seconds for Apache to start. Don't try to kill it if it
isn't running.
2003-07-05 lha <lha>
* Disable cache flushing, as it leaked database pages due to
another bug.
2003-06-27 nealr <nealr>
* minor fixup
2003-06-27 nealr <nealr>
* Copyright update (2003)
2003-06-27 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-27 nealr <nealr>
* make win32 exes depend on libraries
2003-06-27 nealr <nealr>
* make CDB___mp_dirty_level non-global and use accessor functions
-- already done in db.h.win32
2003-06-25 nealr <nealr>
* Need -I../htcommon for updates to DB2_db.cc
2003-06-24 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-24 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-24 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-24 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-24 nealr <nealr>
* Add Copyright and LGPL License Notice
2003-06-24 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-24 nealr <nealr>
* Copyright update (2003) & GPL -> LGPL License change (Decided by
HtDig Board & Membership October 2002)
2003-06-24 nealr <nealr>
* GPL -> LGPL License change
2003-06-23 nealr <nealr>
* Neal's comments for raft of Native Win22 related commits
2003-06-23 nealr <nealr>
* Makefile for Native WIN32
2003-06-23 nealr <nealr>
* Lots of changes/improvements/new-features - Native WIN32 among
others
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32 and use functions added to db rather
than global variable
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32 & improve IsValidURL with return codes
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* remove global variable and subsitute functions to set/get
variable
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* Changes for Native WIN32
2003-06-23 nealr <nealr>
* add GNU LGPL regex code that was ported to Native Win32
2003-06-23 nealr <nealr>
* Add well-tested public domain getopt routines to htlib for
native Win32
2003-06-23 nealr <nealr>
* donate file copy routines Unix & Native WIN32 versions
2003-06-23 nealr <nealr>
* Donate POSIX-Like directory routines for Native WIN32
2003-06-23 nealr <nealr>
* add Native Win32 makefile
2003-06-23 nealr <nealr>
* add Native Win32 config files
2003-06-23 nealr <nealr>
* add Native Win32 makefiles
2003-06-23 ghutchis <ghutchis>
* Minor update.
2003-06-22 lha <lha>
* Eliminated DB compression recursion (at its source)
2003-06-20 lha <lha>
* Fix --with-ssl bug in configure
2003-06-20 lha <lha>
* Fix to compile with Sun's C++ (and, I hope, configure on
HP/UX).
2003-06-15 lha <lha>
* Set wordlist_chache_dirty_level to its most conservative.
Update several docs.
2003-06-13 lha <lha>
* Set MATCH_MESSAGE from method_names attribute, for
non-English sites.
2003-06-12 grdetil <grdetil>
* htsearch/htsearch.cc (main): Fixed boolean_keywords handling to
work over multiple config files (must destroy old list before
creating new one).
2003-06-12 grdetil <grdetil>
* htcommon/defaults.cc, htsearch/Display.cc (setVariables): Removed
incorrect default value for "config" attribute, and removed hack
that tried to fix it.
* htdoc/attrs.html: Regenerated using cf_generate.pl.
2003-06-12 grdetil <grdetil>
* htcommon/defaults.cc, htcommon/HtSGMLCodec.cc (ctor): Added
translate_latin1 option to allow disable Latin 1 specific SGML
translations.
* htdoc/attrs.html, htdoc/cf_by{name,prog}.html: Regen. with
cf_generate.pl.
2003-06-09 lha <lha>
* Fix infinite loop in setupWords when query ended with non-word
characters
2003-06-09 lha <lha>
* Fix bug with "Refine search" option -- CONFIG templ variable was
whole path
2003-06-09 lha <lha>
* Tidy documentation. Don't kill apache multiple times in
test/test_functions
2003-06-08 lha <lha>
* Hack configure to set OS dependent flags. Only start Apache
for tests which actually need it, and kill it afterwards.
2003-06-02 lha <lha>
* Add zlib_level to mp_cmpr.c defaults, and avoid warnings in
conf_lexer.cxx
2003-05-30 lha <lha>
* Back out last commit (re-run autotools), I hope! OS X
*should*
work again.
2003-05-29 lha <lha>
* Fixed acconfig.h and re-ran libtool 1.5, autoconf 2.57,
automake 1.6.3 Hacked test/Makefile.in again to chmod 755 before
running tests
2003-05-29 lha <lha>
* Fix signed/unsigned comparison bug on SunOS cc
2003-05-27 lha <lha>
* Fix configuration bugs, portability issues, and bug introduced
last commit(
2003-05-27 lha <lha>
* Fix bugs in configure, portability fix, avoid compiler warnings
2003-05-24 lha <lha>
* Partially fix configure process, especially for non-gcc
2003-05-22 lha <lha>
* Fix late-night bug in previous update...
2003-05-22 lha <lha>
* Ensure wordlist_cache_dirty_level set before database is
opened
2003-05-22 lha <lha>
* Hack to fix static library inter-dependency problems on MacOS X
2003-05-18 lha <lha>
* Second bug-fix to patch to avoid DB recursion under OS X
2003-05-18 lha <lha>
* Declare variable left out in db/mp_cmpr.c patch
2003-05-17 lha <lha>
* Avoid infinite recursion in database memory allocation
2003-04-19 lha <lha>
* Remove db.words.db_weakcmpr if htdig -i specified.
2003-04-18 nealr <nealr>
* Cleanup Code with GNU indent => %indent -gnu --tab-size5 -bli0
-i5 -l110 -npcs -npsl -bl -cs -nfca
2003-04-18 nealr <nealr>
* eliminate redundant server pings by moving robots.txt check
after limits checks
2003-04-09 nealr <nealr>
* First add of libhtdig code to offical tree
2003-02-26 angusgb <angusgb>
* - htnet/HtHTTP.cc: fixed colon (':') problem with HTTP header
parsing, as Frank Passek, Gilles and others suggested, as space is
not mandatory between the field declaration and the field value
returned by the server
2003-02-23 angusgb <angusgb>
* - htcommon/defaults.[cc,xml]: added the 'cookies_input_file'
configuration attribute for pre-loading cookies in memory - htdig/htdig.cc: added the feature above; the code automatically
loads the cookies from the input file into the 'jar' that will be
used during the crawl.
2003-02-23 angusgb <angusgb>
* - htnet/HtHTTP.h: removed the NULL pointer check before assigning a
new jar to the HTTP code
2003-02-11 lha <lha>
* Enable Neal's zlib patch by default
2003-02-11 lha <lha>
* Added field-restricted searches, and indexing of author
2003-02-09 lha <lha>
* Trivial bug fixes