-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog-2.0-2.4e
2282 lines (1331 loc) · 76.3 KB
/
ChangeLog-2.0-2.4e
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
Mon Jun 28 18:00:00 1999 Andrew M. Bishop <[email protected]>
Version 2.4e of WWWOFFLE Released.
Mon Jun 28 17:53:52 1999 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.4e.
Fri Jun 18 16:52:13 1999 Andrew M. Bishop <[email protected]>
* purge.c: More changes to make it portable.
* spool.c: Fix potential bug with badly formatted monitor spool files.
* monitor.c:
Fix rare bug of duplicating requests due to coincidence of monitor time.
* messages.l: Fix bug with changes to message parser.
Wed Jun 16 18:50:15 1999 Andrew M. Bishop <[email protected]>
* misc.c: Fix the CanonicaliseName() function (again).
Sun Jun 13 13:33:09 1999 Andrew M. Bishop <[email protected]>
* misc.c, misc.h:
Use the CanonicaliseName() function from cxref for sorting out linked URLs.
Sat Jun 12 16:11:22 1999 Andrew M. Bishop <[email protected]>
* Makefile, README.lang: Typo fix.
Mon Jun 7 16:40:36 1999 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Add in ExtraDebug for cached replies.
Thu Jun 3 15:57:39 1999 Andrew M. Bishop <[email protected]>
* wwwoffled.c: Fix the printing of the pid with the -p option.
Wed Jun 2 17:39:09 1999 Andrew M. Bishop <[email protected]>
* Makefile: Added the Spanish translated pages.
Fixed a problem with LANG being defined, but being wrong.
* README.lang: Added the Spanish translated pages.
Wed May 26 18:17:16 1999 Andrew M. Bishop <[email protected]>
* wwwoffled.c, wwwoffled.man, README:
Add in a -p option to print the pid of the demon on stdout before it detaches.
* purge.c: Make portable to Solaris and SunOS.
Wed May 19 20:13:24 1999 Andrew M. Bishop <[email protected]>
* README.lang: Initial revision
* README.1st: Add in the README.lang file.
* Makefile: Add in the LANG=fr option.
* htmlmodify.l:
Change to a more language neutral date output for the cache-info.
* messages.l: Strip some trailing whitespace after a macro expansion.
Sat May 15 13:00:01 1999 Andrew M. Bishop <[email protected]>
* purge.c:
Make portable to FreeBSD (#include and 32bit v 64bit differences).
Fri May 14 17:56:35 1999 Andrew M. Bishop <[email protected]>
* README.CONF, wwwoffle.conf: Update some documentation.
Wed May 12 18:46:25 1999 Andrew M. Bishop <[email protected]>
* config.c: Fix the bug with the no-lasttime-index not working.
Mon May 10 18:00:00 1999 Andrew M. Bishop <[email protected]>
Version 2.4d of WWWOFFLE Released.
Mon May 10 17:51:13 1999 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Updated to version 2.4d.
* misc.c: Bug fix for password protected pages.
Sun May 9 18:00:00 1999 Andrew M. Bishop <[email protected]>
Version 2.4c of WWWOFFLE Released.
Sun May 9 17:51:12 1999 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.4c.
Tue May 4 18:49:34 1999 Andrew M. Bishop <[email protected]>
* Makefile: Ensure that the directory CONFDIR exists or create it.
Fri Apr 30 06:35:10 1999 Andrew M. Bishop <[email protected]>
* messages.l:
Fix file handle leak with local pages and improve the error log messages.
Tue Apr 20 17:41:38 1999 Andrew M. Bishop <[email protected]>
* misc.c, misc.h, parse.c:
Fix a problem with unusual characters in usernames or passwords.
Sun Mar 28 10:02:57 1999 Andrew M. Bishop <[email protected]>
* parse.c: Allow '%' characters in the control password.
Sat Mar 20 17:34:27 1999 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, spool.c, wwwoffle.conf, config.c, config.h, CHANGES.CONF, README.CONF:
Allow the lasttime/prevtime indexes to be disabled.
* index.c:
If the IndexLatestDays option is 0 or negative then don't search.
Wed Mar 17 19:58:16 1999 Andrew M. Bishop <[email protected]>
* wwwoffle.conf:
Update the comments with the anchor-requested-* options.
* wwwoffle.conf.man, wwwoffle.conf, purge.c, config.h, config.c, README.CONF, CHANGES.CONF:
Add in a min-free option to the purge section to specify a minimum amount of free disk space after purging.
Tue Mar 16 19:15:39 1999 Andrew M. Bishop <[email protected]>
* purge.c:
Made the purge disk usage more accurate with block sizes and directory entries.
Sun Mar 14 08:53:58 1999 Andrew M. Bishop <[email protected]>
* wwwoffle.h, connect.c, spool.c:
Change the handling of the lasttime indexes so that deleting a file deletes it there also.
Sat Mar 13 16:55:25 1999 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, upgrade-config.pl, wwwoffle.conf, config.h, htmlmodify.l, README.CONF, config.c, CHANGES.CONF:
Allow links that have been requested but are not cached to be modified.
* parse.c:
Change the decision process for requesting changes so that error pages always get re-requested.
Fri Mar 5 17:36:02 1999 Andrew M. Bishop <[email protected]>
* INSTALL, Makefile:
Add in the installation of the German web-pages and documentation.
Thu Mar 4 19:42:26 1999 Andrew M. Bishop <[email protected]>
* htdig.c, README.htdig: Allow indexing of the lasttime directory.
Thu Feb 25 18:58:19 1999 Andrew M. Bishop <[email protected]>
* refresh.c:
Make the recursive fetch of a URL with a username/password work.
Sat Feb 20 12:13:07 1999 Andrew M. Bishop <[email protected]>
* messages.l, wwwoffles.c: Fix security problem with local web server.
Sat Feb 20 11:28:09 1999 Andrew M. Bishop <[email protected]>
* upgrade-config.pl:
Update the script to include the extra MIME Types that have been added.
Don't add wildcards if the version of the file is new enough to already have them.
* wwwoffles.c, refresh.c, wwwoffle.h:
Make the refresh-force option work correctly.
Fri Feb 19 19:55:10 1999 Andrew M. Bishop <[email protected]>
* vrml.l, xml.l, document.c, html.l, javaclass.c, Makefile:
Put extra debugging outputs in the document parsers.
Mon Feb 8 17:45:05 1999 Andrew M. Bishop <[email protected]>
* config.c: Fix a special case of wildcard matching.
Sun Feb 7 10:35:09 1999 Andrew M. Bishop <[email protected]>
* config.c: Fix a bug in the URL-SPECIFICATION parsing.
Sat Feb 6 17:31:44 1999 Andrew M. Bishop <[email protected]>
* htdig.c: Change the argv[0] term to the exec for the htsearch script.
* monitor.c, spool.c, wwwoffle-tools.c:
Open files in binary mode on Win32.
Tue Feb 2 17:00:00 1999 Andrew M. Bishop <[email protected]>
Version 2.4b of WWWOFFLE Released.
Tue Feb 2 16:53:07 1999 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Upgrade to version 2.4b.
* html.l: Added in some more parsing.
Mon Feb 1 19:29:06 1999 Andrew M. Bishop <[email protected]>
* refresh.c: Do not infinitely recurse fetching objects.
Tue Jan 26 17:42:01 1999 Andrew M. Bishop <[email protected]>
* wwwoffle.c:
Put the stylesheets, scripts and objects into the HTML link following.
* html.l: Added more HTML parsing.
Sat Jan 23 15:38:03 1999 Andrew M. Bishop <[email protected]>
* refresh.c:
Don't let Location headers break the checking when recursive fetching.
Sat Jan 23 15:31:40 1999 Andrew M. Bishop <[email protected]>
* README.htdig:
Add in an explanation that a pre-installed htdig can be used.
* wwwoffles.c:
Reduce the length of time that wwwoffle waits for a page to become unlocked.
Sat Jan 23 12:49:05 1999 Andrew M. Bishop <[email protected]>
* html.l: Fix a base URL problem.
* document.c: Fix the parsing of the mime type.
* xml.l: Update to parser.
Sun Jan 17 11:54:59 1999 Andrew M. Bishop <[email protected]>
* html.l: Remove the html modification code to another file.
* wwwoffle.conf: Add more mime types for new parsers.
* document.h, document.c:
Add the new parsers and improve the document type detection.
* javaclass.c, refresh.c: Change the name of the object references.
* README, Makefile: Add in the new parsers.
* htmlmodify.l, vrml.l, xml.l: Initial revision
Fri Jan 15 17:27:39 1999 Andrew M. Bishop <[email protected]>
* wwwoffle-tools.c:
Allow wwwoffle-ls to operate on the monitor directory.
Wed Jan 13 19:10:13 1999 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Allow recursive requests to be made when online even if DontRequestOffline is *://*.
Sun Jan 10 10:33:22 1999 Andrew M. Bishop <[email protected]>
* FAQ: Update the FAQ about /etc/resolv.conf problems.
Mon Jan 4 17:18:25 1999 Andrew M. Bishop <[email protected]>
* CHANGES.CONF:
State clearly that wildcard matching is now done for the LocalNet and AllowedConnecthosts sections.
* wwwoffle.conf: Fixed some typos in the comment descriptions.
Wed Dec 30 15:10:00 1998 Andrew M. Bishop <[email protected]>
Version 2.4a of WWWOFFLE Released.
Wed Dec 30 15:04:54 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.4a.
Thu Dec 24 14:30:00 1998 Andrew M. Bishop <[email protected]>
* README.htdig:
Remove the need for a patch to htdig if using version 3.1.0b3 or 3.1.0b4.
Mon Dec 21 20:53:00 1998 Andrew M. Bishop <[email protected]>
* Makefile: Change the dependencies for connect.c.
* connect.c:
Use CloseSocket() instead of close() and don't kick of the fetching here when -fetch is run.
* wwwoffles.c, spool.c: Use hard links instead of symlinks.
Sun Dec 20 14:37:49 1998 Andrew M. Bishop <[email protected]>
* FAQ: Bug fix due to conf file changes.
* refresh.c, wwwoffles.c, document.c, document.h, html.l, javaclass.c:
Java and HTML parsing changes; more consistent, better Java class support.
* FAQ: A new Java question and answer.
* configedit.c:
Make sure the written configuration file is in DOS format.
* errors.c: Make sure the win32 syslog output is in DOS format.
Thu Dec 17 19:02:08 1998 Andrew M. Bishop <[email protected]>
* spool.c:
Stop wwwoffle -online from hanging up when reading the monitored files.
Thu Dec 17 09:19:27 1998 Andrew M. Bishop <[email protected]>
* htdig.c: Use putenv() instead of setenv() for POSIX compatability.
Mon Dec 14 16:32:29 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf: Fix a typo.
Sun Dec 13 15:23:28 1998 Andrew M. Bishop <[email protected]>
* README.htdig:
Corrected the wrong information about configuring htdig.
Sun Dec 13 09:50:27 1998 Andrew M. Bishop <[email protected]>
* wwwoffled.man, wwwoffle.man, wwwoffle.conf.man, UPGRADE, README.win32,
README.PWD, README.htdig, README.CONF, README.1st, README, INSTALL, FAQ, CONVERT:
Some very minor documentation changes.
Sat Dec 12 13:30:00 1998 Andrew M. Bishop <[email protected]>
Version 2.4 of WWWOFFLE Released.
Sat Dec 12 13:26:20 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Update to version 2.4.
Sat Dec 12 11:50:14 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Fix the change to the lockfile creation.
Mon Dec 7 18:50:43 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Ensure that the DontRequestOffline check is made in all cases.
Sun Dec 6 11:04:57 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Remove a race condition with the lockfile and new spool file creation.
Sat Dec 5 13:57:20 1998 Andrew M. Bishop <[email protected]>
* configedit.c:
Convert the content of the textareas to safe HTML markup.
* wwwoffles.c:
Stopped infinite recursion on sets of pages that mutually
meta-refresh to each other or include each other as frames.
Stopped core dumps when spooling some files.
* wwwoffle.h, refresh.c:
Stopped infinite recursion on sets of pages that mutually
meta-refresh to each other or include each other as frames.
* messages.l:
Allow NULL as an argument to HTMLMessage and HTMLMessageBody.
Eat whitespace at the beginning of variable assignments.
* upgrade-config.pl:
Insert the request-changed-once option when upgrading.
* configedit.c:
Give the old file a different name from that used by upgrade-config.pl.
* config.c:
Fix the matching of '*://*' patterns for URL-SPECIFICATIONs.
* document.c: Bug fix with base URL.
Fri Dec 4 19:43:32 1998 Andrew M. Bishop <[email protected]>
* htdig.c:
Make the pages simpler and don't stop htdig from indexing them.
* README:
Add a copyright statement about htdig for the icons we are supplying.
* html.l:
Don't modify links that are protocols not supported by wwwoffle.
* wwwoffles.c: Re-instate the HEAD method, but still broken.
Thu Dec 3 19:22:19 1998 Andrew M. Bishop <[email protected]>
* refresh.c, wwwoffles.c, ftp.c, monitor.c, configedit.c, control.c:
Modify function calls to use NULL as an argument to HTMLMessage and HTMLMessageBody.
* Makefile:
Fix the test using endian-cache in the installation procedure.
* upgrade-config.pl:
Fix problem with LocalHost and AllowedConnectHost section updating.
Wed Dec 2 19:25:10 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Don't store timeout or client cancel messages when in autodial mode.
Tue Dec 1 19:55:42 1998 Andrew M. Bishop <[email protected]>
* htdig.c: Allow indexing of the ftp and finger URLs using the
http://localhost:8080/ftp/ and http://localhost:8080/finger/ URLs.
* configedit.c:
More consistent configuration file body comment handling.
Mon Nov 30 20:20:42 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, wwwoffle.c, wwwoffled.c, upgrade-cache.c, purge.c, refresh.c, html.l, javaclass.c:
Fixed up some inconsistent PrintMessage outputs.
* sockets.c: Some Cygwin changes for win32.
* wwwoffle-tools.c:
Allow wwwoffle-ls to operate on the prevtime[0-9] directories.
* wwwoffle.conf: Fix a typo.
* misc.c: Problem with FreeBSD specific code.
Wed Nov 25 18:45:00 1998 Andrew M. Bishop <[email protected]>
Version 2.4-beta of WWWOFFLE Released.
Wed Nov 25 18:40:28 1998 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Updated to version 2.4-beta.
Tue Nov 24 17:43:17 1998 Andrew M. Bishop <[email protected]>
* index.c: Bug fix for error web-pages.
Sun Nov 22 20:36:07 1998 Andrew M. Bishop <[email protected]>
* spool.c:
Set the default monitor times for new monitored files to be once a week starting now.
* document.h: Include misc.h.
Sat Nov 21 13:18:45 1998 Andrew M. Bishop <[email protected]>
* parse.c:
Fix the RequestChanges() function for the once-per-session requesting.
Thu Nov 19 17:32:38 1998 Andrew M. Bishop <[email protected]>
* spool.c: Change an error message from Warning to Inform.
Wed Nov 18 18:46:10 1998 Andrew M. Bishop <[email protected]>
* document.h, javaclass.c, document.c: Initial revision
* wwwoffle.h, wwwoffles.c, wwwoffle.c, html.l, refresh.c, Makefile, README, FAQ:
Add in parsing of Java class files for more Java class files.
* htdig.c, README.htdig: Update to the new version of htdig.
Sat Nov 14 19:58:08 1998 Andrew M. Bishop <[email protected]>
* html.l:
Make sure that links to the current page are highlighted correctly.
Sat Nov 14 15:48:52 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, upgrade-config.pl, wwwoffle.conf, config.c, CHANGES.CONF, README.CONF:
Added in wildcard matching to the hostname and pathname matching in the config file.
Thu Nov 12 11:26:18 1998 Andrew M. Bishop <[email protected]>
* FAQ: Indicate the security issues with the proxy authenticate option.
* parse.c:
Added in the HTTP/1.1 Proxy-Authenticate method of allowing/denying access to the proxy server.
* wwwoffles.c, wwwoffled.c:
Added in the HTTP/1.1 Proxy-Authenticate method of allowing/denying access to the proxy server.
Improve the compatability of the output messages with the audit-usage.pl script.
* errors.c, connect.c:
Improve the compatability of the output messages with the audit-usage.pl script.
* audit-usage.pl:
Output the username if the proxy authenticate option is used.
* upgrade-config.pl, wwwoffle.conf.man, config.h, wwwoffle.conf, CHANGES.CONF, README.CONF, config.c:
Added in the HTTP/1.1 Proxy-Authenticate method of allowing/denying access to the proxy server.
* misc.c:
Modify the LinkURL function to recognise empty links as links to the current page.
* Makefile, INSTALL:
Configure the htdig files that are installed automatically.
* wwwoffle.conf:
Change the Anchor modifications to make them colour coded.
Wed Nov 11 19:31:06 1998 Andrew M. Bishop <[email protected]>
* parse.c: Bug fix for RequestChanges().
Tue Nov 10 19:55:36 1998 Andrew M. Bishop <[email protected]>
* index.c: Allow sorting by domain name in the indexes.
Sun Nov 8 13:43:25 1998 Andrew M. Bishop <[email protected]>
* messages.l: Handle CR and LF the same.
* html.l, wwwoffle.h, wwwoffles.c, wwwoffle.conf, wwwoffle.conf.man, upgrade-config.pl,
config.h, README.CONF, config.c, CHANGES.CONF, Makefile:
Add a new section to the config file that enables modification of the spooled HTML.
Put the add-info-refresh option in here as well as new options to modify anchors
depending on whether they are cached or not.
Sat Nov 7 21:44:14 1998 Andrew M. Bishop <[email protected]>
* messages.l:
Add in Date headers to all internally generated pages and Last-Modified ones for local web-pages.
* misc.c: Have two strings for the RFC822Date return value.
* misc.c:
Remove the conditional compilation for the different programs.
* config.c: Bug fix for the new DontIndex options.
* wwwoffles.c:
Fix the confirm requests option so that it ignores the refresh form and posted requests.
* monitor.c: Fix the default condition of the hour of day display.
Sat Nov 7 14:17:44 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf, wwwoffle.conf.man, README.CONF, config.c, config.h, index.c, CHANGES.CONF:
Add the option into the DontIndex section of the config file to
exclude pages from particular indexes, not just a global exclusion.
Sat Nov 7 13:44:01 1998 Andrew M. Bishop <[email protected]>
* refresh.c, misc.c, io.c, messages.l, Makefile, errors.c:
Remove the conditional compilation for the different programs.
Sat Nov 7 12:22:11 1998 Andrew M. Bishop <[email protected]>
* README.CONF, wwwoffle.conf, CHANGES.CONF, FAQ, INSTALL, README:
Added some more clarifying information for Win32 users.
* README.1st, misc.c, spool.c, io.c, messages.l, errors.c, Makefile:
Include the Win32 changes that came from version 2.3e.
Wed Nov 4 18:50:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3e of WWWOFFLE Released.
Wed Nov 4 18:40:24 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Update to version 2.3e.
* README.win32: Initial revision
* wwwoffled.c:
Change the order of error handler starting for win32 version. [version 2.3e branch]
* spool.c:
Change the handling of the outgoing directory for win32 version. [version 2.3e branch]
* misc.c:
Change the timezone variable for win32 version. [version 2.3e branch]
* messages.l, io.c:
Change to USE_STD_ARG for win32 version. [version 2.3e branch]
* errors.c:
Changed the syslog functions and USE_STD_ARG for win32 version. [version 2.3e branch]
* README.1st:
More documentation for win32 version. [version 2.3e branch]
* Makefile:
Changed the installation procedure for win32. [version 2.3e branch]
Wed Oct 28 17:04:10 1998 Andrew M. Bishop <[email protected]>
* parse.c:
Add more debugging information when requesting changes or not.
* monitor.c: Use localtime for the monitoring.
Tue Oct 27 20:29:25 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffle.h, wwwoffle.conf, upgrade-config.pl, monitor.c, spool.c, config.h, index.c, config.c, CHANGES.CONF, README.CONF:
Added in more complex monitoring intervals.
Mon Oct 26 17:30:05 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Continue recursive fetching even if the page has not changed on the server.
* wwwoffle.conf.man, wwwoffles.c, parse.c, wwwoffle.conf, config.h, connect.c, config.c, CHANGES.CONF, README.CONF:
Added in the option to only request changes for each page once during a session online.
Sun Oct 25 17:14:24 1998 Andrew M. Bishop <[email protected]>
* purge.c: Move files that have a future datestamp to the current time.
Tue Oct 13 19:15:36 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, config.h, parse.c, wwwoffle.conf, README.CONF, config.c, CHANGES.CONF:
Allow the referer header to be censored.
* misc.c, Makefile: Add in the patches from the freebsd ports webpage.
Mon Oct 12 18:40:01 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Add in the changes from version 2.3d.
Sun Oct 11 16:30:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3d of WWWOFFLE Released.
Sun Oct 11 16:21:23 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Upgrade to version 2.3d. [wwwoffle-2.3d side branch]
* wwwoffles.c: Fix recursive fetching and confirm-requests option. [wwwoffle-2.3d side branch]
Sat Oct 10 10:03:07 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Add the request cancel password to the RefreshWillGet output page.
Wed Oct 7 16:26:10 1998 Andrew M. Bishop <[email protected]>
* html.l: Fix the HTML header parser again.
Tue Oct 6 16:40:08 1998 Andrew M. Bishop <[email protected]>
* wwwoffled.c:
Add the IP address into the error message for rejected connections.
Sun Oct 4 15:04:00 1998 Andrew M. Bishop <[email protected]>
* parse.c, wwwoffle.h, wwwoffles.c:
Fixed again the new add-info-refresh method.
* ssl.c: Initial revision
* wwwoffles.c, wwwoffle.conf.man, upgrade-config.pl, wwwoffle.conf, config.h, messages.l, proto.h, CHANGES.CONF, Makefile, README, README.CONF, config.c:
Added Secure Socket Layer (SSL) (e.g. https) tunneling.
Sat Oct 3 16:01:46 1998 Andrew M. Bishop <[email protected]>
* messages.l: Fix some cosmetic lex errors.
* html.l: Fix the modified add-info-refresh option.
* spool.c: Bug fix with deleting lasttime spooled files by URL.
Fri Oct 2 14:06:57 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, wwwoffle.conf, wwwoffle.conf.man, config.h, upgrade-config.pl, README.CONF, config.c, CHANGES.CONF:
Added a DontRequestOffline section to replace the offline-requests option.
* wwwoffles.c:
Added more information to the 'wwwoffle -fetch' messages.
Wed Sep 30 18:20:10 1998 Andrew M. Bishop <[email protected]>
* purge.c: Purge the tmp.* files in the outgoing directory.
* html.l, wwwoffle.h, wwwoffles.c:
Move the add-info-refresh code to the html parser.
* Makefile:
Relent on the object files included at the cost of larger executable.
* errors.c, upgrade-cache.c, wwwoffle-tools.c, endian-cache.c:
Change the code to allow the wwwoffle executable to use errors-noconf.o.
Tue Sep 29 17:49:08 1998 Andrew M. Bishop <[email protected]>
* spool.c:
Stop the disk thrashing by moving the lastime/prevtime directories and not the individual files.
Sun Sep 27 09:50:22 1998 Andrew M. Bishop <[email protected]>
* README.htdig:
Updated the description to include the supplied patch to htdig.
Wed Sep 23 17:53:48 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Fix the ConfirmRequests option.
Mon Sep 21 16:11:10 1998 Andrew M. Bishop <[email protected]>
* spool.c:
Change the failure to open outgoing spool file error message from Inform to Warning.
Fri Sep 18 18:15:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3c of WWWOFFLE Released.
Fri Sep 18 18:14:14 1998 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Updated to version 2.3c. [wwwoffle-2.3c side branch]
* config.c:
Fix problems matching the 'default' case of URL-SPECIFICATIONs. [wwwoffle-2.3c side branch]
Sat Sep 12 13:18:45 1998 Andrew M. Bishop <[email protected]>
* README.htdig, htdig.c: Initial revision
* wwwoffles.c:
Include the hooks for the htdig URLs and htdig User-Agent.
* wwwoffle.h: Add the htdig.c functions.
* README.1st: Include the README.htdig file.
* README: Include information about htdig.
* Makefile: Add htdig.c to the list.
Sat Sep 12 12:40:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3b of WWWOFFLE Released.
Sat Sep 12 12:39:07 1998 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Update to version 2.3b.
Thu Sep 3 17:32:05 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, parse.c: Fix bug to allow request for to work offline.
Wed Sep 2 17:35:54 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf: Added Javascript to MimeTypes.
Tue Aug 25 18:50:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3a of WWWOFFLE Released.
Tue Aug 25 18:46:02 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.3a.
* config.c: Fixed bug in configuration file reading.
Sat Aug 22 12:20:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3 of WWWOFFLE Released.
Sat Aug 22 12:17:11 1998 Andrew M. Bishop <[email protected]>
* version.h, NEWS: Updated to version 2.3.
Sat Aug 22 12:15:18 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, misc.c, wwwoffle.c:
Allow passwords to be specified in the URL used in the wwwoffle program.
* parse.c: Fix bug with passworded pages.
Fri Aug 21 12:36:32 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c: Make wwwoffle command line requests work again.
Thu Aug 20 18:16:47 1998 Andrew M. Bishop <[email protected]>
* refresh.c: Fix bug with scripts button on request form.
Sun Aug 16 15:31:58 1998 Andrew M. Bishop <[email protected]>
* Makefile, README: Updated with the new wwwoffle-tools options.
* wwwoffle-tools.c:
Added in a read and write option to read and write directly to the cache.
Fri Aug 14 19:29:10 1998 Andrew M. Bishop <[email protected]>
* README: Added the audit-usage.pl program.
* audit-usage.pl: Initial revision
* connect.c: Change some of the messages to make parsing easier.
Thu Aug 13 18:12:24 1998 Andrew M. Bishop <[email protected]>
* upgrade-config.pl: Bug fix with commented out lines.
Wed Aug 12 18:57:30 1998 Andrew M. Bishop <[email protected]>
* misc.c: An extra check on bogus URLs.
Sat Aug 8 16:25:03 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffles.c, config.h, wwwoffle.conf, config.c, CHANGES.CONF, README.CONF:
Added in the confirm-requests option.
Sat Aug 8 10:56:47 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Fix relocation headers not getting fetched in non-recursive modes.
Tue Aug 4 18:30:00 1998 Andrew M. Bishop <[email protected]>
Version 2.3-beta of WWWOFFLE Released.
Tue Aug 4 18:21:27 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Updated to version 2.3-beta.
Mon Aug 3 18:47:27 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c:
Don't allow recursive requests while offline if offline-requests is not set.
Wed Jul 29 18:32:43 1998 Andrew M. Bishop <[email protected]>
* README, FAQ: Update to version 2.3.
* Makefile: Use tar instead of 'cp -a'.
* wwwoffles.c:
Clean up the messages to remove username/password except for Debug and ExtraDebug.
Tue Jul 28 19:01:08 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c: More careful handling of the lock file.
Sun Jul 26 11:07:12 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, wwwoffle.conf, wwwoffle.conf.man, config.c, config.h, CHANGES.CONF, README.CONF:
Add in the connect-retry option.
Sun Jul 26 08:19:28 1998 Andrew M. Bishop <[email protected]>
* refresh.c:
Fix bugs with recursive fetching (add function for relocation, meta-refresh doesn't recurse).
* wwwoffle.h: Added a new function to refresh.c.
* wwwoffles.c:
Fix bugs with recursive fetching (relocation doesn't recurse, request-changed was broken).
Tue Jul 21 17:52:40 1998 Andrew M. Bishop <[email protected]>
* index.c: Do not index the backup files.
Use a configurable error message for directories that cannot be read.
* wwwoffle-tools.c: Do not list the backup files.
Mon Jul 20 18:55:45 1998 Andrew M. Bishop <[email protected]>
* monitor.c: Monitoring now works, bugs fixed again.
Sun Jul 19 10:33:20 1998 Andrew M. Bishop <[email protected]>
* messages.l: Allow \? in the message files.
* monitor.c, index.c:
Fix bugs in monitor age determination in index and when going online.
Sat Jul 18 19:14:45 1998 Andrew M. Bishop <[email protected]>
* monitor.c: A change for the configurable index pages.
* index.c: Make the index pages user configurable.
Sat Jul 18 13:10:10 1998 Andrew M. Bishop <[email protected]>
* parse.c, misc.h, io.c:
Make the Netscape fix from version 2.2c work for forms that upload files.
* wwwoffles.c:
Make sure the lock file is deleted if the transfer is aborted.
Wed Jul 15 18:36:04 1998 Andrew M. Bishop <[email protected]>
* config.c:
Convert the proto and host in the URL-SPECIFICATION to lower case.
Mon Jul 13 19:07:34 1998 Andrew M. Bishop <[email protected]>
* config.c: Fix a bug with the URL-SPECIFICATION parsing.
* wwwoffles.c:
Be more careful with deleting the lock file when exiting.
Sun Jul 12 17:04:58 1998 Andrew M. Bishop <[email protected]>
* spool.c, wwwoffles.c, wwwoffle.h:
Add a lock file so that a browser accessing a page currently being fetched waits for it and does not fetch it again.
Change the behaviour of the backup file to delete the original.
Sun Jul 12 11:22:43 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffles.c, wwwoffle.conf, config.h, upgrade-config.pl,
README.CONF, config.c, CHANGES.CONF:
Allow a replacement URL to be used instead of those in the DontGet section.
* index.c: Stop problems with missing U* files.
Sat Jul 11 16:12:41 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, wwwoffle.conf.man, index.c, upgrade-config.pl, wwwoffle.conf,
README.CONF, config.c, config.h, CHANGES.CONF:
Improved the Mirror option in the config file.
Now called Alias and works at the level of sub-directories.
No support in indexes now for aliases.
* wwwoffle.c: Fixed a bug with reading from stdin.
Fri Jul 10 18:49:32 1998 Andrew M. Bishop <[email protected]>
* wwwoffled.c: Ignore the SIGPIPE signal.
Fri Jul 10 15:43:54 1998 Andrew M. Bishop <[email protected]>
* wwwoffles.c, parse.c: The changes introduced in version 2.2c.
Fri Jul 10 15:30:00 1998 Andrew M. Bishop <[email protected]>
Version 2.2c of WWWOFFLE Released.
Fri Jul 10 15:26:31 1998 Andrew M. Bishop <[email protected]>
* NEWS, version.h: Upgrade to version 2.2c. [wwwoffle-2.2c side branch]
* wwwoffles.c: Make the refresh button work while online.
Perform the sanity checks at the correct time after a refresh. [wwwoffle-2.2c side branch]
Thu Jul 9 18:54:52 1998 Andrew M. Bishop <[email protected]>
* parse.c:
Stop Netscape complaining when posting forms. [wwwoffle-2.2c side branch]
* monitor.c:
Stop monitoring crashing if the monitor age is zero. [wwwoffle-2.2c side branch]
Thu Jul 9 18:40:25 1998 Andrew M. Bishop <[email protected]>
* messages.l, io.c, errors.c:
Added Solaris ix86 USE_STD_ARG. [wwwoffle-2.2c side branch]
Wed Jul 8 17:58:13 1998 Andrew M. Bishop <[email protected]>
* NEWS: A temporary version so that wwwoffle-2.2c can be released.
Mon Jul 6 19:33:00 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, upgrade-config.pl, wwwoffle.conf, index.c, config.c, config.h,
README.CONF, CHANGES.CONF, README:
Add in a DontIndex section to the config file.
Sun Jul 5 15:22:59 1998 Andrew M. Bishop <[email protected]>
* README: Update with the new purging method.
* purge.c:
Allow purging to be based on URL and not just protocol and hostname.
Remove files from cache that do not belong there.
* wwwoffle.conf, wwwoffle.conf.man, config.h, upgrade-config.pl, CHANGES.CONF, README.CONF, config.c:
Allow purging to be based on URL and not just protocol and hostname.
* index.c: Handle change to FileNameToURL().
* spool.c:
Change FileNameToURL() and BackupWebpageSpoolFile() functions.
* wwwoffle-tools.c, endian-cache.c:
Simplification of directory entry handling.
Sat Jul 4 18:05:46 1998 Andrew M. Bishop <[email protected]>
* wwwoffle.conf.man, wwwoffle.conf, config.c, upgrade-config.pl, CHANGES.CONF, README.CONF:
Change from HOST-SPECIFICATION and FILE-SPECIFICATION to URL-SPECIFICATION.
Thu Jul 2 16:34:54 1998 Andrew M. Bishop <[email protected]>