home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-src.tgz / tar.out / fsf / texinfo / emacs / texnfo-upd.el < prev   
Text File  |  1996-09-28  |  79KB  |  2,049 lines

  1. ;;; texnfo-upd.el --- utilities for updating nodes and menus in Texinfo files
  2.  
  3. ;; Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Robert J. Chassell      
  6. ;; Maintainer: bug-texinfo@prep.ai.mit.edu
  7. ;; Keywords: maint, tex, docs
  8.  
  9. ;; This file is part of GNU Emacs.
  10.  
  11. ;; GNU Emacs is free software; you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation; either version 2, or (at your option)
  14. ;; any later version.
  15.  
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ;; GNU General Public License for more details.
  20.  
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  23. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25. ;;; Commentary:
  26.  
  27. ;;; Known bug: update commands fail to ignore @ignore.
  28.  
  29. ;;; Summary: how to use the updating commands
  30.  
  31. ; The node and menu updating functions automatically
  32.  
  33. ;   * insert missing `@node' lines,
  34. ;   * insert the `Next', `Previous' and `Up' pointers of a node,
  35. ;   * insert or update the menu for a section, 
  36. ;   * create a master menu for a Texinfo source file.
  37. ;
  38. ; Passed an argument, the `texinfo-update-node' and
  39. ; `texinfo-make-menu' functions do their jobs in the region.
  40. ;
  41. ; In brief, the functions for creating or updating nodes and menus, are:
  42. ;     texinfo-update-node (&optional region-p)            
  43. ;     texinfo-every-node-update ()                        
  44. ;     texinfo-sequential-node-update (&optional region-p)
  45. ;     texinfo-make-menu (&optional region-p)              
  46. ;     texinfo-all-menus-update ()                         
  47. ;     texinfo-master-menu ()
  48. ;
  49. ;     texinfo-insert-node-lines  (&optional title-p)
  50. ;     texinfo-indent-menu-description (column &optional region-p)
  51.  
  52. ; The `texinfo-column-for-description' variable specifies the column to
  53. ; which menu descriptions are indented. 
  54.  
  55. ; Texinfo file structure
  56. ; ----------------------
  57.  
  58. ; To use the updating commands, you must structure your Texinfo file
  59. ; hierarchically.  Each `@node' line, with the exception of the top
  60. ; node, must be accompanied by some kind of section line, such as an
  61. ; `@chapter' or `@section' line.  Each node-line/section-line
  62. ; combination must look like this:
  63.  
  64. ;      @node    Lists and Tables, Cross References, Structuring, Top
  65. ;      @comment node-name,        next,             previous,    up
  66. ;      @chapter Making Lists and Tables
  67.  
  68. ; or like this (without the `@comment' line):
  69.  
  70. ;      @node    Lists and Tables, Cross References, Structuring, Top
  71. ;      @chapter Making Lists and Tables
  72.  
  73. ; If the file has a `top' node, it must be called `top' or `Top' and
  74. ; be the first node in the file.
  75.  
  76.  
  77. ;;; The update node functions described in detail
  78.  
  79. ; The `texinfo-update-node' function without an argument inserts
  80. ; the correct next, previous and up pointers for the node in which
  81. ; point is located (i.e., for the node preceding point).
  82.  
  83. ; With an argument, the `texinfo-update-node' function inserts the
  84. ; correct next, previous and up pointers for the nodes inside the
  85. ; region.
  86.  
  87. ; It does not matter whether the  `@node' line has pre-existing
  88. ; `Next', `Previous', or `Up' pointers in it.  They are removed.
  89.  
  90. ; The `texinfo-every-node-update' function runs `texinfo-update-node'
  91. ; on the whole buffer.
  92.  
  93. ; The `texinfo-sequential-node-update' function inserts the
  94. ; immediately following and preceding node into the `Next' or
  95. ; `Previous' pointers regardless of their hierarchical level.  This is
  96. ; only useful for certain kinds of text, like a novel, which you go
  97. ; through sequentially.
  98.  
  99.  
  100. ;;; The menu making functions described in detail
  101.  
  102. ; The `texinfo-make-menu' function without an argument creates or
  103. ; updates a menu for the section encompassing the node that follows
  104. ; point.  With an argument, it makes or updates menus for the nodes
  105. ; within or part of the marked region.
  106.  
  107. ; Whenever an existing menu is updated, the descriptions from
  108. ; that menu are incorporated into the new menu.  This is done by copying
  109. ; descriptions from the existing menu to the entries in the new menu
  110. ; that have the same node names.  If the node names are different, the
  111. ; descriptions are not copied to the new menu.
  112.  
  113. ; Menu entries that refer to other Info files are removed since they
  114. ; are not a node within current buffer.  This is a deficiency.
  115.  
  116. ; The `texinfo-all-menus-update' function runs `texinfo-make-menu'
  117. ; on the whole buffer.
  118.  
  119. ; The `texinfo-master-menu' function creates an extended menu located
  120. ; after the top node.  (The file must have a top node.)  The function
  121. ; first updates all the regular menus in the buffer (incorporating the
  122. ; descriptions from pre-existing menus), and then constructs a master
  123. ; menu that includes every entry from every other menu.  (However, the
  124. ; function cannot update an already existing master menu; if one
  125. ; exists, it must be removed before calling the function.)
  126.  
  127. ; The `texinfo-indent-menu-description' function indents every
  128. ; description in the menu following point, to the specified column.
  129. ; Non-nil argument (prefix, if interactive) means indent every
  130. ; description in every menu in the region.  This function does not
  131. ; indent second and subsequent lines of a multi-line description.
  132.  
  133. ; The `texinfo-insert-node-lines' function inserts `@node' before the
  134. ; `@chapter', `@section', and such like lines of a region in a Texinfo
  135. ; file where the `@node' lines are missing.
  136. ; With a non-nil argument (prefix, if interactive), the function not
  137. ; only inserts `@node' lines but also inserts the chapter or section
  138. ; titles as the names of the corresponding nodes; and inserts titles
  139. ; as node names in pre-existing `@node' lines that lack names.
  140. ; Since node names should be more concise than section or chapter
  141. ; titles, node names so inserted will need to be edited manually.
  142.  
  143.  
  144. ;;; Code:
  145.  
  146. ;;; The menu making functions
  147.  
  148. (defun texinfo-make-menu (&optional region-p)
  149.   "Without any prefix argument, make or update a menu.
  150. Make the menu for the section enclosing the node found following point.
  151.  
  152. Non-nil argument (prefix, if interactive) means make or update menus
  153. for nodes within or part of the marked region.
  154.  
  155. Whenever a menu exists, and is being updated, the descriptions that
  156. are associated with node names in the pre-existing menu are
  157. incorporated into the new menu.  Otherwise, the nodes' section titles
  158. are inserted as descriptions."
  159.   
  160.   (interactive "P")
  161.   (if (not region-p)
  162.       (let ((level (texinfo-hierarchic-level)))
  163.         (texinfo-make-one-menu level)
  164.         (message "Done...updated the menu.  You may save the buffer."))
  165.     ;; else
  166.     (message "Making or updating menus in %s... " (buffer-name))
  167.     (let ((beginning (region-beginning))
  168.       (region-end (region-end))
  169.           (level (progn         ; find section type following point
  170.                    (goto-char (region-beginning))
  171.                    (texinfo-hierarchic-level))))
  172.       (if (= region-end beginning)
  173.           (error "Please mark a region!"))
  174.       (save-excursion
  175.         (save-restriction
  176.           (widen)
  177.           
  178.           (while  (texinfo-find-lower-level-node level region-end)
  179.             (setq level (texinfo-hierarchic-level)) ; new, lower level
  180.             (texinfo-make-one-menu level))
  181.           
  182.           (while (and (< (point) region-end)
  183.                       (texinfo-find-higher-level-node level region-end))
  184.             (setq level (texinfo-hierarchic-level))
  185.             (while (texinfo-find-lower-level-node level region-end)
  186.               (setq level (texinfo-hierarchic-level)) ; new, lower level
  187.               (texinfo-make-one-menu level))))))
  188.     (message "Done...updated menus.  You may save the buffer.")))
  189.  
  190. (defun texinfo-make-one-menu (level)
  191.   "Make a menu of all the appropriate nodes in this section.
  192. `Appropriate nodes' are those associated with sections that are 
  193. at the level specified by LEVEL.  Point is left at the end of menu."
  194.   (let*
  195.       ((case-fold-search t)
  196.        (beginning
  197.     (save-excursion
  198.       (goto-char (texinfo-update-menu-region-beginning level))
  199.       (end-of-line)
  200.       (point)))
  201.        (end (texinfo-update-menu-region-end level))
  202.        (first (texinfo-menu-first-node beginning end))
  203.        (node-name (progn
  204.                     (goto-char beginning)
  205.                     (beginning-of-line)
  206.                     (texinfo-copy-node-name)))
  207.        (new-menu-list (texinfo-make-menu-list beginning end level)))
  208.     (if (texinfo-old-menu-p beginning first)
  209.         (progn
  210.           (texinfo-incorporate-descriptions new-menu-list)
  211.           (texinfo-incorporate-menu-entry-names new-menu-list)
  212.           (texinfo-delete-old-menu beginning first)))
  213.     (texinfo-insert-menu new-menu-list node-name)))
  214.  
  215. (defun texinfo-all-menus-update (&optional update-all-nodes-p)
  216.   "Update every regular menu in a Texinfo file.
  217. Update pre-existing master menu, if there is one.
  218.  
  219. If called with a non-nil argument, this function first updates all the
  220. nodes in the buffer before updating the menus."
  221.   (interactive "P")
  222.   (let ((case-fold-search t)
  223.         master-menu-p)
  224.     (save-excursion
  225.       (push-mark (point-max) t)
  226.       (goto-char (point-min))
  227.       (message "Checking for a master menu in %s ... "(buffer-name))
  228.       (save-excursion
  229.         (if (re-search-forward texinfo-master-menu-header nil t)
  230.             ;; Remove detailed master menu listing
  231.             (progn
  232.               (setq master-menu-p t)
  233.               (goto-char (match-beginning 0))
  234.               (let ((end-of-detailed-menu-descriptions
  235.                      (save-excursion     ; beginning of end menu line
  236.                        (goto-char (texinfo-menu-end))
  237.                        (beginning-of-line) (forward-char -1)
  238.                        (point))))
  239.                 (delete-region (point) end-of-detailed-menu-descriptions)))))
  240.       
  241.       (if update-all-nodes-p
  242.           (progn
  243.             (message "Updating all nodes in %s ... " (buffer-name))
  244.             (sleep-for 2)
  245.             (push-mark (point-max) t)
  246.             (goto-char (point-min))
  247.         ;; Using the mark to pass bounds this way
  248.         ;; is kludgy, but it's not worth fixing. -- rms.
  249.         (let ((mark-active t))
  250.           (texinfo-update-node t))))
  251.       
  252.       (message "Updating all menus in %s ... " (buffer-name))        
  253.       (sleep-for 2)
  254.       (push-mark (point-max) t)
  255.       (goto-char (point-min))
  256.       ;; Using the mark to pass bounds this way
  257.       ;; is kludgy, but it's not worth fixing. -- rms.
  258.       (let ((mark-active t))
  259.     (texinfo-make-menu t))
  260.       
  261.       (if master-menu-p
  262.           (progn
  263.             (message "Updating the master menu in %s... " (buffer-name))
  264.             (sleep-for 2)
  265.             (texinfo-master-menu nil))))
  266.     
  267.     (message "Done...updated all the menus.  You may save the buffer.")))
  268.  
  269. (defun texinfo-find-lower-level-node (level region-end)
  270.   "Search forward from point for node at any level lower than LEVEL.
  271. Search is limited to the end of the marked region, REGION-END, 
  272. and to the end of the menu region for the level.
  273.  
  274. Return t if the node is found, else nil.  Leave point at the beginning
  275. of the node if one is found; else do not move point."
  276.   (let ((case-fold-search t))
  277.     (if (and (< (point) region-end)
  278.              (re-search-forward
  279.               (concat
  280.                "\\(^@node\\).*\n"         ; match node line
  281.                "\\(\\(\\(^@c\\).*\n\\)"   ; match comment line, if any
  282.                "\\|"                      ; or
  283.                "\\(^@ifinfo[ ]*\n\\)\\)?" ; ifinfo line, if any
  284.                (eval (cdr (assoc level texinfo-update-menu-lower-regexps))))
  285.               ;; the next higher level node marks the end of this
  286.               ;; section, and no lower level node will be found beyond
  287.               ;; this position even if region-end is farther off
  288.               (texinfo-update-menu-region-end level) 
  289.               t))
  290.         (goto-char (match-beginning 1)))))
  291.  
  292. (defun texinfo-find-higher-level-node (level region-end)
  293.   "Search forward from point for node at any higher level than argument LEVEL.
  294. Search is limited to the end of the marked region, REGION-END.
  295.  
  296. Return t if the node is found, else nil.  Leave point at the beginning
  297. of the node if one is found; else do not move point."
  298.   (let ((case-fold-search t))
  299.     (cond
  300.      ((or (string-equal "top" level) (string-equal "chapter" level))
  301.       (if (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" region-end t)
  302.           (progn (beginning-of-line) t)))
  303.      (t
  304.       (if (re-search-forward
  305.            (concat
  306.             "\\(^@node\\).*\n"              ; match node line
  307.             "\\(\\(\\(^@c\\).*\n\\)"        ; match comment line, if any
  308.             "\\|"                           ; or
  309.             "\\(^@ifinfo[ ]*\n\\)\\)?"      ; ifinfo line, if any
  310.             (eval (cdr (assoc level texinfo-update-menu-higher-regexps))))
  311.            region-end t)
  312.           (progn (beginning-of-line) t))))))
  313.  
  314.  
  315. ;;; Making the list of new menu entries
  316.  
  317. (defun texinfo-make-menu-list (beginning end level)
  318.   "Make a list of node names and their descriptions.
  319. Point is left at the end of the menu region, but the menu is not inserted.
  320.  
  321. First argument is position from which to start making menu list; 
  322. second argument is end of region in which to try to locate entries;
  323. third argument is the level of the nodes that are the entries.
  324.  
  325. Node names and descriptions are dotted pairs of strings.  Each pair is
  326. an element of the list.  If the description does not exist, the
  327. element consists only of the node name."
  328.   (goto-char beginning)
  329.   (let (new-menu-list)
  330.     (while (texinfo-menu-locate-entry-p level end)
  331.       (setq new-menu-list 
  332.             (cons (cons 
  333.                    (texinfo-copy-node-name)
  334.                    (prog1 "" (forward-line 1)))
  335.                    ;; Use following to insert section titles automatically.
  336.                    ;; (texinfo-copy-section-title))
  337.                   new-menu-list)))
  338.     (reverse new-menu-list)))
  339.  
  340. (defun texinfo-menu-locate-entry-p (level search-end)
  341.   "Find a node that will be part of menu for this section.
  342. First argument is a string such as \"section\" specifying the general
  343. hierarchical level of the menu; second argument is a position
  344. specifying the end of the search.
  345.  
  346. The function returns t if the node is found, else nil.  It searches
  347. forward from point, and leaves point at the beginning of the node.
  348.  
  349. The function finds entries of the same type.  Thus `subsections' and
  350. `unnumberedsubsecs' will appear in the same menu."
  351.   (let ((case-fold-search t))
  352.     (if (re-search-forward
  353.          (concat
  354.           "\\(^@node\\).*\n"              ; match node line
  355.           "\\(\\(\\(^@c\\).*\n\\)"        ; match comment line, if any
  356.           "\\|"                           ; or
  357.           "\\(^@ifinfo[ ]*\n\\)\\)?"      ; ifinfo line, if any
  358.           (eval
  359.            (cdr (assoc level texinfo-update-menu-same-level-regexps))))
  360.          search-end
  361.          t)
  362.         (goto-char (match-beginning 1)))))
  363.  
  364. (defun texinfo-copy-node-name ()
  365.   "Return the node name as a string.
  366.  
  367. Start with point at the beginning of the node line; copy the text
  368. after the node command up to the first comma on the line, if any, and
  369. return the text as a string.  Leaves point at the beginning of the
  370. line.  If there is no node name, returns an empty string."
  371.   
  372.   (save-excursion
  373.     (buffer-substring
  374.      (progn (forward-word 1)              ; skip over node command
  375.             (skip-chars-forward " \t")    ; and over spaces
  376.             (point))
  377.      (if (search-forward
  378.           ","
  379.           (save-excursion (end-of-line) (point)) t) ; bound search
  380.          (1- (point))
  381.        (end-of-line) (point)))))
  382.  
  383. (defun texinfo-copy-section-title ()
  384.   "Return the title of the section as a string.
  385. The title is used as a description line in the menu when one does not
  386. already exist.
  387.  
  388. Move point to the beginning of the appropriate section line by going
  389. to the start of the text matched by last regexp searched for, which
  390. must have been done by `texinfo-menu-locate-entry-p'."
  391.  
  392.   ;; could use the same re-search as in `texinfo-menu-locate-entry-p'
  393.   ;; instead of using `match-beginning'; such a variation would be
  394.   ;; more general, but would waste information already collected
  395.  
  396.   (goto-char (match-beginning 7))       ; match section name 
  397.  
  398.   (buffer-substring
  399.    (progn (forward-word 1)              ; skip over section type
  400.           (skip-chars-forward " \t")    ; and over spaces
  401.           (point))
  402.    (progn (end-of-line) (point))))
  403.  
  404.  
  405. ;;; Handling the old menu
  406.  
  407. (defun texinfo-old-menu-p (beginning first)
  408.   "Move point to the beginning of the menu for this section, if any.
  409. Otherwise move point to the end of the first node of this section.
  410. Return t if a menu is found, nil otherwise.
  411.  
  412. First argument is the position of the beginning of the section in which
  413. the menu will be located; second argument is the position of the first
  414. node within the section.
  415.  
  416. If no menu is found, the function inserts two newlines just before the
  417. end of the section, and leaves point there where a menu ought to be."
  418.   (goto-char beginning)
  419.   (if (not (re-search-forward "^@menu" first 'goto-end))
  420.       (progn (insert "\n\n") (forward-line -2) nil)
  421.     t))
  422.  
  423. (defun texinfo-incorporate-descriptions (new-menu-list)
  424.   "Copy the old menu line descriptions that exist to the new menu.
  425.  
  426. Point must be at beginning of old menu.
  427.  
  428. If the node-name of the new menu is found in the old menu, insert the
  429. old description into the new entry.
  430.  
  431. For this function, the new menu is a list made up of lists of dotted
  432. pairs in which the first element of the pair is the node name and the
  433. second element the description.  The new menu is changed destructively.
  434. The old menu is the menu as it appears in the texinfo file."
  435.   
  436.   (let ((new-menu-list-pointer new-menu-list)
  437.         (end-of-menu (texinfo-menu-end)))
  438.     (while new-menu-list
  439.       (save-excursion                   ; keep point at beginning of menu 
  440.         (if (re-search-forward
  441.              ;; Existing nodes can have the form
  442.              ;;     * NODE NAME:: DESCRIPTION
  443.              ;; or
  444.              ;;     * MENU ITEM: NODE NAME.     DESCRIPTION.
  445.              ;; 
  446.              ;; Recognize both when looking for the description.
  447.              (concat "\\* \\("              ; so only menu entries are found
  448.                      (car (car new-menu-list)) "::"
  449.                      "\\|"
  450.                      ".*: " (car (car new-menu-list)) "[.,\t\n]"
  451.                      "\\)"
  452.                      )               ; so only complete entries are found
  453.              end-of-menu
  454.              t) 
  455.             (setcdr (car new-menu-list) 
  456.                     (texinfo-menu-copy-old-description end-of-menu))))
  457.       (setq new-menu-list (cdr new-menu-list))) 
  458.     (setq new-menu-list new-menu-list-pointer)))
  459.  
  460. (defun texinfo-incorporate-menu-entry-names (new-menu-list)
  461.   "Copy any old menu entry names to the new menu.
  462.  
  463. Point must be at beginning of old menu.
  464.  
  465. If the node-name of the new menu entry cannot be found in the old
  466. menu, do nothing.
  467.  
  468. For this function, the new menu is a list made up of lists of dotted
  469. pairs in which the first element of the pair is the node name and the
  470. second element is the description (or nil).
  471.  
  472. If we find an existing menu entry name, we change the first element of
  473. the pair to be another dotted pair in which the car is the menu entry
  474. name and the cdr is the node name.
  475.  
  476. NEW-MENU-LIST is changed destructively.  The old menu is the menu as it
  477. appears in the texinfo file."
  478.   
  479.   (let ((new-menu-list-pointer new-menu-list)
  480.         (end-of-menu (texinfo-menu-end)))
  481.     (while new-menu-list
  482.       (save-excursion                   ; keep point at beginning of menu 
  483.         (if (re-search-forward
  484.              ;; Existing nodes can have the form
  485.              ;;     * NODE NAME:: DESCRIPTION
  486.              ;; or
  487.              ;;     * MENU ITEM: NODE NAME.     DESCRIPTION.
  488.              ;; 
  489.              ;; We're interested in the second case.
  490.              (concat "\\* "              ; so only menu entries are found
  491.                      "\\(.*\\): " (car (car new-menu-list))  "[.,\t\n]")
  492.              end-of-menu
  493.              t)
  494.             (setcar
  495.               (car new-menu-list)  ; replace the node name
  496.               (cons (buffer-substring (match-beginning 1) (match-end 1))
  497.                     (car (car new-menu-list)))))
  498.       (setq new-menu-list (cdr new-menu-list))))
  499.     (setq new-menu-list new-menu-list-pointer)))
  500.  
  501. (defun texinfo-menu-copy-old-description (end-of-menu)
  502.   "Return description field of old menu line as string.
  503. Point must be located just after the node name.  Point left before description.
  504. Single argument, END-OF-MENU, is position limiting search."
  505.   (skip-chars-forward "[:.,\t\n ]+")
  506.   ;; don't copy a carriage return at line beginning with asterisk!
  507.   ;; do copy a description that begins with an `@'!
  508.   ;; !! Known bug: does not copy descriptions starting with ^|\{?* etc.
  509.   (if (and (looking-at "\\(\\w+\\|@\\)")    
  510.            (not (looking-at "\\(^\\* \\|^@end menu\\)")))  
  511.       (buffer-substring
  512.        (point)
  513.        (save-excursion
  514.          (re-search-forward "\\(^\\* \\|^@end menu\\)" end-of-menu t)
  515.          (forward-line -1)
  516.          (end-of-line)                  ; go to end of last description line
  517.          (point)))
  518.     ""))
  519.  
  520. (defun texinfo-menu-end ()
  521.   "Return position of end of menu. Does not change location of point.
  522. Signal an error if not end of menu."
  523.   (save-excursion
  524.     (if (re-search-forward "^@end menu" nil t)
  525.         (point)
  526.       (error "Menu does not have an end."))))
  527.  
  528. (defun texinfo-delete-old-menu (beginning first)
  529.   "Delete the old menu.  Point must be in or after menu.
  530. First argument is position of the beginning of the section in which
  531. the menu will be located; second argument is the position of the first
  532. node within the section."
  533.   ;; No third arg to search, so error if search fails.
  534.   (re-search-backward "^@menu" beginning)
  535.   (delete-region (point)
  536.                  (save-excursion
  537.                    (re-search-forward "^@end menu" first)
  538.                    (point))))
  539.  
  540.  
  541. ;;; Inserting new menu
  542.  
  543. ;; try 32, but perhaps 24 is better
  544. (defvar texinfo-column-for-description 32
  545.   "*Column at which descriptions start in a Texinfo menu.")
  546.  
  547. (defun texinfo-insert-menu (menu-list node-name)
  548.   "Insert formatted menu at point.
  549. Indents the first line of the description, if any, to the value of
  550. texinfo-column-for-description.
  551.  
  552. MENU-LIST has form:
  553.  
  554.     \(\(\"node-name1\" . \"description\"\) 
  555.     \(\"node-name2\" . \"description\"\) ... \)
  556.  
  557. However, the description field might be nil.
  558.  
  559. Also, the node-name field might itself be a dotted pair (call it P) of
  560. strings instead of just a string.  In that case, the car of P
  561. is the menu entry name, and the cdr of P is the node name."
  562.   
  563.   (insert "@menu\n")
  564.   (while menu-list
  565.     ;; Every menu entry starts with a star and a space.
  566.     (insert "* ")
  567.     
  568.     ;; Insert the node name (and menu entry name, if present).
  569.     (let ((node-part (car (car menu-list))))
  570.       (if (stringp node-part)
  571.           ;; "Double colon" entry line; menu entry and node name are the same,
  572.           (insert (format "%s::" node-part))  
  573.         ;; "Single colon" entry line; menu entry and node name are different.
  574.         (insert (format "%s: %s." (car node-part) (cdr node-part)))))
  575.     
  576.     ;; Insert the description, if present.
  577.     (if (cdr (car menu-list))
  578.         (progn
  579.           ;; Move to right place.
  580.           (indent-to texinfo-column-for-description 2) 
  581.           ;; Insert description.
  582.           (insert (format "%s" (cdr (car menu-list))))))  
  583.  
  584.     (insert "\n") ; end this menu entry
  585.     (setq menu-list (cdr menu-list)))
  586.   (insert "@end menu")
  587.   (message 
  588.    "Updated \"%s\" level menu following node: %s ... " level node-name))
  589.  
  590.  
  591. ;;; Starting menu descriptions by inserting titles
  592.  
  593. (defun texinfo-start-menu-description ()
  594.   "In this menu entry, insert the node's section title as a description. 
  595. Position point at beginning of description ready for editing.
  596. Do not insert a title if the line contains an existing description.
  597.  
  598. You will need to edit the inserted text since a useful description
  599. complements the node name rather than repeats it as a title does."
  600.   
  601.   (interactive)
  602.   (let (beginning end node-name title)
  603.     (save-excursion
  604.     (beginning-of-line)  
  605.       (if (search-forward "* " (save-excursion (end-of-line) (point)) t)
  606.           (progn (skip-chars-forward " \t")
  607.                  (setq beginning (point)))
  608.         (error "This is not a line in a menu!"))
  609.       
  610.       (cond
  611.         ;; "Double colon" entry line; menu entry and node name are the same,
  612.        ((search-forward "::" (save-excursion (end-of-line) (point)) t)
  613.         (if (looking-at "[ \t]*[^ \t\n]+")
  614.             (error "Descriptive text already exists."))
  615.         (skip-chars-backward ": \t")
  616.         (setq node-name (buffer-substring beginning (point))))
  617.        
  618.        ;; "Single colon" entry line; menu entry and node name are different.
  619.        ((search-forward ":" (save-excursion (end-of-line) (point)) t)
  620.         (skip-chars-forward " \t")
  621.         (setq beginning (point))
  622.         ;; Menu entry line ends in a period, comma, or tab. 
  623.         (if (re-search-forward "[.,\t]"
  624.                                (save-excursion (forward-line 1) (point)) t)
  625.             (progn
  626.               (if (looking-at "[ \t]*[^ \t\n]+")
  627.                   (error "Descriptive text already exists."))
  628.               (skip-chars-backward "., \t")
  629.               (setq node-name (buffer-substring beginning (point))))
  630.           ;; Menu entry line ends in a return.
  631.           (re-search-forward ".*\n"
  632.                            (save-excursion (forward-line 1) (point)) t)
  633.           (skip-chars-backward " \t\n")
  634.           (setq node-name (buffer-substring beginning (point)))
  635.           (if (= 0 (length node-name))
  636.               (error "No node name on this line.")
  637.             (insert "."))))
  638.        (t (error "No node name on this line.")))
  639.       ;; Search for node that matches node name, and copy the section title.
  640.       (if (re-search-forward
  641.            (concat 
  642.             "^@node[ \t]+"
  643.             node-name
  644.             ".*\n"                             ; match node line
  645.             "\\("
  646.             "\\(\\(^@c \\|^@comment\\).*\n\\)" ; match comment line, if any
  647.             "\\|"                              ; or
  648.             "\\(^@ifinfo[ ]*\n\\)"             ; ifinfo line, if any
  649.             "\\)?")
  650.            nil t)
  651.           (progn
  652.             (setq title
  653.                   (buffer-substring
  654.                    ;; skip over section type
  655.                    (progn (forward-word 1) 
  656.                           ;; and over spaces
  657.                           (skip-chars-forward " \t") 
  658.                           (point))
  659.                    (progn (end-of-line)
  660.                           (skip-chars-backward " \t")
  661.                           (point)))))
  662.         (error "Cannot find node to match node name in menu entry.")))
  663.     ;; Return point to the menu and insert the title.
  664.     (end-of-line)
  665.     (delete-region
  666.      (point)
  667.      (save-excursion (skip-chars-backward " \t") (point)))
  668.     (indent-to texinfo-column-for-description 2)
  669.     (save-excursion (insert title))))
  670.  
  671.  
  672. ;;; Handling description indentation
  673.  
  674. ; Since the make-menu functions indent descriptions, these functions
  675. ; are useful primarily for indenting a single menu specially.
  676.  
  677. (defun texinfo-indent-menu-description (column &optional region-p)
  678.   "Indent every description in menu following point to COLUMN.  
  679. Non-nil argument (prefix, if interactive) means indent every
  680. description in every menu in the region.  Does not indent second and
  681. subsequent lines of a multi-line description."
  682.   
  683.   (interactive
  684.    "nIndent menu descriptions to (column number): \nP")
  685.   (save-excursion
  686.     (save-restriction
  687.       (widen)
  688.       (if (not region-p)
  689.           (progn
  690.             (re-search-forward "^@menu")
  691.             (texinfo-menu-indent-description column)
  692.             (message
  693.              "Indented descriptions in menu.  You may save the buffer."))
  694.         ;;else
  695.         (message "Indenting every menu description in region... ")
  696.         (goto-char (region-beginning))
  697.         (while (and (< (point) (region-end))
  698.                     (texinfo-locate-menu-p))
  699.           (forward-line 1)
  700.           (texinfo-menu-indent-description column))
  701.         (message "Indenting done.  You may save the buffer.")))))
  702.  
  703. (defun texinfo-menu-indent-description (to-column-number)
  704.   "Indent the Texinfo file menu description to TO-COLUMN-NUMBER.
  705. Start with point just after the word `menu' in the `@menu' line and
  706. leave point on the line before the `@end menu' line.  Does not indent
  707. second and subsequent lines of a multi-line description."
  708.   (let* ((beginning-of-next-line (point)))
  709.     (while (< beginning-of-next-line
  710.               (save-excursion     ; beginning of end menu line
  711.                 (goto-char (texinfo-menu-end))
  712.                 (beginning-of-line)
  713.                 (point)))
  714.  
  715.       (if (re-search-forward  "\\* \\(.*::\\|.*: [^.,\t\n]+[.,\t]\\)" 
  716.            (texinfo-menu-end) 
  717.            t)
  718.           (progn
  719.             (let ((beginning-white-space (point)))
  720.               (skip-chars-forward " \t")  ; skip over spaces
  721.               (if (looking-at "\\(@\\|\\w\\)+") ; if there is text
  722.                   (progn
  723.                     ;; remove pre-existing indentation
  724.                     (delete-region beginning-white-space (point))
  725.                     (indent-to-column to-column-number))))))
  726.       ;; position point at beginning of next line
  727.       (forward-line 1)                  
  728.       (setq beginning-of-next-line (point)))))
  729.  
  730.  
  731. ;;; Making the master menu
  732.  
  733. (defun texinfo-master-menu (update-all-nodes-menus-p)
  734.   "Make a master menu for a whole Texinfo file.
  735. Non-nil argument (prefix, if interactive) means first update all
  736. existing nodes and menus.  Remove pre-existing master menu, if there is one.
  737.  
  738. This function creates a master menu that follows the top node.  The
  739. master menu includes every entry from all the other menus.  It
  740. replaces any existing ordinary menu that follows the top node.
  741.  
  742. If called with a non-nil argument, this function first updates all the
  743. menus in the buffer (incorporating descriptions from pre-existing
  744. menus) before it constructs the master menu.
  745.  
  746. The function removes the detailed part of an already existing master
  747. menu.  This action depends on the pre-exisitng master menu using the
  748. standard `texinfo-master-menu-header'.
  749.  
  750. The master menu has the following format, which is adapted from the
  751. recommendation in the Texinfo Manual:
  752.  
  753.    * The first part contains the major nodes in the Texinfo file: the
  754.      nodes for the chapters, chapter-like sections, and the major
  755.      appendices.  This includes the indices, so long as they are in
  756.      chapter-like sections, such as unnumbered sections.
  757.  
  758.    * The second and subsequent parts contain a listing of the other,
  759.      lower level menus, in order.  This way, an inquirer can go
  760.      directly to a particular node if he or she is searching for
  761.      specific information.
  762.  
  763. Each of the menus in the detailed node listing is introduced by the
  764. title of the section containing the menu."
  765.   
  766.   (interactive "P")
  767.   (let ((case-fold-search t))
  768.     (widen)
  769.     (goto-char (point-min))
  770.     
  771.     ;; Move point to location after `top'.
  772.     (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
  773.         (error "This buffer needs a Top node!"))
  774.     
  775.     (let ((first-chapter                  
  776.            (save-excursion
  777.              (or (re-search-forward "^@node" nil t)
  778.                  (error "Too few nodes for a master menu!"))
  779.              (point))))
  780.       (if (re-search-forward texinfo-master-menu-header first-chapter t)
  781.           ;; Remove detailed master menu listing
  782.           (progn
  783.             (goto-char (match-beginning 0))
  784.             (let ((end-of-detailed-menu-descriptions
  785.                    (save-excursion     ; beginning of end menu line
  786.                      (goto-char (texinfo-menu-end))
  787.                      (beginning-of-line) (forward-char -1)
  788.                      (point))))
  789.               (delete-region (point) end-of-detailed-menu-descriptions)))))
  790.     
  791.     (if update-all-nodes-menus-p
  792.         (progn
  793.           (message "Making a master menu in %s ...first updating all nodes... "
  794.                    (buffer-name))
  795.           (sleep-for 2)
  796.           (push-mark (point-max) t)
  797.           (goto-char (point-min))
  798.           (texinfo-update-node t)
  799.           
  800.           (message "Updating all menus in %s ... " (buffer-name))        
  801.           (sleep-for 2)
  802.           (push-mark (point-max) t)
  803.           (goto-char (point-min))
  804.           (texinfo-make-menu t)))
  805.     
  806.     (message "Now making the master menu in %s... " (buffer-name))
  807.     (sleep-for 2)
  808.     (goto-char (point-min))
  809.     (texinfo-insert-master-menu-list
  810.      (texinfo-master-menu-list))
  811.     
  812.     ;; Remove extra newlines that texinfo-insert-master-menu-list
  813.     ;; may have inserted.
  814.     
  815.     (save-excursion
  816.       (goto-char (point-min))
  817.       
  818.       (if (re-search-forward texinfo-master-menu-header nil t)
  819.           (progn
  820.             (goto-char (match-beginning 0))
  821.             (insert "\n")
  822.             (delete-blank-lines)
  823.             (goto-char (point-min))))
  824.  
  825.       (re-search-forward "^@menu")
  826.       (forward-line -1)
  827.       (delete-blank-lines)
  828.       
  829.       (re-search-forward "^@end menu")
  830.       (forward-line 1)
  831.       (delete-blank-lines))
  832.     
  833.     (message
  834.      "Done...completed making master menu.  You may save the buffer.")))
  835.  
  836. (defun texinfo-master-menu-list ()
  837.   "Return a list of menu entries and header lines for the master menu.
  838.  
  839. Start with the menu for chapters and indices and then find each
  840. following menu and the title of the node preceding that menu.
  841.  
  842. The master menu list has this form:
  843.  
  844.     \(\(\(... \"entry-1-2\"  \"entry-1\"\) \"title-1\"\)
  845.       \(\(... \"entry-2-2\"  \"entry-2-1\"\) \"title-2\"\)
  846.       ...\)
  847.  
  848. However, there does not need to be a title field."
  849.  
  850.   (let (master-menu-list)
  851.     (while (texinfo-locate-menu-p)
  852.       (setq master-menu-list 
  853.             (cons (list
  854.                    (texinfo-copy-menu)
  855.                    (texinfo-copy-menu-title))
  856.                   master-menu-list)))
  857.     (reverse master-menu-list)))
  858.  
  859. (defun texinfo-insert-master-menu-list (master-menu-list)
  860.   "Format and insert the master menu in the current buffer."
  861.   (goto-char (point-min))
  862.   ;; Insert a master menu only after `Top' node and before next node
  863.   ;; \(or include file if there is no next node\).
  864.   (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
  865.       (error "This buffer needs a Top node!"))
  866.   (let ((first-chapter
  867.          (save-excursion (re-search-forward "^@node\\|^@include") (point))))
  868.     (if (not (re-search-forward "^@menu" first-chapter t))
  869.         (error
  870.          "Buffer lacks ordinary `Top' menu in which to insert master.")))
  871.   (beginning-of-line)
  872.   (delete-region      ; buffer must have ordinary top menu
  873.    (point)   
  874.    (save-excursion (re-search-forward "^@end menu") (point)))
  875.   
  876.   (save-excursion                       ; leave point at beginning of menu
  877.     ;; Handle top of menu
  878.     (insert "\n@menu\n")
  879.     ;; Insert chapter menu entries
  880.     (setq this-very-menu-list (reverse (car (car master-menu-list))))
  881.     ;; Tell user what is going on.
  882.     (message "Inserting chapter menu entry: %s ... " this-very-menu-list)
  883.     (while this-very-menu-list
  884.       (insert "* " (car this-very-menu-list) "\n")
  885.       (setq this-very-menu-list (cdr this-very-menu-list)))
  886.     
  887.     (setq master-menu-list (cdr master-menu-list))
  888.     
  889.     ;; Only insert detailed master menu if there is one....
  890.     (if (car (car master-menu-list))
  891.         (insert texinfo-master-menu-header))
  892.     
  893.     ;; Now, insert all the other menus
  894.     
  895.     ;; The menu master-menu-list has a form like this:
  896.     ;; ((("beta"  "alpha") "title-A")
  897.     ;;  (("delta" "gamma") "title-B"))
  898.     
  899.     (while master-menu-list
  900.       
  901.       (message
  902.        "Inserting menu for %s .... " (car (cdr (car master-menu-list))))
  903.       ;; insert title of menu section
  904.       (insert "\n" (car (cdr (car master-menu-list))) "\n\n")
  905.       
  906.       ;; insert each menu entry
  907.       (setq this-very-menu-list (reverse (car (car master-menu-list))))
  908.       (while this-very-menu-list
  909.         (insert "* " (car this-very-menu-list) "\n")
  910.         (setq this-very-menu-list (cdr this-very-menu-list)))
  911.       
  912.       (setq master-menu-list (cdr master-menu-list)))
  913.     
  914.     ;; Finish menu
  915.     (insert "@end menu\n\n")))
  916.  
  917. (defvar texinfo-master-menu-header
  918.   "\n --- The Detailed Node Listing ---\n"
  919.   "String inserted before lower level entries in Texinfo master menu.
  920. It comes after the chapter-level menu entries.")
  921.  
  922. (defun texinfo-locate-menu-p ()
  923.   "Find the next menu in the texinfo file.
  924. If found, leave point after word `menu' on the `@menu' line, and return t.
  925. If a menu is not found, do not move point and return nil."
  926.   (re-search-forward "\\(^@menu\\)" nil t))
  927.  
  928. (defun texinfo-copy-menu-title  ()
  929.   "Return the title of the section preceding the menu as a string.
  930. If such a title cannot be found, return an empty string.  Do not move
  931. point."
  932.   (let ((case-fold-search t))
  933.     (save-excursion
  934.       (if (re-search-backward
  935.            (concat
  936.             "\\(^@top"
  937.             "\\|"                         ; or
  938.             texinfo-section-types-regexp  ; all other section types
  939.             "\\)")
  940.            nil
  941.            t)
  942.           (progn
  943.             (beginning-of-line)
  944.             (forward-word 1)              ; skip over section type
  945.             (skip-chars-forward " \t")    ; and over spaces
  946.             (buffer-substring
  947.              (point)
  948.              (progn (end-of-line) (point))))
  949.         ""))))
  950.  
  951. (defun texinfo-copy-menu ()
  952.   "Return the entries of an existing menu as a list.
  953. Start with point just after the word `menu' in the `@menu' line
  954. and leave point on the line before the `@end menu' line."
  955.   (let* (this-menu-list
  956.          (end-of-menu (texinfo-menu-end)) ; position of end of `@end menu'
  957.          (last-entry (save-excursion      ; position of beginning of
  958.                                           ; last `* ' entry
  959.                       (goto-char end-of-menu)
  960.                       ;; handle multi-line description
  961.                       (if (not (re-search-backward "^\* " nil t))
  962.                           (error "No entries in menu."))
  963.                       (point))))
  964.     (while (< (point) last-entry)
  965.       (if (re-search-forward  "^\* " end-of-menu t)
  966.           (progn
  967.             (setq this-menu-list
  968.                   (cons
  969.                    (buffer-substring 
  970.                     (point)
  971.                     ;; copy multi-line descriptions
  972.                     (save-excursion
  973.                       (re-search-forward "\\(^\* \\|^@e\\)" nil t)
  974.                       (- (point) 3)))
  975.                    this-menu-list)))))
  976.     this-menu-list))
  977.  
  978.  
  979. ;;; Determining the hierarchical level in the texinfo file
  980.  
  981. (defun texinfo-specific-section-type () 
  982.   "Return the specific type of next section, as a string.
  983. For example, \"unnumberedsubsec\".  Return \"top\" for top node.
  984.  
  985. Searches forward for a section.  Hence, point must be before the
  986. section whose type will be found.  Does not move point.  Signal an
  987. error if the node is not the top node and a section is not found."
  988.   (let ((case-fold-search t))
  989.     (save-excursion
  990.       (cond
  991.        ((re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
  992. ;;; Following search limit by cph but causes a bug
  993. ;;;             (save-excursion
  994. ;;;               (end-of-line)
  995. ;;;               (point))
  996.                            nil
  997.                            t)
  998.         "top")
  999.        ((re-search-forward texinfo-section-types-regexp nil t)
  1000.         (buffer-substring-no-properties
  1001.      (progn (beginning-of-line) ; copy its name
  1002.         (1+ (point)))
  1003.      (progn (forward-word 1)
  1004.         (point))))
  1005.        (t
  1006.         (error
  1007.          "texinfo-specific-section-type: Chapter or section not found."))))))
  1008.  
  1009. (defun texinfo-hierarchic-level ()
  1010.   "Return the general hierarchal level of the next node in a texinfo file.
  1011. Thus, a subheading or appendixsubsec is of type subsection."
  1012.   (let ((case-fold-search t))
  1013.     (cdr (assoc
  1014.           (texinfo-specific-section-type)
  1015.           texinfo-section-to-generic-alist))))
  1016.  
  1017.  
  1018. ;;; Locating the major positions
  1019.  
  1020. (defun texinfo-update-menu-region-beginning (level)  
  1021.   "Locate beginning of higher level section this section is within.
  1022. Return position of the beginning of the node line; do not move point.
  1023. Thus, if this level is subsection, searches backwards for section node.
  1024. Only argument is a string of the general type of section."
  1025.   (let ((case-fold-search t))
  1026.     ;; !! Known bug: if section immediately follows top node, this
  1027.     ;; returns the beginning of the buffer as the beginning of the
  1028.     ;; higher level section.
  1029.     (cond
  1030.      ((or (string-equal "top" level)
  1031.           (string-equal "chapter" level))
  1032.       (save-excursion
  1033.         (goto-char (point-min))
  1034.         (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t)
  1035.         (beginning-of-line)
  1036.         (point)))
  1037.      (t
  1038.       (save-excursion
  1039.         (re-search-backward
  1040.          (concat
  1041.           "\\(^@node\\).*\n"              ; match node line
  1042.           "\\(\\(\\(^@c\\).*\n\\)"        ; match comment line, if any
  1043.           "\\|"                           ; or
  1044.           "\\(^@ifinfo[ ]*\n\\)\\)?"      ; ifinfo line, if any
  1045.           (eval
  1046.            (cdr (assoc level texinfo-update-menu-higher-regexps))))
  1047.          nil
  1048.          'goto-beginning)
  1049.         (point))))))
  1050.  
  1051. (defun texinfo-update-menu-region-end (level)  
  1052.   "Locate end of higher level section this section is within.
  1053. Return position; do not move point.  Thus, if this level is a
  1054. subsection, find the node for the section this subsection is within.
  1055. If level is top or chapter, returns end of file.  Only argument is a
  1056. string of the general type of section."
  1057.   (let ((case-fold-search t))
  1058.     (save-excursion
  1059.       (if (re-search-forward
  1060.            (concat
  1061.             "\\(^@node\\).*\n"            ; match node line
  1062.             "\\(\\(\\(^@c\\).*\n\\)"      ; match comment line, if any
  1063.             "\\|"                         ; or
  1064.             "\\(^@ifinfo[ ]*\n\\)\\)?"    ; ifinfo line, if any
  1065.             (eval
  1066.              ;; Never finds end of level above chapter so goes to end.
  1067.              (cdr (assoc level texinfo-update-menu-higher-regexps))))
  1068.            nil
  1069.            'goto-end)
  1070.           (match-beginning 1)
  1071.         (point-max)))))
  1072.  
  1073. (defun texinfo-menu-first-node (beginning end)
  1074.   "Locate first node of the section the menu will be placed in.  
  1075. Return position; do not move point.
  1076. The menu will be located just before this position.  
  1077.  
  1078. First argument is the position of the beginning of the section in
  1079. which the menu will be located; second argument is the position of the
  1080. end of that region; it limits the search."
  1081.   
  1082.   (save-excursion
  1083.     (goto-char beginning)
  1084.     (forward-line 1)
  1085.     (re-search-forward "^@node" end t)
  1086.     (beginning-of-line)
  1087.     (point)))
  1088.  
  1089.  
  1090. ;;; Alists and regular expressions for defining hierarchical levels
  1091.  
  1092. (defvar texinfo-section-to-generic-alist
  1093.   '(("top" . "top")
  1094.  
  1095.     ("chapter" . "chapter")
  1096.     ("unnumbered" . "chapter")
  1097.     ("majorheading" . "chapter")
  1098.     ("chapheading" . "chapter")
  1099.     ("appendix" . "chapter")
  1100.     
  1101.     ("section" . "section")
  1102.     ("unnumberedsec" . "section")
  1103.     ("heading" . "section")
  1104.     ("appendixsec" . "section")
  1105.     
  1106.     ("subsection" . "subsection")
  1107.     ("unnumberedsubsec" . "subsection")
  1108.     ("subheading" . "subsection")
  1109.     ("appendixsubsec" . "subsection")
  1110.     
  1111.     ("subsubsection" . "subsubsection")
  1112.     ("unnumberedsubsubsec" . "subsubsection")
  1113.     ("subsubheading" . "subsubsection")
  1114.     ("appendixsubsubsec" . "subsubsection"))
  1115.   "*An alist of specific and corresponding generic Texinfo section types.
  1116. The keys are strings specifying specific types of section; the values
  1117. are strings of their corresponding general types.")
  1118.  
  1119. ;; We used to look for just sub, but that found @subtitle.
  1120. (defvar texinfo-section-types-regexp
  1121.   "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)"
  1122.   "Regexp matching chapter, section, other headings (but not the top node).")
  1123.  
  1124. (defvar texinfo-chapter-level-regexp 
  1125.   "chapter\\|unnumbered \\|appendix \\|majorheading\\|chapheading"
  1126.   "Regular expression matching just the Texinfo chapter level headings.")
  1127.  
  1128. (defvar texinfo-section-level-regexp 
  1129.   "section\\|unnumberedsec\\|heading \\|appendixsec"
  1130.   "Regular expression matching just the Texinfo section level headings.")
  1131.  
  1132. (defvar texinfo-subsection-level-regexp 
  1133.   "subsection\\|unnumberedsubsec\\|subheading\\|appendixsubsec"
  1134.   "Regular expression matching just the Texinfo subsection level headings.")
  1135.  
  1136. (defvar texinfo-subsubsection-level-regexp
  1137.   "subsubsection\\|unnumberedsubsubsec\\|subsubheading\\|appendixsubsubsec"
  1138.   "Regular expression matching just the Texinfo subsubsection level headings.")
  1139.  
  1140. (defvar texinfo-update-menu-same-level-regexps
  1141.   '(("top" . "top[ \t]+")
  1142.     ("chapter" . 
  1143.      (concat "\\(^@\\)\\(" texinfo-chapter-level-regexp "\\)[ \t]*"))
  1144.     ("section" . 
  1145.      (concat "\\(^@\\)\\(" texinfo-section-level-regexp "\\)[ \t]*"))
  1146.     ("subsection" .  
  1147.      (concat "\\(^@\\)\\(" texinfo-subsection-level-regexp "\\)[ \t]+"))
  1148.     ("subsubsection" . 
  1149.      (concat "\\(^@\\)\\(" texinfo-subsubsection-level-regexp "\\)[ \t]+")))
  1150.   "*Regexps for searching for same level sections in a Texinfo file.
  1151. The keys are strings specifying the general hierarchical level in the
  1152. document; the values are regular expressions.")
  1153.  
  1154. (defvar texinfo-update-menu-higher-regexps
  1155.   '(("top" . "^@node [ \t]*DIR") 
  1156.     ("chapter" . "^@node [ \t]*top[ \t]*\\(,\\|$\\)")
  1157.     ("section" .
  1158.      (concat 
  1159.       "\\(^@\\("
  1160.       texinfo-chapter-level-regexp
  1161.       "\\)[ \t]*\\)"))
  1162.     ("subsection" .
  1163.      (concat 
  1164.       "\\(^@\\("
  1165.       texinfo-section-level-regexp
  1166.       "\\|"
  1167.       texinfo-chapter-level-regexp
  1168.       "\\)[ \t]*\\)"))
  1169.     ("subsubsection" .
  1170.      (concat 
  1171.       "\\(^@\\("
  1172.       texinfo-subsection-level-regexp
  1173.       "\\|"
  1174.       texinfo-section-level-regexp
  1175.       "\\|"
  1176.       texinfo-chapter-level-regexp
  1177.       "\\)[ \t]*\\)")))
  1178.   "*Regexps for searching for higher level sections in a Texinfo file.
  1179. The keys are strings specifying the general hierarchical level in the
  1180. document; the values are regular expressions.")
  1181.  
  1182. (defvar texinfo-update-menu-lower-regexps
  1183.   '(("top" . 
  1184.      (concat 
  1185.       "\\(^@\\("
  1186.       texinfo-chapter-level-regexp
  1187.       "\\|"
  1188.       texinfo-section-level-regexp
  1189.       "\\|"
  1190.       texinfo-subsection-level-regexp
  1191.       "\\|"
  1192.       texinfo-subsubsection-level-regexp
  1193.       "\\)[ \t]*\\)"))
  1194.     ("chapter" . 
  1195.      (concat 
  1196.       "\\(^@\\("
  1197.       texinfo-section-level-regexp
  1198.       "\\|"
  1199.       texinfo-subsection-level-regexp
  1200.       "\\|"
  1201.       texinfo-subsubsection-level-regexp
  1202.       "\\)[ \t]*\\)"))
  1203.     ("section" .
  1204.      (concat 
  1205.       "\\(^@\\("
  1206.       texinfo-subsection-level-regexp
  1207.       "\\|"
  1208.       texinfo-subsubsection-level-regexp
  1209.       "\\)[ \t]+\\)"))
  1210.     ("subsection" .
  1211.      (concat 
  1212.       "\\(^@\\("
  1213.       texinfo-subsubsection-level-regexp
  1214.       "\\)[ \t]+\\)"))
  1215.     ("subsubsection" . "nothing lower"))
  1216.   "*Regexps for searching for lower level sections in a Texinfo file.
  1217. The keys are strings specifying the general hierarchical level in the
  1218. document; the values are regular expressions.")
  1219.  
  1220.  
  1221. ;;; Updating a node
  1222.  
  1223. ;;;###autoload
  1224. (defun texinfo-update-node (&optional region-p)
  1225.   "Without any prefix argument, update the node in which point is located.
  1226. Non-nil argument (prefix, if interactive) means update the nodes in the
  1227. marked region.
  1228.  
  1229. The functions for creating or updating nodes and menus, and their
  1230. keybindings, are:
  1231.  
  1232.     texinfo-update-node (&optional region-p)    \\[texinfo-update-node]
  1233.     texinfo-every-node-update ()                \\[texinfo-every-node-update]
  1234.     texinfo-sequential-node-update (&optional region-p)
  1235.  
  1236.     texinfo-make-menu (&optional region-p)      \\[texinfo-make-menu]
  1237.     texinfo-all-menus-update ()                 \\[texinfo-all-menus-update]
  1238.     texinfo-master-menu ()
  1239.  
  1240.     texinfo-indent-menu-description (column &optional region-p)
  1241.  
  1242. The `texinfo-column-for-description' variable specifies the column to
  1243. which menu descriptions are indented. Its default value is 32."
  1244.   
  1245.   (interactive "P")
  1246.   (if (not region-p)
  1247.       ;; update a single node
  1248.       (let ((auto-fill-function nil) (auto-fill-hook nil))
  1249.         (if (not (re-search-backward "^@node" (point-min) t))
  1250.             (error "Node line not found before this position."))
  1251.         (texinfo-update-the-node)
  1252.         (message "Done...updated the node.  You may save the buffer."))
  1253.     ;; else
  1254.     (let ((auto-fill-function nil)
  1255.       (auto-fill-hook nil)
  1256.           (beginning (region-beginning))
  1257.       (end (region-end)))
  1258.       (if (= end beginning)
  1259.           (error "Please mark a region!"))
  1260.       (save-restriction
  1261.     (narrow-to-region beginning end)
  1262.     (goto-char beginning)
  1263.         (push-mark (point) t)
  1264.     (while (re-search-forward "^@node" (point-max) t)
  1265.           (beginning-of-line)            
  1266.           (texinfo-update-the-node))
  1267.         (message "Done...updated nodes in region.  You may save the buffer.")))))
  1268.  
  1269. ;;;###autoload
  1270. (defun texinfo-every-node-update ()
  1271.   "Update every node in a Texinfo file."
  1272.   (interactive)
  1273.   (save-excursion
  1274.     (push-mark (point-max) t)
  1275.     (goto-char (point-min))
  1276.     ;; Using the mark to pass bounds this way
  1277.     ;; is kludgy, but it's not worth fixing. -- rms.
  1278.     (let ((mark-active t))
  1279.       (texinfo-update-node t))
  1280.     (message "Done...updated every node.       You may save the buffer.")))
  1281.  
  1282. (defun texinfo-update-the-node ()
  1283.   "Update one node.  Point must be at the beginning of node line.  
  1284. Leave point at the end of the node line."
  1285.   (texinfo-check-for-node-name)
  1286.   (texinfo-delete-existing-pointers)
  1287.   (message "Updating node: %s ... " (texinfo-copy-node-name))
  1288.   (save-restriction
  1289.     (widen)
  1290.     (let*
  1291.         ((case-fold-search t)
  1292.          (level (texinfo-hierarchic-level))
  1293.          (beginning (texinfo-update-menu-region-beginning level))
  1294.          (end (texinfo-update-menu-region-end level)))
  1295.       (if (string-equal level "top")
  1296.           (texinfo-top-pointer-case)
  1297.         ;; else
  1298.         (texinfo-insert-pointer beginning end level 'next)
  1299.         (texinfo-insert-pointer beginning end level 'previous)
  1300.         (texinfo-insert-pointer beginning end level 'up)
  1301.         (texinfo-clean-up-node-line)))))
  1302.  
  1303. (defun texinfo-top-pointer-case ()
  1304.   "Insert pointers in the Top node.  This is a special case.
  1305.  
  1306. The `Next' pointer is a pointer to a chapter or section at a lower
  1307. hierarchical level in the file.  The `Previous' and `Up' pointers are
  1308. to `(dir)'.  Point must be at the beginning of the node line, and is
  1309. left at the end of the node line."
  1310.  
  1311.   (texinfo-clean-up-node-line)
  1312.   (insert ", " 
  1313.           (save-excursion
  1314.             ;; There may be an @chapter or other such command between
  1315.             ;; the top node line and the next node line, as a title
  1316.             ;; for an `ifinfo' section. This @chapter command must
  1317.             ;; must be skipped.  So the procedure is to search for
  1318.             ;; the next `@node' line, and then copy its name.
  1319.             (if (re-search-forward "^@node" nil t)
  1320.                 (progn
  1321.                   (beginning-of-line)
  1322.                   (texinfo-copy-node-name))
  1323.               " "))
  1324.           ", (dir), (dir)"))
  1325.  
  1326. (defun texinfo-check-for-node-name ()
  1327.   "Determine whether the node has a node name.  Prompt for one if not.
  1328. Point must be at beginning of node line.  Does not move point."
  1329.   (save-excursion
  1330.     (let ((initial (texinfo-copy-next-section-title)))
  1331.       ;; This is not clean.  Use `interactive' to read the arg.
  1332.       (forward-word 1)                    ; skip over node command
  1333.       (skip-chars-forward " \t")          ; and over spaces
  1334.       (if (not (looking-at "[^,\t\n ]+")) ; regexp based on what Info looks for
  1335.                                           ; alternatively, use "[a-zA-Z]+"
  1336.         (let ((node-name
  1337.                (read-from-minibuffer
  1338.                 "Node name (use no @, commas, colons, or apostrophes): "
  1339.                 initial)))
  1340.           (insert " " node-name))))))
  1341.  
  1342. (defun texinfo-delete-existing-pointers ()
  1343.   "Delete `Next', `Previous', and `Up' pointers.  
  1344. Starts from the current position of the cursor, and searches forward
  1345. on the line for a comma and if one is found, deletes the rest of the
  1346. line, including the comma.  Leaves point at beginning of line."
  1347.   (let ((eol-point (save-excursion (end-of-line) (point))))
  1348.     (if (search-forward "," eol-point t)
  1349.         (delete-region (1- (point)) eol-point)))
  1350.   (beginning-of-line))
  1351.  
  1352. (defun texinfo-find-pointer (beginning end level direction)
  1353.   "Move point to section associated with next, previous, or up pointer.
  1354. Return type of pointer (either 'normal or 'no-pointer).
  1355.  
  1356. The first and second arguments bound the search for a pointer to the
  1357. beginning and end, respectively, of the enclosing higher level
  1358. section.  The third argument is a string specifying the general kind
  1359. of section such as \"chapter\ or \"section\".  When looking for the
  1360. `Next' pointer, the section found will be at the same hierarchical
  1361. level in the Texinfo file; when looking for the `Previous' pointer,
  1362. the section found will be at the same or higher hierarchical level in
  1363. the Texinfo file; when looking for the `Up' pointer, the section found
  1364. will be at some level higher in the Texinfo file.  The fourth argument
  1365. \(one of 'next, 'previous, or 'up\) specifies whether to find the
  1366. `Next', `Previous', or `Up' pointer."
  1367.   (let ((case-fold-search t))
  1368.     (cond ((eq direction 'next)
  1369.            (forward-line 3)             ; skip over current node
  1370.            ;; Search for section commands accompanied by node lines;
  1371.            ;; ignore section commands in the middle of nodes.
  1372.            (if (re-search-forward
  1373.                 ;; A `Top' node is never a next pointer, so won't find it.
  1374.                 (concat
  1375.                  ;; Match node line.
  1376.                  "\\(^@node\\).*\n"         
  1377.                  ;; Match comment or ifinfo line, if any
  1378.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1379.                  (eval
  1380.                   (cdr (assoc level texinfo-update-menu-same-level-regexps))))
  1381.                 end
  1382.                 t)
  1383.                'normal
  1384.              'no-pointer))
  1385.           ((eq direction 'previous)
  1386.            (if (re-search-backward
  1387.                 (concat
  1388.                  "\\("
  1389.                  ;; Match node line.
  1390.                  "\\(^@node\\).*\n"         
  1391.                  ;; Match comment or ifinfo line, if any
  1392.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1393.                  (eval
  1394.                   (cdr (assoc level texinfo-update-menu-same-level-regexps)))
  1395.                  "\\|"
  1396.                  ;; Match node line.
  1397.                  "\\(^@node\\).*\n"         
  1398.                  ;; Match comment or ifinfo line, if any
  1399.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1400.                  (eval
  1401.                   (cdr (assoc level texinfo-update-menu-higher-regexps)))
  1402.                  "\\|"
  1403.                  ;; Handle `Top' node specially.
  1404.                  "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
  1405.                  "\\)")
  1406.                 beginning
  1407.                 t)
  1408.                'normal
  1409.              'no-pointer))
  1410.           ((eq direction 'up)
  1411.            (if (re-search-backward
  1412.                 (concat
  1413.                  "\\("
  1414.                  ;; Match node line.
  1415.                  "\\(^@node\\).*\n"         
  1416.                  ;; Match comment or ifinfo line, if any
  1417.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1418.                  (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
  1419.                  "\\|"
  1420.                  ;; Handle `Top' node specially.
  1421.                  "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
  1422.                  "\\)")
  1423.                 (save-excursion
  1424.                   (goto-char beginning)
  1425.                   (beginning-of-line)
  1426.                   (point))
  1427.                 t)
  1428.                'normal
  1429.              'no-pointer))
  1430.           (t
  1431.            (error "texinfo-find-pointer: lack proper arguments")))))
  1432.  
  1433. (defun texinfo-pointer-name (kind)
  1434.   "Return the node name preceding the section command.
  1435. The argument is the kind of section, either normal or no-pointer."
  1436.   (let (name)
  1437.     (cond ((eq kind 'normal)
  1438.            (end-of-line)                ; this handles prev node top case
  1439.            (re-search-backward          ; when point is already 
  1440.             "^@node"                    ; at the beginning of @node line
  1441.             (save-excursion (forward-line -3))
  1442.             t)
  1443.            (setq name (texinfo-copy-node-name)))
  1444.       ((eq kind 'no-pointer)
  1445.        (setq name " ")))    ; put a blank in the pointer slot
  1446.     name))
  1447.  
  1448. (defun texinfo-insert-pointer (beginning end level direction)
  1449.   "Insert the `Next', `Previous' or `Up' node name at point.
  1450. Move point forward.  
  1451.  
  1452. The first and second arguments bound the search for a pointer to the
  1453. beginning and end, respectively, of the enclosing higher level
  1454. section.  The third argument is the hierarchical level of the Texinfo
  1455. file, a string such as \"section\".  The fourth argument is direction
  1456. towards which the pointer is directed, one of `next, `previous, or
  1457. 'up."
  1458.  
  1459.   (end-of-line)
  1460.   (insert
  1461.    ", "
  1462.    (save-excursion
  1463.      (texinfo-pointer-name
  1464.       (texinfo-find-pointer beginning end level direction)))))
  1465.  
  1466. (defun texinfo-clean-up-node-line ()
  1467.   "Remove extra commas, if any, at end of node line."
  1468.   (end-of-line)
  1469.   (skip-chars-backward ", ")
  1470.   (delete-region (point) (save-excursion (end-of-line) (point))))
  1471.  
  1472.  
  1473. ;;; Updating nodes sequentially
  1474. ; These sequential update functions insert `Next' or `Previous'
  1475. ; pointers that point to the following or preceding nodes even if they
  1476. ; are at higher or lower hierarchical levels.  This means that if a
  1477. ; section contains one or more subsections, the section's `Next'
  1478. ; pointer will point to the subsection and not the following section.
  1479. ; (The subsection to which `Next' points will most likely be the first
  1480. ; item on the section's menu.)
  1481.  
  1482. ;;;###autoload
  1483. (defun texinfo-sequential-node-update (&optional region-p)
  1484.   "Update one node (or many) in a Texinfo file with sequential pointers.
  1485.  
  1486. This function causes the `Next' or `Previous' pointer to point to the
  1487. immediately preceding or following node, even if it is at a higher or
  1488. lower hierarchical level in the document.  Continually pressing `n' or
  1489. `p' takes you straight through the file.
  1490.  
  1491. Without any prefix argument, update the node in which point is located.
  1492. Non-nil argument (prefix, if interactive) means update the nodes in the
  1493. marked region.
  1494.  
  1495. This command makes it awkward to navigate among sections and
  1496. subsections; it should be used only for those documents that are meant
  1497. to be read like a novel rather than a reference, and for which the
  1498. Info `g*' command is inadequate."
  1499.   
  1500.   (interactive "P")
  1501.   (if (not region-p)
  1502.       ;; update a single node
  1503.       (let ((auto-fill-function nil) (auto-fill-hook nil))
  1504.         (if (not (re-search-backward "^@node" (point-min) t))
  1505.             (error "Node line not found before this position."))
  1506.         (texinfo-sequentially-update-the-node)
  1507.         (message 
  1508.          "Done...sequentially updated the node .  You may save the buffer."))
  1509.     ;; else
  1510.     (let ((auto-fill-function nil)
  1511.       (auto-fill-hook nil)
  1512.           (beginning (region-beginning))
  1513.           (end (region-end)))
  1514.       (if (= end beginning)
  1515.           (error "Please mark a region!"))
  1516.       (save-restriction
  1517.         (narrow-to-region beginning end)
  1518.         (goto-char beginning)
  1519.         (push-mark (point) t)
  1520.         (while (re-search-forward "^@node" (point-max) t)
  1521.           (beginning-of-line)            
  1522.           (texinfo-sequentially-update-the-node))
  1523.         (message 
  1524.          "Done...updated the nodes in sequence.  You may save the buffer.")))))
  1525.  
  1526. (defun texinfo-sequentially-update-the-node ()
  1527.   "Update one node such that the pointers are sequential. 
  1528. A `Next' or `Previous' pointer points to any preceding or following node,
  1529. regardless of its hierarchical level."
  1530.  
  1531.         (texinfo-check-for-node-name)
  1532.         (texinfo-delete-existing-pointers)
  1533.         (message 
  1534.          "Sequentially updating node: %s ... " (texinfo-copy-node-name))
  1535.         (save-restriction
  1536.           (widen)
  1537.           (let*
  1538.               ((case-fold-search t)
  1539.                (level (texinfo-hierarchic-level)))
  1540.             (if (string-equal level "top")
  1541.                 (texinfo-top-pointer-case)
  1542.               ;; else
  1543.               (texinfo-sequentially-insert-pointer level 'next)
  1544.               (texinfo-sequentially-insert-pointer level 'previous)
  1545.               (texinfo-sequentially-insert-pointer level 'up)
  1546.               (texinfo-clean-up-node-line)))))
  1547.  
  1548. (defun texinfo-sequentially-find-pointer (level direction)
  1549.   "Find next or previous pointer sequentially in Texinfo file, or up pointer.
  1550. Move point to section associated with the pointer.  Find point even if
  1551. it is in a different section.
  1552.  
  1553. Return type of pointer (either 'normal or 'no-pointer).
  1554.  
  1555. The first argument is a string specifying the general kind of section
  1556. such as \"chapter\ or \"section\".  The section found will be at the
  1557. same hierarchical level in the Texinfo file, or, in the case of the up
  1558. pointer, some level higher.  The second argument (one of 'next,
  1559. 'previous, or 'up) specifies whether to find the `Next', `Previous',
  1560. or `Up' pointer."
  1561.   (let ((case-fold-search t))  
  1562.     (cond ((eq direction 'next)
  1563.            (forward-line 3)             ; skip over current node
  1564.            (if (re-search-forward 
  1565.                 texinfo-section-types-regexp
  1566.                 (point-max)
  1567.                 t)
  1568.                'normal
  1569.              'no-pointer))
  1570.           ((eq direction 'previous)
  1571.            (if (re-search-backward 
  1572.                 texinfo-section-types-regexp
  1573.                 (point-min)
  1574.                 t)
  1575.                'normal
  1576.              'no-pointer))
  1577.           ((eq direction 'up)
  1578.            (if (re-search-backward
  1579.                 (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
  1580.                 beginning
  1581.                 t)
  1582.                'normal
  1583.              'no-pointer))
  1584.           (t
  1585.            (error "texinfo-sequential-find-pointer: lack proper arguments")))))
  1586.  
  1587. (defun texinfo-sequentially-insert-pointer (level direction)
  1588.   "Insert the `Next', `Previous' or `Up' node name at point.
  1589. Move point forward.  
  1590.  
  1591. The first argument is the hierarchical level of the Texinfo file, a
  1592. string such as \"section\".  The second argument is direction, one of
  1593. `next, `previous, or 'up."
  1594.  
  1595.   (end-of-line)
  1596.   (insert
  1597.    ", "
  1598.    (save-excursion
  1599.      (texinfo-pointer-name
  1600.       (texinfo-sequentially-find-pointer level direction)))))
  1601.  
  1602.  
  1603. ;;; Inserting `@node' lines
  1604. ; The `texinfo-insert-node-lines' function inserts `@node' lines as needed
  1605. ; before the `@chapter', `@section', and such like lines of a region
  1606. ; in a Texinfo file.
  1607.  
  1608. (defun texinfo-insert-node-lines (beginning end &optional title-p)
  1609.   "Insert missing `@node' lines in region of Texinfo file.
  1610. Non-nil argument (prefix, if interactive) means also to insert the
  1611. section titles as node names; and also to insert the section titles as
  1612. node names in pre-existing @node lines that lack names."
  1613.   (interactive "r\nP")
  1614.  
  1615.   ;; Use marker; after inserting node lines, leave point at end of
  1616.   ;; region and mark at beginning.
  1617.  
  1618.   (let (beginning-marker end-marker title last-section-position)
  1619.  
  1620.     ;; Save current position on mark ring and set mark to end.
  1621.     (push-mark end t)                   
  1622.     (setq end-marker (mark-marker))        
  1623.  
  1624.     (goto-char beginning)
  1625.     (while (re-search-forward
  1626.             texinfo-section-types-regexp 
  1627.             end-marker
  1628.             'end)
  1629.       ;; Copy title if desired.
  1630.       (if title-p
  1631.           (progn 
  1632.             (beginning-of-line)
  1633.             (forward-word 1)
  1634.             (skip-chars-forward " \t")
  1635.             (setq title (buffer-substring
  1636.                          (point)
  1637.                          (save-excursion (end-of-line) (point))))))
  1638.       ;; Insert node line if necessary.
  1639.       (if (re-search-backward
  1640.            "^@node" 
  1641.            ;; Avoid finding previous node line if node lines are close.
  1642.            (or last-section-position    
  1643.                (save-excursion (forward-line -2) (point))) t)
  1644.           ;;  @node is present, and point at beginning of that line
  1645.           (forward-word 1)          ; Leave point just after @node.
  1646.         ;; Else @node missing; insert one.
  1647.         (beginning-of-line)         ; Beginning of `@section' line.
  1648.         (insert "@node\n")
  1649.         (backward-char 1))          ; Leave point just after `@node'.
  1650.       ;; Insert title if desired.
  1651.       (if title-p
  1652.           (progn
  1653.             (skip-chars-forward " \t")
  1654.             ;; Use regexp based on what info looks for
  1655.             ;; (alternatively, use "[a-zA-Z]+");
  1656.             ;; this means we only insert a title if none exists.
  1657.             (if (not (looking-at "[^,\t\n ]+")) 
  1658.                 (progn
  1659.                   (beginning-of-line) 
  1660.                   (forward-word 1)
  1661.                   (insert " " title)
  1662.                   (message "Inserted title %s ... " title)))))
  1663.       ;; Go forward beyond current section title.
  1664.       (re-search-forward texinfo-section-types-regexp 
  1665.                          (save-excursion (forward-line 3) (point)) t)
  1666.       (setq last-section-position (point))
  1667.       (forward-line 1))
  1668.  
  1669.     ;; Leave point at end of region, mark at beginning.
  1670.     (set-mark beginning)
  1671.  
  1672.     (if title-p
  1673.       (message
  1674.        "Done inserting node lines and titles.  You may save the buffer.")
  1675.     (message "Done inserting node lines.  You may save the buffer."))))
  1676.  
  1677.  
  1678. ;;; Update and create menus for multi-file Texinfo sources
  1679.  
  1680. ;;  1. M-x texinfo-multiple-files-update 
  1681. ;;
  1682. ;;     Read the include file list of an outer Texinfo file and
  1683. ;;     update all highest level nodes in the files listed and insert a
  1684. ;;     main menu in the outer file after its top node.
  1685.  
  1686. ;;  2. C-u M-x texinfo-multiple-files-update 
  1687. ;;
  1688. ;;     Same as 1, but insert a master menu.  (Saves reupdating lower
  1689. ;;     level menus and nodes.)  This command simply reads every menu,
  1690. ;;     so if the menus are wrong, the master menu will be wrong.
  1691. ;;     Similarly, if the lower level node pointers are wrong, they
  1692. ;;     will stay wrong.
  1693.  
  1694. ;;  3. C-u 2 M-x texinfo-multiple-files-update 
  1695. ;;
  1696. ;;     Read the include file list of an outer Texinfo file and
  1697. ;;     update all nodes and menus in the files listed and insert a
  1698. ;;     master menu in the outer file after its top node.
  1699.  
  1700. ;;; Note: these functions:
  1701. ;;;
  1702. ;;;   * Do not save or delete any buffers.  You may fill up your memory.
  1703. ;;;   * Do not handle any pre-existing nodes in outer file.  
  1704. ;;;     Hence, you may need a file for indices.
  1705.  
  1706.  
  1707. ;;; Auxiliary functions for multiple file updating
  1708.  
  1709. (defun texinfo-multi-file-included-list (outer-file)
  1710.   "Return a list of the included files in OUTER-FILE."
  1711.   (let ((included-file-list (list outer-file))
  1712.         start)
  1713.     (save-excursion
  1714.       (switch-to-buffer (find-file-noselect outer-file))
  1715.       (widen)
  1716.       (goto-char (point-min))
  1717.       (while (re-search-forward "^@include" nil t)
  1718.         (skip-chars-forward " \t")
  1719.         (setq start (point))
  1720.         (end-of-line)
  1721.         (skip-chars-backward " \t")   
  1722.         (setq included-file-list
  1723.               (cons (buffer-substring start (point))
  1724.                     included-file-list)))
  1725.       (nreverse included-file-list))))
  1726.  
  1727. (defun texinfo-copy-next-section-title ()
  1728.   "Return the name of the immediately following section as a string.
  1729.  
  1730. Start with point at the beginning of the node line.  Leave point at the
  1731. same place.  If there is no title, returns an empty string."
  1732.  
  1733.   (save-excursion
  1734.     (end-of-line)
  1735.     (let ((node-end (or 
  1736.                         (save-excursion
  1737.                           (if (re-search-forward "\\(^@node\\)" nil t)
  1738.                               (match-beginning 0)))
  1739.                         (point-max))))
  1740.       (if (re-search-forward texinfo-section-types-regexp node-end t)
  1741.           (progn
  1742.             (beginning-of-line)
  1743.             ;; copy title
  1744.             (let ((title
  1745.                    (buffer-substring
  1746.                     (progn (forward-word 1)           ; skip over section type
  1747.                            (skip-chars-forward " \t") ; and over spaces
  1748.                            (point))
  1749.                     (progn (end-of-line) (point)))))
  1750.               title))
  1751.         ""))))
  1752.  
  1753. (defun texinfo-multi-file-update (files &optional update-everything)
  1754.   "Update first node pointers in each file in FILES.
  1755. Return a list of the node names.
  1756.  
  1757. The first file in the list is an outer file; the remaining are
  1758. files included in the outer file with `@include' commands.
  1759.  
  1760. If optional arg UPDATE-EVERYTHING non-nil, update every menu and
  1761. pointer in each of the included files.
  1762.  
  1763. Also update the `Top' level node pointers of the outer file.
  1764.  
  1765. Requirements:
  1766.  
  1767.   * the first file in the FILES list must be the outer file,
  1768.   * each of the included files must contain exactly one highest
  1769.     hierarchical level node, 
  1770.   * this node must be the first node in the included file,
  1771.   * each highest hierarchical level node must be of the same type.
  1772.  
  1773. Thus, normally, each included file contains one, and only one,
  1774. chapter."
  1775.  
  1776. ; The menu-list has the form:
  1777. ;     \(\(\"node-name1\" . \"title1\"\) 
  1778. ;       \(\"node-name2\" . \"title2\"\) ... \)
  1779. ; However, there does not need to be a title field and this function
  1780. ; does not fill it; however a comment tells you how to do so.
  1781. ; You would use the title field if you wanted to insert titles in the
  1782. ; description slot of a menu as a description.
  1783.   
  1784.   (let ((case-fold-search t)
  1785.         menu-list)
  1786.     
  1787.     ;; Find the name of the first node of the first included file.
  1788.     (switch-to-buffer (find-file-noselect (car (cdr files))))
  1789.     (widen)
  1790.     (goto-char (point-min))
  1791.     (if (not (re-search-forward "^@node" nil t))
  1792.         (error "No `@node' line found in %s !" (buffer-name)))
  1793.     (beginning-of-line)
  1794.     (texinfo-check-for-node-name)
  1795.     (setq next-node-name (texinfo-copy-node-name))
  1796.     
  1797.     (setq menu-list
  1798.           (cons (cons 
  1799.                  next-node-name
  1800.                  (prog1 "" (forward-line 1)))
  1801.                 ;; Use following to insert section titles automatically.
  1802.                 ;; (texinfo-copy-next-section-title)
  1803.                 menu-list))
  1804.  
  1805.     ;; Go to outer file
  1806.     (switch-to-buffer (find-file-noselect (car files)))
  1807.     (goto-char (point-min))
  1808.     (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
  1809.         (error "This buffer needs a Top node!"))
  1810.     (beginning-of-line)
  1811.     (texinfo-delete-existing-pointers)
  1812.     (end-of-line)
  1813.     (insert ", " next-node-name ", (dir), (dir)")
  1814.     (beginning-of-line)
  1815.     (setq previous-node-name "Top")
  1816.     (setq files (cdr files))
  1817.     
  1818.     (while files
  1819.       
  1820.       (if (not (cdr files))
  1821.           ;; No next file
  1822.           (setq next-node-name "")
  1823.         ;; Else,
  1824.         ;; find the name of the first node in the next file.
  1825.         (switch-to-buffer (find-file-noselect (car (cdr files))))
  1826.         (widen)
  1827.         (goto-char (point-min))
  1828.         (if (not (re-search-forward "^@node" nil t))
  1829.             (error "No `@node' line found in %s !" (buffer-name)))
  1830.         (beginning-of-line)
  1831.         (texinfo-check-for-node-name)
  1832.         (setq next-node-name (texinfo-copy-node-name))
  1833.         (setq menu-list
  1834.               (cons (cons 
  1835.                      next-node-name
  1836.                      (prog1 "" (forward-line 1)))
  1837.                     ;; Use following to insert section titles automatically.
  1838.                     ;; (texinfo-copy-next-section-title)
  1839.                     menu-list)))
  1840.  
  1841.       ;; Go to node to be updated.
  1842.       (switch-to-buffer (find-file-noselect (car files)))
  1843.       (goto-char (point-min))
  1844.       (if (not (re-search-forward "^@node" nil t))
  1845.           (error "No `@node' line found in %s !" (buffer-name)))
  1846.       (beginning-of-line)
  1847.       
  1848.       ;; Update other menus and nodes if requested.
  1849.       (if update-everything (texinfo-all-menus-update t))
  1850.  
  1851.       (beginning-of-line)
  1852.       (texinfo-delete-existing-pointers)
  1853.       (end-of-line)
  1854.       (insert ", " next-node-name ", " previous-node-name ", " up-node-name)
  1855.       
  1856.       (beginning-of-line)
  1857.       (setq previous-node-name (texinfo-copy-node-name))
  1858.       
  1859.       (setq files (cdr files)))
  1860.     (nreverse menu-list)))
  1861.  
  1862. (defun texinfo-multi-files-insert-main-menu (menu-list)
  1863.   "Insert formatted main menu at point.
  1864. Indents the first line of the description, if any, to the value of
  1865. texinfo-column-for-description."
  1866.  
  1867.   (insert "@menu\n")
  1868.   (while menu-list
  1869.     ;; Every menu entry starts with a star and a space.
  1870.     (insert "* ")
  1871.     
  1872.     ;; Insert the node name (and menu entry name, if present).
  1873.     (let ((node-part (car (car menu-list))))
  1874.       (if (stringp node-part)
  1875.           ;; "Double colon" entry line; menu entry and node name are the same,
  1876.           (insert (format "%s::" node-part))  
  1877.         ;; "Single colon" entry line; menu entry and node name are different.
  1878.         (insert (format "%s: %s." (car node-part) (cdr node-part)))))
  1879.     
  1880.     ;; Insert the description, if present.
  1881.     (if (cdr (car menu-list))
  1882.         (progn
  1883.           ;; Move to right place.
  1884.           (indent-to texinfo-column-for-description 2) 
  1885.           ;; Insert description.
  1886.           (insert (format "%s" (cdr (car menu-list))))))  
  1887.  
  1888.     (insert "\n") ; end this menu entry
  1889.     (setq menu-list (cdr menu-list)))
  1890.   (insert "@end menu"))
  1891.  
  1892. (defun texinfo-multi-file-master-menu-list (files-list)
  1893.   "Return master menu list from files in FILES-LIST.
  1894. Menu entries in each file collected using `texinfo-master-menu-list'.
  1895.  
  1896. The first file in FILES-LIST must be the outer file; the others must
  1897. be the files included within it.  A main menu must already exist."
  1898.   (save-excursion
  1899.     (let (master-menu-list)
  1900.       (while files-list
  1901.         (switch-to-buffer (find-file-noselect (car files-list)))
  1902.         (message "Working on: %s " (current-buffer))
  1903.         (goto-char (point-min))
  1904.         (setq master-menu-list
  1905.               (append master-menu-list (texinfo-master-menu-list)))
  1906.         (setq files-list (cdr files-list)))
  1907.       master-menu-list)))
  1908.  
  1909.  
  1910. ;;; The multiple-file update function
  1911.  
  1912. (defun texinfo-multiple-files-update
  1913.   (outer-file &optional update-everything make-master-menu)
  1914.   "Update first node pointers in each file included in OUTER-FILE;
  1915. create or update the `Top' level node pointers and the main menu in
  1916. the outer file that refers to such nodes.  This does not create or
  1917. update menus or pointers within the included files.
  1918.  
  1919. With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
  1920. insert a master menu in OUTER-FILE in addition to creating or updating
  1921. pointers in the first @node line in each included file and creating or
  1922. updating the `Top' level node pointers of the outer file.  This does
  1923. not create or update other menus and pointers within the included
  1924. files.
  1925.  
  1926. With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
  1927. interactive), update all the menus and all the `Next', `Previous', and
  1928. `Up' pointers of all the files included in OUTER-FILE before inserting
  1929. a master menu in OUTER-FILE.  Also, update the `Top' level node
  1930. pointers of OUTER-FILE.
  1931.  
  1932. Notes: 
  1933.  
  1934.   * this command does NOT save any files--you must save the
  1935.     outer file and any modified, included files.
  1936.  
  1937.   * except for the `Top' node, this command does NOT handle any
  1938.     pre-existing nodes in the outer file; hence, indices must be
  1939.     enclosed in an included file.
  1940.  
  1941. Requirements:
  1942.  
  1943.   * each of the included files must contain exactly one highest
  1944.     hierarchical level node, 
  1945.   * this highest node must be the first node in the included file,
  1946.   * each highest hierarchical level node must be of the same type.
  1947.  
  1948. Thus, normally, each included file contains one, and only one,
  1949. chapter."
  1950.   
  1951.   (interactive (cons
  1952.                 (read-string
  1953.                  "Name of outer `include' file: "
  1954.                  (buffer-file-name))
  1955.                 (cond ((not current-prefix-arg)
  1956.                        '(nil nil))
  1957.                       ((listp current-prefix-arg)
  1958.                        '(t nil))   ; make-master-menu 
  1959.                       ((numberp current-prefix-arg)
  1960.                        '(t t))     ; update-everything
  1961.                       )))
  1962.  
  1963.   (let* ((included-file-list (texinfo-multi-file-included-list outer-file))
  1964.          (files included-file-list)
  1965.          main-menu-list
  1966.          next-node-name
  1967.          previous-node-name
  1968.          (up-node-name "Top"))
  1969.  
  1970. ;;; Update the pointers 
  1971. ;;; and collect the names of the nodes and titles
  1972.     (setq main-menu-list (texinfo-multi-file-update files update-everything))
  1973.  
  1974. ;;; Insert main menu
  1975.  
  1976.   ;; Go to outer file
  1977.   (switch-to-buffer (find-file-noselect (car included-file-list)))
  1978.   (if (texinfo-old-menu-p
  1979.        (point-min)
  1980.        (save-excursion
  1981.          (re-search-forward "^@include")
  1982.          (beginning-of-line)
  1983.          (point)))
  1984.  
  1985.       ;; If found, leave point after word `menu' on the `@menu' line.
  1986.       (progn
  1987.         (texinfo-incorporate-descriptions main-menu-list)
  1988.         ;; Delete existing menu.
  1989.         (beginning-of-line)
  1990.         (delete-region
  1991.          (point)
  1992.          (save-excursion (re-search-forward "^@end menu") (point)))
  1993.         ;; Insert main menu
  1994.         (texinfo-multi-files-insert-main-menu main-menu-list))
  1995.  
  1996.     ;; Else no current menu; insert it before `@include'
  1997.     (texinfo-multi-files-insert-main-menu main-menu-list))
  1998.  
  1999. ;;; Insert master menu
  2000.  
  2001.   (if make-master-menu
  2002.       (progn
  2003.         ;; First, removing detailed part of any pre-existing master menu
  2004.         (goto-char (point-min))
  2005.         (if (re-search-forward texinfo-master-menu-header nil t)
  2006.             ;; Remove detailed master menu listing
  2007.             (progn
  2008.               (goto-char (match-beginning 0))
  2009.               (let ((end-of-detailed-menu-descriptions
  2010.                      (save-excursion     ; beginning of end menu line
  2011.                        (goto-char (texinfo-menu-end))
  2012.                        (beginning-of-line) (forward-char -1)
  2013.                        (point))))
  2014.                 (delete-region (point) end-of-detailed-menu-descriptions))))
  2015.  
  2016.         ;; Create a master menu and insert it
  2017.         (texinfo-insert-master-menu-list 
  2018.          (texinfo-multi-file-master-menu-list
  2019.           included-file-list)))))
  2020.  
  2021.   ;; Remove unwanted extra lines.
  2022.   (save-excursion
  2023.     (goto-char (point-min))
  2024.       
  2025.     (re-search-forward "^@menu")
  2026.     (forward-line -1)
  2027.     (insert  "\n") ; Ensure at least one blank line.
  2028.     (delete-blank-lines)
  2029.       
  2030.     (re-search-forward "^@end menu")
  2031.     (forward-line 1)
  2032.     (insert  "\n") ; Ensure at least one blank line.
  2033.     (delete-blank-lines))
  2034.  
  2035.   (message "Multiple files updated."))
  2036.  
  2037.  
  2038. ;;; Place `provide' at end of file.
  2039. (provide 'texnfo-upd)
  2040.  
  2041. ;;; texnfo-upd.el ends here
  2042.