-
Notifications
You must be signed in to change notification settings - Fork 11
/
navi2ch-head.el
209 lines (181 loc) · 7.24 KB
/
navi2ch-head.el
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
;;; navi2ch-head.el --- View a local rule mode for navi2ch -*- coding: iso-2022-7bit; -*-
;; Copyright (C) 2001, 2002, 2003, 2008 by Navi2ch Project
;; Author: $BI($rBG$D<T(B
;; Keywords: www, 2ch
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;;
;;; Code:
;;;; navi2ch-head.el
;; Preamble
(provide 'navi2ch-head)
(defconst navi2ch-head-ident
"$Id$")
(require 'navi2ch)
(eval-when-compile
(autoload 'w3m-region "w3m")
(autoload 'w3m-minor-mode "w3m"))
;; navi2ch-head-mode
(defvar navi2ch-head-mode-map nil
"$B%m!<%+%k%k!<%k$N%S%e%o!<$N%-!<%^%C%W!#(B")
(unless navi2ch-head-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map navi2ch-global-view-map)
(define-key map "q" 'navi2ch-head-exit)
(define-key map "l" 'navi2ch-head-exit)
(define-key map "M" 'navi2ch-head-select-current-w3m-link)
(setq navi2ch-head-mode-map map)))
(defvar navi2ch-head-file-name "head.txt")
(defvar navi2ch-head-buffer-name "*navi2ch head*")
(defvar navi2ch-head-current-board nil)
(defvar navi2ch-head-current-article nil)
(add-hook 'navi2ch-exit-hook 'navi2ch-head-kill-buffer)
(defun navi2ch-head-mode ()
"\\{navi2ch-head-mode-map}"
(interactive)
(kill-all-local-variables)
(setq major-mode 'navi2ch-head-mode)
(setq mode-name "Navi2ch Head")
(setq buffer-read-only t)
(buffer-disable-undo)
(use-local-map navi2ch-head-mode-map)
(run-hooks 'navi2ch-head-mode-hook))
;; Functions
(defun navi2ch-head-save-time (time &optional board)
(or board (setq board navi2ch-head-current-board))
(when board
(navi2ch-save-info (navi2ch-board-get-file-name board "head.info") time)))
(defun navi2ch-head-load-time (&optional board)
(or board (setq board navi2ch-head-current-board))
(navi2ch-load-info (navi2ch-board-get-file-name board "head.info")))
(defun navi2ch-head-kill-buffer ()
(let ((buf (get-buffer navi2ch-head-buffer-name)))
(when buf
(delete-windows-on buf)
(kill-buffer buf))))
(defun navi2ch-head-exit ()
"$B%m!<%+%k%k!<%k%P%C%U%!$r>C$9!#(B"
(interactive)
(run-hooks 'navi2ch-head-exit-hook)
(let ((exit (get-text-property (point-min) 'navi2ch-head-exit))
(board navi2ch-head-current-board)
(article navi2ch-head-current-article)
win buf)
(cond
((eq exit 'navi2ch-article-mode)
(setq buf (get-buffer (navi2ch-article-get-buffer-name board article)))
(if buf
(if (setq win (get-buffer-window buf))
(select-window win)
(switch-to-buffer buf))
(navi2ch-article-view-article board article)))
((eq exit 'navi2ch-board-mode)
(setq buf (get-buffer navi2ch-board-buffer-name))
(if buf
(if (setq win (get-buffer-window buf))
(select-window win)
(switch-to-buffer buf))
(navi2ch-bm-select-board board)))
((eq exit 'navi2ch-list-mode)
(setq buf (get-buffer navi2ch-list-buffer-name))
(if buf
(if (setq win (get-buffer-window buf))
(select-window win)
(switch-to-buffer buf))
(navi2ch-list))))
(navi2ch-head-kill-buffer)))
(defun navi2ch-head-select-current-w3m-link (&optional browse-p)
"Emacs-w3m $B$N%j%s%/$r(B navi2ch $B$r;H$C$F$?$I$k!#(B"
(interactive "P")
(let ((url (get-text-property (point) 'w3m-href-anchor)))
(if url
(if (and (navi2ch-2ch-url-p url)
(or (navi2ch-board-url-to-board url)
(navi2ch-article-url-to-article url))
(not browse-p))
(navi2ch-goto-url url)
(navi2ch-browse-url-internal url))
(message "No URL at point"))))
(defun navi2ch-head-set-mode-line ()
(setq navi2ch-mode-line-identification
(format "[%s]" (cdr (assq 'name navi2ch-head-current-board))))
(navi2ch-set-mode-line-identification))
;; Entry points from navi2ch-{article,board,list}-mode
(define-key navi2ch-article-mode-map "H" 'navi2ch-head-get-head-txt)
(define-key navi2ch-board-mode-map "H" 'navi2ch-head-get-head-txt)
(define-key navi2ch-list-mode-map "H" 'navi2ch-head-get-head-txt)
(defun navi2ch-head-get-head-txt (&optional force)
"$B%m!<%+%k%k!<%k$r;}$C$F$-$FI=<(!#(Bhead.txt $B$KJ]B8$7$A$c$&$h!#(B
emacs-w3m $B$,$"$l$P(B w3m $B$GI=<($7$^$D!#(B"
(interactive "P")
(cond ((eq major-mode 'navi2ch-article-mode)
(setq navi2ch-head-current-board navi2ch-article-current-board
navi2ch-head-current-article navi2ch-article-current-article))
((eq major-mode 'navi2ch-board-mode)
(setq navi2ch-head-current-board navi2ch-board-current-board
navi2ch-head-current-article nil))
((eq major-mode 'navi2ch-list-mode)
(setq navi2ch-head-current-board
(get-text-property (navi2ch-line-beginning-position) 'board)
navi2ch-head-current-article nil)
(unless (eq (cdr (assq 'type navi2ch-head-current-board)) 'board)
(setq navi2ch-head-current-board nil))))
(unless (or navi2ch-head-current-board navi2ch-head-current-article)
(error "Cannot get local rule here"))
(let* ((navi2ch-net-force-update (or navi2ch-net-force-update force))
(board navi2ch-head-current-board)
(uri (navi2ch-board-get-url board navi2ch-head-file-name))
(file (navi2ch-board-get-file-name board navi2ch-head-file-name))
(exit major-mode)
(win (or (get-buffer-window navi2ch-head-buffer-name)
(and (navi2ch-article-current-buffer)
(get-buffer-window (navi2ch-article-current-buffer)))
(get-buffer-window navi2ch-board-buffer-name)))
time header)
(unless (or navi2ch-offline
;; navi2ch-multibbs-head-update $BI,MW!)(B
(eq (navi2ch-multibbs-get-bbstype board) 'localfile))
(setq time (navi2ch-head-load-time))
(setq header (navi2ch-net-update-file uri file time))
(setq time (and (not (navi2ch-net-get-state 'not-updated header))
(not (navi2ch-net-get-state 'error header))
(or (cdr (assq 'last-modified header))
(cdr (assq 'date header)))))
(when time (navi2ch-head-save-time time)))
(when win (select-window win))
(set-buffer (get-buffer-create navi2ch-head-buffer-name))
(navi2ch-head-mode)
(let ((buffer-read-only nil))
(erase-buffer)
(when (file-exists-p file)
(navi2ch-insert-file-contents file))
(if (eq (point-max) (point-min))
(insert "'H'$B$r2!$9!#(B\n"
" $B"-(B\n"
"$BHD%m!<%+%k%k!<%k$r8+$k!#(B\n"
" $B"-(B\n"
"$BHD%m!<%+%k%k!<%k$O$J$$(B!\n"
" $B"-(B\n"
"((I_$B'U(I_(B)(IO<^3O0(B\n")
(when (locate-library "w3m")
(require 'w3m)
(w3m-region (point-min) (point-max) uri)
(w3m-minor-mode 1)))
(goto-char (point-min))
(put-text-property (point) (1+ (point)) 'navi2ch-head-exit exit)
(set-buffer-modified-p nil))
(switch-to-buffer (current-buffer))
(navi2ch-head-set-mode-line)))
(run-hooks 'navi2ch-head-load-hook)
;;; navi2ch-head.el ends here