forked from emacs-w3m/emacs-w3m
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.1
6731 lines (4985 loc) · 240 KB
/
ChangeLog.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-02-25 TSUCHIYA Masatoshi <[email protected]>
* w3m-proc.el (w3m-process-filter): Use `ignore-errors' instead of
`condition-case'.
(w3m-process-y-or-n-p): Regist answers only when they have non-nil
values.
2002-02-24 TSUCHIYA Masatoshi <[email protected]>
* w3m-perldoc.el: New file.
* w3m.el (top): Add autoload for `w3m-perldoc.el'.
(w3m-tmp-urluser-alist): Abolished.
(w3m-read-file-name): Call `w3m-url-strip-query'.
(w3m-download): Ditto.
(w3m-w3m-get-header): Accept URLs which includes authentication
information like scheme://user:pass@netloc/. Set `w3m-current-url'
before `w3m-process-start' is called.
(w3m-w3m-dump-head-source): Ditto.
(w3m-retrieve): Call `w3m-url-strip-fragment'.
(w3m-retrieve-and-render): Modified to accept URLs which includes
authentication information. Do not set `w3m-current-url'.
(w3m-goto-url): Modified to accept URLs which includes authentication
information and to pass them through to sub-routines.
(w3m): Small modified to accept URLs which includes authentication
information.
* w3m-util.el (w3m-url-authinfo-regexp): New internal constant.
(w3m-url-authinfo): New function.
(w3m-url-strip-authinfo): Ditto.
(w3m-url-strip-fragment): Ditto.
(w3m-url-strip-query): Ditto.
* w3m-proc.el (top): No bind `w3m-tmp-urluser-alist'.
(w3m-process-authinfo-alist): Renamed from `w3m-process-user-alist'.
(w3m-process-accept-list): Abolished.
(w3m-process-accept-alist): New internal variable.
(w3m-process-user-counter): Abolished.
(w3m-process-start-process): In order to set `w3m-process-user' and
`w3m-process-passwd' call `w3m-url-authinfo', instead of refering
`w3m-tmp-urluser-alist'.
(w3m-process-stop): Reset `w3m-process-authinfo-alist' and
`w3m-process-accept-alist'.
(w3m-process-sentinel): Regist an authentication information only when
`w3m-process-realm' is set.
(w3m-process-filter): Call `w3m-process-y-or-n-p' instead of
`w3m-process-accept-get' and `w3m-process-accept-set'. When a user
name and a password of a proxy server are reasked, their old values are
discarded. Reconstruct the part checking user names and passwords.
(w3m-process-get-server-root): Its regular expression are small
modified. Call `w3m-url-strip-authinfo'.
(w3m-process-get-user): Removed.
(w3m-process-get-passwd): Ditto.
(w3m-process-set-user): Ditto.
(w3m-process-accept-get): Ditto.
(w3m-process-accept-set): Ditto.
(w3m-process-set-authinfo): New function.
(w3m-process-read-user): Ditto.
(w3m-process-read-passwd): Ditto.
(w3m-process-y-or-n-p): Ditto.
2002-02-14 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-modeline-ssl-image-status-on)
(w3m-modeline-ssl-status-off): New constants.
(w3m-current-ssl): New buffer local variable.
(w3m-clear-local-variables, w3m-copy-local-variables): Handling
`w3m-current-ssl'.
(w3m-w3m-attributes): When detect `W3m-ssl-certificate:' header, set
`w3m-current-ssl'. Skip reading of folded lines of each header.
(w3m-buffer-setup): Display SSL indicator at mode-line.
(w3m-about-header): Display SSL information when exist
`W3m-ssl-certificate:' header.
2002-02-13 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-read-file-name): Strip the query part from a default file
name.
(w3m-download): Ditto.
(w3m-url-components-regexp): Move forward.
* mime-w3m.el: Always require `font' under XEmacs.
2002-02-12 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-async-exec): Default to nil under MacOS X.
2002-02-12 Hideyuki SHIRAI <[email protected]>
* w3m-e21.el (w3m-setup-favicon): Fix handling of
`w3m-about-xxxx-favicon'.
2002-02-08 Yuuichi Teranishi <[email protected]>
* w3m.el (w3m-icon-data): New buffer local variable.
(w3m-clear-local-variables): Add `w3m-icon-data'.
(w3m-copy-local-variables): Ditto.
(w3m-fontify-anchors): Setup `w3m-icon-data'.
(w3m-check-link-tags): Parse `type' of link attribute; Set
`w3m-icon-data' if `icon' rel attribute exist.
(w3m-goto-url): Added local variable real-data.
* w3m-e21.el (w3m-favicon-cache-favicon): Added compatibility code.
(w3m-setup-favicon): Use w3m-icon-data if it exists; Changed first
argument for `w3m-retrieve-favicon'.
(w3m-buffer-favicon): Use car of `w3m-current-favicon-data' as image
data and cdr as image type.
(w3m-retrieve-favicon): Changed first argument to cons cell of image
data and its type.
2002-02-08 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-save-list): Allow the 4th arg `escape-ctl-chars'.
(w3m-arrived-shutdown): Call it with the 4th arg.
* w3m-antenna.el (w3m-antenna-shutdown): Call `w3m-save-list' with the
4th arg.
2002-02-08 Yuuichi Teranishi <[email protected]>
* w3m.el (w3m-pixels-per-line): Renamed from w3m-pixel-per-line; Fixed
custom type.
(w3m-pixels-per-character): Likewise.
(w3m-rendering-half-dump): Follow the changes above.
2002-02-08 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-type): Considerd as an internal variable.
(w3m-options): Removed.
(w3m-compile-options): New internal variable.
(toplevel): Set `w3m-compile-options' instead of `w3m-options'.
(w3m-treat-image-size): Refer `w3m-compile-options' instead of
`w3m-options'.
(w3m-rendering-half-dump): Ditto.
(w3m-local-file-type): When a remote URL is passed, refer its
non-directory part to decide its content type.
(w3m-touch-file): Bind `default-directory' locally.
2002-02-08 Yuuichi Teranishi <[email protected]>
* w3m.el (w3m-pixel-per-line): New user option.
(w3m-rendering-half-dump): Use `w3m-pixel-per-line' as the -ppl
argument of the w3m command.
(w3m-pixel-per-character): New user option.
(w3m-rendering-half-dump): Use `w3m-pixel-per-character' as the -ppc
argument of the w3m command.
2002-02-07 Yuuichi Teranishi <[email protected]>
* w3m-e21.el (w3m-favicon-size): Set default value to nil.
(w3m-buffer-favicon): If w3m-favicon-size is nil, detect frame char
height and use it.
* w3m.el (w3m-command): Set default value to nil.
(w3m-type): Ditto.
(w3m-options): New user option.
(toplevel): Set w3m-command, w3m-type and w3m-options.
(w3m-treat-image-size): New user option.
(w3m-rendering-half-dump): Set rendering options -o
display_image=on/off, -ppc, -ppl according to the value of
`w3m-treat-image-size'.
2002-02-07 Katsumi Yamaoka <[email protected]>
* w3m-util.el (w3m-display-message): New macro.
* w3m.el (w3m-make-help-echo): Clear the echo area when Emacs 21 is
running; use the modern styles of backquote.
(w3m-make-balloon-help): Use the modern styles of backquote.
(w3m-toggle-inline-image): Use `w3m-display-message' instead of
`message' to say a trivial message.
(w3m-view-this-url): Ditto.
(w3m-submit-form): Ditto.
(w3m-view-image): Ditto.
(w3m-save-image): Ditto.
(w3m-download-this-url): Ditto.
(w3m-print-current-url): Ditto.
(w3m-print-this-url): Ditto.
(w3m-edit-this-url): Ditto.
(w3m-quit): Ditto.
(w3m-goto-ftp-url): Ditto.
(w3m-select-buffer): Ditto.
(w3m-select-buffer-show-this-line): Ditto.
(w3m-select-buffer-show-this-line-and-switch): Ditto.
2002-02-07 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-after-cursor-move-hook): New option.
(w3m-check-current-position): New function.
(w3m-print-this-url-after-command): Removed.
(w3m-buffer-setup): Set `w3m-check-current-position' to
`post-command-hook', instead of `w3m-print-this-url-after-command'.
(w3m-add-local-hook): Check version of Emacsen dynamically.
* w3m-e21.el (w3m-add-local-hook): New function.
2002-02-07 Yuuichi Teranishi <[email protected]>
* w3m.el (w3m-fontify-images): Changed regexp to more generic one to
search img_alt tag.
(w3m-toggle-inline-images-internal): Fixed image redisplay flickers.
2002-02-06 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-halfdump-command-common-arguments): Replace `frame-width'
with `window-width'.
(w3m-about-db-history): Ditto.
2002-02-05 Hideyuki SHIRAI <[email protected]>
* w3m-proc.el (w3m-process-accept-list): New internal variable.
(w3m-process-filter): Watch `accept? (y/n)' for certification.
(w3m-process-accept-get, w3m-process-accept-set): New functions.
2002-02-05 Katsumi Yamaoka <[email protected]>
* w3m-xmas.el (w3m-make-ccl-coding-system): Alias to `ignore' if
no-MULE (the feature `mule' is not provided).
(coding-system-category): Ditto.
(define-ccl-program): Define it as an empty macro if no-MULE.
* w3m.el (TopLevel): Don't require `ccl' if no-MULE.
(w3m-accept-japanese-characters): Default to nil if no-MULE.
(w3m-coding-system): Default to `iso-8859-1' if no-MULE.
(w3m-output-coding-system): Ditto.
(w3m-file-coding-system): Ditto.
(w3m-toolbar): Don't express some Japaneses chars directly.
* w3mhack.el (w3mhack-examine-modules): Don't byte-compile w3m-ucs.el,
shimbun modules, mime-w3m.el, octet.el and w3m-weather.el if no-MULE.
2002-02-05 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-meta-content-type-charset-regexp)
(w3m-meta-charset-content-type-regexp)
(w3m-meta-refresh-content-regexp)
(w3m-meta-content-refresh-regexp): Remove redundant double quote.
* w3m.el (w3m-content-prepare-functions): New internal contsant.
(w3m-prepare-content): Refer it.
(w3m-prepare-text-content): New function.
(w3m-prepare-image-content): Ditto.
2002-02-05 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-meta-charset-content-type-regexp)
(w3m-meta-content-refresh-regexp): Allow broken quotation mark.
2002-02-05 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-touch-file): Robust checking.
2002-02-05 Hideyuki SHIRAI <[email protected]>
* w3m-util.el (w3m-which-command): If called with `not string', return
nil.
2002-02-05 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-touch-file-avaiable-p): New internal variable.
(w3m-touch-file): Check the validity of `touch' command.
2002-02-05 ARISAWA Akihiro <[email protected]>
* w3m.el (w3m-touch-file): Call touch command with "-t time" instead of
"-d time".
2002-02-05 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-touch-command): New option.
(w3m-touch-file): New function.
(w3m-download): Call it.
(w3m-toggle-inline-images-internal): Fix inconsistency of text
properties when images are not downloaded.
(w3m-toggle-inline-image): Simplified.
(w3m-toggle-inline-images): Ditto.
2002-02-04 Katsumi Yamaoka <[email protected]>
* w3m-util.el (w3m-prin1): New function.
* w3m.el (w3m-save-list): Use it instead of `prin1'.
* w3mhack.el, w3m.el, w3m-xmas.el, w3m-om.el: Say emacs-w3m not
Emacs-W3M.
2002-02-04 Katsumi Yamaoka <[email protected]>
* mime-w3m.el (mime-w3m-mode-dont-bind-keys): New variable.
(mime-w3m-setup): Don't bind keys listed in the above.
* w3m.el (w3m-key-binding): Switch key bindings also in w3m-mode
buffers when customizing; don't manipulate keymaps when Emacs is
running in the batch mode.
2002-02-01 Yuuichi Teranishi <[email protected]>
* octet.el (octet-suffix-type-alist): Added lzh, tar, pdf.
(octet-type-filter-alist): Ditto.
(octet-content-type-alist): Added application/x-msexcel, text/html,
application/x-tar, application/pdf.
(octet-magic-type-alist): Fixed magic for html.
(octet-tar-mode): New function.
(octet-guess-type-from-name): Downcase suffix.
(octet-mime-setup): Add action for application/vnd.ms-powerpoint.
2002-02-01 Katsumi Yamaoka <[email protected]>
* mime-w3m.el (mime-w3m-safe-url-regexp): New user option.
(mime-w3m-preview-text/html): Use it.
* w3m.el (w3m-key-binding): Don't eval a part of the `set:' form when
compiling nnshimbun.el in the Gnus source tree.
2002-02-01 Yuuichi Teranishi <[email protected]>
* octet.el (octet-buffer): Fixed problem when 'Quit'.
(mime-preview-octet-hook): New hook.
(mime-preview-octet): Run it.
(w3m-about-octet-attachments): Fixed problem when there's no
octet-attachment which corresponds to the src url.
(mime-view-octet): Set content-type argument for `octet-buffer'.
(mime-preview-octet): Ditto.
2002-02-01 Katsumi Yamaoka <[email protected]>
* mime-w3m.el (mime-w3m-preview-text/html): Bind `w3m-force-redisplay'
with nil.
2002-02-01 Yuuichi Teranishi <[email protected]>
* octet.el (octet-buffer): Set default of `completing-read'.
2002-02-01 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-key-binding): Switch `w3m-mode-map', `mime-w3m-mode-map'
and `mm-w3m-mode-map' when customizing.
2002-01-31 Katsumi Yamaoka <[email protected]>
* mime-w3m.el (mime-w3m-mode-command-alist): New variable.
(mime-w3m-setup): Use it; invalidate widget button in
`mime-w3m-mode-map'.
(mime-w3m-keymap-property): Removed.
(mime-w3m-preview-text/html): Add `text-rendered-by-mime-w3m' text
property to the rendered area.
(kill-new): Strip keymap properties from a killed string only if it has
`text-rendered-by-mime-w3m' property.
2002-01-31 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-url-at-point): Remove all text-properties from url.
* w3m-search.el (w3m-search): Remove all text-properties from default
search value.
2002-01-31 TSUCHIYA Masatoshi <[email protected]>
* w3m-search.el (w3m-search-word-at-point): New option.
(w3m-search): Refer `w3m-search-word-at-point'.
2002-01-31 Yuuichi Teranishi <[email protected]>
* octet.el (octet-content-type-alist): Added text/html.
(octet-magic-type-alist): Likewise.
(octet-type-filter-alist): Likewise; Added `guess'; Changed result type
of gzip as `guess'.
(octet-find-file-hook): New hook.
(octet-find-file): Run it.
(octet-filter-guess): New function.
(octet-buffer): Fix.
2002-01-30 Yuuichi Teranishi <[email protected]>
* octet.el (toplevel): Require 'static.
(octet-html-render-function): Changed default value to
`octet-w3m-region.'
(octet-type-filter-alist): Changed filter function to
`octet-filter-call2-extra'.
(octet-attachments): New buffer-local variable.
(w3m-about-octet-attachments): New function.
(octet-w3m-region): Ditto.
(octet-filter-call2-extra): New function.
(octet-find-file): Do nothing when buffer is read-only.
* w3m.el (w3m-about-retrieve): Decode buffer only if the content-type
is text.
* octet.el (octet-guess-type-from-name): Return nil if guess failed.
(octet-buffer): Ask octet type if guess failed.
(octet-content-type-alist): New variable.
(octet-guess-type-from-content-type): New function.
(octet-buffer): Added optional argument `content-type'.
(octet-buffer): Ignore `quit'.
(octet-suffix-type-alist): Added images.
(octet-content-type-alist): Ditto.
(octet-type-filter-alist): Ditto.
(octet-magic-type-alist): Renamed from mime-magic-type-alist.
(octet-decode-image): New function.
(octet-guess-type-from-magic): New function.
(octet-buffer): Use it.
(octet-insert-buffer): New function.
(mime-preview-octet): Use it.
2002-01-29 Yuuichi Teranishi <[email protected]>
* octet.el (octet-type-filter-alist): Changed default value for xlhtml
and ppthtml.
(octet-filter-call2): Fixed problem when return value of call-process
is not numeric.
(octet-filter-call1): Ditto.
(octet-find-file): Use unwind-protect.
(octet-filter-call2): Fixed docstring.
(octet-filter-call1): Ditto.
(octet-buffer): Fixed argument for `interactive'.
2002-01-29 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-encoding-type-alist): New option.
(w3m-local-file-type): New function.
(w3m-local-content-type): New implementation.
(w3m-local-attributes): Call `w3m-local-file-type' instead of
`w3m-local-content-type'.
(w3m-download): `url' is lexically binded. Call `message' to display
error messages.
* w3mhack.el (w3mhack-examine-modules): Fix to avoid that octet.el is
byte-compiled repeatedly.
2002-01-29 Yuuichi Teranishi <[email protected]>
* w3mhack.el (w3mhack-examine-modules): Add octet.el to the module list
if FLIM is installed.
* octet.el: New file.
2002-01-25 Yuuichi Teranishi <[email protected]>
* w3m.el (w3m-highlight-current-anchor): Don't search for the anchor
points which are out of sight.
2002-01-25 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-tmp-urluser-alist): New variable.
(w3m-goto-url): If URL include user and passwd, set
`w3m-tmp-urluser-alist' for process handling. Remove passwd from URL.
(w3m): Remove passwd from URL when insert it in buffer.
* w3m-util.el (w3m-get-user-passwd-from-url)
(w3m-remove-passwd-from-url): New functions.
* w3m-proc.el (top): Define `w3m-tmp-urluser-alist' to avoid
byte-compile warning.
(w3m-process-start-process): If URL include user or passwd, set them to
default values.
(w3m-process-filter): Use default values of `w3m-process-user' and
`w3m-process-passwd'.
(w3m-process-get-server-root): Remove `about://.../' from server root.
* w3m-search.el (w3m-search): Insert default string in minibuffer.
2002-01-25 Yuuichi Teranishi <[email protected]>
* w3m.el (w3m-about-history): Don't add to history if url is nil.
(w3m-print-this-url-after-command): Call
`w3m-highlight-current-anchor'.
(w3m-delete-all-overlays): New macro.
(w3m-highlight-current-anchor): New function.
(w3m-current-anchor-face): New face.
(w3m-arrived-anchor-face): Removed underline property.
(w3m-anchor-face): Ditto.
2002-01-18 OHASHI Akira <[email protected]>
* w3m.el (w3m-header-line-map): Inherit `w3m-mode-map'.
2002-01-15 TSUCHIYA Masatoshi <[email protected]>
* w3m-e21.el (w3m-setup-favicon): Reversed the condition that decide
whether favicons are used.
2002-01-15 Hideyuki SHIRAI <[email protected]>
* w3m-e21.el (w3m-setup-favicon): If url is `ftp://', not retrieve a
favicon data.
* w3m.el (w3m-current-directory): New function.
(w3m-goto-url): Use `w3m-current-directory' when set
`default-directory'.
2002-01-12 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-use-ange-ftp): New option.
(w3m-w3m-attributes): Handle ftp scheme URLs.
(w3m-download): Refer `w3m-use-ange-ftp'.
(w3m-goto-url): Ditto.
2002-01-11 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-read-file-name): Remove an optional argument
`initial'. Call `read-file-name' without `default' option.
2002-01-11 ARISAWA Akihiro <[email protected]>
* w3m.el (w3m-url-encode-string): Fixed for Mule2.
* w3m-util.el (w3m-truncate-string): New function.
* w3m-form.el (w3m-form-replace): Use `w3m-truncate-string' instead of
`truncate-string'.
2002-01-11 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-region): Process <base> tag.
2002-01-09 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-local-content-type): Fix handling of the remote url.
(w3m-file-directory-p): New function.
(w3m-goto-ftp-url): Use `w3m-file-directory-p' instead of
`file-directory-p'.
2002-01-08 TSUCHIYA Masatoshi <[email protected]>
* Release emacs-w3m-1.2.4 from emacs-w3m-1_2 branch.
2002-01-08 ARISAWA Akihiro <[email protected]>
* w3m.el (w3m-arrived-setup-hook): New hook.
(w3m-arrived-shutdown-hook): Ditto.
(w3m-arrived-setup): Run `w3m-arrived-setup-hook'.
(w3m-arrived-shutdown): Run `w3m-arrived-shutdown-hook'.
(w3m-quit): Don't remove `w3m-arrived-shutdown' from `kill-emacs-hook'.
* w3m-e21.el (w3m-favicon-cache-expire-wait): New user option.
(w3m-favicon-cache-p): New macro.
(w3m-favicon-cache-favicon): Ditto.
(w3m-favicon-cache-retrived): Ditto.
(w3m-retrieve-favicon): Don't use old cache data.
(w3m-favicon-cache-data): Renamed from `w3m-favicon-data-cache'.
(w3m-favicon-save-cache-file): Follow above change.
(w3m-favicon-load-cache-file): Ditto.
(w3m-arrived-setup-hook): Regist `w3m-favicon-load-cachee-faile'.
(w3m-arrived-shutdown-hook): Regist `w3m-favicon-save-cache-file'.
2002-01-08 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-goto-url): Use a URL-like string under the cursor as the
initial value of the target URL when interactively called.
(w3m-view-this-url): When a URL-like string is found under the cursor,
view it.
(w3m-view-this-url-1): New internal function.
2002-01-08 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-display-hook): Change default variable to `nil'.
(top): Use `add-hook' when `w3m-history-highlight-current-url',
`w3m-move-point-for-localcgi' and `w3m-select-buffer-update' set to
`w3m-display-hook'.
(w3m-local-dirlist-cgi): When use `dirlist.cgi', decode filename tag.
2002-01-07 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-url-to-file-name): When the pointed file is not found,
decode the specified URL and recheck it.
2002-01-07 Shiro Takeda <[email protected]>
* w3m.el (w3m-bold-face, w3m-underline-face): New faces.
(w3m-fontify-bold): Use `w3m-bold-face' instead of `bold'.
(w3m-fontify-underline): Use `w3m-underline-face' instead of
`underline'.
2002-01-07 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-w32-browser-with-fiber): Fix handling of the local url.
* w3m-util.el (w3m-url-local-p): Fix its regexp for Windows.
2002-01-07 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-about-header): Protect against null title.
(w3m-arrived-setup): Ignore database of arrived URLs in too old style.
2002-01-05 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-url-encode-string): Add a period to the set of characters
which are not encoded. From Fabrice Bauzac <[email protected]>
2001-12-31 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-add-local-hook): New function.
(w3m-current-position): New buffer local variable.
(w3m-store-current-position): New hook function.
(w3m-print-this-url-after-command): New hook funtcion.
(w3m-buffer-setup): Regist these hook functions.
(w3m-header-line-location-title-face): Integrated with the defition in
w3m-e21.el
(w3m-header-line-location-content-face): Ditto.
(w3m-header-line-map): Ditto.
(w3m-header-line-insert): Renamed from `w3m-insert-header-line'.
* w3m-e21.el (w3m-header-line-location-title-face): Integrated to the
defition in w3m.el.
(w3m-header-line-location-content-face): Ditto.
(w3m-header-line-map): Ditto.
(w3m-setup-header-line): Clean up.
(w3m-insert-header-line): Removed.
2001-12-30 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-url-to-file-name): Fix its regexp.
2001-12-30 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-print-this-url): Display a message when it is called
interactively.
2001-12-29 OHASHI Akira <[email protected]>
* w3m.el (w3m-print-this-url): Don't print any messages when there is
no url or form under point.
2001-12-29 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-url-local-directory-alist): Renamed from
`w3m-edit-url-directory-alist'.
(w3m-url-to-file-name): Return nil, when the specified URL points no
local file.
(w3m-url-completion): Modified its regexp. Fix completion of dot
files.
(w3m-edit-url): Simplified.
(w3m-goto-url): Removed the redundant local variable. Set
`default-directory' to the local directory to which the current URL is
related by `w3m-url-local-directory-alist'.
(w3m-about-history): Installed the ad-hoc workaround.
* w3m-util.el (w3m-url-dtree-p): Modified its regexp.
2001-12-26 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-decode-get-refresh): Not run Refresh timer if the URI is
matched `about://', .
(w3m-goto-url): Modify the timing to call `w3m-cancel-refresh-timer'.
2001-12-26 Katsumi Yamaoka <[email protected]>
* w3m-util.el: Autoload "timer" for the function `cancel-timer' when
Mule 2 is running.
2001-12-26 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-refresh-at-time): Run `w3m-goto-url-with-timer'
immediately, if the delay of refresh is zero.
* w3m-xmas.el (w3m-refresh-at-time): Removed.
2001-12-25 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-use-refresh): New user option.
(w3m-refresh-timer, w3m-current-refresh): New buffer-local variables.
(w3m-clear-local-variables, w3m-copy-local-variables): Handle
`w3m-current-refresh'.
(w3m-meta-refresh-content-regexp)
(w3m-meta-content-refresh-regexp): New constant.
(w3m-decode-buffer): Call `w3m-decode-get-refresh' first.
(w3m-decode-get-refresh): New function.
(w3m-view-previous-page): Bind `w3m-use-refresh' to nil.
(w3m-quit, w3m-close-window): Call `w3m-cancel-refresh-timer' at any
buffers.
(w3m-goto-url): Call `w3m-cancel-refresh-timer' first. Call
`w3m-refresh-at-time' at last; start REFRESH timer.
(w3m-goto-url-with-timer): New function.
(w3m-refresh-at-time): New function for FSF Emacs.
* w3m-xmas.el (w3m-refresh-at-time): New function for XEmacs.
* w3m-util.el (w3m-cancel-refresh-timer): New function.
(w3m-current-refresh, w3m-refresh-timer, w3m-use-refresh): Avoid
byte-compiled warnings.
* w3m-proc.el (w3m-process-stop): Call `w3m-cancel-refresh-timer'.
2001-12-24 ARISAWA Akihiro <[email protected]>
* w3m.el (w3m-dump-head-source-command-arguments) [w3mmee]: Support
`w3m-accept-languages'.
2001-12-21 TSUCHIYA Masatoshi <[email protected]>
* Release emacs-w3m-1.2.3 from emacs-w3m-1_2 branch.
2001-12-21 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-type): Changed condition to decide type.
(w3m-decoder-alist): Call `file-name-nondirectory' before `w3m-command'
is refered.
(w3m-dirlist-cgi-program): Ditto.
2001-12-21 ARISAWA Akihiro <[email protected]>
* w3m.el (w3m-type): Changed condition to decide type.
(w3m-decoder-alist): Use `w3m-command' for inflate command path.
(w3m-dirlist-cgi-program): Use `w3m-command'.
(w3m-dump-head-source-command-arguments) [w3mmee]: Don't add "-o
accept_language=xxx".
2001-11-16 OKAZAKI Tetsurou <[email protected]>
* w3m.el (w3m-type): Use "w3m-m17n" if exists.
2001-12-21 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-goto-mailto-url): Use the property `composefunc' to get
the function to compose a mail from `mail-user-agent'.
2001-12-20 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-load-list): Removed a bogus code for XEmacs; don't bind
the value of `file-coding-system-for-read' if the optional arg is nil
and `w3m-file-coding-system-for-read' is nil.
2001-12-19 Katsumi Yamaoka <[email protected]>
* w3mhack.el (w3m-use-favicon): Don't bind it.
* w3m-e21.el (w3m-use-favicon): Set it to nil anyway when Emacs is
running in the batch mode.
(w3m-imagick-convert-buffer): Reverted.
2001-12-19 Katsumi Yamaoka <[email protected]>
* w3m-e21.el (w3m-imagick-convert-buffer): Don't growl errors when
Emacs is running in the batch mode.
2001-12-18 ARISAWA Akihiro <[email protected]>
* w3m-e21.el (w3m-favicon-use-cache-file): New user option.
(w3m-favicon-cache-file): Ditto.
(w3m-favicon-data-cache): New variable.
(w3m-retrieve-favicon): Use `w3m-favicon-data-cache' or store it.
(w3m-favicon-save-cache-file): New function.
(w3m-favicon-load-cache-file): Ditto.
2001-12-17 Katsumi Yamaoka <[email protected]>
* w3m-e21.el (w3m-e21-toolbar-configurations): Replace
`auto-resize-tool-bar' to `auto-resize-tool-bars'.
2001-12-17 OHASHI Akira <[email protected]>
* README.shimbun.ja: Add information for sb-debian-jp.el and
sb-debian.el.
2001-12-17 Taiki SUGAWARA <[email protected]>
TSUCHIYA Masatoshi <[email protected]>
* w3m-form.el (w3m-form-parse-forms): Change the separater string for
option tag.
2001-12-12 Taiki SUGAWARA <[email protected]>
* w3m-form.el (w3m-form-parse-forms): If not find selected, first
element is made into default.
2001-12-14 Hideyuki SHIRAI <[email protected]>
* w3m-dtree.el (w3m-about-dtree): Ignore arguments on and after 4th.
2001-12-14 Katsumi Yamaoka <[email protected]>
Suggested by NAKAJIMA Mikio <[email protected]>.
* w3m-e21.el (w3m-use-favicon): Default to t, but it will be altered to
nil automatically if ImageMagick does not support a favicon; never use
ImageMagick if it has been set to nil.
* w3mhack.el (w3m-use-favicon): Bind it to nil to inhibit the use of
ImageMagick.
2001-12-12 Kazuyoshi Koreeda <[email protected]>
* w3m-weather.el (w3m-weather-insert-seikatu-sisu): New function.
(w3m-weather-get-seikatu-sisu): Ditto.
2001-12-10 ARISAWA Akihiro <[email protected]>
* w3m-form.el (w3m-form-parse-forms): Use `w3m-decode-entities-string'
to value in the textarea and option menu.
2001-12-11 Mito <[email protected]>
* w3m.el (w3m-scroll-left): Modify doc-string.
(w3m-scroll-right): Ditto.
2001-12-07 Katsumi Yamaoka <[email protected]>
* w3m-e21.el (w3m-imagick-convert-usable-p): New function.
(w3m-use-favicon): Use it.
2001-12-06 ARISAWA Akihiro <[email protected]>,
TSUCHIYA Masatoshi <[email protected]>
* w3m-e21.el (top): Installed the check of the validity of ImageMagick.
2001-12-06 TSUCHIYA Masatoshi <[email protected]>
* Release emacs-w3m-1.2.2 from emacs-w3m-1_2 branch.
2001-12-06 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-type): Follow the new official release of w3m.
(w3m-attributes): Follow the change of error symbols which are defined
in w3m-proc.el.
(w3m-retrieve): Ditto.
(w3m-about-header): Likewise. Ignore optional arguments safely.
(w3m-message): Display message only when original w3m buffer is
displayed.
(w3m-about-retrieve): Asynchronized.
(w3m-retrieve-and-render): Follow the change of `w3m-message'.
(w3m-prepare-content): Install the measure against narrowed buffers.
* w3m-proc.el (w3m-process-start-process): Accept the 2nd optional
argument to reset the sentinel funtcion for the generated asynchronous
process.
(w3m-process-failure): Removed.
(w3m-process-timeout): Simplified its error condition.
(w3m-process-with-wait-handler): No sentinel function is registered and
the sentinel function is called from this macro itself.
* w3m-weather.el (w3m-weather-filter-functions): Add
`w3m-weather-expand-anchors'.
(w3m-about-weather): Asynchronized.
(w3m-weather-remove-headers): Follow changes of original content.
(w3m-weather-remove-footers): Ditto.
(w3m-weather-expand-anchors): New filter function.
2001-12-06 Katsumi Yamaoka <[email protected]>
* w3m.el (w3m-emacs-w3m-icon): Made it interlaced and endlessly
animated.
2001-12-06 ARISAWA Akihiro <[email protected]>
* w3m.el (w3m-decode-buffer): When content-charset is unknown, detect
coding-system automatically.
2001-12-04 ARISAWA Akihiro <[email protected]>
* w3m-e21.el (w3m-buffer-favicon): Reset `w3m-current-favicon-data' to
nil when conversion was failure.
2001-12-04 Katsumi Yamaoka <[email protected]>
* w3m-e21.el (w3m-imagick-convert-buffer): Say errors and return nil if
the process returns a non-zero status (possibly a string).
2001-12-03 Hideyuki SHIRAI <[email protected]>
* w3m-xmas.el (w3m-create-image): Bind some arguments lexically for
w3m-fix-gif().
2001-12-04 Yuuichi Teranishi <[email protected]>
* w3m-e21.el (w3m-setup-favicon): Fix for "about://" url.
(w3m-buffer-favicon): Renamed local variable.
(w3m-tab-line): Call `w3m-buffer-favicon' only when w3m-use-favicon is
non-nil.
2001-12-03 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-modeline-process-status-on): Modify default value.
(w3m-buffer-setup): Simplified `mode-line-buffer-identification'.
2001-11-29 Yuuichi Teranishi <[email protected]>
* w3m-e21.el (w3m-imagick-convert-program): New user option.
(w3m-favicon-size): Ditto.
(w3m-use-favicon): Ditto.
(w3m-favicon-name): New constant.
(w3m-current-favicon-data): New buffer local variable.
(w3m-current-favicon-image): Ditto.
(w3m-display-hook): Added 'w3m-setup-favicon.
(w3m-imagick-convert-buffer): New function.
(w3m-imagick-convert-data): Ditto.
(w3m-setup-favicon): Ditto.
(w3m-buffer-favicon): Ditto.
(w3m-retrieve-favicon): Ditto.
(w3m-tab-line): Display favicon on tab.
2001-11-28 Yuuichi Teranishi <[email protected]>
* w3m-xmas.el (w3m-insert-image): Rewrite.
(if displayed images exist on the right side, keep them and display
again)
(w3m-remove-image): Call `delete-extent' to destroy extents.
2001-11-27 Yoichi NAKAYAMA <[email protected]>
* TIPS: New file.
2001-11-27 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-download-this-url): Fix a problem of broken URL.
2001-11-22 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (top, w3m-about): Change the URL of w3m's official page.
2001-11-21 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-max-anchor-sequence): New buffer local variable.
(w3m-copy-local-variables, w3m-clear-local-variables): Handle
`w3m-max-anchor-sequence'.
(w3m-fontify-anchors): Reset `w3m-max-anchor-sequence' to zero. Use
the text-property `w3m-anchor-sequence' insted of `w3m-cursor-anchor'.
(w3m-goto-next-anchor, w3m-next-anchor, w3m-goto-previous-anchor)
(w3m-previous-anchor): Rewrite use the text-property
`w3m-anchor-sequence'.
(w3m-next-form, w3m-goto-next-image, w3m-next-image)
(w3m-previous-image): Fix mistake as modified last time.
* w3m-util.el (w3m-anchor-sequence): New macro.
(w3m-cursor-anchor) Remove macro.
* w3m-form.el (w3m-form-fontify): Use the text-property
`w3m-anchor-sequence' insted of `w3m-cursor-anchor'.
2001-11-21 TSUCHIYA Masatoshi <[email protected]>
* w3m.el (w3m-download-this-url): Wrap the form which is evaluated in
asynchronous context with `w3m-process-with-null-handler', to fix the
bug reported by Hideyuki SHIRAI <[email protected]>.
* w3m-xmas.el (w3m-create-image): Modified to avoid calling
`w3m-process-with-wait-handler'.
2001-11-20 TSUCHIYA Masatoshi <[email protected]>
* w3m-proc.el (w3m-process-push): Set the buffer-local variable
`w3m-process-object' in the appropriate buffer.
(w3m-process-sentinel): Removed redundant call of
`with-current-buffer'.
* Makefile.in (default): Reintroduce of checking time stamps of
w3m-util.elc and w3m-proc.elc.
* w3m-proc.el (w3m-process-temp-file): Abolished.
* w3m.el (w3m-content-charset, w3m-content-encoding,
w3m-content-length, w3m-content-type, w3m-last-modified, w3m-real-url):
Fixed asynchrounization.
(w3m-download): Changed the argument spec and the body to accept an
asynchrounous context.
(w3m-external-view): Follow change of `w3m-download'.
(w3m-external-view-file): Changed the argument spec and the body;
`w3m-process-temp-file' is not refered.
(w3m-download-this-url): Follow change of `w3m-download'.
(w3m-scroll-left, w3m-scroll-right): Use `call-interactively' to avoid
a strange behavior of Emacs21. This change is suggested by Hironori
FUJII <[email protected]>.
* w3m-proc.el (w3m-process-failure): New error symbol.
(w3m-process-timeout): Change its error condition.
(w3m-process-with-wait-handler): Install adhoc workaround.
* w3m.el (w3m-attributes, w3m-retrieve, w3m-about-header): Follow
change of `w3m-process-with-wait-handler'.
2001-11-19 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-modeline-process-status-on): New constant.
(w3m-modeline-status-off): Rename from `w3m-modeline-image-status-off'.
(w3m-buffer-setup): Show the string of `w3m-modeline-process-status-on'
when process running.
(w3m-download): Add 4th argument `extview' for w3m-external-view(). If
`extview' is gived, apply `extview' on process-sentinel like (apply
(car extview) (cdr extview)).
(w3m-external-view): When execute `w3m-download', call with `extview'
argument.
(w3m-external-view-file): New function.
2001-11-19 Hideyuki SHIRAI <[email protected]>
* w3m.el (w3m-print-this-url): View current image info.
(w3m-goto-next-image, w3m-next-image, w3m-goto-previous-image)
(w3m-previous-image): New functions.
(w3m-lynx-like-map, w3m-info-like-map): Bind "}" as the key to call
`w3m-next-image'. Bind "{" as the key to call `w3m-previous-image'.
(w3m-mode): Modify dos-string.
2001-11-19 Masatake YAMATO <[email protected]>
* w3m.el (w3m-goto-next-form, w3m-next-form)
(w3m-goto-previous-form, w3m-previous-form): New functions.
(w3m-lynx-like-map, w3m-info-like-map): Bind "]" as the key to call
`w3m-next-form'. Bind "[" as the key to call `w3m-previous-form'.
2001-11-19 Kazuhiko <[email protected]>