-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog-2.5-2.6d
1635 lines (956 loc) · 54.5 KB
/
ChangeLog-2.5-2.6d
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
Sun Jul 1 15:30:00 2001 Andrew M. Bishop <[email protected]>
Version 2.6d of WWWOFFLE released.
Sun Jul 1 15:19:32 2001 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.6d.
* htmlmodify.l, misc.c: Fix up HTML modify with links like <a href="">.
Sun Jul 1 10:32:10 2001 Andrew M. Bishop <[email protected]>
* misc.c:
Don't replace '"' with '"' in HTML formatting (not valid HTML 3.2).
* config.c: Use a case-insensitive check when censoring headers.
Sat Jun 30 13:41:13 2001 Andrew M. Bishop <[email protected]>
* html.l, htmlmodify.l:
Strip leading and trailing space in HTML tag attribute values.
Thu Jun 28 18:48:36 2001 Andrew M. Bishop <[email protected]>
* sockets6.c: Try all client IP addresses.
Fix broken handling of multiple IP addresses.
* wwwoffle.h, wwwoffles.c: Remove some more compilation warnings.
Sun Jun 24 08:58:16 2001 Andrew M. Bishop <[email protected]>
* sockets6.c:
Bug fix for SocketRemoteName() and SocketLocalName() functions.
* wwwoffles.c:
Enable HTML modifications on all pages, not just those that have an error status between 200 and 400.
Wed Jun 13 18:05:14 2001 Andrew M. Bishop <[email protected]>
* wwwoffle.h:
Change the default number of previous time and previous outgoing indexes to 7.
Tue Jun 12 18:57:08 2001 Andrew M. Bishop <[email protected]>
* configfile.c, misc.c, misc.h, parse.c:
Add more user friendly debugging information for expiry ages etc.
* parse.c: Handle the HTTP/1.1 'Cache-Control: max-age=...' header.
Mon Jun 11 19:01:44 2001 Andrew M. Bishop <[email protected]>
* README, index.c: Added a random indexing sort option.
* index.c:
Make the sort by time, domain or type revert to alphabetical for matching results (secondary sort).
Fix bug with sorting by domain.
Sun Jun 10 10:58:39 2001 Andrew M. Bishop <[email protected]>
* misc.c, purge.c: Add support for compilation on Apple OS X.
Mon May 28 14:04:57 2001 Andrew M. Bishop <[email protected]>
* configfile.c: Fix-up IPv6 addresses again.
* misc.c:
Fixup the CanonicaliseHost() function for IP addresses with ports.
* wwwoffled.c: Fix up IPv6 typo.
* connect.c: Fix up IPv6 socket closing after forking.
* configfile.c: Fix bug with 'week' specification in config file.
Sun May 27 18:29:40 2001 Andrew M. Bishop <[email protected]>
* configfile.c: Bug fix for URL-SPECIFICATION parsing.
Sat May 26 16:40:03 2001 Andrew M. Bishop <[email protected]>
* configfile.c: Improvement to config dumping.
* misc.c: Bug fix for host/port splitting.
Sat May 26 16:22:09 2001 Andrew M. Bishop <[email protected]>
* misc.c, misc.h:
Handle IPv6 IP addresses in URLs (format like '[1111:2222::8888]:8080').
Too many ':' for existing code when finding the port number (new function used).
Multiple ':' <-> '!' conversions for cygwin directory names.
Canonicalise hostnames, IPv6 IP addresses, IPv4 decimal addresses.
* index.c, search.c:
Handle IPv6 IP addresses in URLs (format like '[1111:2222::8888]:8080').
Too many ':' for existing code when finding the port number (new function used).
Multiple ':' <-> '!' conversions for cygwin directory names.
* ftp.c:
Handle IPv6 IP addresses in URLs (format like '[1111:2222::8888]:8080').
Too many ':' for existing code when finding the port number (new function used).
Use extended passive mode for FTP connections (or passive if that fails).
* config.c, configfile.c, finger.c, http.c, ssl.c, wwwoffle.c:
Handle IPv6 IP addresses in URLs (format like '[1111:2222::8888]:8080').
Too many ':' for existing code when finding the port number (new function used).
Wed May 23 18:55:00 2001 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffled.c, CHANGES.CONF, README.CONF, config.c,
config.h, configfile.c, configfile.h, upgrade-config.pl, wwwoffle.conf:
Add options to select the IP address to bind to for IPv4 and IPv6.
Wed May 23 17:34:01 2001 Andrew M. Bishop <[email protected]>
* wwwoffle.c, wwwoffled.c: Update the copyright notice dates.
* misc.c, purge.c:
Allow compilation on BSD systems that define __bsdi__.
Tue May 22 17:59:11 2001 Andrew M. Bishop <[email protected]>
* misc.c: Canonicalise the pathname when splitting the URL.
Mon May 21 18:44:37 2001 Andrew M. Bishop <[email protected]>
* Makefile: Added the '-s' flag to flex.
Updated the compile dependancies.
* htmlmodify.l, html.l:
Handle scripts that terminate inside of a C++ style comment line.
* xml.l, vrml.l, messages.l:
Fix the lex parser, remove unhandled cases.
Sun May 20 18:57:50 2001 Andrew M. Bishop <[email protected]>
* htmlmodify.l:
Fix bug with not allocating enough space when more than 16 attributes for an HTML tag.
Sat May 19 19:04:21 2001 Andrew M. Bishop <[email protected]>
* sockets6.c: Initial revision
* Makefile: Added the IPv6 option.
* wwwoffled.c:
Print a better message on startup showing zlib & IPv6 compilation status.
Allow two server sockets to be bound for IPv4 and IPv6.
* sockets4.c:
Changed the OpenServerSocket function to accept a local address.
Tidied up some error messages, made the code look like the IPv6 code.
* sockets.h:
Changed the OpenServerSocket function to accept a local address.
* errors.c:
Tidied the use of errno values that cause other h_errno, z_errno or gai_errno to be used.
* errors.h:
Added ERRNO_* macros to define errno values that cause other h_errno, z_errno or gai_errno to be used.
* io.c: Renamed zerrno variable to z_errno.
* README.lang: Updated the Russian translations.
Thu May 3 18:05:26 2001 Andrew M. Bishop <[email protected]>
* misc.c: Fix harmless(?) array overrun.
Sat Apr 28 18:36:26 2001 Andrew M. Bishop <[email protected]>
* messages.l:
Make the URL decoded strings displayed in message pages better.
Fri Apr 27 18:39:57 2001 Andrew M. Bishop <[email protected]>
* Makefile:
Don't complain about an empty WWWOFFLE spool directory when installing.
* Makefile: Don't try compiling in the reduced version of proto.c.
Wed Apr 25 18:43:47 2001 Andrew M. Bishop <[email protected]>
* proto.c: Remove the option to create the proto-none.o object file.
* config.c: Fix core dump with missing DontCompress section.
* wwwoffled.man: Fix pagination problem.
* wwwoffle-tools.c: Improve the error messages.
Sat Apr 21 19:15:00 2001 Andrew M. Bishop <[email protected]>
Version 2.6c of WWWOFFLE released.
Sat Apr 21 19:01:55 2001 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Update to version 2.6c.
Sat Apr 21 13:53:48 2001 Andrew M. Bishop <[email protected]>
* htmlmodify.l: Bug fix for image replacement.
Fri Apr 20 18:24:16 2001 Andrew M. Bishop <[email protected]>
* html.l, htmlmodify.l:
Handle images that are included as object rather than img.
Tue Apr 17 18:06:53 2001 Andrew M. Bishop <[email protected]>
* parse.c: Fix the behaviour of the request-changed config option.
* README.compress: Add information about Google problem.
Tue Apr 10 18:15:22 2001 Andrew M. Bishop <[email protected]>
* refresh.c: Change some Inform log messages to Debug.
* html.l: Print a debug message for the webbugs that we find.
* misc.c: Fix bug in LinkURL function.
Mon Apr 9 18:14:39 2001 Andrew M. Bishop <[email protected]>
* purge.c:
Make it compile on SGI IRIX machines (really works this time).
Sun Apr 8 18:49:09 2001 Andrew M. Bishop <[email protected]>
* Makefile, README.lang: Added Dutch translated pages.
Sun Apr 8 10:50:18 2001 Andrew M. Bishop <[email protected]>
* README, README.CONF, config.c, config.h, html.l, htmlmodify.l,
upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man, CHANGES.CONF:
Add option to replace webbug images (1x1 pixels) with a static image.
Add option to not fetch webbug images (1x1 pixel).
Sat Apr 7 19:06:03 2001 Andrew M. Bishop <[email protected]>
* Makefile: Added SHELL variable to compile on SGI.
Sat Apr 7 15:15:39 2001 Andrew M. Bishop <[email protected]>
* htmlmodify.l, CHANGES.CONF, README, README.CONF, config.c, config.h,
upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man:
Add options to remove links to URLs in the DontGet section and replace images.
Sat Apr 7 13:07:38 2001 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Don't truncate the cached file if keeping it (intr-download-keep or timeout-download-keep).
Sun Apr 1 14:16:43 2001 Andrew M. Bishop <[email protected]>
* html.l: Make parsing more robust.
* htmlmodify.l: Fix disable-applet bugs.
Sat Mar 31 19:53:48 2001 Andrew M. Bishop <[email protected]>
* CHANGES.CONF, README, README.CONF, config.c, config.h, htmlmodify.l,
upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man:
Add the option to disable Java applets.
* refresh.c, spool.c, uncompress-cache.c, wwwoffle-tools.c, wwwoffle.c,
wwwoffles.c, convert-cache.c, errors.c, messages.l, monitor.c, parse.c, purge.c:
Add in more init_buffer() calls even for files that are write only (needed for io.c with zlib).
Fri Mar 30 19:37:59 2001 Andrew M. Bishop <[email protected]>
* purge.c: Make it compile on SGI IRIX machines.
* wwwoffle.conf, upgrade-config.pl:
Add 'mime-type = application/x-ns-proxy-autoconfig' to the DontCompress section.
Tue Mar 27 18:48:40 2001 Andrew M. Bishop <[email protected]>
* htmlmodify.l: Added the ability to remove stylesheets.
Fixed a bug in script removal.
* CHANGES.CONF, README, README.CONF, config.c, config.h,
upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man:
Added the ability to remove stylesheets.
Tue Mar 27 17:39:09 2001 Andrew M. Bishop <[email protected]>
* htmlmodify.l: Don't get confused by scripts.
Add comments where WWWOFFLE makes modifications.
* html.l: Don't get confused by scripts.
Sun Mar 25 13:52:24 2001 Andrew M. Bishop <[email protected]>
* html.l, htmlmodify.l:
Rewrite the handling of complex HTML tags to make it simpler to process.
* wwwoffle.man: Add to description of -o and -O options.
Sat Mar 24 15:06:32 2001 Andrew M. Bishop <[email protected]>
* index.c, refresh.c:
Follow the HTML 4 recommendation and use ';' to separate arguments in URLs instead of '&'.
Sat Mar 24 14:30:00 2001 Andrew M. Bishop <[email protected]>
Version 2.6b of WWWOFFLE released.
Sat Mar 24 14:18:32 2001 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Updated to version 2.6b.
Fri Mar 23 18:58:57 2001 Andrew M. Bishop <[email protected]>
* config.c: Allow multiple ssl-allow-port entries in the config file.
Wed Mar 21 19:24:28 2001 Andrew M. Bishop <[email protected]>
* javaclass.c, misc.c, parse.c: Fix pedantic compiler error messages.
* finger.c: Bug fix, free memory when finished.
* purge.c: Allow compilation on Solaris without gcc.
Tue Mar 20 19:23:21 2001 Andrew M. Bishop <[email protected]>
* misc.c: Fix problems handling parameter strings in URLs.
Mon Mar 19 19:29:40 2001 Andrew M. Bishop <[email protected]>
* connect.c, wwwoffles.c: Allow fetching when in autodial mode.
* index.c:
Fix the lack of page titles for the /index/prevout[1-9] pages.
Mon Mar 19 19:14:05 2001 Andrew M. Bishop <[email protected]>
* wwwoffle.conf, upgrade-config.pl:
Added some more things not to compress.
Sat Mar 17 21:07:49 2001 Andrew M. Bishop <[email protected]>
* uncompress-cache.c: Tidy up some bits of code.
* CHANGES.CONF, README.CONF, config.c, config.h, ftp.c, http.c,
purge.c, upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man, wwwoffles.c:
Added the DontCompress section to the configuration file.
* io.c, uncompress-cache.c, wwwoffles.c:
Remove compiler warnings when compiling without zlib.
Sat Mar 17 16:20:21 2001 Andrew M. Bishop <[email protected]>
* uncompress-cache.c: Initial revision
* README, Makefile: Add the uncompress-cache program.
* ftp.c, http.c, parse.c, purge.c, wwwoffle-tools.c, wwwoffle.h, wwwoffles.c:
Change the compression method to be gzip instead of deflate, put Pragma header in cached files.
Modify the WhichCompression() function in parse.c and use it everywhere.
* io.c: Bug fix for multiple compressions in one process.
* README.URL:
Refer to the HTML 4 specification from w3c instead of HTML 2 specification RFC.
* convert-cache.c: Cosmetic bug fix.
Thu Mar 8 20:18:13 2001 Andrew M. Bishop <[email protected]>
* README.compress: Initial revision
* sockets.c: Fix some pedantic compiler errors.
* html.l, htmlmodify.l:
Revert the Javascript parsing changes, but keep the memory leak fix and optimisations.
Wed Mar 7 20:05:00 2001 Andrew M. Bishop <[email protected]>
* README.lang: Updated the French translations (new maintainer).
* wwwoffles.c: Fix crash with lockfiles and compression.
Fri Feb 23 20:15:49 2001 Andrew M. Bishop <[email protected]>
* wwwoffle.c, wwwoffled.c, wwwoffle-tools.c:
Call init_buffer() for stderr before using it.
* messages.l: Remove confusion about variable usage.
* htmlmodify.l, html.l: HTML parsing optimisations, memory leak fix.
Don't parse between script tags.
Thu Feb 22 19:53:01 2001 Andrew M. Bishop <[email protected]>
* html.l:
Handle the contents of a <link href="..." rel="stylesheet"> in either order.
Mon Feb 12 19:31:27 2001 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Fix for pages with trailing junk.
Fri Feb 9 20:01:06 2001 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man: Fix problem with quote characters.
Mon Feb 5 19:35:38 2001 Andrew M. Bishop <[email protected]>
* Makefile: Fix to the previous change to make it work for cygwin.
* sockets.c: Fix for cygwin.
Sat Feb 3 21:18:04 2001 Andrew M. Bishop <[email protected]>
* Makefile: Some Makefile improvements.
Sun Jan 28 17:47:42 2001 Andrew M. Bishop <[email protected]>
* wwwoffles.c, CHANGES.CONF, README, README.CONF, config.c, config.h, purge.c,
upgrade-config.pl, wwwoffle-tools.c, wwwoffle.conf, wwwoffle.conf.man:
Compress the files in the cache when doing a purge (based on age).
* FAQ: Updated to version 2.6.
* upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man, wwwoffle.h, wwwoffles.c,
CHANGES.CONF, README, README.CONF, config.c, config.h, parse.c:
Reply with compression on transfers to client if requested.
Sat Jan 27 15:10:23 2001 Andrew M. Bishop <[email protected]>
* sockets.c: Fix the cygwin socket problem again.
* audit-usage.pl, config.h, ftp.c, http.c, upgrade-config.pl, wwwoffle.conf,
wwwoffle.conf.man, CHANGES.CONF, README, README.CONF, config.c:
Request compression on transfers from server, decompressing when received.
* INSTALL, Makefile, errors.c, io.c, misc.h:
Added decompression/compression functions using zlib for reading/writing.
Fri Jan 26 11:58:30 2001 Andrew M. Bishop <[email protected]>
* README.CONF, wwwoffle.conf, wwwoffle.conf.man:
Fix the default value for fetching stylesheets.
* README.win32: Updated the Win32 README.
Fri Jan 26 11:00:00 2001 Andrew M. Bishop <[email protected]>
Version 2.6a of WWWOFFLE released.
Fri Jan 26 10:47:39 2001 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.6a.
* sockets.c, sockets.h, wwwoffles.c:
Fix the cygwin socket problem again.
Sat Jan 20 20:17:37 2001 Andrew M. Bishop <[email protected]>
* configfile.c: Stop duplicated items that are not allowed.
* config.c, config.h: Remove an unused function.
Sat Jan 20 14:12:08 2001 Andrew M. Bishop <[email protected]>
* htmlmodify.l:
Fix some bugs with disable-meta-refresh & disable-meta-refresh-self.
Tue Jan 16 20:06:06 2001 Andrew M. Bishop <[email protected]>
* Makefile:
Print an error message about cygwin1.dll if it is not in this directory
and not already installed, don't abort the installation.
* README.CONF, wwwoffle.conf, wwwoffle.conf.man:
Set the fetch-stylesheets option to true in the default config file.
Sun Jan 14 13:54:33 2001 Andrew M. Bishop <[email protected]>
* Makefile: Remove the automatic installation of the batch files.
Fri Jan 12 20:57:48 2001 Andrew M. Bishop <[email protected]>
* Makefile:
Add entries to the outgoing directory for some useful WWWOFFLE pages.
Thu Jan 11 19:30:46 2001 Andrew M. Bishop <[email protected]>
* INSTALL: Include information about convert-cache.
Tue Jan 9 20:57:39 2001 Andrew M. Bishop <[email protected]>
* README, sockets.c:
A workaround for socket closing problems on cygwin.
Sun Jan 7 14:05:00 2001 Andrew M. Bishop <[email protected]>
* misc.c: Fix bug with form argument parsing.
Sat Jan 6 15:45:46 2001 Andrew M. Bishop <[email protected]>
* INSTALL: Update some information.
Add links to where to find information about running WWWOFFLE automatically.
* Makefile: Convert README.CONF to HTML.
* wwwoffle.conf, wwwoffle.conf.man, README.CONF:
Change the description of some sections.
Change the name of the DontGet replacement URL.
Make README.CONF easier to convert to HTML.
* upgrade-config.pl: Change the name of the DontGet replacement URL.
Sat Jan 6 12:18:17 2001 Andrew M. Bishop <[email protected]>
* wwwoffled.c:
Print important error messages to stderr until daemon detaches.
* README, Makefile, wwwoffle-tools.c:
Fix up some problems with the wwwoffle-tools programs and config file options.
Sat Dec 30 15:54:59 2000 Andrew M. Bishop <[email protected]>
* README.URL: Fix some errors in the description of 'parameters'.
* misc.c:
Handle the case where URL-encoding the '?' character breaks some servers.
Thu Dec 28 19:48:00 2000 Andrew M. Bishop <[email protected]>
* misc.c: Handle broken URL encodings when doing a decoding.
* wwwoffles.c: Fix crash with monitoring illegal refresh URLs.
* wwwoffles.c:
Check the DontGet section of the configuration file when doing SSL.
Tue Dec 26 14:11:05 2000 Andrew M. Bishop <[email protected]>
* parse.c: Handle malformed headers better.
Sat Dec 16 19:00:18 2000 Andrew M. Bishop <[email protected]>
* spool.c: Added a fchdir() function for cygwin.
Sun Dec 10 11:14:28 2000 Andrew M. Bishop <[email protected]>
* wwwoffled.c, convert-cache.c: Bug fix for cygwin.
* wwwoffle-tools.c: Fix typo in error message.
Wed Dec 6 20:02:39 2000 Andrew M. Bishop <[email protected]>
* config.c: Fix some comments.
Sun Dec 3 11:36:53 2000 Andrew M. Bishop <[email protected]>
* errors.c: Bug fix for cygwin compilation.
Sun Nov 19 20:35:18 2000 Andrew M. Bishop <[email protected]>
* upgrade-config.pl: Updated the version number.
Sun Nov 19 10:02:47 2000 Andrew M. Bishop <[email protected]>
* configfile.c: Fix problem with invalid entries in config file.
Sat Nov 18 19:15:00 2000 Andrew M. Bishop <[email protected]>
Version 2.6 of WWWOFFLE released.
Sat Nov 18 19:13:24 2000 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.6.
* README.lang: Updated translation information.
Sat Nov 18 13:38:18 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Fix problem with duplicate headers when getting pages with passwords.
Wed Nov 15 18:59:29 2000 Andrew M. Bishop <[email protected]>
* FAQ: Added a note about DoS attacks and ipchains.
Tue Nov 14 19:14:24 2000 Andrew M. Bishop <[email protected]>
* config.c: Fix an error with dir-perm and file-perm.
Mon Nov 13 18:48:36 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Add a missing truncate() to clear old files.
Sun Nov 12 10:21:23 2000 Andrew M. Bishop <[email protected]>
* config.c: Fix bug with proxy specification.
Sun Nov 5 13:45:23 2000 Andrew M. Bishop <[email protected]>
* sockets.c: Give a timeout error message when DNS lookups fail.
Sat Oct 28 12:54:05 2000 Andrew M. Bishop <[email protected]>
* htmlmodify.l:
Remove variable trailing context to improve lex performance.
Thu Oct 26 18:19:19 2000 Andrew M. Bishop <[email protected]>
* config.c, wwwoffle-tools.c, wwwoffle.c:
Add a PATH_MAX define for systems that don't have one.
Sun Oct 22 16:16:11 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Fix bug with passworded pages.
Sun Oct 22 09:30:00 2000 Andrew M. Bishop <[email protected]>
Version 2.6-beta of WWWOFFLE released.
Sun Oct 22 09:27:35 2000 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Update to version 2.6-beta.
Sat Oct 21 19:02:25 2000 Andrew M. Bishop <[email protected]>
* INSTALL, README: Update documentation to version 2.6.
Sat Oct 21 18:46:00 2000 Andrew M. Bishop <[email protected]>
* wwwoffled.c, spool.c, wwwoffle-tools.c, wwwoffle.c, index.c,
monitor.c, purge.c, search.c, convert-cache.c:
Make it safe to have symlinks in the cache.
Fri Oct 20 18:13:27 2000 Andrew M. Bishop <[email protected]>
* misc.c: Make sure that the UTC version of RFC822Date is in English.
Sun Oct 15 09:25:25 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.conf, wwwoffle.conf.man, config.c, config.h, spool.c,
upgrade-config.pl, CHANGES.CONF, README.CONF:
Add in a option to disable the lock files.
Mon Oct 9 19:12:05 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c, wwwoffle.conf.man, wwwoffle.conf, README.CONF:
Change the don't cache option so that pages are not requested when offline.
Sun Oct 1 13:26:23 2000 Andrew M. Bishop <[email protected]>
* FAQ: Add some new FAQs.
* wwwoffle.conf, wwwoffle.conf.man, README.CONF, configfile.c:
Allow the time in seconds and the age in days to be specified with a suffix.
Sun Oct 1 10:16:48 2000 Andrew M. Bishop <[email protected]>
* misc.c: Use strftime() to get weekday/month names in local language.
Sun Sep 24 11:08:08 2000 Andrew M. Bishop <[email protected]>
* wwwoffled.c: Fix for Win32 compilation, not using setgroups().
Sat Sep 23 13:09:22 2000 Andrew M. Bishop <[email protected]>
* messages.l: Fix for local web-pages in Win32, not using O_BINARY.
Mon Sep 18 18:14:24 2000 Andrew M. Bishop <[email protected]>
* config.h, upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man, wwwoffles.c,
CHANGES.CONF, README.CONF, README.PWD, config.c:
Add an option to allow URLs with passwordsd to be fetched without getting a version without password.
Sun Sep 17 14:37:14 2000 Andrew M. Bishop <[email protected]>
* control.c: Allow URLs with username/password to be deleted.
* wwwoffles.c: Bug fix for pages that are not cached.
Sat Sep 9 14:52:11 2000 Andrew M. Bishop <[email protected]>
* refresh.c: Bug fix for recursive fetching.
* wwwoffle.h:
Add the option to run a script when fetching starts or stops.
Fri Sep 8 18:10:32 2000 Andrew M. Bishop <[email protected]>
* connect.c, wwwoffle.conf, wwwoffle.conf.man, wwwoffled.c,
README.CONF, config.c, config.h, CHANGES.CONF:
Add the option to run a script when fetching starts or stops.
Thu Sep 7 18:09:55 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.h, connect.c, spool.c: Add the last time outgoing indexes.
* index.c: Add the last time outgoing indexes.
Remove the "latest" index (it is slow on big caches and replaced by lasttime/prevtime).
* INSTALL:
Add the last time outgoing indexes and increase the previous time indexes to 5 times.
Wed Sep 6 18:55:05 2000 Andrew M. Bishop <[email protected]>
* config.h, upgrade-config.pl, wwwoffle.conf, wwwoffle.conf.man,
CHANGES.CONF, README.CONF, config.c:
Remove the "latest" index (it is slow on big caches and replaced by lasttime/prevtime).
Tue Aug 29 18:22:36 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c, audit-usage.pl:
Improved audit-usage.pl script to show cache hit/miss status.
Mon Aug 28 15:21:28 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Remove temporary files when doing SSL tunneling.
Sun Aug 27 16:37:14 2000 Andrew M. Bishop <[email protected]>
* parse.c, wwwoffle.h, wwwoffles.c:
Handle requests that have both "Pragma no-cache" and "If-Modified-Since" (pragma wins).
Sun Aug 27 10:34:21 2000 Andrew M. Bishop <[email protected]>
* config.c, wwwoffle.conf.man, README.CONF, config.h, upgrade-config.pl,
wwwoffle.conf, CHANGES.CONF:
Move some options from the StartUp section to the Options section.
* wwwoffle.conf.man, sockets.c, sockets.h, ssl.c, wwwoffle.c,
wwwoffle.conf, http.c, io.c, misc.h, parse.c, connect.c, control.c,
finger.c, ftp.c, CHANGES.CONF, README.CONF, config.c, config.h:
Add a timeout for DNS lookups.
Change the way that the timeout parameter is passed to the functions that use it.
Sat Aug 26 15:43:09 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffles.c, config.h, upgrade-config.pl,
wwwoffle.conf, CHANGES.CONF, README.CONF, config.c:
Allow the HTML modifications to take place when online.
Wed Aug 23 18:28:47 2000 Andrew M. Bishop <[email protected]>
* htmlmodify.l, html.l:
Handle the contents of a <meta http-equiv="..." content="..."> in either order.
Mon Aug 21 18:17:41 2000 Andrew M. Bishop <[email protected]>
* README.URL, misc.c, misc.h:
Changed the handling of parameters in URLs.
Sun Aug 20 15:32:04 2000 Andrew M. Bishop <[email protected]>
* README.udmsearch: Updated some of the information.
Mon Aug 14 18:59:49 2000 Andrew M. Bishop <[email protected]>
* search.c: Add the ability to use UdmSearch or ht://Dig.
* README.udmsearch: Initial revision
* wwwoffles.c: Rename the function that is called for the search URLs.
Don't allow either program to update the file timestamps.
* README.lang, README.htdig, README.1st, README:
Update the documentation with the new search URLs and UdmSearch info.
* wwwoffle.h: Rename the function that is called for the search URLs.
* Makefile: Rename htdig.c to search.c.
Sat Aug 12 18:21:13 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Use relocation headers for aliases instead of URL re-writing.
* parse.c, wwwoffle.conf, wwwoffle.conf.man, CHANGES.CONF,
README.CONF, config.c, config.h:
Add an option to convert redirection requests to DontGet pages to errors.
Sun Jul 23 16:28:43 2000 Andrew M. Bishop <[email protected]>
* spool.c: Remove the ExistsLastTimeSpoolFile() function.
In ExistsWebpageSpoolFile() and ExistsOutgoingSpoolFile() check for both files.
* wwwoffle.h: Remove the ExistsLastTimeSpoolFile() function.
* wwwoffles.c:
Fix the bug that let htdig modify the timestamps on the files.
Make htdig work with the cached version even when online.
* htdig.c: Don't index the htdig index pages.
* ftp.c:
Try using "LIST -a" then "LIST" if it fails when getting FTP directory listings.
* configfile.c:
Add a #define option to dump out the configuration file to help debugging.
Fix a bug with re-reading the configuration file.
Sat Jul 8 08:22:20 2000 Andrew M. Bishop <[email protected]>
* config.c: Fix bug with proxy specification.
Sun Jun 25 10:21:23 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffles.c, config.h, index.c, refresh.c,
upgrade-config.pl, wwwoffle.conf, FAQ, README.CONF, config.c, CHANGES.CONF:
Move options around in the configuration file.
Remove some sections and add some new ones.
Sat Jun 17 16:10:48 2000 Andrew M. Bishop <[email protected]>
* ssl.c, io.c: Retry on interrupted select() function calls.
* htmlmodify.l:
Add the option to specify a URL-SPECIFICATION in front of the configuration
file item to mean that it applies only to specific URLs.
Fri Jun 16 18:58:14 2000 Andrew M. Bishop <[email protected]>
* upgrade-config.pl: Initial revision
* wwwoffle.conf.man, wwwoffle.h, wwwoffles.c, parse.c, purge.c, refresh.c,
ssl.c, wwwoffle.conf, finger.c, ftp.c, htmlmodify.l, http.c, index.c, config.c,
config.h, configfile.c, CHANGES.CONF, README.CONF:
Add the option to specify a URL-SPECIFICATION in front of the configuration
file item to mean that it applies only to specific URLs.
Sun May 28 09:19:57 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c, parse.c:
Change the way that preamture pipelining HTTP/1.1 clients are handled.
Sat May 27 13:28:22 2000 Andrew M. Bishop <[email protected]>
* configfile.c: Allow 'wwwoffle -config' to be run more than once.
Tue May 23 18:01:53 2000 Andrew M. Bishop <[email protected]>
* refresh.c, wwwoffles.c: Change some informational messages.
* configfile.c: Small change when creating backup of config file.
Sun May 14 13:51:56 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.c, wwwoffled.c, wwwoffles.c, purge.c, refresh.c, spool.c, ssl.c,
index.c, parse.c, errors.c, errors.h, finger.c, ftp.c, htmlmodify.l, http.c,
Makefile, configedit.c, connect.c, control.c:
Changes to use the new configuration file data structures.
* config.h, config.c:
Configuration file sections and entries definitions and helper functions.
* configfile.c, configfile.h: Initial revision
Wed May 3 19:43:57 2000 Andrew M. Bishop <[email protected]>
* html.l: Add some parsing fixes like in htmlmodify.l.
* htmlmodify.l, wwwoffle.conf, wwwoffle.conf.man, CHANGES.CONF, README.CONF,
config.c, config.h:
Add the disable-meta-refresh options.
* messages.l: Improve the %decode[url] output.
Tue May 2 18:39:57 2000 Andrew M. Bishop <[email protected]>
* configedit.c, ftp.c, misc.c, misc.h:
Give the HTMLString() function the option to replace spaces with .
Mon Apr 24 16:01:37 2000 Andrew M. Bishop <[email protected]>
* htmlmodify.l: Bug fix for the demoronise-ms-chars option.
* parse.c: Better handling of the request header size for POSTed forms.
* monitor.c: Bug fix for monitor options page.
* wwwoffle.conf.man, upgrade-config.pl, wwwoffle.conf, htmlmodify.l, config.h,
config.c, README.CONF, CHANGES.CONF:
Add in the option to demoronise Microsoft applications output HTML characters.
* wwwoffle.conf.man, wwwoffle.conf, README.CONF, CHANGES.CONF:
Re-organised the README.CONF file, new layout and more information.
Use exactly the same text in the wwwoffle.conf file and wwwoffle.conf manual page.
Sun Apr 9 10:15:56 2000 Andrew M. Bishop <[email protected]>
* wwwoffles.c, control.c:
Change the delete URLs, fix deleting of multiple URLs with arguments.
Sat Apr 8 12:32:45 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.h: Change some function arguments.
* wwwoffle.c: Make the username/password handling consistent.
* refresh.c:
Fix several bugs - e.g. recursive fetching in same directory.
Added better debugging error messages.
* parse.c: Use AddURLPassword when parsing headers.
* monitor.c: Small changes to error messages.
* misc.c:
URL-Encode the username/password in the canonical form of the URL.
Pass through any spaces in arguments when recoding.
* messages.l: Allow functions in the message pages.
* index.c: Changes for the new message pages.
* configedit.c: Tidy up some code, small changes to error messages.
Sun Apr 2 15:55:16 2000 Andrew M. Bishop <[email protected]>
* ftp.c, htdig.c, http.c, ssl.c, finger.c:
Small changes to error messages.
* Makefile: Added the Italian translations.
Sun Apr 2 15:40:00 2000 Andrew M. Bishop <[email protected]>
Version 2.5e of WWWOFFLE released.
Sun Apr 2 15:33:11 2000 Andrew M. Bishop <[email protected]>
* NEWS, version.h: [version 2.5e branch]
Updated for version 2.5e.
* Makefile, README.lang: [version 2.5e branch]
Added the Italian translations.
* FAQ: [version 2.5e branch]
Spelling mistakes.
Wed Mar 29 18:19:06 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.h, README.URL, refresh.c, wwwoffle.c:
Updated the refresh recursive URL.
Bug fix for recursive fetching in the same directory.
* monitor.c: Bug fix with POST/GET choice.
Sun Mar 26 11:32:30 2000 Andrew M. Bishop <[email protected]>
* wwwoffle.c, wwwoffle.man:
When using the -post option recode the form data before sending.
* monitor.c, refresh.c:
Monitor and Refresh forms now expect URL-encoded URLs in the arguments, accept POST and GET.
* control.c, misc.c, misc.h, README.URL, configedit.c:
Use the same functions for Form data and URL arguments.
* misc.c, misc.h, monitor.c, refresh.c, control.c, index.c:
Add in a generic form/args splitter function.
Sat Mar 25 18:00:03 2000 Andrew M. Bishop <[email protected]>
* misc.c:
Handle the non-RFC compliant, but not uncommon format of http://user@host:pass@server/.
Sat Mar 25 12:28:41 2000 Andrew M. Bishop <[email protected]>
* Makefile:
Delete the upgrade-cache and endian-cache programs, add the convert-cache program.
* convert-cache.c: Initial revision
* README.1st:
Add in the new README.URL file, delete the UPGRADE file and change the CONVERT file.
* CONVERT: A description of the new convert-cache program.
* README.URL: Initial revision
* html.l, config.c: New gcc-2.95 warning messages cleared up.
* misc.c, misc.h:
Add in new URL Decoding/Encoding functions.
Produces better results and canonicalises the arguments.
Optimised for speed and RFC compliance.
* refresh.c, wwwoffle.c, monitor.c, parse.c, control.c, ftp.c, index.c, configedit.c:
Change to use the new URL Encoding/Decoding functions.
Mon Mar 20 18:47:14 2000 Andrew M. Bishop <[email protected]>
* ftp.c: [version 2.5e branch]
Fix the problem with ':' in filenames in a different way.
Tue Mar 14 19:12:21 2000 Andrew M. Bishop <[email protected]>
* html.l, htmlmodify.l, messages.l, Makefile: [version 2.5e branch]
Improved the lex parsers by using better flex options and re-coding parts.