Mercurial > emacs
annotate lisp/informat.el @ 18224:0e98af37970d
Comment change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 12 Jun 1997 00:50:08 +0000 |
parents | 985e47a14cab |
children | 11218164bc54 |
rev | line source |
---|---|
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
1 ;;; informat.el --- info support functions package for Emacs |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1986 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
7 |
257 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
257 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
257 | 24 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
25 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
26 |
257 | 27 (require 'info) |
28 | |
29 ;;;###autoload | |
30 (defun Info-tagify () | |
31 "Create or update Info-file tag table in current buffer." | |
32 (interactive) | |
33 ;; Save and restore point and restrictions. | |
34 ;; save-restrictions would not work | |
35 ;; because it records the old max relative to the end. | |
36 ;; We record it relative to the beginning. | |
37 (message "Tagifying %s ..." (file-name-nondirectory (buffer-file-name))) | |
38 (let ((omin (point-min)) | |
39 (omax (point-max)) | |
40 (nomax (= (point-max) (1+ (buffer-size)))) | |
41 (opoint (point))) | |
42 (unwind-protect | |
43 (progn | |
44 (widen) | |
45 (goto-char (point-min)) | |
46 (if (search-forward "\^_\nIndirect:\n" nil t) | |
47 (message "Cannot tagify split info file") | |
1880
36ec0bfbb2c2
* informat.el (Info-tagify): Correct the regular expression which
Jim Blandy <jimb@redhat.com>
parents:
923
diff
changeset
|
48 (let ((regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]") |
257 | 49 (case-fold-search t) |
50 list) | |
51 (while (search-forward "\n\^_" nil t) | |
10154
a864b7f97b56
(Info-tagify): Avoid 1-off error in position of a tag.
Richard M. Stallman <rms@gnu.org>
parents:
1880
diff
changeset
|
52 ;; We want the 0-origin character position of the ^_. |
a864b7f97b56
(Info-tagify): Avoid 1-off error in position of a tag.
Richard M. Stallman <rms@gnu.org>
parents:
1880
diff
changeset
|
53 ;; That is the same as the Emacs (1-origin) position |
a864b7f97b56
(Info-tagify): Avoid 1-off error in position of a tag.
Richard M. Stallman <rms@gnu.org>
parents:
1880
diff
changeset
|
54 ;; of the newline before it. |
a864b7f97b56
(Info-tagify): Avoid 1-off error in position of a tag.
Richard M. Stallman <rms@gnu.org>
parents:
1880
diff
changeset
|
55 (let ((beg (match-beginning 0))) |
a864b7f97b56
(Info-tagify): Avoid 1-off error in position of a tag.
Richard M. Stallman <rms@gnu.org>
parents:
1880
diff
changeset
|
56 (forward-line 2) |
257 | 57 (if (re-search-backward regexp beg t) |
58 (setq list | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
59 (cons (list (buffer-substring-no-properties |
257 | 60 (match-beginning 1) |
61 (match-end 1)) | |
62 beg) | |
63 list))))) | |
64 (goto-char (point-max)) | |
65 (forward-line -8) | |
66 (let ((buffer-read-only nil)) | |
67 (if (search-forward "\^_\nEnd tag table\n" nil t) | |
68 (let ((end (point))) | |
69 (search-backward "\nTag table:\n") | |
70 (beginning-of-line) | |
71 (delete-region (point) end))) | |
72 (goto-char (point-max)) | |
73 (insert "\^_\f\nTag table:\n") | |
18137
985e47a14cab
(Info-tagify): Don't set Info-tag-table-marker if not in Info mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
74 (if (eq major-mode 'info-mode) |
985e47a14cab
(Info-tagify): Don't set Info-tag-table-marker if not in Info mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
75 (move-marker Info-tag-table-marker (point))) |
257 | 76 (setq list (nreverse list)) |
77 (while list | |
78 (insert "Node: " (car (car list)) ?\177) | |
79 (princ (car (cdr (car list))) (current-buffer)) | |
80 (insert ?\n) | |
81 (setq list (cdr list))) | |
82 (insert "\^_\nEnd tag table\n"))))) | |
83 (goto-char opoint) | |
84 (narrow-to-region omin (if nomax (1+ (buffer-size)) | |
85 (min omax (point-max)))))) | |
86 (message "Tagifying %s ... done" (file-name-nondirectory (buffer-file-name)))) | |
87 | |
88 ;;;###autoload | |
89 (defun Info-split () | |
90 "Split an info file into an indirect file plus bounded-size subfiles. | |
91 Each subfile will be up to 50,000 characters plus one node. | |
92 | |
93 To use this command, first visit a large Info file that has a tag | |
94 table. The buffer is modified into a (small) indirect info file which | |
95 should be saved in place of the original visited file. | |
96 | |
97 The subfiles are written in the same directory the original file is | |
98 in, with names generated by appending `-' and a number to the original | |
99 file name. The indirect file still functions as an Info file, but it | |
100 contains just the tag table and a directory of subfiles." | |
101 | |
102 (interactive) | |
103 (if (< (buffer-size) 70000) | |
104 (error "This is too small to be worth splitting")) | |
105 (goto-char (point-min)) | |
106 (search-forward "\^_") | |
107 (forward-char -1) | |
108 (let ((start (point)) | |
109 (chars-deleted 0) | |
110 subfiles | |
111 (subfile-number 1) | |
112 (case-fold-search t) | |
113 (filename (file-name-sans-versions buffer-file-name))) | |
114 (goto-char (point-max)) | |
115 (forward-line -8) | |
116 (setq buffer-read-only nil) | |
117 (or (search-forward "\^_\nEnd tag table\n" nil t) | |
118 (error "Tag table required; use M-x Info-tagify")) | |
119 (search-backward "\nTag table:\n") | |
120 (if (looking-at "\nTag table:\n\^_") | |
121 (error "Tag table is just a skeleton; use M-x Info-tagify")) | |
122 (beginning-of-line) | |
123 (forward-char 1) | |
124 (save-restriction | |
125 (narrow-to-region (point-min) (point)) | |
126 (goto-char (point-min)) | |
127 (while (< (1+ (point)) (point-max)) | |
128 (goto-char (min (+ (point) 50000) (point-max))) | |
129 (search-forward "\^_" nil 'move) | |
130 (setq subfiles | |
131 (cons (list (+ start chars-deleted) | |
132 (concat (file-name-nondirectory filename) | |
133 (format "-%d" subfile-number))) | |
134 subfiles)) | |
135 ;; Put a newline at end of split file, to make Unix happier. | |
136 (insert "\n") | |
137 (write-region (point-min) (point) | |
138 (concat filename (format "-%d" subfile-number))) | |
139 (delete-region (1- (point)) (point)) | |
140 ;; Back up over the final ^_. | |
141 (forward-char -1) | |
142 (setq chars-deleted (+ chars-deleted (- (point) start))) | |
143 (delete-region start (point)) | |
144 (setq subfile-number (1+ subfile-number)))) | |
145 (while subfiles | |
146 (goto-char start) | |
147 (insert (nth 1 (car subfiles)) | |
10156
baf3b68f7e56
(Info-split): Fix 1-off error in subfile position.
Richard M. Stallman <rms@gnu.org>
parents:
10154
diff
changeset
|
148 (format ": %d" (1- (car (car subfiles)))) |
257 | 149 "\n") |
150 (setq subfiles (cdr subfiles))) | |
151 (goto-char start) | |
152 (insert "\^_\nIndirect:\n") | |
153 (search-forward "\nTag Table:\n") | |
154 (insert "(Indirect)\n"))) | |
155 | |
156 ;;;###autoload | |
157 (defun Info-validate () | |
158 "Check current buffer for validity as an Info file. | |
159 Check that every node pointer points to an existing node." | |
160 (interactive) | |
161 (save-excursion | |
162 (save-restriction | |
163 (widen) | |
164 (goto-char (point-min)) | |
165 (if (search-forward "\nTag table:\n(Indirect)\n" nil t) | |
166 (error "Don't yet know how to validate indirect info files: \"%s\"" | |
167 (buffer-name (current-buffer)))) | |
168 (goto-char (point-min)) | |
169 (let ((allnodes '(("*"))) | |
170 (regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]") | |
171 (case-fold-search t) | |
172 (tags-losing nil) | |
173 (lossages ())) | |
174 (while (search-forward "\n\^_" nil t) | |
175 (forward-line 1) | |
176 (let ((beg (point))) | |
177 (forward-line 1) | |
178 (if (re-search-backward regexp beg t) | |
179 (let ((name (downcase | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
180 (buffer-substring-no-properties |
257 | 181 (match-beginning 1) |
182 (progn | |
183 (goto-char (match-end 1)) | |
184 (skip-chars-backward " \t") | |
185 (point)))))) | |
186 (if (assoc name allnodes) | |
187 (setq lossages | |
188 (cons (list name "Duplicate node-name" nil) | |
189 lossages)) | |
190 (setq allnodes | |
191 (cons (list name | |
192 (progn | |
193 (end-of-line) | |
194 (and (re-search-backward | |
195 "prev[ious]*:" beg t) | |
196 (progn | |
197 (goto-char (match-end 0)) | |
198 (downcase | |
199 (Info-following-node-name))))) | |
200 beg) | |
201 allnodes))))))) | |
202 (goto-char (point-min)) | |
203 (while (search-forward "\n\^_" nil t) | |
204 (forward-line 1) | |
205 (let ((beg (point)) | |
206 thisnode next) | |
207 (forward-line 1) | |
208 (if (re-search-backward regexp beg t) | |
209 (save-restriction | |
210 (search-forward "\n\^_" nil 'move) | |
211 (narrow-to-region beg (point)) | |
212 (setq thisnode (downcase | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
213 (buffer-substring-no-properties |
257 | 214 (match-beginning 1) |
215 (progn | |
216 (goto-char (match-end 1)) | |
217 (skip-chars-backward " \t") | |
218 (point))))) | |
219 (end-of-line) | |
220 (and (search-backward "next:" nil t) | |
221 (setq next (Info-validate-node-name "invalid Next")) | |
222 (assoc next allnodes) | |
223 (if (equal (car (cdr (assoc next allnodes))) | |
224 thisnode) | |
225 ;; allow multiple `next' pointers to one node | |
226 (let ((tem lossages)) | |
227 (while tem | |
228 (if (and (equal (car (cdr (car tem))) | |
229 "should have Previous") | |
230 (equal (car (car tem)) | |
231 next)) | |
232 (setq lossages (delq (car tem) lossages))) | |
233 (setq tem (cdr tem)))) | |
234 (setq lossages | |
235 (cons (list next | |
236 "should have Previous" | |
237 thisnode) | |
238 lossages)))) | |
239 (end-of-line) | |
240 (if (re-search-backward "prev[ious]*:" nil t) | |
241 (Info-validate-node-name "invalid Previous")) | |
242 (end-of-line) | |
243 (if (search-backward "up:" nil t) | |
244 (Info-validate-node-name "invalid Up")) | |
245 (if (re-search-forward "\n* Menu:" nil t) | |
246 (while (re-search-forward "\n\\* " nil t) | |
247 (Info-validate-node-name | |
248 (concat "invalid menu item " | |
249 (buffer-substring (point) | |
250 (save-excursion | |
251 (skip-chars-forward "^:") | |
252 (point)))) | |
253 (Info-extract-menu-node-name)))) | |
254 (goto-char (point-min)) | |
255 (while (re-search-forward "\\*note[ \n]*[^:\t]*:" nil t) | |
256 (goto-char (+ (match-beginning 0) 5)) | |
257 (skip-chars-forward " \n") | |
258 (Info-validate-node-name | |
259 (concat "invalid reference " | |
260 (buffer-substring (point) | |
261 (save-excursion | |
262 (skip-chars-forward "^:") | |
263 (point)))) | |
264 (Info-extract-menu-node-name "Bad format cross-reference"))))))) | |
265 (setq tags-losing (not (Info-validate-tags-table))) | |
266 (if (or lossages tags-losing) | |
267 (with-output-to-temp-buffer " *problems in info file*" | |
268 (while lossages | |
269 (princ "In node \"") | |
270 (princ (car (car lossages))) | |
271 (princ "\", ") | |
272 (let ((tem (nth 1 (car lossages)))) | |
273 (cond ((string-match "\n" tem) | |
274 (princ (substring tem 0 (match-beginning 0))) | |
275 (princ "...")) | |
276 (t | |
277 (princ tem)))) | |
278 (if (nth 2 (car lossages)) | |
279 (progn | |
280 (princ ": ") | |
281 (let ((tem (nth 2 (car lossages)))) | |
282 (cond ((string-match "\n" tem) | |
283 (princ (substring tem 0 (match-beginning 0))) | |
284 (princ "...")) | |
285 (t | |
286 (princ tem)))))) | |
287 (terpri) | |
288 (setq lossages (cdr lossages))) | |
289 (if tags-losing (princ "\nTags table must be recomputed\n"))) | |
290 ;; Here if info file is valid. | |
291 ;; If we already made a list of problems, clear it out. | |
292 (save-excursion | |
293 (if (get-buffer " *problems in info file*") | |
294 (progn | |
295 (set-buffer " *problems in info file*") | |
296 (kill-buffer (current-buffer))))) | |
297 (message "File appears valid")))))) | |
298 | |
299 (defun Info-validate-node-name (kind &optional name) | |
300 (if name | |
301 nil | |
302 (goto-char (match-end 0)) | |
303 (skip-chars-forward " \t") | |
304 (if (= (following-char) ?\() | |
305 nil | |
306 (setq name | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
307 (buffer-substring-no-properties |
257 | 308 (point) |
309 (progn | |
310 (skip-chars-forward "^,\t\n") | |
311 (skip-chars-backward " ") | |
312 (point)))))) | |
313 (if (null name) | |
314 nil | |
315 (setq name (downcase name)) | |
316 (or (and (> (length name) 0) (= (aref name 0) ?\()) | |
317 (assoc name allnodes) | |
318 (setq lossages | |
319 (cons (list thisnode kind name) lossages)))) | |
320 name) | |
321 | |
322 (defun Info-validate-tags-table () | |
323 (goto-char (point-min)) | |
324 (if (not (search-forward "\^_\nEnd tag table\n" nil t)) | |
325 t | |
326 (not (catch 'losing | |
327 (let* ((end (match-beginning 0)) | |
328 (start (progn (search-backward "\nTag table:\n") | |
329 (1- (match-end 0)))) | |
330 tem) | |
331 (setq tem allnodes) | |
332 (while tem | |
333 (goto-char start) | |
334 (or (equal (car (car tem)) "*") | |
335 (search-forward (concat "Node: " | |
336 (car (car tem)) | |
337 "\177") | |
338 end t) | |
339 (throw 'losing 'x)) | |
340 (setq tem (cdr tem))) | |
341 (goto-char (1+ start)) | |
342 (while (looking-at ".*Node: \\(.*\\)\177\\([0-9]+\\)$") | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
343 (setq tem (downcase (buffer-substring-no-properties |
257 | 344 (match-beginning 1) |
345 (match-end 1)))) | |
346 (setq tem (assoc tem allnodes)) | |
347 (if (or (not tem) | |
348 (< 1000 (progn | |
349 (goto-char (match-beginning 2)) | |
350 (setq tem (- (car (cdr (cdr tem))) | |
351 (read (current-buffer)))) | |
352 (if (> tem 0) tem (- tem))))) | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
353 (throw 'losing 'y)) |
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
354 (forward-line 1))) |
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
355 (if (looking-at "\^_\n") |
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
356 (forward-line 1)) |
257 | 357 (or (looking-at "End tag table\n") |
358 (throw 'losing 'z)) | |
359 nil)))) | |
360 | |
361 ;;;###autoload | |
362 (defun batch-info-validate () | |
363 "Runs `Info-validate' on the files remaining on the command line. | |
364 Must be used only with -batch, and kills Emacs on completion. | |
365 Each file will be processed even if an error occurred previously. | |
366 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" | |
367 (if (not noninteractive) | |
368 (error "batch-info-validate may only be used -batch.")) | |
369 (let ((version-control t) | |
370 (auto-save-default nil) | |
371 (find-file-run-dired nil) | |
372 (kept-old-versions 259259) | |
373 (kept-new-versions 259259)) | |
374 (let ((error 0) | |
375 file | |
376 (files ())) | |
377 (while command-line-args-left | |
378 (setq file (expand-file-name (car command-line-args-left))) | |
379 (cond ((not (file-exists-p file)) | |
380 (message ">> %s does not exist!" file) | |
381 (setq error 1 | |
382 command-line-args-left (cdr command-line-args-left))) | |
383 ((file-directory-p file) | |
384 (setq command-line-args-left (nconc (directory-files file) | |
385 (cdr command-line-args-left)))) | |
386 (t | |
387 (setq files (cons file files) | |
388 command-line-args-left (cdr command-line-args-left))))) | |
389 (while files | |
390 (setq file (car files) | |
391 files (cdr files)) | |
392 (let ((lose nil)) | |
393 (condition-case err | |
394 (progn | |
395 (if buffer-file-name (kill-buffer (current-buffer))) | |
396 (find-file file) | |
397 (buffer-disable-undo (current-buffer)) | |
398 (set-buffer-modified-p nil) | |
399 (fundamental-mode) | |
400 (let ((case-fold-search nil)) | |
401 (goto-char (point-max)) | |
402 (cond ((search-backward "\n\^_\^L\nTag table:\n" nil t) | |
403 (message "%s already tagified" file)) | |
404 ((< (point-max) 30000) | |
405 (message "%s too small to bother tagifying" file)) | |
406 (t | |
923 | 407 (Info-tagify)))) |
257 | 408 (let ((loss-name " *problems in info file*")) |
409 (message "Checking validity of info file %s..." file) | |
410 (if (get-buffer loss-name) | |
411 (kill-buffer loss-name)) | |
412 (Info-validate) | |
413 (if (not (get-buffer loss-name)) | |
414 nil ;(message "Checking validity of info file %s... OK" file) | |
415 (message "----------------------------------------------------------------------") | |
416 (message ">> PROBLEMS IN INFO FILE %s" file) | |
417 (save-excursion | |
418 (set-buffer loss-name) | |
13291
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
419 (princ (buffer-substring-no-properties |
49de0d4ca42e
(Info-validate, Info-validate-node-name): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents:
10156
diff
changeset
|
420 (point-min) (point-max)))) |
257 | 421 (message "----------------------------------------------------------------------") |
422 (setq error 1 lose t))) | |
423 (if (and (buffer-modified-p) | |
424 (not lose)) | |
425 (progn (message "Saving modified %s" file) | |
426 (save-buffer)))) | |
427 (error (message ">> Error: %s" (prin1-to-string err)))))) | |
428 (kill-emacs error)))) | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
429 |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
430 ;;; informat.el ends here |