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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
|
2001-12-27 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02749] cleanup code for editor,mailer,extbrowser
* etc.c (myExtCommand): added
* etc.c (myEditor): added
* form.c (input_textarea): use myEditor()
* main.c (pipeBuf): use myExtCommand()
* main.c (editBf): use myEditor()
* main.c (editScr): use myEditor()
* main.c (followA): use myExtCommand()
* main.c (cmd_loadURL): use myExtCommand()
* main.c (invoke_browser): use myExtCommand()
* main.c (execdict): use myExtCommand()
* proto.h (myExtCommand): added
* proto.h (myEditor): added
2001-12-27 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02748] cleanup code for restoring cursor position
* buffer.c (reshapeBuffer): delete top, linenum, cursorY, pos,
currentColumn, formitem
* buffer.c (reshapeBuffer): add sbuf and
use copyBuffer(), restorePosition()
* buffer.c (reshapeBuffer): use chkURLBuffer(), chkNMIDBuffer()
* display.c (in_check_url): deleted
* display.c (displayBuffer): ditto
* display.c (displayBuffer): s/Currentbuf/buf/
* display.c (arrangeLine): ditto
* display.c (restorePosition): added
* fm.h (TOP_LINENUMBER): added
* fm.h (CUR_LINENUMBER): added
* main.c (editBf): delete type, top, linenum, cursorY, pos,
currentColumn
* main.c (editBf): add sbuf and use copyBuffer(), restorePosition()
* main.c (reload): delete type, top, linenum, cursorY, pos,
currentColumn
* main.c (reload): add sbuf and use copyBuffer(), restorePosition()
* main.c (chkURLBuffer): added
* main.c (chkURL): chkRULBuffer on Currentbuf
* main.c (chkNMIDBuffer): added
* main.c (chkNMID): chkNMIDBuffer on Currentbuf
* proto.h (chkURLBuffer): added
* proto.h (chkNMIDBuffer): added
* proto.h (restorePosition): added
2001-12-27 "OMAE, jun" <jun-o@dai.meta.ne.jp>
* [w3m-dev 02735]
* indep.c (bcopy): need (chat *) cast
* indep.c (bzero): use char * instead of void *
2001-12-26 Fumitoshi UKAI <ukai@debian.or.jp>
* istream.h: #include <x509v3.h> deleted
* istream.c: #include <x509v3.h>
* istream.c (ssl_check_cert_ident): if subjectAltName dNSName found,
don't try commonName
2001-12-26 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02743] RFC2818 server identity check
* NEWS: RFC2818 server identity check
* istream.c (ssl_check_cert_ident): added
* istream.h (ssl_check_cert_ident): ditto
* istream.h: #include <x509v3.h>
* url.c (free_ssl_ctx): ssl_ctx = NULL
* url.c (openSSLHandle): arg hostname to check cert id
* url.c (openSSLHandle): check SSL_get_verify_result
if ssl_verify_server
* url.c (openSSLHandle): check server identity by ssl_check_cert_ident
* url.c (openURL): openSSLHandle with pu->host
2001-12-26 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02715] bugfix in scripts/multipart/multipart.cgi.in
was not applied
* scripts/multipart/multipart.cgi: fix "use NKF" check
2001-12-26 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02732] fix Debian Bug#126381
- Passwords entered for HTTPS are used for HTTP
* etc.c (find_auth): add port arg
* etc.c (find_auth_cookie): add port arg
* etc.c (add_auth_cookie): add port arg
* file.c (getAuthCookie): find_auth_cookie(host, port, realm)
* file.c (loadGeneralFile): add_auth_cookie(host, port, realm, ss)
* fm.h (struct auth_cookie): add port
* ftp.c (openFTP): find_auth_cookie(host, port, user)
* ftp.c (openFTP): add_auth_cookie(host, port, user, pwd)
* proto.h (find_auth_cookie): add port
* proto.h (add_auth_cookie): add port
2001-12-26 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02729]
* doc-jp/README.func (DOWNLOAD): update
* doc-jp/README.func (EDIT): ditto
* doc-jp/README.func (EDIT_SCREEN): ditto
* doc-jp/README.func (SAVE): ditto
* doc/README.func (DOWNLOAD): ditto
* doc/README.func (SAVE): ditto
* doc/README.func (SUBMIT): ditto
* scripts/w3mhelp.cgi.in: $key is normalized by &norm_key
* scripts/w3mhelp.cgi.in: keyfunc update
* scripts/w3mhelp.cgi.in (load_keymap): check data, &norm_key
* scripts/w3mhelp.cgi.in (norm_key): added
2001-12-26 Fumitoshi UKAI <ukai@debian.or.jp>
* [#496613] LASTLINE in terms.c
by Kazuhiro NISHIYAMA (znz)
* terms.c (LASTLINE): defined(__CYGWIN__) instead of defined(CYGWIN)
* terms.c (setlinescols): ditto
2001-12-26 Fumitoshi UKAI <ukai@debian.or.jp>
* [#496610] #include <sys/wait.h>
by Kazuhiro NISHIYAMA (znz)
* main.c: #if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
* etc.c: ditto
* file.c: ditto
2001-12-26 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* [w3m-dev 02725] bcopy, bzero
* etc.c (bcopy): deleted
* etc.c (bzero): deleted
* indep.c (bcopy): added
* indep.c (bzero): added
* indep.c (bcopy): src should be const
* fm.h (bcopy): ditto
2001-12-25 Kazuhiko <kazuhiko@archi.kyoto-u.ac.jp>
* [w3m-dev 02727]
* doc-jp/keymap.default (C-r): ISEARCH_BACK
* doc-jp/keymap.default (C-s): ISEARCH
* doc-jp/README.func: fix typo
2001-12-25 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02726] incremental search
* NEWS: incremental search
* fm.h (inputLineHist) define by inputLineHistSearch
* fm.h (COPY_BUFPOTISION): added
* fm.h (SAVE_BUFPOSITION): ditto
* fm.h (RESTORE_BUFPOSITION): ditto
* funcname.tab (ISEARCH): added
* funcname.tab (ISEARCH_BACK): added
* keybind.c (GlobalKeymap): C-s = ISEARCH, C-r = ISEARCH_BACK
* linein.c (inputLineHistSearch): renamed from inputLineHist,
new arg incrfunc() for increment search
* linein.c (inputLineHistSearch): add cursorX, cursorY
* main.c (srchcore): remove displayBuffer, onA
* main.c (dispincsrch): added
* main.c (isrch): ditto
* main.c (isrchfor): ditto
* main.c (isrchbak): ditto
* main.c (srch): add displayBuffer, onA
* main.c (srch_nxtprv): ditto
* proto.h (isrchfor): added
* proto.h (isrchbak): ditto
* proto.h (inputLineHistSearch): renamed
* doc/keymap.default (C-r): ISEARCH_BACK
* doc/keymap.default (C-s): ISEARCH
* doc/README.func (ISEARCH): added
* doc/README.func (ISEARCH_BACK): ditto
* doc-jp/README.func (ISEARCH): added
* doc-jp/README.func (ISEARCH_BACK): ditto
2001-12-25 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02723] cleanup resizing
* main.c (resized): renamed to need_resize_screen
* main.c (need_resize_screen): added
* main.c (resize_hook): prototype here
* main.c (resize_handler): ditto
* main.c (MAIN): move signal initialization
* main.c (MAIN): remove duplicate signal initialization
* main.c (resize_screen): added
* proto.h (resize_hook): deleted
* terms.c (mouse_init): remove signal
2001-12-25 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02721]
* main.c (resize_handler): added
* main.c (MAIN): use resize_handler in getch()
2001-12-25 WATANABE Katsuyuki <katsuyuki_1.watanabe@toppan.co.jp>
* [w3m-dev 02714]
* scripts/w3mhelp.cgi.in: $helpdir should be handled by cygwin_pathconv
when $CYGPATH=1
2001-12-25 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02715] bugfix in scripts/multipart/multipart.cgi.in
* scripts/multipart/multipart.cgi: fix "use NKF" check
2001-12-25 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02719] (based on [w3m-dev 02708] comments)
* resize_hook: set resized flag only
* main.c (MAIN): in key input loop, process resize
when resized flag is set
2001-12-24 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02702] fix problem with emacs-w3m in [w3m-dev 02699]
* main.c (MAIN): remove some flag initialization, its too early?
this code caused problem with emacs-w3m.
2001-12-23 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02700] search refactoring
* based on http://www.nmn.jp/~hidai/software/w3m/
* fm.h: add SR_* constants, result value for search
* main.c (srchcore): added
* main.c (disp_srchresult): added
* main.c (srch): added
* main.c (srchfor): use srch()
* main.c (srchbak): use srch()
* main.c (srch_nxtprv): use srchcore() & disp_srch_result()
* search.c (forwardSearch): return SR_* result value
* search.c (backwardSearch): ditto
2001-12-23 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02699] initialization too late
* main.c (MAIN): initializations moved before arg processing
* debian bug closes: Bug##102445: ignores SIGWINCH while downloading
2001-12-22 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02696]
* configure: fix bashism of w3mhelp-{lynx,w3m}_{en,ja} expansion
2001-12-22 Dai Sato <satodai@dog.intcul.tohoku.ac.jp>
* [w3m-dev 02687] version number in w3mhelp-*.html (+[w3m-dev 02689])
* configure (cur_ver): w3mhelp*.html version subst
* w3mhelp*.html: deleted
* w3mhelp*.html.in: added
2001-12-22 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02682]
* doc/README: remove README.dj
* doc-jp/README.hp: deleted
2001-12-22 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02692] w3m on linux/ia64
* mktable.c: #include "config.h"
* mktable.c: #include "stdint.h" or uintptr_t typedef
* mktable.c: use uintptr_t instead of unsigned int
* configure: check pthread on linux
* configure: add gc_cflags for linux/ia64,alpha,s390
* configure: check stdint.h
* configure (config.h): add $pthreadlib to GCLIB
* configure (config.h): add $def_have_stdint_h
* config.h.dist (HAVE_STDINT_H): added
* Str.c: add #include <stdlib.h> for exit() on some platform (ia64)
2001-12-22 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02690] RC_DIR in scripts
* configure (config.h): add RC_DIR
* config.h.dist: ditto
* XMakefile: pass RC_DIR
* scripts/Makefile: subst RC_DIR
* scripts/dirlist.cgi.in: $RC_DIR initial value
* scripts/w3mhelp.cgi.in: ditto
* scripts/w3mhelp.cgi.in (cygwin_pathconv): added
2001-12-22 Fumitoshi UKAI <ukai@debian.or.jp>
* version.c.in: 0.2.3.2+cvs
2001-12-22 Fumitoshi UKAI <ukai@debian.or.jp>
* w3m 0.2.3.2 - Security fix in w3m/scripts
* version.c.in: update
* w3mhelp-*.html: version 0.2.3.2
* doc/README: version 0.2.3.2, release date
* doc-jp/README: ditto
* NEWS: added
2001-12-22 Fumitoshi UKAI <ukai@debian.or.jp>
* scripts/w3mhelp.cgi.in: lang=[a-z][a-z] only
2001-12-22 Hironori Sakamoto <h-saka@lsi.nec.co.jp>
* Security hole in multipart.cgi.in, w3mman2html.cgi.in
* scripts/w3mhelp.cgi.in: open(F, "< $var") instead of open(F, $var)
* scripts/w3mhelp.cgi.in: fix eval qq{require ...};
* scripts/multipart/multipart.cgi.in: ditto
* scripts/w3mman/w3mman2html.cgi.in: validate $keyword, $section, $man
2001-12-21 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev-en 00656]
* helpdir default is PREFIX/share/w3m
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* version.c.in: 0.2.3.1-cvs
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3m 0.2.3.1
* version.c.in: update
* w3mhelp-*.html: version 0.2.3.1
* doc/README: version 0.2.3.1, release date
* doc-jp/README: ditto
2001-12-20 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02683]
* configure (def_param): fix wrong behavior unless variable initialized
* configure (def_param): fix unnecessary eval
* configure (ask_choice): ditto
2001-12-20 Dai Sato <satodai@dog.intcul.tohoku.ac.jp>
* w3mhelp-*.html, doc/README, doc-jp/README:
* fix version number to 0.2.3.
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* version.c.in: 0.2.3-cvs
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3m 0.2.3 release
* version.c.in: update
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3m 0.2.3 release condidate 3
* configure (use_bundled_gclib): added
2001-12-20 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* w3m 0.2.3 release candidate 2
* [w3m-dev 02678]
* configure: get mygcversion from gc/version.h
* Makefile: update GCLIBTGZ
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3m 0.2.3 release candidate 1
* gc/: sync with w3m-0.2.2-inu-1.1/gc
* Patches/ews4800: deleted
* configure: comment out Patches/ews4800
2001-12-20 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02655] print version and compile options
* configure: change order of questions
* main.c (fversion): added
* main.c (fusage): use fversion()
* main.c (fusage): add -help, -version
* main.c (MAIN): add -help, -version
2001-12-20 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02672]
* main.c (wrap_GC_warn_proc): msg_ring initial value
* main.c (SigAlarm): not need #ifdef USE_ALARM, already guarded
2001-12-18 Fumitoshi UKAI <ukai@debian.or.jp>
* [#493911] too few arguments to function `longjmp'
by Kazuhiro NISHIYAMA (znz)
* configure (LONGJMP): need val argument
2001-12-18 Fumitoshi UKAI <ukai@debian.or.jp>
* [#493906] missing #ifdef by Kazuhiro NISHIYAMA (znz)
* main.c (sig_chld): #ifdef SIGCHLD
* main.c (SigAlarm): #ifdef USE_ALARM
2001-12-18 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02670]
* table.c (maximum_visible_length): use strchr()
* table.c (do_refill): use force==2 mode for flushline()
2001-12-18 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02669] delete cURLcode()
* main.c (cURLcode): deleted
* main.c (loadNormalBuf): no need to use cURLcode()
* main.c (followI): ditto
* main.c (query_from_followform): need conv_form_encoding()
2001-12-18 Rin Okuyama <okuyama@cna.ne.jp>
* [w3m-dev 02668] install-sh: -e option of sh(1)
* install-sh: add set -e
2001-12-18 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02667]
* terms.c (mouse_init): #ifdef SIGWINCH guard
2001-12-16 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02666] resizing on xterm with gpm support
* terms.c (mouse_init): check Gpm_Open return value, signal(SIGWINCH)
2001-12-16 Rin Okuyama <okuyama@cna.ne.jp>
* [w3m-dev 02664] install-sh -s option
* XMakefile: install-sh -s
* install-sh: support strip option
2001-12-15 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02663] fix prevA() cause loop
* table.c (do_refill): force flushline
* table.c (feed_table_tag): push line if <a> has no href attr
2001-12-15 Rin Okuyama <okuyama@cna.ne.jp>
* [w3m-dev 02659] rc.c (show_srch_str)
* fm.h (show_srch_str): added
* main.c (srch_nxtprv): check show_srch_str
* rc.c (CMT_SHOW_SRCH_STR): added
2001-12-15 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02657]
* main.c (chkURL): accept URL ending with '='
2001-12-15 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02656]
* XMakefile (clean): remove functable.c
* anchor.c (_put_anchor_new): use Strnew_size() and Strcat_charp_n()
* indep.c (getescapechar): use GET_MYCDIGIT
2001-12-13 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02541] mouse support on cygwin
* linein.c (_esc): ignore ESC M <ch> <ch> <ch> on cygwin
* terms.c (is_xterm): not static on cygwin
* terms.c (ConInV): INPUT_RECORD * -> char *
* terms.c (MouseConToXTerm): deleted
* terms.c (iMouseConXTerm): deleted
* terms.c (expand_win32_console_input_buffer): added
* terms.c (read_win32_console_input): use PeekConsoleInput
and ReadConsole
* terms.c (read_win32_console): use read_win32_console_input()
* terms.c (cmp_tv): added
* terms.c (subtract_tv): added
* terms.c (select_or_poll_win32_console): added
* terms.c (select_win32_console): added
* terms.c (xterm_mouse_term): deleted
* terms.c (mouse_term_info): added
* terms.c (set_tty): modified to use mouse_term_info
* terms.c (sleep_till_anykey): use select_win32_console on cygwin
* terms.c (mouse_init): check is_xterm flag
* terms.c (mouse_end): check is_xterm flag
* terms.h (is_xterm): if cygwin
* terms.h (NEED_XTERM_ON): added
* terms.h (NEED_XTERM_OFF): added
2001-12-11 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02651] search keymap using hash
* XMakefile (func.c): depends functable.c funcname1.h
* XMakefile (functable.c): generated from funcname.tab
* functable.awk: added
* fm.h (w3mKeyList): deleted
* func.c (w3mKeyList): ditto
* file.c (readHeader): change getFuncList()
* func.c (w3mNFuncList): deleted
* func.c (functable.c): include
* func.c (initKeymap): no need to count w3mFuncList
* func.c (initKeymap): change getFuncList()
* func.c (initKeymap): put data to keyData hashtable
* func.c (countFuncList): deleted
* func.c (getFuncList): use getHash_si()
* func.c (getKeyData): use getHash_iv()
* func.c (addKeyList): deleted
* func.c (searchKeyList): deleted
* func.h (textlist.h): include
* func.h (hash.h): include
* func.h (KEY_HASH_SIZE): added
* func.h (KeyListItem): deleted
* func.h (KeyList): deleted
* hash.c: s/hist/sv/
* hash.c: add defhashfunc_i(int, void *, iv)
* hash.h: s/hist/sv/
* hash.h: defhash(int, void *, iv)
* hash.h (putHash_*): added
* hash.h (getHash_*): added
* hash.h (defhashfunc_i): added
* history.c (pushHashHist): s/hist/sv/
* history.c (getHashHist): s/hist/sv/
* history.h (Hist): s/hist/sv/
* main.c (searchKeyData): item deleted
* main.c (searchKeyData): data added
* main.c (searchKeyData): use getKayData() instead of searchKeyList()
* main.c (setAlarm): w3mNFuncList deleted
* main.c (setAlarm): change getFuncList()
* menu.c (w3mNFuncList): deleted
* menu.c (w3mFuncList): deleted
* menu.c (initMenu): no need to count w3mFuncList
* menu.c (setMenuItem): change getFuncList()
* proto.h (countFuncList): deleted
* proto.h (getFuncList): change args
* proto.h (addKeyList): deleted
* proto.h (searchKeyList): deleted
* proto.h (getKeyData): added
2001-12-11 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02650]
* file.c (readHeader): Strnew_charp_n() should be used
2001-12-11 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02647]
* proto.h (arg_is): deleted
* etc.c (arg_is): ditto
* etc.c (searchAnchorArg): ditto
2001-12-11 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02648] rewrite strCmp() with strcmp()
* indep.c (strCmp): use strcmp()
2001-12-11 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02441] A patch against functions *_(un)?quote()
* indep.c (url_unquote_char): use GET_MYCDIGIT, instead of sscanf
* indep.c (url_quote): use xdigit[] instead of sprintf()
* myctype.c (MYCTYPE_DIGITMAP): added
* myctype.h (MYCTYPE_DIGITMAP): ditto
* myctype.h (GET_MYCDIGIT): added
2001-12-11 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02647]
* proto.h (getAnchor): deleted
* etc.c (getAnchor): deleted
2001-12-09 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02646] Some code cleanups
* configure: use host libgc instead of gc/gc.a on Linux and/or AIX
if possible
* etc.c (get_cmd): deleted, merged into gethtmlcmd()
* etc.c (gethtmlcmd): merge get_cmd() code
* file.c (uncompressed_file_type): initialize slen
* file.c (passthrough): status deleted
* file.c (HTMLlineproc0): istr deleted, gethtmlcmd() argument fix
* fm.h (_GNU_SOURCE): ifndef _GNU_SOURCE
* proto.h (gethtmlcmd): fix prototypes
* terms.c: include <sys/ioctl.h> always
2001-12-09 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02645]
* configure: fix to prevent rcsid expansion
2001-12-08 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02641]
* configure: generate version.c from version.c.in
* version.c.in: added
* version.c: deleted, autogenerated from version.c.in
* .cvsignore (version.c): added
2001-12-07 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02642]
* linein.c (next_dcompl): fix ifdef EMACS_LIKE_LINEEDIT
2001-12-07 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02640]
* linein.c (escape_spaces): rewrite
* linein.c (unescape_spaces): rewrite
2001-12-07 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02638] completion for ! and/or @
* linein.c (next_compl): check "\\ ", "\\\t"
* linein.c (escape_spaces): added
* linein.c (unescape_spaces): added
* linein.c (doComplete): use unescape_spaces, escape_spaces
2001-12-07 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02637]
* url.c (openSocket): hostname volatile -> const
* url.c (openSocket): add hname
* url.c (openSocket): copy hostname to hname to be modified safely
* url.c (otherinfo): revert previous change
2001-12-07 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02635] dirlist
* file.c (loadGeneralFile): use pu.file instead of pu.real_file
* scripts/dirlist.cgi.in: modified for perl4
2001-12-07 Fumitoshi UKAI <ukai@debian.or.jp>
* [#489463] Host: header is wrong IPv6 literal addr
* url.c (otherinfo): IPv6 address should be quoted with bracket
2001-12-07 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02629]
* linein.c (next_compl): completion for name including space
2001-12-07 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02633]
* url.c (parseURL2): filename should be quoted here, because
it will be unquote() soon
2001-12-07 Fumitoshi UKAI <ukai@debian.or.jp>
* rename install.sh to install-sh
* XMakefile: s/install.sh/install-sh/
2001-12-07 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02622]
* tagtable.tab (noframes): added
* tagtable.tab (/noframes): added
* fm.h (RB_NOFRAMES): added
* html.h (HTML_NOFRAMES): added
* html.h (HTML_N_NOFRAMES): added
* html.c (ALST_NOFRAMES): added
* html.c (98 HTML_NOFRAMES): added
* html.c (99 HTML_N_NOFRAMES): added
* file.c (HTMLtagproc1): add HTML_NOFRAMES, HTML_N_NOFRAMES
* file.c (HTMLtagproc1): don't meta refresh if it is in noframes and
auto frame rendering
* main.c (MAIN): use setAlarmEvent()
* main.c (SigAlarm): ditto
* main.c (setAlarm): ditto
* main.c (setAlarmEvent): check if status == AL_UNSET
2001-12-06 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02619]
* file.c (loadHTMLString): set document type
2001-12-05 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02618]
* configure: fix typo in --mimetypes
2001-12-05 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02617]
* scripts/Makefile (HELP_LIBS): added
* scripts/Makefile (all): depends $(HELP_LIBS)
* scripts/Makefile (install): depends $(HELP_LIBS)
* scripts/Makefile (w3mhelp-funcname.pl): split from helplibs
* scripts/Makefile (w3mhelp-funcdesc.pl): split from helplibs, touch
* scripts/Makefile (clean): clean *-stamp
* scripts/.cvsignore: add w3mhelp-funcdesc-stamp
2001-12-05 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02616]
* buffer.c (gotoLine): use set_delayed_message instead of disp_message
* buffer.c (gotoRealLine): ditto
* display.c (delayed_msg): added
* display.c (displayBuffer): display deleyed_msg if it is set
* display.c (set_delayed_message): added
* proto.h (set_delayed_message): added
2001-12-05 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02615]
* main.c (goLine): _goLine() called twice when prec_num was set
2001-12-05 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02614]
* XMakefile (HELP_ALLFILES): added
* XMakefile (INSTALL_PROGRAM): ditto
* XMakefile (INSTALL_SCRIPT): ditto
* XMakefile (INSTALL_DATA): ditto
* XMakefile (install) use INSTALL_{PROGRAM,DATA}
* XMakefile (install-helpfile): cleanup
* XMakefile (install-scripts): pass MKDIR
* XMakefile (uninstall): cleanup
* XMakefile (clean): cleanup
* scripts/Makefile (MKDIR): added
* scripts/Makefile (INSTALL_DATA): added
* scripts/Makefile (install): mkdir, use INSTALL_DATA
* scripts/Makefile (uninstall): added
* scripts/Makefile (clean): ignore errors
* scripts/multipart/Makefile (MKDIR): added
* scripts/multipart/Makefile (install): mkdir
* scripts/multipart/Makefile (uninstall): added
* scripts/multipart/Makefile (clean): ignore errors
* scripts/multipart/Makefile (dist): cleanup
* scripts/w3mman/Makefile (MKDIR): added
* scripts/w3mman/Makefile (install): mkdir
* scripts/w3mman/Makefile (uninstall): added
* scripts/w3mman/Makefile (clean): ignore errors
* scripts/w3mman/Makefile (dist): cleanup
2001-12-04 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02611] a improvement of find_cookie()
* cookie.c (make_cookie): domainname is passed as argument
* cookie.c (find_cookie): FQDN(pu->host) done only once
* func.c (getQWord): comment reformat
* local.c (check_local_cgi): ditto
2001-12-04 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02609]
* proto.h: remove duplicate prototypes
2001-12-04 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02608]
* local.c (localcgi_get): request == NULL means no ? in URL
* url.c (openURL): ditto
2001-12-03 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02606]
* XMakefile (install-scripts): run pwd outside for loop
2001-12-03 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02605] $(PWD) / allocStr()
* XMakefile (install-scripts): use $$TOPDIR instead of $(PWD)
* indep.c (allocStr): if len is negative, it will copy string in `s'
* display.c (record_err_message): pass -1 as length to allocStr
* etc.c (lastFileName): ditto
* etc.c (mybasename): ditto
* etc.c (FQDN): ditto
* file.c (push_tag): ditto
* func.c (addKeyList): ditto
* history.c (unshiftHist): ditto
* history.c (pushHist): ditto
* indep.c (cleanupName): ditto
* linein.c (inputLineHist): ditto
* local.c (dirBuffer): ditto
* main.c (gotoLabel): ditto
* main.c (searchKeyData): ditto
* parsetagx.c (parsedtag_set_value): ditto
* terms.c (GETSTR): ditto
* textlist.h (pushText): ditto
* url.c (DefaultFile): ditto
* url.c (parseURL): ditto
* url.c (ALLOC_STR): ditto
* url.c (parseURL2): ditto
* url.c (openURL): ditto
* w3mhelperpanel.c (extractMailcapEntry): ditto
2001-12-02 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02604]
* configure: kanji_symbols=n if lang=EN
* file.c (HTMLlineproc2body): initialize rule
2001-12-02 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02603]
* scripts/w3mhelp.cgi.in: modified for perl4
2001-12-01 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02601]
* Makefile (install-core): added
* Makefile (install-helpfile): added
* configure (use_help_cgi): default yes if perl found
* configure (config.h): add HELP_CGI
* configure (config.h): add $def_use_help_cgi
* main.c (ldhelp): add USE_HELP_CGI code
* scripts/Makefile: use w3mhelp*.pl.in
* scripts/w3mhelp-funcname.pl.in: added
* scripts/w3mhelp-funcdesc.en.pl.in: added
* scripts/w3mhelp-funcdesc.ja.pl.in: added
* scripts/w3mhelp.cgi.in: use %buf_*, %lineedit_*
* scripts/w3mhelp.cgi.in: use %title
* [w3m-dev 02660] (based on [w3m-dev 02577]
by Kiyokazu SUTO <suto@ks-and-ks.ne.jp>)
* scripts/.cvsignore: add w3mhelp.cgi w3mhelp-*.pl
* scripts/Makefile (HELP_DIR): added
* scripts/Makefile (LIB_TARGETS): add w3mhelp.cgi
* scripts/Makefile (DOCDIRS): added
* scripts/Makefile (all): add helplibs
* scripts/Makefile (.in): subst HELP_DIR, DOCDIRS
* scripts/Makefile (helplibs): added
* scripts/Makefile (install): s/DISTDIR/DESTDIR/
* scripts/Makefile (install): install w3mhelp-*.pl
* scripts/w3mhelp.cgi.in: added
* XMakefile (INSTALL2): deleted
* XMakefile (install): split
* XMakefile (install-core): added
* XMakefile (install-helpfile): added
* XMakefile (all-scripts): HELP_DIR
* XMakefile (install-scripts): HELP_DIR
* doc/REAMDE.func: add ALARM, SUSPEND
* doc-jp/README.func: ditto
* config.h.dist: updated
2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
* url.c (otherinfo): use AcceptLang
* rc.c (sync_with_option): initialize AcceptLang
2001-11-30 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02599]
* main.c comment reformat
2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02598]
* url.c (otherinfo): add missing NULL
2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02597] (based on [w3m-dev 02594] by aito@fw.ipsj.or.jp)
* fm.h (AcceptLang): added
* fm.h (AcceptMedia): added
* rc.c (CMT_ACCEPTENCODING): added
* rc.c (CMT_ACCEPTMEDIA): added
* rc.c (params9): add accept_encoding, accept_media
* rc.c (sync_with_option): initialize AcceptEncoding and AcceptMedia
* url.c (otherinfo): use Strcat_m_charp()
2001-11-30 aito@fw.ipsj.or.jp
* [w3m-dev 02594]
* configure: s/dcode/display_code/
2001-11-30 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02596]
* file.c (acceptableEncoding): fix segfault if no decoder found
2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02595]
* file.c (compression_decoder): add encodings
* file.c (readHeader): use compression_decoder->encodings
2001-11-30 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02593]
* form.h: comment reformat
* matrix.c: ditto
* menu.c: ditto
* regex.c: ditto
* table.h: ditto
* terms.c: ditto
2001-11-30 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02592] Accept: and AcceptEncoding:
* url.c (otherinfo): use acceptableEncoding() acceptableMimeTypes()
* file.c: add compression_decoder
* file.c (check_compress): rewrite by using compression_decoder
* file.c (compress_application_type): ditto
* file.c (uncompressed_file_type): ditto
* file.c (check_command): added
* file.c (acceptableEncoding): added
* proto.h (acceptableEncoding): ditto
* file.c (uncompress_stream): renamed from gunzip_stream
* file.c (uncompress_stream): rewrite by using compression_decoder
* configure: add PATH_SEPARATOR
* mailcap.c (extractMailcapEntry): static
* mailcap.c (loadMailcap): static
* proto.h (loadMailcap): removed
* mailcap.c (acceptableMimeTypes): added
* proto.h (acceptableMimeTypes): added
* configure: #define USE_PATH_ENVVAR for __EMX__
* file.c: GUNZIP_*, BUNZIP2_*, INFLATE_* removed here -> config.h
* file.c (gunzip_stream): s/(GUNZIP|BUNZIP2|INFLATE)_CMD/\1_CMDNAME/
* configure (config.h): GUNZIP_*, BUNZIP2_*, INFLATE_* moved here
* fm.h (DirBufferCommand): use CGI_EXTENSION
* fm.h (mailcap_list): removed from global -> mailcap.c
* fm.h (UserMailcap): removed from global -> mailcap.c
* mailcap.c: static mailcap_list
* mailcap.c: static UserMailcap
* proto.h (initMimeTypes): moved
* proto.h (get_os2_dft): removed
* rc.c (loadMimeTypes): removed here -> url.c
* rc.c (initMimeTypes): removed here -> url.c
* fm.h (mimetypes_list): removed from global -> url.c
* fm.h (UserMimeTypes): removed from global -> url.c
* url.c: static mimetypes_list
* url.c: static UserMimeTypes
* url.c (loadMimeTypes): moved here
* url.c (initMimeTypes): moved here
2001-11-30 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02590]
* main.c (_peekURL): peek URL on <input type="image">
2001-11-30 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02589]
* rc.c (params1): remove #ifdef VIEW_UNSEENOBJECTS
2001-11-29 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02588]
* configure: fix alarm() check
2001-11-29 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02587]
* file.c (gunzip_stream): s/__CYGWIN__/USE_BINMODE_STREAM/
* [w3m-dev 02586]
* configure: typo s/_zdmachdep.c/zmachdep.c/
* fix shadow variable
* main.c (HTMLtagproc1): s/refresh/refresh_interval/
* matrix.c (LUfactor): s/index/indexarray/
* matrix.c (LUsolve): ditto
* matrix.c (m_inverse): ditto
* matrix.c (LUinverse): ditto
* table.c (bsearch_2short): ditto
* table.c (bsearch_double): ditto
* table.c (dv2sv): ditto
* table.c (check_cell_width): ditto
* table.c (set_integered_width): ditto
* table.c (set_table_width): ditto
* table.c (check_table_height): ditto
* ftp.c: s/ftp/current_ftp/
* ftp.c (Ftpfclose): ditto
* ftp.c (openFTP): ditto
* ftp.c (closeFTP): ditto
* ftp.c (FtpLogin): save to current_ftp
* ftp.c (openFTP): s/realpath/realpathname/
* ftp.c (openFTP): remove i
* ftp.c (ftp_pasv): s/sin/sockaddr/
* [w3m-dev 02584] code cleanup
* linein.c (_esc): fix #ifdef EMACS_LIKE_LINEEDIT
* fix shadow variables (partially)
* version.c: s/version/w3m_version/
* configure: ditto
* fm.h: ditto
* local.c (set_environ): ditto
* main.c (fusage): ditto
* main.c (MAIN): ditto
* main.c (dispVer): ditto
* rc.c (load_option_panel): ditto
* url.c (otherinfo): ditto
* file.c (readHeader): s/tmp/tmp2/
* file.c (loadGeneralFile): s/tmp/cmd/
* file.c (flushline): s/f/df/
* file.c (doExternal): s/stat/mc_stat/
* proto.h: ditto
* mailcap.c (unquote_mailcap_loop): ditto
* mailcap.c (unquote_mailcap): ditto
* main.c (cmd_loadBuffer): s/link/linkid/
* main.c (sig_chld): s/stat/p_stat/
* fm.h: remove config_file
* main.c (MAIN): s/config_file/config_filename/
* rc.c (init_rc): ditto
* proto.h: ditto
* rc.c: add config_file
* menu.c (goem_menu): s/select/mselect/
* menu.c (draw_menu_item): ditto
* menu.c (select_menu): ditto
* menu.c (goto_menu): ditto
* menu.c (action_menu): ditto
* menu.c (mNext): ditto
* menu.c (mPrev): ditto
* menu.c (mOk): ditto
* menu.c (mSrchF): ditto
* menu.c (mSrchB): ditto
* menu.c (mSrchN): ditto
* menu.c (mSrchP): ditto
* menu.c (process_mMouse): ditto
* menu.c (smDelBuf): ditto
* proto.h: ditto
* printf format
* display.c (redrawLine): use %*ld instead of %*d
* require parentheses
* ftp.c (FtpLogin): add paren
* fix variable might be clobbered by `longjmp' or `vfork'
* file.c (loadGeneralFile): add volatile
* file.c (loadHTMLString): ditto
* file.c (loadBuffer): ditto
* file.c (doExternal): ditto
* frame.c (createFrameFile): ditto
* main.c (srchfor): ditto
* main.c (srchbak): ditto
* main.c (srch_nxtprv): ditto
* url.c (openSocket): ditto
* fix unused variables
* file.c (readHeader): emssg if USE_COOKIE defined
* file.c (HTMLlineproc2body: remove tmp
* file.c (saveBufferDelNum): remove p
* linein.c (_esc): c2 if JP_CHARSET defined
* fix uninitialized variables
* Str.c (Sprintf): initialize p
* buffer.c (readBufferCache): initialize prevl
* conv.c (cConvSE): initialize ub
* conv.c (_cConvEE): initialize ub
* conv.c (cConvES): initialize ub
* file.c (loadGeneralFile): initialize proc, t, prevtral, ss, realm
* file.c (HTMLlineproc2body): initialize debug
* file.c (HTMLlineproc0): initialize tbl_mode, tbl_width
* file.c (loadHTMLstream): initialize prevtrap
* file.c (loadHTMLString): initialize prevtrap
* file.c (loadBuffer): initialize prevtrap
* form.c (formUpdateBuffer): initialize col
* ftp.c (openFTP): initialize pwd
* local.c (dirBuffer): initialize nrow
* main.c (gpm_process_mouse): initialize btn
* menu.c (gpm_process_menu_mouse): ditto
* menu.c (initMenu): initialize nmenu, nitem, item
* parsetagx.c (parse_tag): initialize attr_id
* rc.c (show_params): initialize t
* table.c (visible_length): initialize amp_len
* table.c (set_integered_width): initialize x
* table.c (check_table_height): initialize space
* table.c (renderTable): initialize vrulea, vruleb, vrulec
* terms.c (putchars): initialize s
* url.c (openSocket): initialize trap, result
* url.c (openURL): initialize sslh
2001-11-28 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02579]
* configure: Use environment variables CC, CFLAGS, LDFLAGS
2001-11-28 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02574] sysconfdir
* configure: add -bindir=* -libdir=* -helpdir=* -sysconfdir=*
* configure: add ETC_DIR
* indep.c (w3m_etc_dir): added
* indep.h: ditto
* rc.c (init_rc): use etcFile() instead of libFile()
* rc.c (etcFile): added
* proto.h: ditto
2001-11-28 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02578]
* file.c (process_anchor): support <input type="image">
* html.c (ALST_INPUT): add ATTR_SRC, ATTR_WIDTH, ATTR_HEIGHT
* html.c (MAXA_INPUT): +3
* conv.c (checkShiftCode): fix comments for indent(1)
* main.c (loadLink): ditto
* fm.h: ditto
* file.c (process_anchor); ditto
* file.c (HTMLlineproc2body): ditto
2001-11-28 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02576]
* url.c (openURL): remove pu->file = p; which cause segfault
because p is not initialized
2001-11-28 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02571] MAXPATHLEN
* indep.c (currentdir): #ifdef MAXPATHLEN for GNU Hurd
* configure: ditto
2001-11-27 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02572]
* main.c (_peekURL): initialize s when anchor not found
2001-11-27 aito@fw.ipsj.or.jp
* Error correction on doc-jp/FAQ.html
2001-11-27 sakane@d4.bsd.nes.nec.co.jp (Yoshinobu Sakane)
* w3m-doc update.
2001-11-26 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02537]
* configure: s/$def_egd/def_use_egd/
2001-11-26 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02556]
* indep.c (strcasestr): strcasestr("", "") should not return NULL
* [w3m-dev 02555]
* configure: check strcasestr
* fm.h (_GNU_SOURCE): requires for strcasestr()
* indep.c (strcasestr): #ifdef HAVE_STRCASESTR
* indep.c (strcasestr): check whether s2 is NULL
* indep.h: add #include "config.h"
* indep.h: #ifdef HAVE_STRCASESTR
* indep.h: strcasestr() takes const char *
2001-11-26 Yoshinobu Sakane <sakane@d4.bsd.nes.nec.co.jp>
* [w3m-dev 02553]
* configure: SysV's tr requires '[a-z]' '[A-Z]'
2001-11-26 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02547] "message/*" as a kind of text type
* file.c (is_text_type): add message/*
2001-11-25 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02535] Name conflicts in configure
* configure: s/libdir/tlibdir/ for loop variables
2001-11-25 Dai Sato <satodai@dog.intcul.tohoku.ac.jp>
* display.c: call of init_win32_console_handle is deleted
2001-11-25 Rin Okuyama <okuyama@cna.ne.jp>
* [w3m-dev 02533] setpgrp bug in configure
* configure: s/have_setpgrp/def_have_setpgrp/
s/setpgrp/def_setpgrp/
2001-11-24 Fumitoshi UKAI <ukai@debian.or.jp>
* Makefile (indent): indent
* run make indent
2001-11-24 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02530]
* file.c (readHeader): NULL check for domain
2001-11-24 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02529]
* configure (ask_choice): fix bugs
* configure (include_opt): disable as much as if baby model
* configure: ask/def parameter after model selected
* fm.h (use_mark): runtime option use_mark
* main.c (_mark): ditto
* main.c (cmd_mark): ditto
* main.c (nextMk): ditto
* main.c (prevMk): ditto
* main.c (reMk): ditto
* rc.c (CMT_USE_MARK): ditto
* rc.c (params3): ditto
* fm.h (nextpage_topline): runtime option nextpage_topline
* etc.c (lineSkip): ditto
* main.c (nscroll): ditto
* rc.c (CMT_NEXTPAGE_TOPLINE): ditto
* rc.c (params3): ditto
* fm.h (label_topline): runtime option label_topline
* file.c (loadGeneralFile): ditto
* main.c (loadLink): ditto
* rc.c (CMT_LABEL_TOPLINE): ditto
* rc.c (params3): ditto
* fm.h (vi_prec_num): runtime option vi_prec_num
* main.c (pgFore): ditto
* main.c (pgBack): ditto
* rc.c (CMT_VI_PREC_NUM): ditto
* rc.c (params3): ditto
* fm.h (emacs_like_lineedit): runtime option emacs_like_lineedit
* linein.c (inputLineHist): ditto
* linein.c (_esc): ditto
* linein.c (next_dcompl): ditto
* rc.c (CMT_EMACS_LIKE_LINEEDIT): ditto
* rc.c (params3): ditto
* fm.h (ftppass_hostnamegen): runtime option ftppass_hostnamegen
* ftp.c (FtpLogin): ditto
* rc.c (CMT_FTPPASS_HOSTNAMEGEN): ditto
* rc.c (params9): ditto
2001-11-24 Akihiro Sagawa <sagawa@sohgoh.net>
* [w3m-dev 02528] RFC2732 URL Patch
* main.c (chkURL): check RFC2732 style URLs
* url.c (parseURL): remove RFC2732 address check here,
move to openSocket()
* url.c (openSocket): check RFC2732 style hostname
* url.c (openSocket): check IPv4 address strictly
2001-11-24 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02526]
* .cvsignore: add inflate mktable w3m w3mbookmark w3mhelperpanel
_zdmachdep.c
* configure:
pref_lang -> lang={JA|EN}
dcode -> display_code
scode -> system_code
remove save_params()
add def_param(), ask_choice() ask_param()
all confiration parameters can be read from config.param
s/DICT/USE_DICT/
s/BUFINFO/USE_BUFINFO/
* fm.h: s/DICT/USE_DICT/
* proto.h: ditto
* doc/README.dict: ditto
* doc-jp/README.dict: ditto
* display.c: s/BUFINFO/USE_BUFINFO/
* main.c: s/DICT/USE_DICT/ s/BUFINFO/USE_BUFINFO/
2001-11-24 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02523]
* table.c (feed_table_tag):
fix problem of anchor tag with name attribute only
2001-11-23 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02511]
* terms.c (isWinConsole): added
2001-11-22 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02509] ([w3m-dev 02499] [w3m-dev 02508])
* terms.c (setlinescols): initialize LASTLINE
* terms.c: add LASTLINE
* fm.h: extern int LASTLINE
* linein.c: remove defined(__CYGWIN__) && defined(JP_CHARSET)
* main.c: remove MOUSE_* definition
* terms.h: move MOUSE_* definition from main.c
* terms.c: add tty
* terms.c (check_win32_console): added
* terms.c (init_win32_console_handle): ditto
* terms.c (read_win32_console_input): ditto
* terms.c (read_win32_console): ditto
* terms.c (set_tty) add call init_win32_console
* terms.c (getch) use read_win32_console
* terms.c (mouse_init): check hConIn
* terms.c (mouse_end): ditto
2001-11-22 aito@fw.ipsj.or.jp
* [w3m-dev 02503]
* indep.c (getescapechar): allow incomplete entity references in URL
closes: Debian Bug#120540
2001-11-22 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02506]
* anchor.c (putHmarker): remove #ifdef __CYGWIN__ for bzero()
* matrix.h (m_copy): ditto
* table.c (pushTable): ditto
2001-11-22 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02505]
* configure (alarm): check alarm if USE_ALARM
2001-11-22 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02501]
* .cvsignore: add funcname.c funcname1.h funcname2.h tagtable.c
* scripts/.cvsignore: added, dirlist.cgi
* scripts/multipart/.cvsignore: added, multipart.cgi
* scripts/w3mman/.cvsignore: added, w3mman w3mman2html.cgi
* doc-jp/README.kokb: deleted
* gc/makefile.depend: deleted
2001-11-22 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* table.c (feed_table): fix the following table
<table border=1><tr><td>< <</table>
2001-11-22 WATANABE Katsuyuki <katsuyuki_1.watanabe@toppan.co.jp>
* [w3m-dev 02497]
* url.c (parseURL2): fix #ifdef __EMX__ code
* indep.c (cleanupName): remove #if 0 /* SUPPORT_NETBIOS_SHARE */ code
2001-11-22 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02494]
* configure (MIME_TYPES): check if mimetypes is empty
* configure (label_topline): add missing =
* configure (nextpage_topline): ditto
2001-11-22 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02493]
* scripts/multipart/Makefile: s/DISTDIR/DESTDIR/
2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02481]
* s/BG_COLOR/USE_BG_COLOR/
* s/ANSI_COLOR/USE_ANSI_COLOR/
* s/COLOR/USE_COLOR/
* s/MENU/USE_MENU/
* s/MOUSE/USE_MOUSE/
* [w3m-dev 02480] new configure
* config.h.dist: updated
* configure: $def_emacs_like_lineedit, $def_vi_prec_num
$def_label_topline, $def_nextpage_topline
$def_use_mark, $def_use_gopher, $def_use_alarm
* configure: add --{ssl,gc}-{include,lib}dir, --mimetypes
* configure: BoehmGC Debian hack
* XMakefile: add $(OPTS)
* terms.c: use HAVE_SYS_SELECT_H
* configure: add sys/select.h detection
* configure: no_float_h -> float_h
* configure: add chdir() detection
* local.c (localcgi_post): use HAVE_CHDIR instead of __EMX__
* local.c (localcgi_get): ditto
* main.c: <time.h> no need for #ifdef __EMX__
other files already do #include <time.h>
[w3m-dev 02479]
* rc.c (init_rc): remove #ifdef __EMX__ for tmpdir
* config.h.dit: updated
* url.c (openURL): use CGI_EXTENSION
add extlen
* rc.c (helpFile): remove #ifdef __EMX__
use w3m_help_dir()
* w3mbookmark.c (lib_dir): removed
* w3mbookmark.c (print_bookmark_panel): use w3m_lib_dir()
* rc.c (libFile): remove #ifdef __EMX__
use w3m_lib_dir()
* local.c (get_os2_dft): removed
* local.c (check_local_cgi): use w3m_lib_dir() instead of lib_dir
* local.c (cgi_filename): ditto
* indep.c (w3m_dir): added
* indep.c (w3m_lib_dir w3m_help_dir): ditto
* indep.h (w3m_lib_dir w3m_help_dir): ditto
* terms.c (set_tty): remove #ifdef __EMX__
use DEV_TTY_PATH
* local.c (localcgi_get): use DEV_NULL_PATH
* w3mhelperpanel.c (printMailcapPanal): remove #ifdef __EMX__
use W3mHELPERPANEL_CMDNAME
* rc.c (optionpanel_src1): ditto
* w3mbookmark.c (bkmark_src1): remove #ifdef __EMX__
use W3MBOOKMARK_CMDNAME
* main.c (adBmark): ditto
use w3m_lib_dir()
* terms.c (getTCstr): remove #ifdef __DJGPP__
use DEFAULT_TERM
check ent is NULL
* main.c (fusage): remove #ifdef SHOW_PARAMS
* main.c (MAIN): ditto
* rc.c (show_params): ditto
* fm.h (view_unseenobject): remove #ifdef VIEW_UNSEENOBJECTS
* url.c (check_no_proxy): remove #ifdef NOPROXY_NETADDR
* configure (show_params): removed
* configure (config.h):
- fix comment for USE_MARK
- add MENU_THIN_FRAME
- move $def_nntp (USE_NNTP), $def_ansi_color (ANSI_COLOR)
- remove VIEW_UNSEENOBJECTS
- remove $def_show_params (SHOW_PARAMS)
- define DEFAULT_TERM
- define W3MBOOKMARK_CMDNAME
- define W3MHELPERPANEL_CMDNAME
- define DEV_NULL_PATH
- define DEV_TTY_PATH
- define CGI_EXTENSION
[w3m-dev 02478]
* Makefile: make -> $(MAKE)
2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02473]
* scripts/Makefile: chmod +x
* scripts/Makefile: add clean target
* scripts/multipart/Makefile: ditto
* scripts/w3mman/Makefile: ditto
* XMakefile: clean scripts
* scripts/dirlist.cgi: removed from CVS
* Makefile (install-scripts): added
* XMakefile: (install-scripts): depends all-scripts
2001-11-21 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02470]
* XMakefile: all of scripts are generated by this instead of configure
* configure: add PERL, remove scripts/dirlist.cgi generation
* config.h.dist: add PERL
* scripts/Makefile: added
* scripts/multipart/Makefile scripts/w3mman/Makefile:
new scripts generation and installation
* scripts/multipart/README scripts/w3mman/README: update
2001-11-21 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02472] cleanup CYGWIN macro
* display.c (displayBuffer): use __CYGWIN__ macro
* fm.h: ditto
* terms.c (refresh): add condition for isWinConsole which
defined only japanese cygwin environment
2001-11-21 Akinori Ito <aito@fw.ipsj.or.jp>
* [w3m-dev 02466]
Homepage URLs and author's mail addresses in the documents
are changed.
2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02459]
* XMakefile: update scripts/dirlist.cgi generation
* scripts/multipart/multipart.cgi: removed
* scripts/w3mman/w3mman scripts/w3mman/w3mman2html.cgi: removed
* [w3m-dev 02462]
* scripts/dirlist.in scripts/dirlist.cgi: removed
* scripts/dirlist.cgi.in: added
2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
* add rcsids
2001-11-21 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02454]
* buffer.c (newBuffer): set COLS
* display.c (displayBuffer redrawLine redrawLineRegion
cursorRight arrangeCursor cursorXY):
new showLineNumber implementation
* main.c (ctrCsrH shiftvisualpos shiftl shiftr _movL _movR
_followForm follow_map process_mouse):
use buf->COLS, buf->rootX
* menu.c (popupMenu mainMn initSelectMenu):
use buf->rootX
* etc.c (columnSkip): use buf->COLS
* file.c (HTMLlineproc2body loadBuffer saveBufferDelNum getNextPage)
remove old showLineNumber codes
* fm.h (Buffer): add rootX, COLS
2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
* XMakefile (clean): rm tagtable.c
* .cvsignore: XXMakefile config.h config.param
2001-11-20 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02455]
* XMakefile.dist deflate.c: removed, not used
* tagtable.c: removed, autogenerated files
* XMakefile (mktable w3mbookmark w3mhelperpanel): use LIBS2
* configure: add $bsdlib
2001-11-20 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* frame.c (newFrameSet): fix possible buffer overrun
2001-11-20 Fumitoshi UKAI <ukai@debian.or.jp>
* XXMakefile config.h: removed from CVS
these are autogenerated files.
config.h is moved to config.h.dist as sample config file.
2001-11-20 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02449]
* file.c (HTMLtagproc1): reimplement meta refresh with
setAlarmEvent()
* fm.h: put back alarm related variables to main.c
add alarm related status flags
* main.c: put back alarm related variables from fm.h
alarm_once was renamed alarm_status
add alarm_buffer and setAlarmEvent()
* main.c (MAIN): cancel the alarm event if the buffer was
changed
* main.c (SigAlarm): ditto
* main.c (setAlarm): use setAlarmEvent()
* proto.h: add setAlarmEvent()
2001-11-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3mhelperpanel.c (extractMailcapEntry): remove unused variables
* istream.c (StrISgets): add parentheses around assignment used
as truth value
* XMakefile (clean): remove funcname.c funcname1.h funcname2.h
these are autogenerated files.
* funcname.c funcname1.h funcname2.h: removed from CVS
* main.c (MAIN): add braces to avoid ambiguous `else'
* main.c (set_buffer_environ): remove unused variables
* linein.c (_rcompl): not EMACS_LIKE_LINEEDIT only
* local.c (localcgi_get): remove unused variables
* mailcap.c (unquote_mailcap_loop): remove unused variables
* url.c (init_PRNG) add parentheses around assignment used as true value
* url.c (parseURL): remove unsed label
* url.c (parseURL2): remove unused variables
* ftp.c (ftp_escape_str ftp_restore_str): remove not used functions
* indep.c (getescapechar): remove unused variable
* proto.h: add missing prototypes
2001-11-20 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02447]
* terms.c (skip_escseq): is_xterm && ESC [ M <ch> <ch> <ch>
2001-11-20 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02448]
* terms.c (mouse_init): Gpm_Close() is required.
closes: Debian Bug#120221: w3m-ssl: trashes terminal on exit
2001-11-20 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 02444]
* XMakefile (funcname1.h funcname2.h): sort as well as funcname.c
2001-11-19 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02439]
* terms.c (xterm_mouse_term set_tty): add cygwin as xterm-style
mouse terminal
2001-11-19 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02436]
* main.c (GetWord): closes: #482763 segmentation fault in main.c
2001-11-19 Fumitoshi UKAI <ukai@debian.or.jp>
* gc/.cvsignore:
remove gctest, if_mach, if_not_there, threadlibs
closes: #482765 i386 binaries in gc directory
2001-11-17 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02432]
* configure: follow autoconf conventions
STRCASECMP -> HAVE_STRCASECMP
STRCHR -> HAVE_STRCHR
STRERROR -> HAVE_STRERROR
SYS_ERRLIST -> HAVE_SYS_ERRLIST
NOBCOPY -> HAVE_BCOPY
GETCWD -> HAVE_GETCWD
GETWD -> HAVE_GETWD
READLINK -> HAVE_READLINK (HAVE_LSTAT?)
TERMIO -> HAVE_TERMIO_H
TERMIOS -> HAVE_TERMIOS_H
SGTTY -> HAVE_SGTTY_H
DIRENT -> HAVE_DIRENT_H
NO_FLOAT_H -> HAVE_FLOAT_H
* etc.c fm.h config.h: HAVE_STRCASECMP
* etc.c config.h file.c: HAVE_STRCHR
strchr() moved from file.c to etc.c
* etc.c config.h: HAVE_STRERROR
* etc.c config.h main.c (MAIN): HAVE_SYS_ERRLIST
* etc.c fm.h: HAVE_BCOPY
* etc.c indep.c (currentdir) config.h: HAVE_GETCWD
* indep.c (currentdir) config.h: HAVE_GETWD
* form.c (form_write_from_file) local.c (dirBuffer)
config.h: HAVE_READLINK
* config.h terms.c: HAVE_TERMIO_H, HAVE_TERMIOS_H, HAVE_SGTTY_H
* config.h local.h: HAVE_DIRENT_H
* config.h matric.c: HAVE_FLOAT_H
* anchor.c cookie.c file.c parsetagx.c regex.c table.c url.c:
remove include <strings.h> ifdef __EMX__
it will be included in fm.h
* frame.c: remove include <strings.h> for bzero() and bcopy()
these are declared in fm.h
* indep.c: remove include <strings.h> for bcopy()
this is declared in fm.h
* istream.c mailcap.c: remove include <strings.h> for bzero()
this is declared in fm.h
* parsetag.c: remove include <strings.h> for bzero()
no bzero() used in this file
* [w3m-dev 02431]
* terms.c (set_tty): "rxvt" is xterm
(getTCstr): tgetstr("Km", &pt) is not xterm, removed
(mouse_init): check Gpm_Open() == -2 to detect xterm when USE_GPM
2001-11-16 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02418]
* main.c (chkURL): add mailto: like pattern to mark as anchor
* search.c (forwardSearch): check whether currentLine is NULL
* search.c (backwardSearch): ditto
2001-11-16 Dai Sato <satodai@dog.intcul.tohoku.ac.jp>
* [w3m-dev-en 00641] Re: w3m-0.2.1-inu-1.6
* configure: add some dirs for zlib and mime.types
2001-11-16 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02417]
* terms.c (mouse_init): fix mouse handling on TERM=linux
if Gpm_Open() successed, set is_xterm = 0 so that
w3m uses gpm functions.
2001-11-16 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02408] meta refresh
* file.c (HTMLtagproc1):
use MetaRefresh
add case refresh > 0
* fm.h:
add MetaRefresh
move alarm related definition from main.c
* main.c:
move alarm releated definition to fm.h
(SigAlarm): alarm_once
* rc.c:
add CMT_META_REFRESH
* [w3m-dev 02415]
* file.c (loadHTMLBuffer):
pushText() to clean up temporary files
* [w3m-dev 02414]
* file.c (loadHTMLstream):
SETJMP and signal after buffer is initialized
* [w3m-dev 02413]
* main.c (reMark):
don't save invalid regexp to MarkString
2001-11-15 aito@eie.yz.yamagata-u.ac.jp
* release-0-2-2
* Update to w3m-0.2.1-inu-1.6
2001-11-09 aito@eie.yz.yamagata-u.ac.jp
* release-0-2-1-inu-1-5
* Updates from 0.2.1 into 0.2.1-inu-1.5
2001-11-08 aito@eie.yz.yamagata-u.ac.jp
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.184 2001/12/26 18:29:33 ukai Exp $
|