123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103 |
- ;;; texnfo-upd.el --- utilities for updating nodes and menus in Texinfo files
- ;; Copyright (C) 1989-1992, 2001-2012 Free Software Foundation, Inc.
- ;; Author: Robert J. Chassell
- ;; Maintainer: bug-texinfo@gnu.org
- ;; Keywords: maint, tex, docs
- ;; This file is part of GNU Emacs.
- ;; GNU Emacs is free software: you can redistribute it and/or modify
- ;; it under the terms of the GNU General Public License as published by
- ;; the Free Software Foundation, either version 3 of the License, or
- ;; (at your option) any later version.
- ;; GNU Emacs is distributed in the hope that it will be useful,
- ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
- ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ;; GNU General Public License for more details.
- ;; You should have received a copy of the GNU General Public License
- ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
- ;;; Commentary:
- ;; Known bug: update commands fail to ignore @ignore, and fail to DTRT
- ;; with the @if... directives (so expect trouble when the manual uses
- ;; different @node lines or @menu items in @iftex and in @ifnottex).
- ;; Summary: how to use the updating commands
- ;; The node and menu updating functions automatically
- ;; * insert missing `@node' lines,
- ;; * insert the `Next', `Previous' and `Up' pointers of a node,
- ;; * insert or update the menu for a section,
- ;; * create a master menu for a Texinfo source file.
- ;;
- ;; With a prefix argument, the `texinfo-update-node' and
- ;; `texinfo-make-menu' functions do their jobs in the region.
- ;;
- ;; Important note: We do NOT recommend use of these commands to update
- ;; the `Next', `Previous' and `Up' pointers on @node lines. Most
- ;; manuals, including those whose Texinfo files adhere to the structure
- ;; described below, don't need these pointers, because makeinfo will
- ;; generate them automatically (see the node "makeinfo Pointer
- ;; Creation" in the Texinfo manual). By contrast, due to known bugs
- ;; described above, texinfo-update-node etc. could produce incorrect
- ;; pointers, and thus make a perfectly valid Texinfo file into an
- ;; invalid one. You _have_ been warned!
- ;;
- ;; In brief, the functions for creating or updating nodes and menus, are:
- ;;
- ;; texinfo-update-node (&optional beginning end)
- ;; texinfo-every-node-update ()
- ;; texinfo-sequential-node-update (&optional region-p)
- ;;
- ;; texinfo-make-menu (&optional beginning end)
- ;; texinfo-all-menus-update ()
- ;; texinfo-master-menu ()
- ;;
- ;; texinfo-insert-node-lines (&optional title-p)
- ;;
- ;; texinfo-indent-menu-description (column &optional region-p)
- ;; The `texinfo-column-for-description' variable specifies the column to
- ;; which menu descriptions are indented.
- ;; Texinfo file structure
- ;; ----------------------
- ;; To use the updating commands, you must structure your Texinfo file
- ;; hierarchically. Each `@node' line, with the exception of the top
- ;; node, must be accompanied by some kind of section line, such as an
- ;; `@chapter' or `@section' line. Each node-line/section-line
- ;; combination must look like this:
- ;; @node Lists and Tables, Cross References, Structuring, Top
- ;; @comment node-name, next, previous, up
- ;; @chapter Making Lists and Tables
- ;; or like this (without the `@comment' line):
- ;; @node Lists and Tables, Cross References, Structuring, Top
- ;; @chapter Making Lists and Tables
- ;; If the file has a `top' node, it must be called `top' or `Top' and
- ;; be the first node in the file.
- ;;; The update node functions described in detail
- ;; The `texinfo-update-node' command with no prefix argument inserts
- ;; the correct next, previous and up pointers for the node in which
- ;; point is located (i.e., for the node preceding point).
- ;; With prefix argument, the `texinfo-update-node' function inserts the
- ;; correct next, previous and up pointers for the nodes inside the
- ;; region.
- ;; It does not matter whether the `@node' line has pre-existing
- ;; `Next', `Previous', or `Up' pointers in it. They are removed.
- ;; Warning: Since the pre-existing pointers are replaced with the ones
- ;; computed by `texinfo-update-node', and since this function has
- ;; known bugs with the more advanced Texinfo features (see above), it
- ;; could produce an invalid Texinfo file. You are well advised not to
- ;; use this function, except if you know what you are doing and
- ;; exercise extreme caution. Keep in mind that most manuals do not
- ;; need the `Next', `Previous', and `Up' pointers to be present on the
- ;; @node lines; makeinfo will automatically generate them when it
- ;; produces the Info or HTML versions of the manual.
- ;; The `texinfo-every-node-update' function runs `texinfo-update-node'
- ;; on the whole buffer.
- ;; The `texinfo-sequential-node-update' function inserts the
- ;; immediately following and preceding node into the `Next' or
- ;; `Previous' pointers regardless of their hierarchical level. This is
- ;; only useful for certain kinds of text, like a novel, which you go
- ;; through sequentially.
- ;;; The menu making functions described in detail
- ;; The `texinfo-make-menu' function without an argument creates or
- ;; updates a menu for the section encompassing the node that follows
- ;; point. With an argument, it makes or updates menus for the nodes
- ;; within or part of the marked region.
- ;; Whenever an existing menu is updated, the descriptions from
- ;; that menu are incorporated into the new menu. This is done by copying
- ;; descriptions from the existing menu to the entries in the new menu
- ;; that have the same node names. If the node names are different, the
- ;; descriptions are not copied to the new menu.
- ;; Menu entries that refer to other Info files are removed since they
- ;; are not a node within current buffer. This is a deficiency.
- ;; The `texinfo-all-menus-update' function runs `texinfo-make-menu'
- ;; on the whole buffer.
- ;; The `texinfo-master-menu' function creates an extended menu located
- ;; after the top node. (The file must have a top node.) This
- ;; function works only on Texinfo files all of whose menus are
- ;; present in a single file; use `texinfo-multiple-files-update' for
- ;; multi-file manuals. The function constructs a master menu that
- ;; includes every entry from every other menu. Use this command to
- ;; create or update the @detailmenu menu after you've created or
- ;; updated all the menus in the file, including the menu in the Top
- ;; node, using the `texinfo-make-menu' or the `texinfo-all-menus-update'
- ;; command.
- ;; The `texinfo-indent-menu-description' function indents every
- ;; description in the menu following point, to the specified column.
- ;; Non-nil argument (prefix, if interactive) means indent every
- ;; description in every menu in the region. This function does not
- ;; indent second and subsequent lines of a multi-line description.
- ;; The `texinfo-insert-node-lines' function inserts `@node' before the
- ;; `@chapter', `@section', and such like lines of a region in a Texinfo
- ;; file where the `@node' lines are missing.
- ;;
- ;; With a non-nil argument (prefix, if interactive), the function not
- ;; only inserts `@node' lines but also inserts the chapter or section
- ;; titles as the names of the corresponding nodes; and inserts titles
- ;; as node names in pre-existing `@node' lines that lack names.
- ;;
- ;; Since node names should be more concise than section or chapter
- ;; titles, you will usually want to manually edit node names so inserted.
- ;;; Code:
- (require 'texinfo)
- (defvar texinfo-master-menu-header
- " --- The Detailed Node Listing ---\n"
- "String inserted before lower level entries in Texinfo master menu.
- It comes after the chapter-level menu entries.")
- ;; We used to look for just sub, but that found @subtitle.
- (defvar texinfo-section-types-regexp
- "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)"
- "Regexp matching chapter, section, other headings (but not the top node).")
- (defvar texinfo-section-level-regexp
- (regexp-opt (texinfo-filter 3 texinfo-section-list))
- "Regular expression matching just the Texinfo section level headings.")
- (defvar texinfo-subsection-level-regexp
- (regexp-opt (texinfo-filter 4 texinfo-section-list))
- "Regular expression matching just the Texinfo subsection level headings.")
- (defvar texinfo-subsubsection-level-regexp
- (regexp-opt (texinfo-filter 5 texinfo-section-list))
- "Regular expression matching just the Texinfo subsubsection level headings.")
- (defvar texinfo-update-menu-same-level-regexps
- '((1 . "top[ \t]+")
- (2 . (concat "\\(^@\\)\\(" texinfo-chapter-level-regexp "\\)\\>[ \t]*"))
- (3 . (concat "\\(^@\\)\\(" texinfo-section-level-regexp "\\)\\>[ \t]*"))
- (4 . (concat "\\(^@\\)\\(" texinfo-subsection-level-regexp "\\)\\>[ \t]+"))
- (5 . (concat "\\(^@\\)\\(" texinfo-subsubsection-level-regexp "\\)\\>[ \t]+")))
- "*Regexps for searching for same level sections in a Texinfo file.
- The keys are strings specifying the general hierarchical level in the
- document; the values are regular expressions.")
- (defvar texinfo-update-menu-higher-regexps
- '((1 . "^@node [ \t]*DIR")
- (2 . "^@node [ \t]*top[ \t]*\\(,\\|$\\)")
- (3 .
- (concat
- "\\(^@\\("
- texinfo-chapter-level-regexp
- "\\)\\>[ \t]*\\)"))
- (4 .
- (concat
- "\\(^@\\("
- texinfo-section-level-regexp
- "\\|"
- texinfo-chapter-level-regexp
- "\\)\\>[ \t]*\\)"))
- (5 .
- (concat
- "\\(^@\\("
- texinfo-subsection-level-regexp
- "\\|"
- texinfo-section-level-regexp
- "\\|"
- texinfo-chapter-level-regexp
- "\\)\\>[ \t]*\\)")))
- "*Regexps for searching for higher level sections in a Texinfo file.
- The keys are strings specifying the general hierarchical level in the
- document; the values are regular expressions.")
- (defvar texinfo-update-menu-lower-regexps
- '((1 .
- (concat
- "\\(^@\\("
- texinfo-chapter-level-regexp
- "\\|"
- texinfo-section-level-regexp
- "\\|"
- texinfo-subsection-level-regexp
- "\\|"
- texinfo-subsubsection-level-regexp
- "\\)\\>[ \t]*\\)"))
- (2 .
- (concat
- "\\(^@\\("
- texinfo-section-level-regexp
- "\\|"
- texinfo-subsection-level-regexp
- "\\|"
- texinfo-subsubsection-level-regexp
- "\\)\\>[ \t]*\\)"))
- (3 .
- (concat
- "\\(^@\\("
- texinfo-subsection-level-regexp
- "\\|"
- texinfo-subsubsection-level-regexp
- "\\)\\>[ \t]+\\)"))
- (4 .
- (concat
- "\\(^@\\("
- texinfo-subsubsection-level-regexp
- "\\)\\>[ \t]+\\)"))
- ;; There's nothing below 5, use a bogus regexp that can't match.
- (5 . "a\\(^\\)"))
- "*Regexps for searching for lower level sections in a Texinfo file.
- The keys are strings specifying the general hierarchical level in the
- document; the values are regular expressions.")
- (defun texinfo-make-menu (&optional beginning end)
- "Without any prefix argument, make or update a menu.
- Make the menu for the section enclosing the node found following point.
- A prefix argument means make or update menus
- for nodes within or part of the marked region.
- Whenever a menu exists, and is being updated, the descriptions that
- are associated with node names in the pre-existing menu are
- incorporated into the new menu.
- Leaves trailing whitespace in a menu that lacks descriptions, so
- descriptions will format well. In general, a menu should contain
- descriptions, because node names and section titles are often too
- short to explain a node well."
- (interactive
- (if prefix-arg
- (list (point) (mark))))
- (if (null beginning)
- (let ((level (texinfo-hierarchic-level)))
- (texinfo-make-one-menu level)
- (message "Menu updated"))
- ;; else
- (message "Making or updating menus in %s... " (buffer-name))
- (save-excursion
- (goto-char (min beginning end))
- ;; find section type following point
- (let ((level (texinfo-hierarchic-level))
- (region-end-marker (make-marker)))
- (set-marker region-end-marker (max beginning end))
- (save-restriction
- (widen)
- (while (texinfo-find-lower-level-node
- level (marker-position region-end-marker))
- (setq level (texinfo-hierarchic-level)) ; new, lower level
- (texinfo-make-one-menu level))
- (while (and (< (point) (marker-position region-end-marker))
- (texinfo-find-higher-level-node
- level (marker-position region-end-marker)))
- (setq level (texinfo-hierarchic-level))
- ;; Don't allow texinfo-find-higher-level-node
- ;; to find the same node again.
- (forward-line 1)
- (while (texinfo-find-lower-level-node
- level (marker-position region-end-marker))
- (setq level (texinfo-hierarchic-level)) ; new, lower level
- (texinfo-make-one-menu level))))))
- (message "Making or updating menus in %s...done" (buffer-name))))
- (defun texinfo-make-one-menu (level)
- "Make a menu of all the appropriate nodes in this section.
- `Appropriate nodes' are those associated with sections that are
- at the level specified by LEVEL. Point is left at the end of menu."
- (let*
- ((case-fold-search t)
- (beginning
- (save-excursion
- (goto-char (texinfo-update-menu-region-beginning level))
- (end-of-line)
- (point)))
- (end (texinfo-update-menu-region-end level))
- (first (texinfo-menu-first-node beginning end))
- (node-name (progn
- (goto-char beginning)
- (beginning-of-line)
- (texinfo-copy-node-name)))
- (new-menu-list (texinfo-make-menu-list beginning end level)))
- (when (texinfo-old-menu-p beginning first)
- (texinfo-incorporate-descriptions new-menu-list)
- (texinfo-incorporate-menu-entry-names new-menu-list)
- (texinfo-delete-old-menu beginning first))
- (texinfo-insert-menu new-menu-list node-name)))
- (defun texinfo-all-menus-update (&optional update-all-nodes-p)
- "Update every regular menu in a Texinfo file.
- Update pre-existing master menu, if there is one.
- Only single-file manuals are supported by this function. For
- multi-file manuals, use `texinfo-multiple-files-update'.
- If called with a non-nil argument, this function first updates all the
- nodes in the buffer before updating the menus. Do NOT invoke this
- command with an argument if your Texinfo file uses @node lines without
- the `Next', `Previous', and `Up' pointers!
- Indents the first line of descriptions, and leaves trailing whitespace
- in a menu that lacks descriptions, so descriptions will format well.
- In general, a menu should contain descriptions, because node names and
- section titles are often too short to explain a node well."
- (interactive "P")
- (let ((case-fold-search t)
- master-menu-p)
- (save-excursion
- (push-mark (point-max) t)
- (goto-char (point-min))
- (message "Checking for a master menu in %s ... "(buffer-name))
- (save-excursion
- (when (search-forward texinfo-master-menu-header nil t)
- ;; Check if @detailmenu kludge is used;
- ;; if so, leave point before @detailmenu.
- (search-backward "\n@detailmenu" (line-beginning-position -2) t)
- ;; Remove detailed master menu listing
- (setq master-menu-p t)
- (goto-char (match-beginning 0))
- (let ((end-of-detailed-menu-descriptions
- (save-excursion ; beginning of end menu line
- (goto-char (texinfo-menu-end))
- (beginning-of-line) (forward-char -1)
- (point))))
- (delete-region (point) end-of-detailed-menu-descriptions))))
- (when update-all-nodes-p
- (message "Updating all nodes in %s ... " (buffer-name))
- (texinfo-update-node (point-min) (point-max)))
- (message "Updating all menus in %s ... " (buffer-name))
- (texinfo-make-menu (point-max) (point-min))
- (when master-menu-p
- (message "Updating the master menu in %s... " (buffer-name))
- (texinfo-master-menu nil)))
- (message "Done...updated all the menus. You may save the buffer.")))
- (defun texinfo-find-lower-level-node (level region-end)
- "Search forward from point for node at any level lower than LEVEL.
- Search is limited to the end of the marked region, REGION-END,
- and to the end of the menu region for the level.
- Return t if the node is found, else nil. Leave point at the beginning
- of the node if one is found; else do not move point."
- (let ((case-fold-search t))
- (if (and (< (point) region-end)
- (re-search-forward
- (concat
- "\\(^@node\\).*\n" ; match node line
- "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
- "\\|" ; or
- "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
- "\\|" ; or
- "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
- "\\)?" ; end of expression
- (eval (cdr (assoc level texinfo-update-menu-lower-regexps))))
- ;; the next higher level node marks the end of this
- ;; section, and no lower level node will be found beyond
- ;; this position even if region-end is farther off
- (texinfo-update-menu-region-end level)
- t))
- (goto-char (match-beginning 1)))))
- (defun texinfo-find-higher-level-node (level region-end)
- "Search forward from point for node at any higher level than argument LEVEL.
- Search is limited to the end of the marked region, REGION-END.
- Return t if the node is found, else nil. Leave point at the beginning
- of the node if one is found; else do not move point.
- A `@node' line starting at point does count as a match;
- if the match is found there, the value is t and point does not move."
- (let ((case-fold-search t))
- (cond
- ((< level 3)
- (if (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" region-end t)
- (progn (beginning-of-line) t)))
- (t
- (when (re-search-forward
- (concat
- "\\(^@node\\).*\n" ; match node line
- "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
- "\\|" ; or
- "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
- "\\|" ; or
- "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
- "\\)?" ; end of expression
- (eval (cdr (assoc level texinfo-update-menu-higher-regexps))))
- region-end t)
- (beginning-of-line) t)))))
- ;;; Making the list of new menu entries
- (defun texinfo-make-menu-list (beginning end level)
- "Make a list of node names and their descriptions.
- Point is left at the end of the menu region, but the menu is not inserted.
- First argument is position from which to start making menu list;
- second argument is end of region in which to try to locate entries;
- third argument is the level of the nodes that are the entries.
- Node names and descriptions are dotted pairs of strings. Each pair is
- an element of the list. If the description does not exist, the
- element consists only of the node name."
- (goto-char beginning)
- (let (new-menu-list)
- (while (texinfo-menu-locate-entry-p level end)
- (push (cons
- (texinfo-copy-node-name)
- (prog1 "" (forward-line 1)))
- ;; Use following to insert section titles automatically.
- ;; (texinfo-copy-section-title))
- new-menu-list))
- (nreverse new-menu-list)))
- (defun texinfo-menu-locate-entry-p (level search-end)
- "Find a node that will be part of menu for this section.
- First argument is a string such as \"section\" specifying the general
- hierarchical level of the menu; second argument is a position
- specifying the end of the search.
- The function returns t if the node is found, else nil. It searches
- forward from point, and leaves point at the beginning of the node.
- The function finds entries of the same type. Thus `subsections' and
- `unnumberedsubsecs' will appear in the same menu."
- (let ((case-fold-search t))
- (if (re-search-forward
- (concat
- "\\(^@node\\).*\n" ; match node line
- "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
- "\\|" ; or
- "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
- "\\|" ; or
- "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
- "\\)?" ; end of expression
- (eval
- (cdr (assoc level texinfo-update-menu-same-level-regexps))))
- search-end
- t)
- (goto-char (match-beginning 1)))))
- (defun texinfo-copy-node-name ()
- "Return the node name as a string.
- Start with point at the beginning of the node line; copy the text
- after the node command up to the first comma on the line, if any, and
- return the text as a string. Leaves point at the beginning of the
- line. If there is no node name, returns an empty string."
- (save-excursion
- (buffer-substring
- (progn (forward-word 1) ; skip over node command
- (skip-chars-forward " \t") ; and over spaces
- (point))
- (if (search-forward "," (line-end-position) t) ; bound search
- (1- (point))
- (end-of-line) (point)))))
- (defun texinfo-copy-section-title ()
- "Return the title of the section as a string.
- The title is used as a description line in the menu when one does not
- already exist.
- Move point to the beginning of the appropriate section line by going
- to the start of the text matched by last regexp searched for, which
- must have been done by `texinfo-menu-locate-entry-p'."
- ;; could use the same re-search as in `texinfo-menu-locate-entry-p'
- ;; instead of using `match-beginning'; such a variation would be
- ;; more general, but would waste information already collected
- (goto-char (match-beginning 7)) ; match section name
- (buffer-substring
- (progn (forward-word 1) ; skip over section type
- (skip-chars-forward " \t") ; and over spaces
- (point))
- (progn (end-of-line) (point))))
- ;;; Handling the old menu
- (defun texinfo-old-menu-p (beginning first)
- "Move point to the beginning of the menu for this section, if any.
- Otherwise move point to the end of the first node of this section.
- Return t if a menu is found, nil otherwise.
- First argument is the position of the beginning of the section in which
- the menu will be located; second argument is the position of the first
- node within the section.
- If no menu is found, the function inserts two newlines just before the
- end of the section, and leaves point there where a menu ought to be."
- (goto-char beginning)
- (if (re-search-forward "^@menu" first 'goto-end)
- t
- (insert "\n\n") (forward-line -2) nil))
- (defun texinfo-incorporate-descriptions (new-menu-list)
- "Copy the old menu line descriptions that exist to the new menu.
- Point must be at beginning of old menu.
- If the node-name of the new menu is found in the old menu, insert the
- old description into the new entry.
- For this function, the new menu is a list made up of lists of dotted
- pairs in which the first element of the pair is the node name and the
- second element the description. The new menu is changed destructively.
- The old menu is the menu as it appears in the Texinfo file."
- (let ((end-of-menu (texinfo-menu-end)))
- (dolist (new-menu new-menu-list new-menu-list)
- (save-excursion ; keep point at beginning of menu
- (when (re-search-forward
- ;; Existing nodes can have the form
- ;; * NODE NAME:: DESCRIPTION
- ;; or
- ;; * MENU ITEM: NODE NAME. DESCRIPTION.
- ;;
- ;; Recognize both when looking for the description.
- (concat "\\* \\(" ; so only menu entries are found
- (regexp-quote (car new-menu)) "::"
- "\\|"
- ".*: " (regexp-quote (car new-menu)) "[.,\t\n]"
- "\\)"
- ) ; so only complete entries are found
- end-of-menu
- t)
- (setcdr new-menu (texinfo-menu-copy-old-description end-of-menu)))))))
- (defun texinfo-incorporate-menu-entry-names (new-menu-list)
- "Copy any old menu entry names to the new menu.
- Point must be at beginning of old menu.
- If the node-name of the new menu entry cannot be found in the old
- menu, do nothing.
- For this function, the new menu is a list made up of lists of dotted
- pairs in which the first element of the pair is the node name and the
- second element is the description (or nil).
- If we find an existing menu entry name, we change the first element of
- the pair to be another dotted pair in which the car is the menu entry
- name and the cdr is the node name.
- NEW-MENU-LIST is changed destructively. The old menu is the menu as it
- appears in the texinfo file."
- (let ((end-of-menu (texinfo-menu-end)))
- (dolist (new-menu new-menu-list new-menu-list)
- (save-excursion ; keep point at beginning of menu
- (if (re-search-forward
- ;; Existing nodes can have the form
- ;; * NODE NAME:: DESCRIPTION
- ;; or
- ;; * MENU ITEM: NODE NAME. DESCRIPTION.
- ;;
- ;; We're interested in the second case.
- (concat "\\* " ; so only menu entries are found
- "\\(.*\\): " (regexp-quote (car new-menu))
- "[.,\t\n]")
- end-of-menu
- t)
- (setcar
- new-menu ; replace the node name
- (cons (buffer-substring (match-beginning 1) (match-end 1))
- (car new-menu))))))))
- (defun texinfo-menu-copy-old-description (end-of-menu)
- "Return description field of old menu line as string.
- Point must be located just after the node name. Point left before description.
- Single argument, END-OF-MENU, is position limiting search."
- (skip-chars-forward "[:.,\t\n ]+")
- ;; don't copy a carriage return at line beginning with asterisk!
- ;; don't copy @detailmenu or @end menu or @ignore as descriptions!
- ;; do copy a description that begins with an `@'!
- ;; !! Known bug: does not copy descriptions starting with ^|\{?* etc.
- (if (and (looking-at "\\(\\w+\\|@\\)")
- (not (looking-at
- "\\(^\\* \\|^@detailmenu\\|^@end menu\\|^@ignore\\)")))
- (buffer-substring
- (point)
- (save-excursion
- (re-search-forward "\\(^\\* \\|^@ignore\\|^@end menu\\)" end-of-menu t)
- (line-end-position 0))) ; end of last description line
- ""))
- (defun texinfo-menu-end ()
- "Return position of end of menu, but don't move point.
- Signal an error if not end of menu."
- (save-excursion
- (if (re-search-forward "^@end menu" nil t)
- (point)
- (error "Menu does not have an end"))))
- (defun texinfo-delete-old-menu (beginning first)
- "Delete the old menu. Point must be in or after menu.
- First argument is position of the beginning of the section in which
- the menu will be located; second argument is the position of the first
- node within the section."
- ;; No third arg to search, so error if search fails.
- (re-search-backward "^@menu" beginning)
- (delete-region (point)
- (save-excursion
- (re-search-forward "^@end menu" first)
- (point))))
- ;;; Inserting new menu
- ;; try 32, but perhaps 24 is better
- (defvar texinfo-column-for-description 32
- "*Column at which descriptions start in a Texinfo menu.")
- (defun texinfo-insert-menu (menu-list node-name)
- "Insert formatted menu at point.
- Indents the first line of descriptions, if any, to the value of
- texinfo-column-for-description. Indenting leaves trailing whitespace
- in a menu that lacks descriptions, so descriptions will format well.
- In general, a menu should contain descriptions, because node names and
- section titles are often too short to explain a node well.
- MENU-LIST has form:
- \(\(\"node-name1\" . \"description\"\)
- \(\"node-name2\" . \"description\"\) ... \)
- However, the description field might be nil.
- Also, the node-name field might itself be a dotted pair (call it P) of
- strings instead of just a string. In that case, the car of P
- is the menu entry name, and the cdr of P is the node name."
- (insert "@menu\n")
- (dolist (menu menu-list)
- ;; Every menu entry starts with a star and a space.
- (insert "* ")
- ;; Insert the node name (and menu entry name, if present).
- (let ((node-part (car menu)))
- (if (stringp node-part)
- ;; "Double colon" entry line; menu entry and node name are the same,
- (insert (format "%s::" node-part))
- ;; "Single colon" entry line; menu entry and node name are different.
- (insert (format "%s: %s." (car node-part) (cdr node-part)))))
- ;; Insert the description, if present.
- (when (> (length (cdr menu)) 0)
- ;; Move to right place.
- (indent-to texinfo-column-for-description 2)
- ;; Insert description.
- (insert (format "%s" (cdr menu))))
- (insert "\n")) ; end this menu entry
- (insert "@end menu")
- (let ((level (texinfo-hierarchic-level)))
- (message
- "Updated level \"%s\" menu following node: %s ... " level node-name)))
- ;;; Starting menu descriptions by inserting titles
- (defun texinfo-start-menu-description ()
- "In this menu entry, insert the node's section title as a description.
- Position point at beginning of description ready for editing.
- Do not insert a title if the line contains an existing description.
- You will need to edit the inserted text since a useful description
- complements the node name rather than repeats it as a title does."
- (interactive)
- (let (beginning end node-name title)
- (save-excursion
- (beginning-of-line)
- (if (search-forward "* " (line-end-position) t)
- (progn (skip-chars-forward " \t")
- (setq beginning (point)))
- (error "This is not a line in a menu"))
- (cond
- ;; "Double colon" entry line; menu entry and node name are the same,
- ((search-forward "::" (line-end-position) t)
- (if (looking-at "[ \t]*[^ \t\n]+")
- (error "Descriptive text already exists"))
- (skip-chars-backward ": \t")
- (setq node-name (buffer-substring beginning (point))))
- ;; "Single colon" entry line; menu entry and node name are different.
- ((search-forward ":" (line-end-position) t)
- (skip-chars-forward " \t")
- (setq beginning (point))
- ;; Menu entry line ends in a period, comma, or tab.
- (if (re-search-forward "[.,\t]" (line-beginning-position 2) t)
- (progn
- (if (looking-at "[ \t]*[^ \t\n]+")
- (error "Descriptive text already exists"))
- (skip-chars-backward "., \t")
- (setq node-name (buffer-substring beginning (point))))
- ;; Menu entry line ends in a return.
- (re-search-forward ".*\n" (line-beginning-position 2) t)
- (skip-chars-backward " \t\n")
- (setq node-name (buffer-substring beginning (point)))
- (if (= 0 (length node-name))
- (error "No node name on this line")
- (insert "."))))
- (t (error "No node name on this line")))
- ;; Search for node that matches node name, and copy the section title.
- (if (re-search-forward
- (concat
- "^@node[ \t]+"
- (regexp-quote node-name)
- ".*\n" ; match node line
- "\\("
- "\\(\\(^@c \\|^@comment\\).*\n\\)" ; match comment line, if any
- "\\|" ; or
- "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
- "\\|" ; or
- "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
- "\\)?" ; end of expression
- )
- nil t)
- (setq title
- (buffer-substring
- ;; skip over section type
- (progn (forward-word 1)
- ;; and over spaces
- (skip-chars-forward " \t")
- (point))
- (progn (end-of-line)
- (skip-chars-backward " \t")
- (point))))
- (error "Cannot find node to match node name in menu entry")))
- ;; Return point to the menu and insert the title.
- (end-of-line)
- (delete-region
- (point)
- (save-excursion (skip-chars-backward " \t") (point)))
- (indent-to texinfo-column-for-description 2)
- (save-excursion (insert title))))
- ;;; Handling description indentation
- ;; Since the make-menu functions indent descriptions, these functions
- ;; are useful primarily for indenting a single menu specially.
- (defun texinfo-indent-menu-description (column &optional region-p)
- "Indent every description in menu following point to COLUMN.
- Non-nil argument (prefix, if interactive) means indent every
- description in every menu in the region. Does not indent second and
- subsequent lines of a multi-line description."
- (interactive
- "nIndent menu descriptions to (column number): \nP")
- (save-excursion
- (save-restriction
- (widen)
- (if (not region-p)
- (progn
- (re-search-forward "^@menu")
- (texinfo-menu-indent-description column)
- (message
- "Indented descriptions in menu. You may save the buffer."))
- ;;else
- (message "Indenting every menu description in region... ")
- (goto-char (region-beginning))
- (while (and (< (point) (region-end))
- (texinfo-locate-menu-p))
- (forward-line 1)
- (texinfo-menu-indent-description column))
- (message "Indenting done. You may save the buffer.")))))
- (defun texinfo-menu-indent-description (to-column-number)
- "Indent the Texinfo file menu description to TO-COLUMN-NUMBER.
- Start with point just after the word `menu' in the `@menu' line and
- leave point on the line before the `@end menu' line. Does not indent
- second and subsequent lines of a multi-line description."
- (let* ((beginning-of-next-line (point)))
- (while (< beginning-of-next-line
- (save-excursion ; beginning of end menu line
- (goto-char (texinfo-menu-end))
- (beginning-of-line)
- (point)))
- (when (re-search-forward "\\* \\(.*::\\|.*: [^.,\t\n]+[.,\t]\\)"
- (texinfo-menu-end)
- t)
- (let ((beginning-white-space (point)))
- (skip-chars-forward " \t") ; skip over spaces
- (if (looking-at "\\(@\\|\\w\\)+") ; if there is text
- (progn
- ;; remove pre-existing indentation
- (delete-region beginning-white-space (point))
- (indent-to-column to-column-number)))))
- ;; position point at beginning of next line
- (forward-line 1)
- (setq beginning-of-next-line (point)))))
- ;;; Making the master menu
- (defun texinfo-master-menu (update-all-nodes-menus-p)
- "Make a master menu for a whole Texinfo file.
- Remove pre-existing master menu, if there is one.
- This function supports only single-file manuals. For multi-file
- manuals, use `texinfo-multiple-files-update'.
- This function creates or updates the @detailmenu section of a
- master menu that follows the Top node. It replaces any existing
- detailed menu that follows the top node. The detailed menu
- includes every entry from all the other menus. By default, the
- existing menus, including the menu in the Top node, are not
- updated according to the buffer contents, so all the menus should
- be updated first using `texinfo-make-menu' or
- `texinfo-all-menus-update', which see. Alternatively, invoke
- this function with a prefix argument, see below.
- Non-nil, non-numeric argument (C-u prefix, if interactive) means
- first update all existing menus in the buffer (incorporating
- descriptions from pre-existing menus) before it constructs the
- master menu. If the argument is numeric (e.g., \"C-u 2\"),
- update all existing nodes as well, by calling
- \`texinfo-update-node' on the entire file. Warning: do NOT
- invoke with a numeric argument if your Texinfo file uses @node
- lines without the `Next', `Previous', `Up' pointers, as the
- result could be an invalid Texinfo file!
- The function removes and recreates the detailed part of an already
- existing master menu. This action assumes that the pre-existing
- master menu uses the standard `texinfo-master-menu-header' for the
- detailed menu.
- The master menu has the following format, which is adapted from the
- recommendation in the Texinfo Manual:
- * The first part contains the major nodes in the Texinfo file: the
- nodes for the chapters, chapter-like sections, and the major
- appendices. This includes the indices, so long as they are in
- chapter-like sections, such as unnumbered sections.
- * The second and subsequent parts contain a listing of the other,
- lower level menus, in order. This way, an inquirer can go
- directly to a particular node if he or she is searching for
- specific information.
- Each of the menus in the detailed node listing is introduced by the
- title of the section containing the menu.
- Indents the first line of descriptions, and leaves trailing whitespace
- in a menu that lacks descriptions, so descriptions will format well.
- In general, a menu should contain descriptions, because node names and
- section titles are often too short to explain a node well."
- (interactive "P")
- (let ((case-fold-search t))
- (widen)
- (goto-char (point-min))
- ;; Move point to location after `top'.
- (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
- (error "This buffer needs a Top node"))
- (let ((first-chapter
- (save-excursion
- (or (re-search-forward "^@node" nil t)
- (error "Too few nodes for a master menu"))
- (point))))
- (if (search-forward texinfo-master-menu-header first-chapter t)
- (progn
- ;; Check if @detailmenu kludge is used;
- ;; if so, leave point before @detailmenu.
- (search-backward "\n@detailmenu" (line-beginning-position -2) t)
- ;; Remove detailed master menu listing
- (goto-char (match-beginning 0))
- (let ((end-of-detailed-menu-descriptions
- (save-excursion ; beginning of end menu line
- (goto-char (texinfo-menu-end))
- (beginning-of-line) (forward-char -1)
- (point))))
- (delete-region (point) end-of-detailed-menu-descriptions)))))
- (if update-all-nodes-menus-p
- (progn
- (when (numberp update-all-nodes-menus-p)
- (message
- "Making a master menu in %s ...first updating all nodes... "
- (buffer-name))
- (texinfo-update-node (point-min) (point-max)))
- (message "Updating all menus in %s ... " (buffer-name))
- (texinfo-make-menu (point-min) (point-max))))
- (message "Now making the master menu in %s... " (buffer-name))
- (goto-char (point-min))
- (texinfo-insert-master-menu-list
- (texinfo-master-menu-list))
- ;; Remove extra newlines that texinfo-insert-master-menu-list
- ;; may have inserted.
- (save-excursion
- (goto-char (point-min))
- (if (search-forward texinfo-master-menu-header nil t)
- (progn
- (goto-char (match-beginning 0))
- ;; Check if @detailmenu kludge is used;
- ;; if so, leave point before @detailmenu.
- (search-backward "\n@detailmenu" (line-beginning-position -2) t)
- (insert "\n")
- (delete-blank-lines)
- (goto-char (point-min))))
- (re-search-forward "^@menu")
- (forward-line -1)
- (delete-blank-lines)
- (re-search-forward "^@end menu")
- (forward-line 1)
- (delete-blank-lines))
- (message
- "Done...completed making master menu. You may save the buffer.")))
- (defun texinfo-master-menu-list ()
- "Return a list of menu entries and header lines for the master menu.
- Start with the menu for chapters and indices and then find each
- following menu and the title of the node preceding that menu.
- The master menu list has this form:
- \(\(\(... \"entry-1-2\" \"entry-1\"\) \"title-1\"\)
- \(\(... \"entry-2-2\" \"entry-2-1\"\) \"title-2\"\)
- ...\)
- However, there does not need to be a title field."
- (let (master-menu-list)
- (while (texinfo-locate-menu-p)
- (push (list (texinfo-copy-menu) (texinfo-copy-menu-title))
- master-menu-list))
- (nreverse master-menu-list)))
- (defun texinfo-insert-master-menu-list (master-menu-list)
- "Format and insert the master menu in the current buffer."
- (goto-char (point-min))
- ;; Insert a master menu only after `Top' node and before next node
- ;; \(or include file if there is no next node\).
- (unless (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t)
- (error "This buffer needs a Top node"))
- (let ((first-chapter
- (save-excursion (re-search-forward "^@node\\|^@include") (point))))
- (unless (re-search-forward "^@menu" first-chapter t)
- (error "Buffer lacks a menu in its first node; create it, then run me again")))
- (beginning-of-line)
- (delete-region ; buffer must have ordinary top menu
- (point)
- (save-excursion (re-search-forward "^@end menu") (point)))
- (save-excursion
- ;; `master-menu-inserted-p' is a kludge to tell
- ;; whether to insert @end detailmenu (see bleow)
- (let (master-menu-inserted-p)
- ;; Handle top of menu
- (insert "\n@menu\n")
- ;; Insert chapter menu entries. Tell user what is going on.
- (message "Inserting chapter menu entry: %s ... "
- (car (car master-menu-list)))
- (dolist (entry (reverse (car (car master-menu-list))))
- (insert "* " entry "\n"))
- (setq master-menu-list (cdr master-menu-list))
- ;; Only insert detailed master menu if there is one....
- (if (car (car master-menu-list))
- (progn (setq master-menu-inserted-p t)
- (insert (concat "\n@detailmenu\n"
- texinfo-master-menu-header))))
- ;; @detailmenu added 5 Sept 1996 to `texinfo-master-menu-header'
- ;; at Karl Berry's request to avert a bug in `makeinfo';
- ;; all agree this is a bad kludge and should eventually be removed.
- ;; @detailmenu ... @end detailmenu is a noop in `texinfmt.el'.
- ;; See @end detailmenu below;
- ;; also see `texinfo-all-menus-update' above, `texinfo-master-menu',
- ;; `texinfo-multiple-files-update'.
- ;; Now, insert all the other menus
- ;; The menu master-menu-list has a form like this:
- ;; ((("beta" "alpha") "title-A")
- ;; (("delta" "gamma") "title-B"))
- (dolist (menu master-menu-list)
- (message "Inserting menu for %s .... " (cadr menu))
- ;; insert title of menu section
- (insert "\n" (cadr menu) "\n\n")
- ;; insert each menu entry
- (dolist (entry (reverse (car menu)))
- (insert "* " entry "\n")))
- ;; Finish menu
- ;; @detailmenu (see note above)
- ;; Only insert @end detailmenu if a master menu was inserted.
- (if master-menu-inserted-p
- (insert "\n@end detailmenu"))
- (insert "\n@end menu\n\n"))))
- (defun texinfo-locate-menu-p ()
- "Find the next menu in the texinfo file.
- If found, leave point after word `menu' on the `@menu' line, and return t.
- If a menu is not found, do not move point and return nil."
- (re-search-forward "\\(^@menu\\)" nil t))
- (defun texinfo-copy-menu-title ()
- "Return the title of the section preceding the menu as a string.
- If such a title cannot be found, return an empty string. Do not move
- point."
- (let ((case-fold-search t))
- (save-excursion
- (if (re-search-backward
- (concat
- "\\(^@top"
- "\\|" ; or
- texinfo-section-types-regexp ; all other section types
- "\\)")
- nil
- t)
- (progn
- (beginning-of-line)
- (forward-word 1) ; skip over section type
- (skip-chars-forward " \t") ; and over spaces
- (buffer-substring
- (point)
- (progn (end-of-line) (point))))
- ""))))
- (defun texinfo-copy-menu ()
- "Return the entries of an existing menu as a list.
- Start with point just after the word `menu' in the `@menu' line
- and leave point on the line before the `@end menu' line."
- (let* (this-menu-list
- (end-of-menu (texinfo-menu-end)) ; position of end of `@end menu'
- (last-entry (save-excursion ; position of beginning of
- ; last `* ' entry
- (goto-char end-of-menu)
- ;; handle multi-line description
- (if (not (re-search-backward "^\\* " nil t))
- (error "No entries in menu"))
- (point))))
- (while (< (point) last-entry)
- (if (re-search-forward "^\\* " end-of-menu t)
- (push (buffer-substring
- (point)
- ;; copy multi-line descriptions
- (save-excursion
- (re-search-forward "\\(^\\* \\|^@e\\)" nil t)
- (- (point) 3)))
- this-menu-list)))
- this-menu-list))
- ;;; Determining the hierarchical level in the texinfo file
- (defun texinfo-specific-section-type ()
- "Return the specific type of next section, as a string.
- For example, \"unnumberedsubsec\". Return \"top\" for top node.
- Searches forward for a section. Hence, point must be before the
- section whose type will be found. Does not move point. Signal an
- error if the node is not the top node and a section is not found."
- (let ((case-fold-search t))
- (save-excursion
- (cond
- ((re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
- ;; Following search limit by cph but causes a bug
- ;;(line-end-position)
- nil
- t)
- "top")
- ((re-search-forward texinfo-section-types-regexp nil t)
- (buffer-substring-no-properties
- (progn (beginning-of-line) ; copy its name
- (1+ (point)))
- (progn (forward-word 1)
- (point))))
- (t
- (error
- "texinfo-specific-section-type: Chapter or section not found"))))))
- (defun texinfo-hierarchic-level ()
- "Return the general hierarchical level of the next node in a texinfo file.
- Thus, a subheading or appendixsubsec is of type subsection."
- (let ((case-fold-search t))
- (cadr (assoc
- (texinfo-specific-section-type)
- texinfo-section-list))))
- ;;; Locating the major positions
- (defun texinfo-update-menu-region-beginning (level)
- "Locate beginning of higher level section this section is within.
- Return position of the beginning of the node line; do not move point.
- Thus, if this level is subsection, searches backwards for section node.
- Only argument is a string of the general type of section."
- (let ((case-fold-search t))
- ;; !! Known bug: if section immediately follows top node, this
- ;; returns the beginning of the buffer as the beginning of the
- ;; higher level section.
- (cond
- ((< level 3)
- (save-excursion
- (goto-char (point-min))
- (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t)
- (line-beginning-position)))
- (t
- (save-excursion
- (re-search-backward
- (concat
- "\\(^@node\\).*\n" ; match node line
- "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
- "\\|" ; or
- "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
- "\\|" ; or
- "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
- "\\)?" ; end of expression
- (eval
- (cdr (assoc level texinfo-update-menu-higher-regexps))))
- nil
- 'goto-beginning)
- (point))))))
- (defun texinfo-update-menu-region-end (level)
- "Locate end of higher level section this section is within.
- Return position; do not move point. Thus, if this level is a
- subsection, find the node for the section this subsection is within.
- If level is top or chapter, returns end of file. Only argument is a
- string of the general type of section."
- (let ((case-fold-search t))
- (save-excursion
- (if (re-search-forward
- (concat
- "\\(^@node\\).*\n" ; match node line
- "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
- "\\|" ; or
- "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
- "\\|" ; or
- "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
- "\\)?" ; end of expression
- (eval
- ;; Never finds end of level above chapter so goes to end.
- (cdr (assoc level texinfo-update-menu-higher-regexps))))
- nil
- 'goto-end)
- (match-beginning 1)
- (point-max)))))
- (defun texinfo-menu-first-node (beginning end)
- "Locate first node of the section the menu will be placed in.
- Return position; do not move point.
- The menu will be located just before this position.
- First argument is the position of the beginning of the section in
- which the menu will be located; second argument is the position of the
- end of that region; it limits the search."
- (save-excursion
- (goto-char beginning)
- (forward-line 1)
- (re-search-forward "^@node" end t)
- (line-beginning-position)))
- ;;; Updating a node
- (defun texinfo-update-node (&optional beginning end)
- "Without any prefix argument, update the node in which point is located.
- Interactively, a prefix argument means to operate on the region.
- Warning: do NOT use this function if your Texinfo file uses @node
- lines without the `Next', `Previous', `Up' pointers, because the
- result could be an invalid Texinfo file due to known deficiencies
- in this command: it does not support @ignore and @if* directives.
- The functions for creating or updating nodes and menus, and their
- keybindings, are:
- texinfo-update-node (&optional beginning end) \\[texinfo-update-node]
- texinfo-every-node-update () \\[texinfo-every-node-update]
- texinfo-sequential-node-update (&optional region-p)
- texinfo-make-menu (&optional region-p) \\[texinfo-make-menu]
- texinfo-all-menus-update () \\[texinfo-all-menus-update]
- texinfo-master-menu ()
- texinfo-indent-menu-description (column &optional region-p)
- The `texinfo-column-for-description' variable specifies the column to
- which menu descriptions are indented. Its default value is 32."
- (interactive
- (if prefix-arg
- (list (point) (mark))))
- (if (null beginning)
- ;; Update a single node.
- (let ((auto-fill-function nil))
- (if (not (re-search-backward "^@node" (point-min) t))
- (error "Node line not found before this position"))
- (texinfo-update-the-node)
- (message "Done...updated the node. You may save the buffer."))
- ;; else
- (let ((auto-fill-function nil))
- (save-excursion
- (save-restriction
- (narrow-to-region beginning end)
- (goto-char (point-min))
- (while (re-search-forward "^@node" (point-max) t)
- (beginning-of-line)
- (texinfo-update-the-node))
- (goto-char (point-max))
- (message "Done...nodes updated in region. You may save the buffer."))))))
- (defun texinfo-every-node-update ()
- "Update every node in a Texinfo file.
- Warning: do NOT use this function if your Texinfo file uses @node
- lines without the `Next', `Previous', `Up' pointers, because the
- result could be an invalid Texinfo file due to known deficiencies
- in this command: it does not support @ignore and @if* directives."
- (interactive)
- (save-excursion
- (texinfo-update-node (point-min) (point-max))
- (message "Done...updated every node. You may save the buffer.")))
- (defun texinfo-update-the-node ()
- "Update one node. Point must be at the beginning of node line.
- Leave point at the end of the node line."
- (texinfo-check-for-node-name)
- (texinfo-delete-existing-pointers)
- (message "Updating node: %s ... " (texinfo-copy-node-name))
- (save-restriction
- (widen)
- (let*
- ((case-fold-search t)
- (level (texinfo-hierarchic-level))
- (beginning (texinfo-update-menu-region-beginning level))
- (end (texinfo-update-menu-region-end level)))
- (if (eq level 1)
- (texinfo-top-pointer-case)
- ;; else
- (texinfo-insert-pointer beginning end level 'next)
- (texinfo-insert-pointer beginning end level 'previous)
- (texinfo-insert-pointer beginning end level 'up)
- (texinfo-clean-up-node-line)))))
- (defun texinfo-top-pointer-case ()
- "Insert pointers in the Top node. This is a special case.
- The `Next' pointer is a pointer to a chapter or section at a lower
- hierarchical level in the file. The `Previous' and `Up' pointers are
- to `(dir)'. Point must be at the beginning of the node line, and is
- left at the end of the node line."
- (texinfo-clean-up-node-line)
- (insert ", "
- (save-excursion
- ;; There may be an @chapter or other such command between
- ;; the top node line and the next node line, as a title
- ;; for an `ifinfo' section. This @chapter command must
- ;; must be skipped. So the procedure is to search for
- ;; the next `@node' line, and then copy its name.
- (if (re-search-forward "^@node" nil t)
- (progn
- (beginning-of-line)
- (texinfo-copy-node-name))
- " "))
- ", (dir), (dir)"))
- (defun texinfo-check-for-node-name ()
- "Determine whether the node has a node name. Prompt for one if not.
- Point must be at beginning of node line. Does not move point."
- (save-excursion
- (let ((initial (texinfo-copy-next-section-title)))
- ;; This is not clean. Use `interactive' to read the arg.
- (forward-word 1) ; skip over node command
- (skip-chars-forward " \t") ; and over spaces
- (if (not (looking-at "[^,\t\n ]+")) ; regexp based on what Info looks for
- ; alternatively, use "[a-zA-Z]+"
- (let ((node-name
- (read-from-minibuffer
- "Node name (use no @, commas, colons, or apostrophes): "
- initial)))
- (insert " " node-name))))))
- (defun texinfo-delete-existing-pointers ()
- "Delete `Next', `Previous', and `Up' pointers.
- Starts from the current position of the cursor, and searches forward
- on the line for a comma and if one is found, deletes the rest of the
- line, including the comma. Leaves point at beginning of line."
- (let ((eol-point (line-end-position)))
- (if (search-forward "," eol-point t)
- (delete-region (1- (point)) eol-point)))
- (beginning-of-line))
- (defun texinfo-find-pointer (beginning end level direction)
- "Move point to section associated with next, previous, or up pointer.
- Return type of pointer (either `normal' or `no-pointer').
- The first and second arguments bound the search for a pointer to the
- beginning and end, respectively, of the enclosing higher level
- section. The third argument is a string specifying the general kind
- of section such as \"chapter\" or \"section\". When looking for the
- `Next' pointer, the section found will be at the same hierarchical
- level in the Texinfo file; when looking for the `Previous' pointer,
- the section found will be at the same or higher hierarchical level in
- the Texinfo file; when looking for the `Up' pointer, the section found
- will be at some level higher in the Texinfo file. The fourth argument
- \(one of 'next, 'previous, or 'up\) specifies whether to find the
- `Next', `Previous', or `Up' pointer."
- (let ((case-fold-search t))
- (cond ((eq direction 'next)
- (forward-line 3) ; skip over current node
- ;; Search for section commands accompanied by node lines;
- ;; ignore section commands in the middle of nodes.
- (if (re-search-forward
- ;; A `Top' node is never a next pointer, so won't find it.
- (concat
- ;; Match node line.
- "\\(^@node\\).*\n"
- ;; Match comment, ifinfo, ifnottex line, if any
- (concat
- "\\(\\("
- "\\(^@c\\).*\n\\)"
- "\\|"
- "\\(^@ifinfo[ ]*\n\\)"
- "\\|"
- "\\(^@ifnottex[ ]*\n\\)"
- "\\)?")
- (eval
- (cdr (assoc level texinfo-update-menu-same-level-regexps))))
- end
- t)
- 'normal
- 'no-pointer))
- ((eq direction 'previous)
- (if (re-search-backward
- (concat
- "\\("
- ;; Match node line.
- "\\(^@node\\).*\n"
- ;; Match comment, ifinfo, ifnottex line, if any
- (concat
- "\\(\\("
- "\\(^@c\\).*\n\\)"
- "\\|"
- "\\(^@ifinfo[ ]*\n\\)"
- "\\|"
- "\\(^@ifnottex[ ]*\n\\)"
- "\\)?")
- (eval
- (cdr (assoc level texinfo-update-menu-same-level-regexps)))
- "\\|"
- ;; Match node line.
- "\\(^@node\\).*\n"
- ;; Match comment, ifinfo, ifnottex line, if any
- (concat
- "\\(\\("
- "\\(^@c\\).*\n\\)"
- "\\|"
- "\\(^@ifinfo[ ]*\n\\)"
- "\\|"
- "\\(^@ifnottex[ ]*\n\\)"
- "\\)?")
- (eval
- (cdr (assoc level texinfo-update-menu-higher-regexps)))
- "\\|"
- ;; Handle `Top' node specially.
- "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
- "\\)")
- beginning
- t)
- 'normal
- 'no-pointer))
- ((eq direction 'up)
- (if (re-search-backward
- (concat
- "\\("
- ;; Match node line.
- "\\(^@node\\).*\n"
- ;; Match comment, ifinfo, ifnottex line, if any
- (concat
- "\\(\\("
- "\\(^@c\\).*\n\\)"
- "\\|"
- "\\(^@ifinfo[ ]*\n\\)"
- "\\|"
- "\\(^@ifnottex[ ]*\n\\)"
- "\\)?")
- (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
- "\\|"
- ;; Handle `Top' node specially.
- "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
- "\\)")
- (save-excursion
- (goto-char beginning)
- (line-beginning-position))
- t)
- 'normal
- 'no-pointer))
- (t
- (error "texinfo-find-pointer: lack proper arguments")))))
- (defun texinfo-pointer-name (kind)
- "Return the node name preceding the section command.
- The argument is the kind of section, either `normal' or `no-pointer'."
- (let (name)
- (cond ((eq kind 'normal)
- (end-of-line) ; this handles prev node top case
- (re-search-backward ; when point is already
- "^@node" ; at the beginning of @node line
- (line-beginning-position -2)
- t)
- (setq name (texinfo-copy-node-name)))
- ((eq kind 'no-pointer)
- ;; Don't need to put a blank in the pointer slot,
- ;; since insert "' " always has a space
- (setq name " "))) ; put a blank in the pointer slot
- name))
- (defun texinfo-insert-pointer (beginning end level direction)
- "Insert the `Next', `Previous' or `Up' node name at point.
- Move point forward.
- The first and second arguments bound the search for a pointer to the
- beginning and end, respectively, of the enclosing higher level
- section. The third argument is the hierarchical level of the Texinfo
- file, a string such as \"section\". The fourth argument is direction
- towards which the pointer is directed, one of `next', `previous', or `up'."
- (end-of-line)
- (insert
- ", "
- (save-excursion
- (texinfo-pointer-name
- (texinfo-find-pointer beginning end level direction)))))
- (defun texinfo-clean-up-node-line ()
- "Remove extra commas, if any, at end of node line."
- (end-of-line)
- (skip-chars-backward ", ")
- (delete-region (point) (line-end-position)))
- ;;; Updating nodes sequentially
- ;; These sequential update functions insert `Next' or `Previous'
- ;; pointers that point to the following or preceding nodes even if they
- ;; are at higher or lower hierarchical levels. This means that if a
- ;; section contains one or more subsections, the section's `Next'
- ;; pointer will point to the subsection and not the following section.
- ;; (The subsection to which `Next' points will most likely be the first
- ;; item on the section's menu.)
- (defun texinfo-sequential-node-update (&optional region-p)
- "Update one node (or many) in a Texinfo file with sequential pointers.
- This function causes the `Next' or `Previous' pointer to point to the
- immediately preceding or following node, even if it is at a higher or
- lower hierarchical level in the document. Continually pressing `n' or
- `p' takes you straight through the file.
- Without any prefix argument, update the node in which point is located.
- Non-nil argument (prefix, if interactive) means update the nodes in the
- marked region.
- This command makes it awkward to navigate among sections and
- subsections; it should be used only for those documents that are meant
- to be read like a novel rather than a reference, and for which the
- Info `g*' command is inadequate."
- (interactive "P")
- (if (not region-p)
- ;; update a single node
- (let ((auto-fill-function nil))
- (if (not (re-search-backward "^@node" (point-min) t))
- (error "Node line not found before this position"))
- (texinfo-sequentially-update-the-node)
- (message
- "Done...sequentially updated the node . You may save the buffer."))
- ;; else
- (let ((auto-fill-function nil)
- (beginning (region-beginning))
- (end (region-end)))
- (if (= end beginning)
- (error "Please mark a region"))
- (save-restriction
- (narrow-to-region beginning end)
- (goto-char beginning)
- (push-mark (point) t)
- (while (re-search-forward "^@node" (point-max) t)
- (beginning-of-line)
- (texinfo-sequentially-update-the-node))
- (message
- "Done...updated the nodes in sequence. You may save the buffer.")))))
- (defun texinfo-sequentially-update-the-node ()
- "Update one node such that the pointers are sequential.
- A `Next' or `Previous' pointer points to any preceding or following node,
- regardless of its hierarchical level."
- (texinfo-check-for-node-name)
- (texinfo-delete-existing-pointers)
- (message
- "Sequentially updating node: %s ... " (texinfo-copy-node-name))
- (save-restriction
- (widen)
- (let* ((case-fold-search t)
- (level (texinfo-hierarchic-level)))
- (if (eq level 1)
- (texinfo-top-pointer-case)
- ;; else
- (texinfo-sequentially-insert-pointer level 'next)
- (texinfo-sequentially-insert-pointer level 'previous)
- (texinfo-sequentially-insert-pointer level 'up)
- (texinfo-clean-up-node-line)))))
- (defun texinfo-sequentially-insert-pointer (level direction)
- "Insert the `Next', `Previous' or `Up' node name at point.
- Move point forward.
- The first argument is the hierarchical level of the Texinfo file, a
- string such as \"section\". The second argument is direction, one of
- `next', `previous', or `up'."
- (end-of-line)
- (insert
- ", "
- (save-excursion
- (texinfo-pointer-name
- (texinfo-sequentially-find-pointer level direction)))))
- (defun texinfo-sequentially-find-pointer (level direction)
- "Find next or previous pointer sequentially in Texinfo file, or up pointer.
- Move point to section associated with the pointer. Find point even if
- it is in a different section.
- Return type of pointer (either `normal' or `no-pointer').
- The first argument is a string specifying the general kind of section
- such as \"chapter\" or \"section\". The section found will be at the
- same hierarchical level in the Texinfo file, or, in the case of the up
- pointer, some level higher. The second argument (one of `next',
- `previous', or `up') specifies whether to find the `Next', `Previous',
- or `Up' pointer."
- (let ((case-fold-search t))
- (cond ((eq direction 'next)
- (forward-line 3) ; skip over current node
- (if (re-search-forward
- texinfo-section-types-regexp
- (point-max)
- t)
- 'normal
- 'no-pointer))
- ((eq direction 'previous)
- (if (re-search-backward
- texinfo-section-types-regexp
- (point-min)
- t)
- 'normal
- 'no-pointer))
- ((eq direction 'up)
- (if (re-search-backward
- (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
- (point-min)
- t)
- 'normal
- 'no-pointer))
- (t
- (error "texinfo-sequential-find-pointer: lack proper arguments")))))
- ;;; Inserting `@node' lines
- ;; The `texinfo-insert-node-lines' function inserts `@node' lines as needed
- ;; before the `@chapter', `@section', and such like lines of a region
- ;; in a Texinfo file.
- (defun texinfo-insert-node-lines (beginning end &optional title-p)
- "Insert missing `@node' lines in region of Texinfo file.
- Non-nil argument (prefix, if interactive) means also to insert the
- section titles as node names; and also to insert the section titles as
- node names in pre-existing `@node' lines that lack names."
- (interactive "r\nP")
- ;; Use marker; after inserting node lines, leave point at end of
- ;; region and mark at beginning.
- (let (beginning-marker end-marker title last-section-position)
- ;; Save current position on mark ring and set mark to end.
- (push-mark end t)
- (setq end-marker (mark-marker))
- (goto-char beginning)
- (while (re-search-forward
- texinfo-section-types-regexp
- end-marker
- 'end)
- ;; Copy title if desired.
- (if title-p
- (progn
- (beginning-of-line)
- (forward-word 1)
- (skip-chars-forward " \t")
- (setq title (buffer-substring
- (point)
- (line-end-position)))))
- ;; Insert node line if necessary.
- (if (re-search-backward
- "^@node"
- ;; Avoid finding previous node line if node lines are close.
- (or last-section-position
- (line-beginning-position -1))
- t)
- ;; @node is present, and point at beginning of that line
- (forward-word 1) ; Leave point just after @node.
- ;; Else @node missing; insert one.
- (beginning-of-line) ; Beginning of `@section' line.
- (insert "@node\n")
- (backward-char 1)) ; Leave point just after `@node'.
- ;; Insert title if desired.
- (if title-p
- (progn
- (skip-chars-forward " \t")
- ;; Use regexp based on what info looks for
- ;; (alternatively, use "[a-zA-Z]+");
- ;; this means we only insert a title if none exists.
- (if (not (looking-at "[^,\t\n ]+"))
- (progn
- (beginning-of-line)
- (forward-word 1)
- (insert " " title)
- (message "Inserted title %s ... " title)))))
- ;; Go forward beyond current section title.
- (re-search-forward texinfo-section-types-regexp
- (line-beginning-position 4) t)
- (setq last-section-position (point))
- (forward-line 1))
- ;; Leave point at end of region, mark at beginning.
- (set-mark beginning)
- (if title-p
- (message
- "Done inserting node lines and titles. You may save the buffer.")
- (message "Done inserting node lines. You may save the buffer."))))
- ;;; Update and create menus for multi-file Texinfo sources
- ;; 1. M-x texinfo-multiple-files-update
- ;;
- ;; Read the include file list of an outer Texinfo file and
- ;; update all highest level nodes in the files listed and insert a
- ;; main menu in the outer file after its top node.
- ;; 2. C-u M-x texinfo-multiple-files-update
- ;;
- ;; Same as 1, but insert a master menu. (Saves reupdating lower
- ;; level menus and nodes.) This command simply reads every menu,
- ;; so if the menus are wrong, the master menu will be wrong.
- ;; Similarly, if the lower level node pointers are wrong, they
- ;; will stay wrong.
- ;; 3. C-u 2 M-x texinfo-multiple-files-update
- ;;
- ;; Read the include file list of an outer Texinfo file and
- ;; update all nodes and menus in the files listed and insert a
- ;; master menu in the outer file after its top node.
- ;;; Note: these functions:
- ;;;
- ;;; * Do not save or delete any buffers. You may fill up your memory.
- ;;; * Do not handle any pre-existing nodes in outer file.
- ;;; Hence, you may need a file for indices.
- ;;; Auxiliary functions for multiple file updating
- (defun texinfo-multi-file-included-list (outer-file)
- "Return a list of the included files in OUTER-FILE."
- (let ((included-file-list (list outer-file))
- start)
- (with-current-buffer (find-file-noselect outer-file)
- (widen)
- (goto-char (point-min))
- (while (re-search-forward "^@include" nil t)
- (skip-chars-forward " \t")
- (setq start (point))
- (end-of-line)
- (skip-chars-backward " \t")
- (setq included-file-list
- (cons (buffer-substring start (point))
- included-file-list)))
- (nreverse included-file-list))))
- (defun texinfo-copy-next-section-title ()
- "Return the name of the immediately following section as a string.
- Start with point at the beginning of the node line. Leave point at the
- same place. If there is no title, returns an empty string."
- (save-excursion
- (end-of-line)
- (let ((node-end (or
- (save-excursion
- (if (re-search-forward "\\(^@node\\)" nil t)
- (match-beginning 0)))
- (point-max))))
- (if (re-search-forward texinfo-section-types-regexp node-end t)
- (progn
- (beginning-of-line)
- ;; copy title
- (let ((title
- (buffer-substring
- (progn (forward-word 1) ; skip over section type
- (skip-chars-forward " \t") ; and over spaces
- (point))
- (progn (end-of-line) (point)))))
- title))
- ""))))
- (defun texinfo-multi-file-update (files &optional update-everything)
- "Update first node pointers in each file in FILES.
- Return a list of the node names.
- The first file in the list is an outer file; the remaining are
- files included in the outer file with `@include' commands.
- If optional arg UPDATE-EVERYTHING non-nil, update every menu and
- pointer in each of the included files.
- Also update the `Top' level node pointers of the outer file.
- Requirements:
- * the first file in the FILES list must be the outer file,
- * each of the included files must contain exactly one highest
- hierarchical level node,
- * this node must be the first node in the included file,
- * each highest hierarchical level node must be of the same type.
- Thus, normally, each included file contains one, and only one, chapter.
- However, when an included file does not have any node lines in
- it, this command does not try to create a menu entry for it.
- Consequently, you can include any file, such as a version or an
- update file without node lines, not just files that are
- chapters."
- ;; The menu-list has the form:
- ;;
- ;; \(\(\"node-name1\" . \"title1\"\)
- ;; \(\"node-name2\" . \"title2\"\) ... \)
- ;;
- ;; However, there does not need to be a title field and this function
- ;; does not fill it; however a comment tells you how to do so.
- ;; You would use the title field if you wanted to insert titles in the
- ;; description slot of a menu as a description.
- (let ((case-fold-search t)
- menu-list next-node-name previous-node-name files-with-node-lines)
- ;; Create a new list of included files that only have node lines
- (while files
- (set-buffer (find-file-noselect (car files)))
- (widen)
- (goto-char (point-min))
- (when (re-search-forward "^@node" nil t)
- (setq files-with-node-lines (cons (car files) files-with-node-lines)))
- (setq files (cdr files)))
- (setq files-with-node-lines (nreverse files-with-node-lines))
- ;; Find the name of the first node in a subsequent file
- ;; and copy it into the variable next-node-name
- (set-buffer (find-file-noselect (car (cdr files-with-node-lines))))
- (widen)
- (goto-char (point-min))
- ;; The following search _must_ succeed, since we verified above
- ;; that this file does have a @node line.
- (re-search-forward "^@node" nil t)
- (beginning-of-line)
- (texinfo-check-for-node-name)
- (setq next-node-name (texinfo-copy-node-name))
- (push (cons next-node-name (prog1 "" (forward-line 1)))
- ;; Use following to insert section titles automatically.
- ;; (texinfo-copy-next-section-title)
- menu-list)
- ;; Go to outer file
- ;; `pop' is analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE)))
- (set-buffer (find-file-noselect (pop files-with-node-lines)))
- (goto-char (point-min))
- (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
- (error "This buffer needs a Top node"))
- (beginning-of-line)
- (texinfo-delete-existing-pointers)
- (end-of-line)
- (insert ", " next-node-name ", (dir), (dir)")
- (beginning-of-line)
- (setq previous-node-name "Top")
- (while files-with-node-lines
- (if (not (cdr files-with-node-lines))
- ;; No next file
- (setq next-node-name "")
- ;; Else,
- ;; find the name of the first node in the next file.
- (set-buffer (find-file-noselect (car (cdr files-with-node-lines))))
- (widen)
- (goto-char (point-min))
- ;; The following search _must_ succeed, since we verified
- ;; above that files in files-with-node-lines do have a @node
- ;; line.
- (re-search-forward "^@node" nil t)
- (beginning-of-line)
- (texinfo-check-for-node-name)
- (setq next-node-name (texinfo-copy-node-name))
- (push (cons next-node-name (prog1 "" (forward-line 1)))
- ;; Use following to insert section titles automatically.
- ;; (texinfo-copy-next-section-title)
- menu-list))
- ;; Go to node to be updated.
- (set-buffer (find-file-noselect (car files-with-node-lines)))
- (goto-char (point-min))
- (beginning-of-line)
- ;; Update other menus and nodes if requested.
- (if update-everything (texinfo-all-menus-update t))
- (beginning-of-line)
- (texinfo-delete-existing-pointers)
- (end-of-line)
- (insert ", " next-node-name ", " previous-node-name ", Top")
- (beginning-of-line)
- (setq previous-node-name (texinfo-copy-node-name))
- (setq files-with-node-lines (cdr files-with-node-lines)))
- (nreverse menu-list)))
- (defun texinfo-multi-files-insert-main-menu (menu-list)
- "Insert formatted main menu at point.
- Indents the first line of the description, if any, to the value of
- `texinfo-column-for-description'."
- (insert "@menu\n")
- (dolist (entry menu-list)
- ;; Every menu entry starts with a star and a space.
- (insert "* ")
- ;; Insert the node name (and menu entry name, if present).
- (let ((node-part (car entry)))
- (if (stringp node-part)
- ;; "Double colon" entry line; menu entry and node name are the same,
- (insert (format "%s::" node-part))
- ;; "Single colon" entry line; menu entry and node name are different.
- (insert (format "%s: %s." (car node-part) (cdr node-part)))))
- ;; Insert the description, if present.
- (when (cdr entry)
- ;; Move to right place.
- (indent-to texinfo-column-for-description 2)
- ;; Insert description.
- (insert (format "%s" (cdr entry))))
- (insert "\n")) ; end this menu entry
- (insert "@end menu"))
- (defun texinfo-multi-file-master-menu-list (files-list)
- "Return master menu list from files in FILES-LIST.
- Menu entries in each file collected using `texinfo-master-menu-list'.
- The first file in FILES-LIST must be the outer file; the others must
- be the files included within it. A main menu must already exist."
- (save-excursion
- (let (master-menu-list)
- (dolist (file files-list)
- (set-buffer (find-file-noselect file))
- (message "Working on: %s " (current-buffer))
- (goto-char (point-min))
- (setq master-menu-list
- (append master-menu-list (texinfo-master-menu-list))))
- master-menu-list)))
- ;;; The multiple-file update function
- (defun texinfo-multiple-files-update
- (outer-file &optional make-master-menu update-everything)
- "Update first node pointers in each file included in OUTER-FILE;
- create or update the `Top' level node pointers and the main menu in
- the outer file that refers to such nodes. This does not create or
- update menus or pointers within the included files.
- With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
- insert a master menu in OUTER-FILE in addition to creating or updating
- pointers in the first @node line in each included file and creating or
- updating the `Top' level node pointers of the outer file. This does
- not create or update other menus and pointers within the included
- files.
- With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
- interactive), update all the menus and all the `Next', `Previous', and
- `Up' pointers of all the files included in OUTER-FILE before inserting
- a master menu in OUTER-FILE. Also, update the `Top' level node
- pointers of OUTER-FILE. Do NOT invoke this command with a numeric prefix
- arg, if your files use @node lines without the `Next', `Previous', `Up'
- pointers, because this could produce invalid Texinfo files due to known
- deficiencies in `texinfo-update-node': it does not support the @ignore
- and @if... directives.
- Notes:
- * this command does NOT save any files--you must save the
- outer file and any modified, included files.
- * except for the `Top' node, this command does NOT handle any
- pre-existing nodes in the outer file; hence, indices must be
- enclosed in an included file.
- Requirements:
- * each of the included files must contain exactly one highest
- hierarchical level node,
- * this highest node must be the first node in the included file,
- * each highest hierarchical level node must be of the same type.
- Thus, normally, each included file contains one, and only one,
- chapter."
- (interactive (cons
- (read-string
- "Name of outer `include' file: "
- (buffer-file-name))
- (cond
- ((not current-prefix-arg) '(nil nil))
- ((listp current-prefix-arg) '(t nil)) ; make-master-menu
- ((numberp current-prefix-arg) '(t t))))) ; update-everything
- (let* ((included-file-list (texinfo-multi-file-included-list outer-file))
- (files included-file-list)
- next-node-name
- previous-node-name
- ;; Update the pointers and collect the names of the nodes and titles
- (main-menu-list (texinfo-multi-file-update files update-everything)))
- ;; Insert main menu
- ;; Go to outer file
- (set-buffer (find-file-noselect (car included-file-list)))
- (if (texinfo-old-menu-p
- (point-min)
- (save-excursion
- (re-search-forward "^@include")
- (line-beginning-position)))
- ;; If found, leave point after word `menu' on the `@menu' line.
- (progn
- (texinfo-incorporate-descriptions main-menu-list)
- ;; Delete existing menu.
- (beginning-of-line)
- (delete-region
- (point)
- (save-excursion (re-search-forward "^@end menu") (point)))
- ;; Insert main menu
- (texinfo-multi-files-insert-main-menu main-menu-list))
- ;; Else no current menu; insert it before `@include'
- (texinfo-multi-files-insert-main-menu main-menu-list))
- ;; Insert master menu
- (if make-master-menu
- (progn
- ;; First, removing detailed part of any pre-existing master menu
- (goto-char (point-min))
- (if (search-forward texinfo-master-menu-header nil t)
- (progn
- (goto-char (match-beginning 0))
- ;; Check if @detailmenu kludge is used;
- ;; if so, leave point before @detailmenu.
- (search-backward "\n@detailmenu" (line-beginning-position -2) t)
- ;; Remove detailed master menu listing
- (let ((end-of-detailed-menu-descriptions
- (save-excursion ; beginning of end menu line
- (goto-char (texinfo-menu-end))
- (beginning-of-line) (forward-char -1)
- (point))))
- (delete-region (point) end-of-detailed-menu-descriptions))))
- ;; Create a master menu and insert it
- (texinfo-insert-master-menu-list
- (texinfo-multi-file-master-menu-list
- included-file-list)))))
- ;; Remove unwanted extra lines.
- (save-excursion
- (goto-char (point-min))
- (re-search-forward "^@menu")
- (forward-line -1)
- (insert "\n") ; Ensure at least one blank line.
- (delete-blank-lines)
- (re-search-forward "^@end menu")
- (forward-line 1)
- (insert "\n") ; Ensure at least one blank line.
- (delete-blank-lines))
- (message "Multiple files updated."))
- ;; Place `provide' at end of file.
- (provide 'texnfo-upd)
- ;;; texnfo-upd.el ends here
|