(dired-mark-prompt): Don't count/display the t element.
[emacs.git] / lisp / allout.el
blob075a41bdba178710ee47c37085cd3773b6045260
1 ;;; allout.el --- extensive outline mode for use alone and with other modes
3 ;; Copyright (C) 1992, 1993, 1994, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Ken Manheimer <ken dot manheimer at gmail dot com>
7 ;; Maintainer: Ken Manheimer <ken dot manheimer at gmail dot com>
8 ;; Created: Dec 1991 -- first release to usenet
9 ;; Version: 2.2.1
10 ;; Keywords: outlines wp languages
11 ;; Website: http://myriadicity.net/Sundry/EmacsAllout
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 3, or (at your option)
18 ;; any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 ;; Boston, MA 02110-1301, USA.
30 ;;; Commentary:
32 ;; Allout outline minor mode provides extensive outline formatting and
33 ;; and manipulation beyond standard emacs outline mode. Some features:
35 ;; - Classic outline-mode topic-oriented navigation and exposure adjustment
36 ;; - Topic-oriented editing including coherent topic and subtopic
37 ;; creation, promotion, demotion, cut/paste across depths, etc.
38 ;; - Incremental search with dynamic exposure and reconcealment of text
39 ;; - Customizable bullet format -- enables programming-language specific
40 ;; outlining, for code-folding editing. (Allout code itself is to try it;
41 ;; formatted as an outline -- do ESC-x eval-buffer in allout.el; but
42 ;; emacs local file variables need to be enabled when the
43 ;; file was visited -- see `enable-local-variables'.)
44 ;; - Configurable per-file initial exposure settings
45 ;; - Symmetric-key and key-pair topic encryption, plus symmetric passphrase
46 ;; mnemonic support, with verification against an established passphrase
47 ;; (using a stashed encrypted dummy string) and user-supplied hint
48 ;; maintenance. (See allout-toggle-current-subtree-encryption docstring.
49 ;; Currently only GnuPG encryption is supported, and integration
50 ;; with gpg-agent is not yet implemented.)
51 ;; - Automatic topic-number maintenance
52 ;; - "Hot-spot" operation, for single-keystroke maneuvering and
53 ;; exposure control (see the allout-mode docstring)
54 ;; - Easy rendering of exposed portions into numbered, latex, indented, etc
55 ;; outline styles
56 ;; - Careful attention to whitespace -- enabling blank lines between items
57 ;; and maintenance of hanging indentation (in paragraph auto-fill and
58 ;; across topic promotion and demotion) of topic bodies consistent with
59 ;; indentation of their topic header.
61 ;; and more.
63 ;; See the `allout-mode' function's docstring for an introduction to the
64 ;; mode.
66 ;; The latest development version and helpful notes are available at
67 ;; http://myriadicity.net/Sundry/EmacsAllout .
69 ;; The outline menubar additions provide quick reference to many of
70 ;; the features, and see the docstring of the variable `allout-init'
71 ;; for instructions on priming your Emacs session for automatic
72 ;; activation of allout-mode.
74 ;; See the docstring of the variables `allout-layout' and
75 ;; `allout-auto-activation' for details on automatic activation of
76 ;; `allout-mode' as a minor mode. (It has changed since allout
77 ;; 3.x, for those of you that depend on the old method.)
79 ;; Note -- the lines beginning with `;;;_' are outline topic headers.
80 ;; Just `ESC-x eval-buffer' to give it a whirl.
82 ;; ken manheimer (ken dot manheimer at gmail dot com)
84 ;;; Code:
86 ;;;_* Dependency autoloads
87 (require 'overlay)
88 (eval-when-compile
89 ;; Most of the requires here are for stuff covered by autoloads.
90 ;; Since just byte-compiling doesn't trigger autoloads, so that
91 ;; "function not found" warnings would occur without these requires.
92 (progn
93 (require 'pgg)
94 (require 'pgg-gpg)
95 (require 'overlay)
96 ;; `cl' is required for `assert'. `assert' is not covered by a standard
97 ;; autoload, but it is a macro, so that eval-when-compile is sufficient
98 ;; to byte-compile it in, or to do the require when the buffer evalled.
99 (require 'cl)
102 ;;;_* USER CUSTOMIZATION VARIABLES:
104 ;;;_ > defgroup allout
105 (defgroup allout nil
106 "Extensive outline mode for use alone and with other modes."
107 :prefix "allout-"
108 :group 'outlines)
110 ;;;_ + Layout, Mode, and Topic Header Configuration
112 ;;;_ = allout-auto-activation
113 (defcustom allout-auto-activation nil
114 "*Regulates auto-activation modality of allout outlines -- see `allout-init'.
116 Setq-default by `allout-init' to regulate whether or not allout
117 outline mode is automatically activated when the buffer-specific
118 variable `allout-layout' is non-nil, and whether or not the layout
119 dictated by `allout-layout' should be imposed on mode activation.
121 With value t, auto-mode-activation and auto-layout are enabled.
122 \(This also depends on `allout-find-file-hook' being installed in
123 `find-file-hook', which is also done by `allout-init'.)
125 With value `ask', auto-mode-activation is enabled, and endorsement for
126 performing auto-layout is asked of the user each time.
128 With value `activate', only auto-mode-activation is enabled,
129 auto-layout is not.
131 With value nil, neither auto-mode-activation nor auto-layout are
132 enabled.
134 See the docstring for `allout-init' for the proper interface to
135 this variable."
136 :type '(choice (const :tag "On" t)
137 (const :tag "Ask about layout" "ask")
138 (const :tag "Mode only" "activate")
139 (const :tag "Off" nil))
140 :group 'allout)
141 ;;;_ = allout-default-layout
142 (defcustom allout-default-layout '(-2 : 0)
143 "*Default allout outline layout specification.
145 This setting specifies the outline exposure to use when
146 `allout-layout' has the local value `t'. This docstring describes the
147 layout specifications.
149 A list value specifies a default layout for the current buffer,
150 to be applied upon activation of `allout-mode'. Any non-nil
151 value will automatically trigger `allout-mode', provided
152 `allout-init' has been called to enable this behavior.
154 The types of elements in the layout specification are:
156 INTEGER -- dictate the relative depth to open the corresponding topic(s),
157 where:
158 -- negative numbers force the topic to be closed before opening
159 to the absolute value of the number, so all siblings are open
160 only to that level.
161 -- positive numbers open to the relative depth indicated by the
162 number, but do not force already opened subtopics to be closed.
163 -- 0 means to close topic -- hide all subitems.
164 : -- repeat spec -- apply the preceeding element to all siblings at
165 current level, *up to* those siblings that would be covered by specs
166 following the `:' on the list. Ie, apply to all topics at level but
167 trailing ones accounted for by trailing specs. (Only the first of
168 multiple colons at the same level is honored -- later ones are ignored.)
169 * -- completely exposes the topic, including bodies
170 + -- exposes all subtopics, but not the bodies
171 - -- exposes the body of the corresponding topic, but not subtopics
172 LIST -- a nested layout spec, to be applied intricately to its
173 corresponding item(s)
175 Examples:
176 (-2 : 0)
177 Collapse the top-level topics to show their children and
178 grandchildren, but completely collapse the final top-level topic.
179 (-1 () : 1 0)
180 Close the first topic so only the immediate subtopics are shown,
181 leave the subsequent topics exposed as they are until the second
182 second to last topic, which is exposed at least one level, and
183 completely close the last topic.
184 (-2 : -1 *)
185 Expose children and grandchildren of all topics at current
186 level except the last two; expose children of the second to
187 last and completely expose the last one, including its subtopics.
189 See `allout-expose-topic' for more about the exposure process.
191 Also, allout's mode-specific provisions will make topic prefixes default
192 to the comment-start string, if any, of the language of the file. This
193 is modulo the setting of `allout-use-mode-specific-leader', which see."
194 :type 'allout-layout-type
195 :group 'allout)
196 ;;;_ : allout-layout-type
197 (define-widget 'allout-layout-type 'lazy
198 "Allout layout format customization basic building blocks."
199 :type '(repeat
200 (choice (integer :tag "integer (<= zero is strict)")
201 (const :tag ": (repeat prior)" :)
202 (const :tag "* (completely expose)" *)
203 (const :tag "+ (expose all offspring, headlines only)" +)
204 (const :tag "- (expose topic body but not offspring)" -)
205 (allout-layout-type :tag "<Nested layout>"))))
207 ;;;_ = allout-show-bodies
208 (defcustom allout-show-bodies nil
209 "*If non-nil, show entire body when exposing a topic, rather than
210 just the header."
211 :type 'boolean
212 :group 'allout)
213 (make-variable-buffer-local 'allout-show-bodies)
214 ;;;###autoload
215 (put 'allout-show-bodies 'safe-local-variable
216 (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
218 ;;;_ = allout-beginning-of-line-cycles
219 (defcustom allout-beginning-of-line-cycles t
220 "*If non-nil, \\[allout-beginning-of-line] will cycle through smart-placement options.
222 Cycling only happens on when the command is repeated, not when it
223 follows a different command.
225 Smart-placement means that repeated calls to this function will
226 advance as follows:
228 - if the cursor is on a non-headline body line and not on the first column:
229 then it goes to the first column
230 - if the cursor is on the first column of a non-headline body line:
231 then it goes to the start of the headline within the item body
232 - if the cursor is on the headline and not the start of the headline:
233 then it goes to the start of the headline
234 - if the cursor is on the start of the headline:
235 then it goes to the bullet character (for hotspot navigation)
236 - if the cursor is on the bullet character:
237 then it goes to the first column of that line (the headline)
238 - if the cursor is on the first column of the headline:
239 then it goes to the start of the headline within the item body.
241 In this fashion, you can use the beginning-of-line command to do
242 its normal job and then, when repeated, advance through the
243 entry, cycling back to start.
245 If this configuration variable is nil, then the cursor is just
246 advanced to the beginning of the line and remains there on
247 repeated calls."
248 :type 'boolean :group 'allout)
249 ;;;_ = allout-end-of-line-cycles
250 (defcustom allout-end-of-line-cycles t
251 "*If non-nil, \\[allout-end-of-line] will cycle through smart-placement options.
253 Cycling only happens on when the command is repeated, not when it
254 follows a different command.
256 Smart placement means that repeated calls to this function will
257 advance as follows:
259 - if the cursor is not on the end-of-line,
260 then it goes to the end-of-line
261 - if the cursor is on the end-of-line but not the end-of-entry,
262 then it goes to the end-of-entry, exposing it if necessary
263 - if the cursor is on the end-of-entry,
264 then it goes to the end of the head line
266 In this fashion, you can use the end-of-line command to do its
267 normal job and then, when repeated, advance through the entry,
268 cycling back to start.
270 If this configuration variable is nil, then the cursor is just
271 advanced to the end of the line and remains there on repeated
272 calls."
273 :type 'boolean :group 'allout)
275 ;;;_ = allout-header-prefix
276 (defcustom allout-header-prefix "."
277 ;; this string is treated as literal match. it will be `regexp-quote'd, so
278 ;; one cannot use regular expressions to match varying header prefixes.
279 "*Leading string which helps distinguish topic headers.
281 Outline topic header lines are identified by a leading topic
282 header prefix, which mostly have the value of this var at their front.
283 Level 1 topics are exceptions. They consist of only a single
284 character, which is typically set to the `allout-primary-bullet'."
285 :type 'string
286 :group 'allout)
287 (make-variable-buffer-local 'allout-header-prefix)
288 ;;;###autoload
289 (put 'allout-header-prefix 'safe-local-variable 'stringp)
290 ;;;_ = allout-primary-bullet
291 (defcustom allout-primary-bullet "*"
292 "Bullet used for top-level outline topics.
294 Outline topic header lines are identified by a leading topic header
295 prefix, which is concluded by bullets that includes the value of this
296 var and the respective allout-*-bullets-string vars.
298 The value of an asterisk (`*') provides for backwards compatibility
299 with the original Emacs outline mode. See `allout-plain-bullets-string'
300 and `allout-distinctive-bullets-string' for the range of available
301 bullets."
302 :type 'string
303 :group 'allout)
304 (make-variable-buffer-local 'allout-primary-bullet)
305 ;;;###autoload
306 (put 'allout-primary-bullet 'safe-local-variable 'stringp)
307 ;;;_ = allout-plain-bullets-string
308 (defcustom allout-plain-bullets-string ".,"
309 "*The bullets normally used in outline topic prefixes.
311 See `allout-distinctive-bullets-string' for the other kind of
312 bullets.
314 DO NOT include the close-square-bracket, `]', as a bullet.
316 Outline mode has to be reactivated in order for changes to the value
317 of this var to take effect."
318 :type 'string
319 :group 'allout)
320 (make-variable-buffer-local 'allout-plain-bullets-string)
321 ;;;###autoload
322 (put 'allout-plain-bullets-string 'safe-local-variable 'stringp)
323 ;;;_ = allout-distinctive-bullets-string
324 (defcustom allout-distinctive-bullets-string "*+-=>()[{}&!?#%\"X@$~_\\:;^"
325 "*Persistent outline header bullets used to distinguish special topics.
327 These bullets are distinguish topics with particular character.
328 They are not used by default in the topic creation routines, but
329 are offered as options when you modify topic creation with a
330 universal argument \(\\[universal-argument]), or during rebulleting \(\\[allout-rebullet-current-heading]).
332 Distinctive bullets are not cycled when topics are shifted or
333 otherwise automatically rebulleted, so their marking is
334 persistent until deliberately changed. Their significance is
335 purely by convention, however. Some conventions suggest
336 themselves:
338 `(' - open paren -- an aside or incidental point
339 `?' - question mark -- uncertain or outright question
340 `!' - exclamation point/bang -- emphatic
341 `[' - open square bracket -- meta-note, about item instead of item's subject
342 `\"' - double quote -- a quotation or other citation
343 `=' - equal sign -- an assignement, equating a name with some connotation
344 `^' - carat -- relates to something above
346 Some are more elusive, but their rationale may be recognizable:
348 `+' - plus -- pending consideration, completion
349 `_' - underscore -- done, completed
350 `&' - ampersand -- addendum, furthermore
352 \(Some other non-plain bullets have special meaning to the
353 software. By default:
355 `~' marks encryptable topics -- see `allout-topic-encryption-bullet'
356 `#' marks auto-numbered bullets -- see `allout-numbered-bullet'.)
358 See `allout-plain-bullets-string' for the standard, alternating
359 bullets.
361 You must run `set-allout-regexp' in order for outline mode to
362 adopt changes of this value.
364 DO NOT include the close-square-bracket, `]', on either of the bullet
365 strings."
366 :type 'string
367 :group 'allout)
368 (make-variable-buffer-local 'allout-distinctive-bullets-string)
369 ;;;###autoload
370 (put 'allout-distinctive-bullets-string 'safe-local-variable 'stringp)
372 ;;;_ = allout-use-mode-specific-leader
373 (defcustom allout-use-mode-specific-leader t
374 "*When non-nil, use mode-specific topic-header prefixes.
376 Allout outline mode will use the mode-specific `allout-mode-leaders' or
377 comment-start string, if any, to lead the topic prefix string, so topic
378 headers look like comments in the programming language. It will also use
379 the comment-start string, with an '_' appended, for `allout-primary-bullet'.
381 String values are used as literals, not regular expressions, so
382 do not escape any regulare-expression characters.
384 Value t means to first check for assoc value in `allout-mode-leaders'
385 alist, then use comment-start string, if any, then use default (`.').
386 \(See note about use of comment-start strings, below.)
388 Set to the symbol for either of `allout-mode-leaders' or
389 `comment-start' to use only one of them, respectively.
391 Value nil means to always use the default (`.') and leave
392 `allout-primary-bullet' unaltered.
394 comment-start strings that do not end in spaces are tripled in
395 the header-prefix, and an `_' underscore is tacked on the end, to
396 distinguish them from regular comment strings. comment-start
397 strings that do end in spaces are not tripled, but an underscore
398 is substituted for the space. [This presumes that the space is
399 for appearance, not comment syntax. You can use
400 `allout-mode-leaders' to override this behavior, when
401 undesired.]"
402 :type '(choice (const t) (const nil) string
403 (const allout-mode-leaders)
404 (const comment-start))
405 :group 'allout)
406 ;;;###autoload
407 (put 'allout-use-mode-specific-leader 'safe-local-variable
408 '(lambda (x) (or (memq x '(t nil allout-mode-leaders comment-start))
409 (stringp x))))
410 ;;;_ = allout-mode-leaders
411 (defvar allout-mode-leaders '()
412 "Specific allout-prefix leading strings per major modes.
414 Use this if the mode's comment-start string isn't what you
415 prefer, or if the mode lacks a comment-start string. See
416 `allout-use-mode-specific-leader' for more details.
418 If you're constructing a string that will comment-out outline
419 structuring so it can be included in program code, append an extra
420 character, like an \"_\" underscore, to distinguish the lead string
421 from regular comments that start at the beginning-of-line.")
423 ;;;_ = allout-old-style-prefixes
424 (defcustom allout-old-style-prefixes nil
425 "*When non-nil, use only old-and-crusty `outline-mode' `*' topic prefixes.
427 Non-nil restricts the topic creation and modification
428 functions to asterix-padded prefixes, so they look exactly
429 like the original Emacs-outline style prefixes.
431 Whatever the setting of this variable, both old and new style prefixes
432 are always respected by the topic maneuvering functions."
433 :type 'boolean
434 :group 'allout)
435 (make-variable-buffer-local 'allout-old-style-prefixes)
436 ;;;###autoload
437 (put 'allout-old-style-prefixes 'safe-local-variable
438 (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
439 ;;;_ = allout-stylish-prefixes -- alternating bullets
440 (defcustom allout-stylish-prefixes t
441 "*Do fancy stuff with topic prefix bullets according to level, etc.
443 Non-nil enables topic creation, modification, and repositioning
444 functions to vary the topic bullet char (the char that marks the topic
445 depth) just preceding the start of the topic text) according to level.
446 Otherwise, only asterisks (`*') and distinctive bullets are used.
448 This is how an outline can look (but sans indentation) with stylish
449 prefixes:
451 * Top level
452 .* A topic
453 . + One level 3 subtopic
454 . . One level 4 subtopic
455 . . A second 4 subtopic
456 . + Another level 3 subtopic
457 . #1 A numbered level 4 subtopic
458 . #2 Another
459 . ! Another level 4 subtopic with a different distinctive bullet
460 . #4 And another numbered level 4 subtopic
462 This would be an outline with stylish prefixes inhibited (but the
463 numbered and other distinctive bullets retained):
465 * Top level
466 .* A topic
467 . * One level 3 subtopic
468 . * One level 4 subtopic
469 . * A second 4 subtopic
470 . * Another level 3 subtopic
471 . #1 A numbered level 4 subtopic
472 . #2 Another
473 . ! Another level 4 subtopic with a different distinctive bullet
474 . #4 And another numbered level 4 subtopic
476 Stylish and constant prefixes (as well as old-style prefixes) are
477 always respected by the topic maneuvering functions, regardless of
478 this variable setting.
480 The setting of this var is not relevant when `allout-old-style-prefixes'
481 is non-nil."
482 :type 'boolean
483 :group 'allout)
484 (make-variable-buffer-local 'allout-stylish-prefixes)
485 ;;;###autoload
486 (put 'allout-stylish-prefixes 'safe-local-variable
487 (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
489 ;;;_ = allout-numbered-bullet
490 (defcustom allout-numbered-bullet "#"
491 "*String designating bullet of topics that have auto-numbering; nil for none.
493 Topics having this bullet have automatic maintenance of a sibling
494 sequence-number tacked on, just after the bullet. Conventionally set
495 to \"#\", you can set it to a bullet of your choice. A nil value
496 disables numbering maintenance."
497 :type '(choice (const nil) string)
498 :group 'allout)
499 (make-variable-buffer-local 'allout-numbered-bullet)
500 ;;;###autoload
501 (put 'allout-numbered-bullet 'safe-local-variable
502 (if (fboundp 'string-or-null-p)
503 'string-or-null-p
504 '(lambda (x) (or (stringp x) (null x)))))
505 ;;;_ = allout-file-xref-bullet
506 (defcustom allout-file-xref-bullet "@"
507 "*Bullet signifying file cross-references, for `allout-resolve-xref'.
509 Set this var to the bullet you want to use for file cross-references."
510 :type '(choice (const nil) string)
511 :group 'allout)
512 ;;;###autoload
513 (put 'allout-file-xref-bullet 'safe-local-variable
514 (if (fboundp 'string-or-null-p)
515 'string-or-null-p
516 '(lambda (x) (or (stringp x) (null x)))))
517 ;;;_ = allout-presentation-padding
518 (defcustom allout-presentation-padding 2
519 "*Presentation-format white-space padding factor, for greater indent."
520 :type 'integer
521 :group 'allout)
523 (make-variable-buffer-local 'allout-presentation-padding)
524 ;;;###autoload
525 (put 'allout-presentation-padding 'safe-local-variable 'integerp)
527 ;;;_ = allout-abbreviate-flattened-numbering
528 (defcustom allout-abbreviate-flattened-numbering nil
529 "*If non-nil, `allout-flatten-exposed-to-buffer' abbreviates topic
530 numbers to minimal amount with some context. Otherwise, entire
531 numbers are always used."
532 :type 'boolean
533 :group 'allout)
535 ;;;_ + LaTeX formatting
536 ;;;_ - allout-number-pages
537 (defcustom allout-number-pages nil
538 "*Non-nil turns on page numbering for LaTeX formatting of an outline."
539 :type 'boolean
540 :group 'allout)
541 ;;;_ - allout-label-style
542 (defcustom allout-label-style "\\large\\bf"
543 "*Font and size of labels for LaTeX formatting of an outline."
544 :type 'string
545 :group 'allout)
546 ;;;_ - allout-head-line-style
547 (defcustom allout-head-line-style "\\large\\sl "
548 "*Font and size of entries for LaTeX formatting of an outline."
549 :type 'string
550 :group 'allout)
551 ;;;_ - allout-body-line-style
552 (defcustom allout-body-line-style " "
553 "*Font and size of entries for LaTeX formatting of an outline."
554 :type 'string
555 :group 'allout)
556 ;;;_ - allout-title-style
557 (defcustom allout-title-style "\\Large\\bf"
558 "*Font and size of titles for LaTeX formatting of an outline."
559 :type 'string
560 :group 'allout)
561 ;;;_ - allout-title
562 (defcustom allout-title '(or buffer-file-name (buffer-name))
563 "*Expression to be evaluated to determine the title for LaTeX
564 formatted copy."
565 :type 'sexp
566 :group 'allout)
567 ;;;_ - allout-line-skip
568 (defcustom allout-line-skip ".05cm"
569 "*Space between lines for LaTeX formatting of an outline."
570 :type 'string
571 :group 'allout)
572 ;;;_ - allout-indent
573 (defcustom allout-indent ".3cm"
574 "*LaTeX formatted depth-indent spacing."
575 :type 'string
576 :group 'allout)
578 ;;;_ + Topic encryption
579 ;;;_ = allout-encryption group
580 (defgroup allout-encryption nil
581 "Settings for topic encryption features of allout outliner."
582 :group 'allout)
583 ;;;_ = allout-topic-encryption-bullet
584 (defcustom allout-topic-encryption-bullet "~"
585 "*Bullet signifying encryption of the entry's body."
586 :type '(choice (const nil) string)
587 :version "22.0"
588 :group 'allout-encryption)
589 ;;;_ = allout-passphrase-verifier-handling
590 (defcustom allout-passphrase-verifier-handling t
591 "*Enable use of symmetric encryption passphrase verifier if non-nil.
593 See the docstring for the `allout-enable-file-variable-adjustment'
594 variable for details about allout ajustment of file variables."
595 :type 'boolean
596 :version "22.0"
597 :group 'allout-encryption)
598 (make-variable-buffer-local 'allout-passphrase-verifier-handling)
599 ;;;_ = allout-passphrase-hint-handling
600 (defcustom allout-passphrase-hint-handling 'always
601 "*Dictate outline encryption passphrase reminder handling:
603 always -- always show reminder when prompting
604 needed -- show reminder on passphrase entry failure
605 disabled -- never present or adjust reminder
607 See the docstring for the `allout-enable-file-variable-adjustment'
608 variable for details about allout ajustment of file variables."
609 :type '(choice (const always)
610 (const needed)
611 (const disabled))
612 :version "22.0"
613 :group 'allout-encryption)
614 (make-variable-buffer-local 'allout-passphrase-hint-handling)
615 ;;;_ = allout-encrypt-unencrypted-on-saves
616 (defcustom allout-encrypt-unencrypted-on-saves t
617 "*When saving, should topics pending encryption be encrypted?
619 The idea is to prevent file-system exposure of any un-encrypted stuff, and
620 mostly covers both deliberate file writes and auto-saves.
622 - Yes: encrypt all topics pending encryption, even if it's the one
623 currently being edited. (In that case, the currently edited topic
624 will be automatically decrypted before any user interaction, so they
625 can continue editing but the copy on the file system will be
626 encrypted.)
627 Auto-saves will use the \"All except current topic\" mode if this
628 one is selected, to avoid practical difficulties -- see below.
629 - All except current topic: skip the topic currently being edited, even if
630 it's pending encryption. This may expose the current topic on the
631 file sytem, but avoids the nuisance of prompts for the encryption
632 passphrase in the middle of editing for, eg, autosaves.
633 This mode is used for auto-saves for both this option and \"Yes\".
634 - No: leave it to the user to encrypt any unencrypted topics.
636 For practical reasons, auto-saves always use the 'except-current policy
637 when auto-encryption is enabled. (Otherwise, spurious passphrase prompts
638 and unavoidable timing collisions are too disruptive.) If security for a
639 file requires that even the current topic is never auto-saved in the clear,
640 disable auto-saves for that file."
642 :type '(choice (const :tag "Yes" t)
643 (const :tag "All except current topic" except-current)
644 (const :tag "No" nil))
645 :version "22.0"
646 :group 'allout-encryption)
647 (make-variable-buffer-local 'allout-encrypt-unencrypted-on-saves)
649 ;;;_ + Developer
650 ;;;_ = allout-developer group
651 (defgroup allout-developer nil
652 "Settings for topic encryption features of allout outliner."
653 :group 'allout)
654 ;;;_ = allout-run-unit-tests-on-load
655 (defcustom allout-run-unit-tests-on-load nil
656 "*When non-nil, unit tests will be run at end of loading the allout module.
658 Generally, allout code developers are the only ones who'll want to set this.
660 \(If set, this makes it an even better practice to exercise changes by
661 doing byte-compilation with a repeat count, so the file is loaded after
662 compilation.)
664 See `allout-run-unit-tests' to see what's run."
665 :type 'boolean
666 :group 'allout-developer)
668 ;;;_ + Miscellaneous customization
670 ;;;_ = allout-command-prefix
671 (defcustom allout-command-prefix "\C-c "
672 "*Key sequence to be used as prefix for outline mode command key bindings.
674 Default is '\C-c<space>'; just '\C-c' is more short-and-sweet, if you're
675 willing to let allout use a bunch of \C-c keybindings."
676 :type 'string
677 :group 'allout)
679 ;;;_ = allout-keybindings-list
680 ;;; You have to reactivate allout-mode -- `(allout-mode t)' -- to
681 ;;; institute changes to this var.
682 (defvar allout-keybindings-list ()
683 "*List of `allout-mode' key / function bindings, for `allout-mode-map'.
685 String or vector key will be prefaced with `allout-command-prefix',
686 unless optional third, non-nil element is present.")
687 (setq allout-keybindings-list
689 ; Motion commands:
690 ("\C-n" allout-next-visible-heading)
691 ("\C-p" allout-previous-visible-heading)
692 ("\C-u" allout-up-current-level)
693 ("\C-f" allout-forward-current-level)
694 ("\C-b" allout-backward-current-level)
695 ("\C-a" allout-beginning-of-current-entry)
696 ("\C-e" allout-end-of-entry)
697 ; Exposure commands:
698 ("\C-i" allout-show-children)
699 ("\C-s" allout-show-current-subtree)
700 ("\C-h" allout-hide-current-subtree)
701 ("h" allout-hide-current-subtree)
702 ("\C-o" allout-show-current-entry)
703 ("!" allout-show-all)
704 ("x" allout-toggle-current-subtree-encryption)
705 ; Alteration commands:
706 (" " allout-open-sibtopic)
707 ("." allout-open-subtopic)
708 ("," allout-open-supertopic)
709 ("'" allout-shift-in)
710 (">" allout-shift-in)
711 ("<" allout-shift-out)
712 ("\C-m" allout-rebullet-topic)
713 ("*" allout-rebullet-current-heading)
714 ("#" allout-number-siblings)
715 ("\C-k" allout-kill-line t)
716 ("\M-k" allout-copy-line-as-kill t)
717 ("\C-y" allout-yank t)
718 ("\M-y" allout-yank-pop t)
719 ("\C-k" allout-kill-topic)
720 ("\M-k" allout-copy-topic-as-kill)
721 ; Miscellaneous commands:
722 ;([?\C-\ ] allout-mark-topic)
723 ("@" allout-resolve-xref)
724 ("=c" allout-copy-exposed-to-buffer)
725 ("=i" allout-indented-exposed-to-buffer)
726 ("=t" allout-latexify-exposed)
727 ("=p" allout-flatten-exposed-to-buffer)))
729 ;;;_ = allout-inhibit-auto-fill
730 (defcustom allout-inhibit-auto-fill nil
731 "*If non-nil, auto-fill will be inhibited in the allout buffers.
733 You can customize this setting to set it for all allout buffers, or set it
734 in individual buffers if you want to inhibit auto-fill only in particular
735 buffers. (You could use a function on `allout-mode-hook' to inhibit
736 auto-fill according, eg, to the major mode.)
738 If you don't set this and auto-fill-mode is enabled, allout will use the
739 value that `normal-auto-fill-function', if any, when allout mode starts, or
740 else allout's special hanging-indent maintaining auto-fill function,
741 `allout-auto-fill'."
742 :type 'boolean
743 :group 'allout)
744 (make-variable-buffer-local 'allout-inhibit-auto-fill)
746 ;;;_ = allout-use-hanging-indents
747 (defcustom allout-use-hanging-indents t
748 "*If non-nil, topic body text auto-indent defaults to indent of the header.
749 Ie, it is indented to be just past the header prefix. This is
750 relevant mostly for use with `indented-text-mode', or other situations
751 where auto-fill occurs."
752 :type 'boolean
753 :group 'allout)
754 (make-variable-buffer-local 'allout-use-hanging-indents)
755 ;;;###autoload
756 (put 'allout-use-hanging-indents 'safe-local-variable
757 (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
759 ;;;_ = allout-reindent-bodies
760 (defcustom allout-reindent-bodies (if allout-use-hanging-indents
761 'text)
762 "*Non-nil enables auto-adjust of topic body hanging indent with depth shifts.
764 When active, topic body lines that are indented even with or beyond
765 their topic header are reindented to correspond with depth shifts of
766 the header.
768 A value of t enables reindent in non-programming-code buffers, ie
769 those that do not have the variable `comment-start' set. A value of
770 `force' enables reindent whether or not `comment-start' is set."
771 :type '(choice (const nil) (const t) (const text) (const force))
772 :group 'allout)
774 (make-variable-buffer-local 'allout-reindent-bodies)
775 ;;;###autoload
776 (put 'allout-reindent-bodies 'safe-local-variable
777 '(lambda (x) (memq x '(nil t text force))))
779 ;;;_ = allout-enable-file-variable-adjustment
780 (defcustom allout-enable-file-variable-adjustment t
781 "*If non-nil, some allout outline actions edit Emacs local file var text.
783 This can range from changes to existing entries, addition of new ones,
784 and creation of a new local variables section when necessary.
786 Emacs file variables adjustments are also inhibited if `enable-local-variables'
787 is nil.
789 Operations potentially causing edits include allout encryption routines.
790 For details, see `allout-toggle-current-subtree-encryption's docstring."
791 :type 'boolean
792 :group 'allout)
793 (make-variable-buffer-local 'allout-enable-file-variable-adjustment)
795 ;;;_* CODE -- no user customizations below.
797 ;;;_ #1 Internal Outline Formatting and Configuration
798 ;;;_ : Version
799 ;;;_ = allout-version
800 (defvar allout-version "2.2.1"
801 "Version of currently loaded outline package. (allout.el)")
802 ;;;_ > allout-version
803 (defun allout-version (&optional here)
804 "Return string describing the loaded outline version."
805 (interactive "P")
806 (let ((msg (concat "Allout Outline Mode v " allout-version)))
807 (if here (insert msg))
808 (message "%s" msg)
809 msg))
810 ;;;_ : Mode activation (defined here because it's referenced early)
811 ;;;_ = allout-mode
812 (defvar allout-mode nil "Allout outline mode minor-mode flag.")
813 (make-variable-buffer-local 'allout-mode)
814 ;;;_ = allout-layout nil
815 (defvar allout-layout nil ; LEAVE GLOBAL VALUE NIL -- see docstring.
816 "Buffer-specific setting for allout layout.
818 In buffers where this is non-nil (and if `allout-init' has been run, to
819 enable this behavior), `allout-mode' will be automatically activated. The
820 layout dictated by the value will be used to set the initial exposure when
821 `allout-mode' is activated.
823 \*You should not setq-default this variable non-nil unless you want every
824 visited file to be treated as an allout file.*
826 The value would typically be set by a file local variable. For
827 example, the following lines at the bottom of an Emacs Lisp file:
829 ;;;Local variables:
830 ;;;allout-layout: (0 : -1 -1 0)
831 ;;;End:
833 dictate activation of `allout-mode' mode when the file is visited
834 \(presuming allout-init was already run), followed by the
835 equivalent of `(allout-expose-topic 0 : -1 -1 0)'. (This is
836 the layout used for the allout.el source file.)
838 `allout-default-layout' describes the specification format.
839 `allout-layout' can additionally have the value `t', in which
840 case the value of `allout-default-layout' is used.")
841 (make-variable-buffer-local 'allout-layout)
842 ;;;###autoload
843 (put 'allout-layout 'safe-local-variable
844 '(lambda (x) (or (numberp x) (listp x) (memq x '(: * + -)))))
846 ;;;_ : Topic header format
847 ;;;_ = allout-regexp
848 (defvar allout-regexp ""
849 "*Regular expression to match the beginning of a heading line.
851 Any line whose beginning matches this regexp is considered a
852 heading. This var is set according to the user configuration vars
853 by `set-allout-regexp'.")
854 (make-variable-buffer-local 'allout-regexp)
855 ;;;_ = allout-bullets-string
856 (defvar allout-bullets-string ""
857 "A string dictating the valid set of outline topic bullets.
859 This var should *not* be set by the user -- it is set by `set-allout-regexp',
860 and is produced from the elements of `allout-plain-bullets-string'
861 and `allout-distinctive-bullets-string'.")
862 (make-variable-buffer-local 'allout-bullets-string)
863 ;;;_ = allout-bullets-string-len
864 (defvar allout-bullets-string-len 0
865 "Length of current buffers' `allout-plain-bullets-string'.")
866 (make-variable-buffer-local 'allout-bullets-string-len)
867 ;;;_ = allout-depth-specific-regexp
868 (defvar allout-depth-specific-regexp ""
869 "*Regular expression to match a heading line prefix for a particular depth.
871 This expression is used to search for depth-specific topic
872 headers at depth 2 and greater. Use `allout-depth-one-regexp'
873 for to seek topics at depth one.
875 This var is set according to the user configuration vars by
876 `set-allout-regexp'. It is prepared with format strings for two
877 decimal numbers, which should each be one less than the depth of the
878 topic prefix to be matched.")
879 (make-variable-buffer-local 'allout-depth-specific-regexp)
880 ;;;_ = allout-depth-one-regexp
881 (defvar allout-depth-one-regexp ""
882 "*Regular expression to match a heading line prefix for depth one.
884 This var is set according to the user configuration vars by
885 `set-allout-regexp'. It is prepared with format strings for two
886 decimal numbers, which should each be one less than the depth of the
887 topic prefix to be matched.")
888 (make-variable-buffer-local 'allout-depth-one-regexp)
889 ;;;_ = allout-line-boundary-regexp
890 (defvar allout-line-boundary-regexp ()
891 "`allout-regexp' with outline style beginning-of-line anchor.
893 This is properly set by `set-allout-regexp'.")
894 (make-variable-buffer-local 'allout-line-boundary-regexp)
895 ;;;_ = allout-bob-regexp
896 (defvar allout-bob-regexp ()
897 "Like `allout-line-boundary-regexp', for headers at beginning of buffer.")
898 (make-variable-buffer-local 'allout-bob-regexp)
899 ;;;_ = allout-header-subtraction
900 (defvar allout-header-subtraction (1- (length allout-header-prefix))
901 "Allout-header prefix length to subtract when computing topic depth.")
902 (make-variable-buffer-local 'allout-header-subtraction)
903 ;;;_ = allout-plain-bullets-string-len
904 (defvar allout-plain-bullets-string-len (length allout-plain-bullets-string)
905 "Length of `allout-plain-bullets-string', updated by `set-allout-regexp'.")
906 (make-variable-buffer-local 'allout-plain-bullets-string-len)
908 ;;;_ = allout-doublecheck-at-and-shallower
909 (defconst allout-doublecheck-at-and-shallower 2
910 "Validate apparent topics of this depth and shallower as being non-aberrant.
912 Verified with `allout-aberrant-container-p'. This check's usefulness is
913 limited to shallow depths, because the determination of aberrance
914 is according to the mistaken item being followed by a legitimate item of
915 excessively greater depth.")
916 ;;;_ X allout-reset-header-lead (header-lead)
917 (defun allout-reset-header-lead (header-lead)
918 "*Reset the leading string used to identify topic headers."
919 (interactive "sNew lead string: ")
920 (setq allout-header-prefix header-lead)
921 (setq allout-header-subtraction (1- (length allout-header-prefix)))
922 (set-allout-regexp))
923 ;;;_ X allout-lead-with-comment-string (header-lead)
924 (defun allout-lead-with-comment-string (&optional header-lead)
925 "*Set the topic-header leading string to specified string.
927 Useful when for encapsulating outline structure in programming
928 language comments. Returns the leading string."
930 (interactive "P")
931 (if (not (stringp header-lead))
932 (setq header-lead (read-string
933 "String prefix for topic headers: ")))
934 (setq allout-reindent-bodies nil)
935 (allout-reset-header-lead header-lead)
936 header-lead)
937 ;;;_ > allout-infer-header-lead-and-primary-bullet ()
938 (defun allout-infer-header-lead-and-primary-bullet ()
939 "Determine appropriate `allout-header-prefix' and `allout-primary-bullet'.
941 Works according to settings of:
943 `comment-start'
944 `allout-header-prefix' (default)
945 `allout-use-mode-specific-leader'
946 and `allout-mode-leaders'.
948 Apply this via (re)activation of `allout-mode', rather than
949 invoking it directly."
950 (let* ((use-leader (and (boundp 'allout-use-mode-specific-leader)
951 (if (or (stringp allout-use-mode-specific-leader)
952 (memq allout-use-mode-specific-leader
953 '(allout-mode-leaders
954 comment-start
955 t)))
956 allout-use-mode-specific-leader
957 ;; Oops -- garbled value, equate with effect of t:
958 t)))
959 (leader
960 (cond
961 ((not use-leader) nil)
962 ;; Use the explicitly designated leader:
963 ((stringp use-leader) use-leader)
964 (t (or (and (memq use-leader '(t allout-mode-leaders))
965 ;; Get it from outline mode leaders?
966 (cdr (assq major-mode allout-mode-leaders)))
967 ;; ... didn't get from allout-mode-leaders...
968 (and (memq use-leader '(t comment-start))
969 comment-start
970 ;; Use comment-start, maybe tripled, and with
971 ;; underscore:
972 (concat
973 (if (string= " "
974 (substring comment-start
975 (1- (length comment-start))))
976 ;; Use comment-start, sans trailing space:
977 (substring comment-start 0 -1)
978 (concat comment-start comment-start comment-start))
979 ;; ... and append underscore, whichever:
980 "_")))))))
981 (if (not leader)
983 (setq allout-header-prefix leader)
984 (if (not allout-old-style-prefixes)
985 ;; setting allout-primary-bullet makes the top level topics use --
986 ;; actually, be -- the special prefix:
987 (setq allout-primary-bullet leader))
988 allout-header-prefix)))
989 (defalias 'allout-infer-header-lead
990 'allout-infer-header-lead-and-primary-bullet)
991 ;;;_ > allout-infer-body-reindent ()
992 (defun allout-infer-body-reindent ()
993 "Determine proper setting for `allout-reindent-bodies'.
995 Depends on default setting of `allout-reindent-bodies' (which see)
996 and presence of setting for `comment-start', to tell whether the
997 file is programming code."
998 (if (and allout-reindent-bodies
999 comment-start
1000 (not (eq 'force allout-reindent-bodies)))
1001 (setq allout-reindent-bodies nil)))
1002 ;;;_ > set-allout-regexp ()
1003 (defun set-allout-regexp ()
1004 "Generate proper topic-header regexp form for outline functions.
1006 Works with respect to `allout-plain-bullets-string' and
1007 `allout-distinctive-bullets-string'.
1009 Also refresh various data structures that hinge on the regexp."
1011 (interactive)
1012 ;; Derive allout-bullets-string from user configured components:
1013 (setq allout-bullets-string "")
1014 (let ((strings (list 'allout-plain-bullets-string
1015 'allout-distinctive-bullets-string
1016 'allout-primary-bullet))
1017 cur-string
1018 cur-len
1019 cur-char
1020 index)
1021 (while strings
1022 (setq index 0)
1023 (setq cur-len (length (setq cur-string (symbol-value (car strings)))))
1024 (while (< index cur-len)
1025 (setq cur-char (aref cur-string index))
1026 (setq allout-bullets-string
1027 (concat allout-bullets-string
1028 (cond
1029 ; Single dash would denote a
1030 ; sequence, repeated denotes
1031 ; a dash:
1032 ((eq cur-char ?-) "--")
1033 ; literal close-square-bracket
1034 ; doesn't work right in the
1035 ; expr, exclude it:
1036 ((eq cur-char ?\]) "")
1037 (t (regexp-quote (char-to-string cur-char))))))
1038 (setq index (1+ index)))
1039 (setq strings (cdr strings)))
1041 ;; Derive next for repeated use in allout-pending-bullet:
1042 (setq allout-plain-bullets-string-len (length allout-plain-bullets-string))
1043 (setq allout-header-subtraction (1- (length allout-header-prefix)))
1045 (let (new-part old-part)
1046 (setq new-part (concat "\\("
1047 (regexp-quote allout-header-prefix)
1048 "[ \t]*"
1049 ;; already regexp-quoted in a custom way:
1050 "[" allout-bullets-string "]"
1051 "\\)")
1052 old-part (concat "\\("
1053 (regexp-quote allout-primary-bullet)
1054 "\\|"
1055 (regexp-quote allout-header-prefix)
1056 "\\)"
1058 " ?[^" allout-primary-bullet "]")
1059 allout-regexp (concat new-part
1060 "\\|"
1061 old-part
1062 "\\|\^l")
1064 allout-line-boundary-regexp (concat "\n" new-part
1065 "\\|"
1066 "\n" old-part)
1068 allout-bob-regexp (concat "\\`" new-part
1069 "\\|"
1070 "\\`" old-part))
1072 (setq allout-depth-specific-regexp
1073 (concat "\\(^\\|\\`\\)"
1074 "\\("
1076 ;; new-style spacers-then-bullet string:
1077 "\\("
1078 (allout-format-quote (regexp-quote allout-header-prefix))
1079 " \\{%s\\}"
1080 "[" (allout-format-quote allout-bullets-string) "]"
1081 "\\)"
1083 ;; old-style all-bullets string, if primary not multi-char:
1084 (if (< 0 allout-header-subtraction)
1086 (concat "\\|\\("
1087 (allout-format-quote
1088 (regexp-quote allout-primary-bullet))
1089 (allout-format-quote
1090 (regexp-quote allout-primary-bullet))
1091 (allout-format-quote
1092 (regexp-quote allout-primary-bullet))
1093 "\\{%s\\}"
1094 ;; disqualify greater depths:
1095 "[^"
1096 (allout-format-quote allout-primary-bullet)
1097 "]\\)"
1099 "\\)"
1101 (setq allout-depth-one-regexp
1102 (concat "\\(^\\|\\`\\)"
1103 "\\("
1105 "\\("
1106 (regexp-quote allout-header-prefix)
1107 ;; disqualify any bullet char following any amount of
1108 ;; intervening whitespace:
1109 " *"
1110 (concat "[^ " allout-bullets-string "]")
1111 "\\)"
1112 (if (< 0 allout-header-subtraction)
1113 ;; Need not support anything like the old
1114 ;; bullet style if the prefix is multi-char.
1116 (concat "\\|"
1117 (regexp-quote allout-primary-bullet)
1118 ;; disqualify deeper primary-bullet sequences:
1119 "[^" allout-primary-bullet "]"))
1120 "\\)"
1121 ))))
1122 ;;;_ : Key bindings
1123 ;;;_ = allout-mode-map
1124 (defvar allout-mode-map nil "Keybindings for (allout) outline minor mode.")
1125 ;;;_ > produce-allout-mode-map (keymap-alist &optional base-map)
1126 (defun produce-allout-mode-map (keymap-list &optional base-map)
1127 "Produce keymap for use as `allout-mode-map', from KEYMAP-LIST.
1129 Built on top of optional BASE-MAP, or empty sparse map if none specified.
1130 See doc string for `allout-keybindings-list' for format of binding list."
1131 (let ((map (or base-map (make-sparse-keymap)))
1132 (pref (list allout-command-prefix)))
1133 (mapcar (function
1134 (lambda (cell)
1135 (let ((add-pref (null (cdr (cdr cell))))
1136 (key-suff (list (car cell))))
1137 (apply 'define-key
1138 (list map
1139 (apply 'concat (if add-pref
1140 (append pref key-suff)
1141 key-suff))
1142 (car (cdr cell)))))))
1143 keymap-list)
1144 map))
1145 ;;;_ : Menu bar
1146 (defvar allout-mode-exposure-menu)
1147 (defvar allout-mode-editing-menu)
1148 (defvar allout-mode-navigation-menu)
1149 (defvar allout-mode-misc-menu)
1150 (defun produce-allout-mode-menubar-entries ()
1151 (require 'easymenu)
1152 (easy-menu-define allout-mode-exposure-menu
1153 allout-mode-map
1154 "Allout outline exposure menu."
1155 '("Exposure"
1156 ["Show Entry" allout-show-current-entry t]
1157 ["Show Children" allout-show-children t]
1158 ["Show Subtree" allout-show-current-subtree t]
1159 ["Hide Subtree" allout-hide-current-subtree t]
1160 ["Hide Leaves" allout-hide-current-leaves t]
1161 "----"
1162 ["Show All" allout-show-all t]))
1163 (easy-menu-define allout-mode-editing-menu
1164 allout-mode-map
1165 "Allout outline editing menu."
1166 '("Headings"
1167 ["Open Sibling" allout-open-sibtopic t]
1168 ["Open Subtopic" allout-open-subtopic t]
1169 ["Open Supertopic" allout-open-supertopic t]
1170 "----"
1171 ["Shift Topic In" allout-shift-in t]
1172 ["Shift Topic Out" allout-shift-out t]
1173 ["Rebullet Topic" allout-rebullet-topic t]
1174 ["Rebullet Heading" allout-rebullet-current-heading t]
1175 ["Number Siblings" allout-number-siblings t]
1176 "----"
1177 ["Toggle Topic Encryption"
1178 allout-toggle-current-subtree-encryption
1179 (> (allout-current-depth) 1)]))
1180 (easy-menu-define allout-mode-navigation-menu
1181 allout-mode-map
1182 "Allout outline navigation menu."
1183 '("Navigation"
1184 ["Next Visible Heading" allout-next-visible-heading t]
1185 ["Previous Visible Heading"
1186 allout-previous-visible-heading t]
1187 "----"
1188 ["Up Level" allout-up-current-level t]
1189 ["Forward Current Level" allout-forward-current-level t]
1190 ["Backward Current Level"
1191 allout-backward-current-level t]
1192 "----"
1193 ["Beginning of Entry"
1194 allout-beginning-of-current-entry t]
1195 ["End of Entry" allout-end-of-entry t]
1196 ["End of Subtree" allout-end-of-current-subtree t]))
1197 (easy-menu-define allout-mode-misc-menu
1198 allout-mode-map
1199 "Allout outlines miscellaneous bindings."
1200 '("Misc"
1201 ["Version" allout-version t]
1202 "----"
1203 ["Duplicate Exposed" allout-copy-exposed-to-buffer t]
1204 ["Duplicate Exposed, numbered"
1205 allout-flatten-exposed-to-buffer t]
1206 ["Duplicate Exposed, indented"
1207 allout-indented-exposed-to-buffer t]
1208 "----"
1209 ["Set Header Lead" allout-reset-header-lead t]
1210 ["Set New Exposure" allout-expose-topic t])))
1211 ;;;_ : Allout Modal-Variables Utilities
1212 ;;;_ = allout-mode-prior-settings
1213 (defvar allout-mode-prior-settings nil
1214 "Internal `allout-mode' use; settings to be resumed on mode deactivation.
1216 See `allout-add-resumptions' and `allout-do-resumptions'.")
1217 (make-variable-buffer-local 'allout-mode-prior-settings)
1218 ;;;_ > allout-add-resumptions (&rest pairs)
1219 (defun allout-add-resumptions (&rest pairs)
1220 "Set name/value PAIRS.
1222 Old settings are preserved for later resumption using `allout-do-resumptions'.
1224 The new values are set as a buffer local. On resumption, the prior buffer
1225 scope of the variable is restored along with its value. If it was a void
1226 buffer-local value, then it is left as nil on resumption.
1228 The pairs are lists whose car is the name of the variable and car of the
1229 cdr is the new value: '(some-var some-value)'. The pairs can actually be
1230 triples, where the third element qualifies the disposition of the setting,
1231 as described further below.
1233 If the optional third element is the symbol 'extend, then the new value
1234 created by `cons'ing the second element of the pair onto the front of the
1235 existing value.
1237 If the optional third element is the symbol 'append, then the new value is
1238 extended from the existing one by `append'ing a list containing the second
1239 element of the pair onto the end of the existing value.
1241 Extension, and resumptions in general, should not be used for hook
1242 functions -- use the 'local mode of `add-hook' for that, instead.
1244 The settings are stored on `allout-mode-prior-settings'."
1245 (while pairs
1246 (let* ((pair (pop pairs))
1247 (name (car pair))
1248 (value (cadr pair))
1249 (qualifier (if (> (length pair) 2)
1250 (caddr pair)))
1251 prior-value)
1252 (if (not (symbolp name))
1253 (error "Pair's name, %S, must be a symbol, not %s"
1254 name (type-of name)))
1255 (setq prior-value (condition-case nil
1256 (symbol-value name)
1257 (void-variable nil)))
1258 (when (not (assoc name allout-mode-prior-settings))
1259 ;; Not already added as a resumption, create the prior setting entry.
1260 (if (local-variable-p name)
1261 ;; is already local variable -- preserve the prior value:
1262 (push (list name prior-value) allout-mode-prior-settings)
1263 ;; wasn't local variable, indicate so for resumption by killing
1264 ;; local value, and make it local:
1265 (push (list name) allout-mode-prior-settings)
1266 (make-local-variable name)))
1267 (if qualifier
1268 (cond ((eq qualifier 'extend)
1269 (if (not (listp prior-value))
1270 (error "extension of non-list prior value attempted")
1271 (set name (cons value prior-value))))
1272 ((eq qualifier 'append)
1273 (if (not (listp prior-value))
1274 (error "appending of non-list prior value attempted")
1275 (set name (append prior-value (list value)))))
1276 (t (error "unrecognized setting qualifier `%s' encountered"
1277 qualifier)))
1278 (set name value)))))
1279 ;;;_ > allout-do-resumptions ()
1280 (defun allout-do-resumptions ()
1281 "Resume all name/value settings registered by `allout-add-resumptions'.
1283 This is used when concluding allout-mode, to resume selected variables to
1284 their settings before allout-mode was started."
1286 (while allout-mode-prior-settings
1287 (let* ((pair (pop allout-mode-prior-settings))
1288 (name (car pair))
1289 (value-cell (cdr pair)))
1290 (if (not value-cell)
1291 ;; Prior value was global:
1292 (kill-local-variable name)
1293 ;; Prior value was explicit:
1294 (set name (car value-cell))))))
1295 ;;;_ : Mode-specific incidentals
1296 ;;;_ > allout-unprotected (expr)
1297 (defmacro allout-unprotected (expr)
1298 "Enable internal outline operations to alter invisible text."
1299 `(let ((inhibit-read-only (if (not buffer-read-only) t))
1300 (inhibit-field-text-motion t))
1301 ,expr))
1302 ;;;_ = allout-mode-hook
1303 (defvar allout-mode-hook nil
1304 "*Hook that's run when allout mode starts.")
1305 ;;;_ = allout-mode-deactivate-hook
1306 (defvar allout-mode-deactivate-hook nil
1307 "*Hook that's run when allout mode ends.")
1308 ;;;_ = allout-exposure-category
1309 (defvar allout-exposure-category nil
1310 "Symbol for use as allout invisible-text overlay category.")
1311 ;;;_ x allout-view-change-hook
1312 (defvar allout-view-change-hook nil
1313 "*(Deprecated) A hook run after allout outline exposure changes.
1315 Switch to using `allout-exposure-change-hook' instead. Both hooks are
1316 currently respected, but the other conveys the details of the exposure
1317 change via explicit parameters, and this one will eventually be disabled in
1318 a subsequent allout version.")
1319 ;;;_ = allout-exposure-change-hook
1320 (defvar allout-exposure-change-hook nil
1321 "*Hook that's run after allout outline subtree exposure changes.
1323 It is run at the conclusion of `allout-flag-region'.
1325 Functions on the hook must take three arguments:
1327 - FROM -- integer indicating the point at the start of the change.
1328 - TO -- integer indicating the point of the end of the change.
1329 - FLAG -- change mode: nil for exposure, otherwise concealment.
1331 This hook might be invoked multiple times by a single command.
1333 This hook is replacing `allout-view-change-hook', which is being deprecated
1334 and eventually will not be invoked.")
1335 ;;;_ = allout-structure-added-hook
1336 (defvar allout-structure-added-hook nil
1337 "*Hook that's run after addition of items to the outline.
1339 Functions on the hook should take two arguments:
1341 - NEW-START -- integer indicating position of start of the first new item.
1342 - NEW-END -- integer indicating position of end of the last new item.
1344 Some edits that introduce new items may missed by this hook:
1345 specifically edits that native allout routines do not control.
1347 This hook might be invoked multiple times by a single command.")
1348 ;;;_ = allout-structure-deleted-hook
1349 (defvar allout-structure-deleted-hook nil
1350 "*Hook that's run after disciplined deletion of subtrees from the outline.
1352 Functions on the hook must take two arguments:
1354 - DEPTH -- integer indicating the depth of the subtree that was deleted.
1355 - REMOVED-FROM -- integer indicating the point where the subtree was removed.
1357 Some edits that remove or invalidate items may missed by this hook:
1358 specifically edits that native allout routines do not control.
1360 This hook might be invoked multiple times by a single command.")
1361 ;;;_ = allout-structure-shifted-hook
1362 (defvar allout-structure-shifted-hook nil
1363 "*Hook that's run after shifting of items in the outline.
1365 Functions on the hook should take two arguments:
1367 - DEPTH-CHANGE -- integer indicating depth increase, negative for decrease
1368 - START -- integer indicating the start point of the shifted parent item.
1370 Some edits that shift items can be missed by this hook: specifically edits
1371 that native allout routines do not control.
1373 This hook might be invoked multiple times by a single command.")
1374 ;;;_ = allout-outside-normal-auto-fill-function
1375 (defvar allout-outside-normal-auto-fill-function nil
1376 "Value of normal-auto-fill-function outside of allout mode.
1378 Used by allout-auto-fill to do the mandated normal-auto-fill-function
1379 wrapped within allout's automatic fill-prefix setting.")
1380 (make-variable-buffer-local 'allout-outside-normal-auto-fill-function)
1381 ;;;_ = file-var-bug hack
1382 (defvar allout-v18/19-file-var-hack nil
1383 "Horrible hack used to prevent invalid multiple triggering of outline
1384 mode from prop-line file-var activation. Used by `allout-mode' function
1385 to track repeats.")
1386 ;;;_ = allout-passphrase-verifier-string
1387 (defvar allout-passphrase-verifier-string nil
1388 "Setting used to test solicited encryption passphrases against the one
1389 already associated with a file.
1391 It consists of an encrypted random string useful only to verify that a
1392 passphrase entered by the user is effective for decryption. The passphrase
1393 itself is \*not* recorded in the file anywhere, and the encrypted contents
1394 are random binary characters to avoid exposing greater susceptibility to
1395 search attacks.
1397 The verifier string is retained as an Emacs file variable, as well as in
1398 the Emacs buffer state, if file variable adjustments are enabled. See
1399 `allout-enable-file-variable-adjustment' for details about that.")
1400 (make-variable-buffer-local 'allout-passphrase-verifier-string)
1401 ;;;###autoload
1402 (put 'allout-passphrase-verifier-string 'safe-local-variable 'stringp)
1403 ;;;_ = allout-passphrase-hint-string
1404 (defvar allout-passphrase-hint-string ""
1405 "Variable used to retain reminder string for file's encryption passphrase.
1407 See the description of `allout-passphrase-hint-handling' for details about how
1408 the reminder is deployed.
1410 The hint is retained as an Emacs file variable, as well as in the Emacs buffer
1411 state, if file variable adjustments are enabled. See
1412 `allout-enable-file-variable-adjustment' for details about that.")
1413 (make-variable-buffer-local 'allout-passphrase-hint-string)
1414 (setq-default allout-passphrase-hint-string "")
1415 ;;;###autoload
1416 (put 'allout-passphrase-hint-string 'safe-local-variable 'stringp)
1417 ;;;_ = allout-after-save-decrypt
1418 (defvar allout-after-save-decrypt nil
1419 "Internal variable, is nil or has the value of two points:
1421 - the location of a topic to be decrypted after saving is done
1422 - where to situate the cursor after the decryption is performed
1424 This is used to decrypt the topic that was currently being edited, if it
1425 was encrypted automatically as part of a file write or autosave.")
1426 (make-variable-buffer-local 'allout-after-save-decrypt)
1427 ;;;_ = allout-encryption-plaintext-sanitization-regexps
1428 (defvar allout-encryption-plaintext-sanitization-regexps nil
1429 "List of regexps whose matches are removed from plaintext before encryption.
1431 This is for the sake of removing artifacts, like escapes, that are added on
1432 and not actually part of the original plaintext. The removal is done just
1433 prior to encryption.
1435 Entries must be symbols that are bound to the desired values.
1437 Each value can be a regexp or a list with a regexp followed by a
1438 substitution string. If it's just a regexp, all its matches are removed
1439 before the text is encrypted. If it's a regexp and a substitution, the
1440 substition is used against the regexp matches, a la `replace-match'.")
1441 (make-variable-buffer-local 'allout-encryption-text-removal-regexps)
1442 ;;;_ = allout-encryption-ciphertext-rejection-regexps
1443 (defvar allout-encryption-ciphertext-rejection-regexps nil
1444 "Variable for regexps matching plaintext to remove before encryption.
1446 This is for the sake of redoing encryption in cases where the ciphertext
1447 incidentally contains strings that would disrupt mode operation --
1448 for example, a line that happens to look like an allout-mode topic prefix.
1450 Entries must be symbols that are bound to the desired regexp values.
1452 The encryption will be retried up to
1453 `allout-encryption-ciphertext-rejection-limit' times, after which an error
1454 is raised.")
1456 (make-variable-buffer-local 'allout-encryption-ciphertext-rejection-regexps)
1457 ;;;_ = allout-encryption-ciphertext-rejection-ceiling
1458 (defvar allout-encryption-ciphertext-rejection-ceiling 5
1459 "Limit on number of times encryption ciphertext is rejected.
1461 See `allout-encryption-ciphertext-rejection-regexps' for rejection reasons.")
1462 (make-variable-buffer-local 'allout-encryption-ciphertext-rejection-ceiling)
1463 ;;;_ > allout-mode-p ()
1464 ;; Must define this macro above any uses, or byte compilation will lack
1465 ;; proper def, if file isn't loaded -- eg, during emacs build!
1466 (defmacro allout-mode-p ()
1467 "Return t if `allout-mode' is active in current buffer."
1468 'allout-mode)
1469 ;;;_ > allout-write-file-hook-handler ()
1470 (defun allout-write-file-hook-handler ()
1471 "Implement `allout-encrypt-unencrypted-on-saves' policy for file writes."
1473 (if (or (not (allout-mode-p))
1474 (not (boundp 'allout-encrypt-unencrypted-on-saves))
1475 (not allout-encrypt-unencrypted-on-saves))
1477 (let ((except-mark (and (equal allout-encrypt-unencrypted-on-saves
1478 'except-current)
1479 (point-marker))))
1480 (if (save-excursion (goto-char (point-min))
1481 (allout-next-topic-pending-encryption except-mark))
1482 (progn
1483 (message "auto-encrypting pending topics")
1484 (sit-for 0)
1485 (condition-case failure
1486 (setq allout-after-save-decrypt
1487 (allout-encrypt-decrypted except-mark))
1488 (error (progn
1489 (message
1490 "allout-write-file-hook-handler suppressing error %s"
1491 failure)
1492 (sit-for 2))))))
1494 nil)
1495 ;;;_ > allout-auto-save-hook-handler ()
1496 (defun allout-auto-save-hook-handler ()
1497 "Implement `allout-encrypt-unencrypted-on-saves' policy for auto save."
1499 (if (and (allout-mode-p) allout-encrypt-unencrypted-on-saves)
1500 ;; Always implement 'except-current policy when enabled.
1501 (let ((allout-encrypt-unencrypted-on-saves 'except-current))
1502 (allout-write-file-hook-handler))))
1503 ;;;_ > allout-after-saves-handler ()
1504 (defun allout-after-saves-handler ()
1505 "Decrypt topic encrypted for save, if it's currently being edited.
1507 Ie, if it was pending encryption and contained the point in its body before
1508 the save.
1510 We use values stored in `allout-after-save-decrypt' to locate the topic
1511 and the place for the cursor after the decryption is done."
1512 (if (not (and (allout-mode-p)
1513 (boundp 'allout-after-save-decrypt)
1514 allout-after-save-decrypt))
1516 (goto-char (car allout-after-save-decrypt))
1517 (let ((was-modified (buffer-modified-p)))
1518 (allout-toggle-subtree-encryption)
1519 (if (not was-modified)
1520 (set-buffer-modified-p nil)))
1521 (goto-char (cadr allout-after-save-decrypt))
1522 (setq allout-after-save-decrypt nil))
1524 ;;;_ = allout-inhibit-aberrance-doublecheck nil
1525 ;; In some exceptional moments, disparate topic depths need to be allowed
1526 ;; momentarily, eg when one topic is being yanked into another and they're
1527 ;; about to be reconciled. let-binding allout-inhibit-aberrance-doublecheck
1528 ;; prevents the aberrance doublecheck to allow, eg, the reconciliation
1529 ;; processing to happen in the presence of such discrepancies. It should
1530 ;; almost never be needed, however.
1531 (defvar allout-inhibit-aberrance-doublecheck nil
1532 "Internal state, for momentarily inhibits aberrance doublecheck.
1534 This should only be momentarily let-bound non-nil, not set
1535 non-nil in a lasting way.")
1537 ;;;_ #2 Mode activation
1538 ;;;_ = allout-explicitly-deactivated
1539 (defvar allout-explicitly-deactivated nil
1540 "If t, `allout-mode's last deactivation was deliberate.
1541 So `allout-post-command-business' should not reactivate it...")
1542 (make-variable-buffer-local 'allout-explicitly-deactivated)
1543 ;;;_ > allout-init (&optional mode)
1544 (defun allout-init (&optional mode)
1545 "Prime `allout-mode' to enable/disable auto-activation, wrt `allout-layout'.
1547 MODE is one of the following symbols:
1549 - nil (or no argument) deactivate auto-activation/layout;
1550 - `activate', enable auto-activation only;
1551 - `ask', enable auto-activation, and enable auto-layout but with
1552 confirmation for layout operation solicited from user each time;
1553 - `report', just report and return the current auto-activation state;
1554 - anything else (eg, t) for auto-activation and auto-layout, without
1555 any confirmation check.
1557 Use this function to setup your Emacs session for automatic activation
1558 of allout outline mode, contingent to the buffer-specific setting of
1559 the `allout-layout' variable. (See `allout-layout' and
1560 `allout-expose-topic' docstrings for more details on auto layout).
1562 `allout-init' works by setting up (or removing) the `allout-mode'
1563 find-file-hook, and giving `allout-auto-activation' a suitable
1564 setting.
1566 To prime your Emacs session for full auto-outline operation, include
1567 the following two lines in your Emacs init file:
1569 \(require 'allout)
1570 \(allout-init t)"
1572 (interactive)
1573 (if (interactive-p)
1574 (progn
1575 (setq mode
1576 (completing-read
1577 (concat "Select outline auto setup mode "
1578 "(empty for report, ? for options) ")
1579 '(("nil")("full")("activate")("deactivate")
1580 ("ask") ("report") (""))
1583 (if (string= mode "")
1584 (setq mode 'report)
1585 (setq mode (intern-soft mode)))))
1586 (let
1587 ;; convenience aliases, for consistent ref to respective vars:
1588 ((hook 'allout-find-file-hook)
1589 (find-file-hook-var-name (if (boundp 'find-file-hook)
1590 'find-file-hook
1591 'find-file-hooks))
1592 (curr-mode 'allout-auto-activation))
1594 (cond ((not mode)
1595 (set find-file-hook-var-name
1596 (delq hook (symbol-value find-file-hook-var-name)))
1597 (if (interactive-p)
1598 (message "Allout outline mode auto-activation inhibited.")))
1599 ((eq mode 'report)
1600 (if (not (memq hook (symbol-value find-file-hook-var-name)))
1601 (allout-init nil)
1602 ;; Just punt and use the reports from each of the modes:
1603 (allout-init (symbol-value curr-mode))))
1604 (t (add-hook find-file-hook-var-name hook)
1605 (set curr-mode ; `set', not `setq'!
1606 (cond ((eq mode 'activate)
1607 (message
1608 "Outline mode auto-activation enabled.")
1609 'activate)
1610 ((eq mode 'report)
1611 ;; Return the current mode setting:
1612 (allout-init mode))
1613 ((eq mode 'ask)
1614 (message
1615 (concat "Outline mode auto-activation and "
1616 "-layout (upon confirmation) enabled."))
1617 'ask)
1618 ((message
1619 "Outline mode auto-activation and -layout enabled.")
1620 'full)))))))
1621 ;;;_ > allout-setup-menubar ()
1622 (defun allout-setup-menubar ()
1623 "Populate the current buffer's menubar with `allout-mode' stuff."
1624 (let ((menus (list allout-mode-exposure-menu
1625 allout-mode-editing-menu
1626 allout-mode-navigation-menu
1627 allout-mode-misc-menu))
1628 cur)
1629 (while menus
1630 (setq cur (car menus)
1631 menus (cdr menus))
1632 (easy-menu-add cur))))
1633 ;;;_ > allout-overlay-preparations
1634 (defun allout-overlay-preparations ()
1635 "Set the properties of the allout invisible-text overlay and others."
1636 (setplist 'allout-exposure-category nil)
1637 (put 'allout-exposure-category 'invisible 'allout)
1638 (put 'allout-exposure-category 'evaporate t)
1639 ;; XXX We use isearch-open-invisible *and* isearch-mode-end-hook. The
1640 ;; latter would be sufficient, but it seems that a separate behavior --
1641 ;; the _transient_ opening of invisible text during isearch -- is keyed to
1642 ;; presence of the isearch-open-invisible property -- even though this
1643 ;; property controls the isearch _arrival_ behavior. This is the case at
1644 ;; least in emacs 21, 22.0, and xemacs 21.4.
1645 (put 'allout-exposure-category 'isearch-open-invisible
1646 'allout-isearch-end-handler)
1647 (if (featurep 'xemacs)
1648 (put 'allout-exposure-category 'start-open t)
1649 (put 'allout-exposure-category 'insert-in-front-hooks
1650 '(allout-overlay-insert-in-front-handler)))
1651 (put 'allout-exposure-category 'modification-hooks
1652 '(allout-overlay-interior-modification-handler)))
1653 ;;;_ > allout-mode (&optional toggle)
1654 ;;;_ : Defun:
1655 ;;;###autoload
1656 (defun allout-mode (&optional toggle)
1657 ;;;_ . Doc string:
1658 "Toggle minor mode for controlling exposure and editing of text outlines.
1659 \\<allout-mode-map>
1661 Optional prefix argument TOGGLE forces the mode to re-initialize
1662 if it is positive, otherwise it turns the mode off. Allout
1663 outline mode always runs as a minor mode.
1665 Allout outline mode provides extensive outline oriented formatting and
1666 manipulation. It enables structural editing of outlines, as well as
1667 navigation and exposure. It also is specifically aimed at
1668 accommodating syntax-sensitive text like programming languages. (For
1669 an example, see the allout code itself, which is organized as an allout
1670 outline.)
1672 In addition to typical outline navigation and exposure, allout includes:
1674 - topic-oriented authoring, including keystroke-based topic creation,
1675 repositioning, promotion/demotion, cut, and paste
1676 - incremental search with dynamic exposure and reconcealment of hidden text
1677 - adjustable format, so programming code can be developed in outline-structure
1678 - easy topic encryption and decryption
1679 - \"Hot-spot\" operation, for single-keystroke maneuvering and exposure control
1680 - integral outline layout, for automatic initial exposure when visiting a file
1681 - independent extensibility, using comprehensive exposure and authoring hooks
1683 and many other features.
1685 Below is a description of the key bindings, and then explanation of
1686 special `allout-mode' features and terminology. See also the outline
1687 menubar additions for quick reference to many of the features, and see
1688 the docstring of the function `allout-init' for instructions on
1689 priming your emacs session for automatic activation of `allout-mode'.
1691 The bindings are dictated by the customizable `allout-keybindings-list'
1692 variable. We recommend customizing `allout-command-prefix' to use just
1693 `\\C-c' as the command prefix, if the allout bindings don't conflict with
1694 any personal bindings you have on \\C-c. In any case, outline structure
1695 navigation and authoring is simplified by positioning the cursor on an
1696 item's bullet character, the \"hot-spot\" -- then you can invoke allout
1697 commands with just the un-prefixed, un-control-shifted command letters.
1698 This is described further in the HOT-SPOT Operation section.
1700 Exposure Control:
1701 ----------------
1702 \\[allout-hide-current-subtree] `allout-hide-current-subtree'
1703 \\[allout-show-children] `allout-show-children'
1704 \\[allout-show-current-subtree] `allout-show-current-subtree'
1705 \\[allout-show-current-entry] `allout-show-current-entry'
1706 \\[allout-show-all] `allout-show-all'
1708 Navigation:
1709 ----------
1710 \\[allout-next-visible-heading] `allout-next-visible-heading'
1711 \\[allout-previous-visible-heading] `allout-previous-visible-heading'
1712 \\[allout-up-current-level] `allout-up-current-level'
1713 \\[allout-forward-current-level] `allout-forward-current-level'
1714 \\[allout-backward-current-level] `allout-backward-current-level'
1715 \\[allout-end-of-entry] `allout-end-of-entry'
1716 \\[allout-beginning-of-current-entry] `allout-beginning-of-current-entry' (alternately, goes to hot-spot)
1717 \\[allout-beginning-of-line] `allout-beginning-of-line' -- like regular beginning-of-line, but
1718 if immediately repeated cycles to the beginning of the current item
1719 and then to the hot-spot (if `allout-beginning-of-line-cycles' is set).
1722 Topic Header Production:
1723 -----------------------
1724 \\[allout-open-sibtopic] `allout-open-sibtopic' Create a new sibling after current topic.
1725 \\[allout-open-subtopic] `allout-open-subtopic' ... an offspring of current topic.
1726 \\[allout-open-supertopic] `allout-open-supertopic' ... a sibling of the current topic's parent.
1728 Topic Level and Prefix Adjustment:
1729 ---------------------------------
1730 \\[allout-shift-in] `allout-shift-in' Shift current topic and all offspring deeper
1731 \\[allout-shift-out] `allout-shift-out' ... less deep
1732 \\[allout-rebullet-current-heading] `allout-rebullet-current-heading' Prompt for alternate bullet for
1733 current topic
1734 \\[allout-rebullet-topic] `allout-rebullet-topic' Reconcile bullets of topic and
1735 its' offspring -- distinctive bullets are not changed, others
1736 are alternated according to nesting depth.
1737 \\[allout-number-siblings] `allout-number-siblings' Number bullets of topic and siblings --
1738 the offspring are not affected.
1739 With repeat count, revoke numbering.
1741 Topic-oriented Killing and Yanking:
1742 ----------------------------------
1743 \\[allout-kill-topic] `allout-kill-topic' Kill current topic, including offspring.
1744 \\[allout-copy-topic-as-kill] `allout-copy-topic-as-kill' Copy current topic, including offspring.
1745 \\[allout-kill-line] `allout-kill-line' kill-line, attending to outline structure.
1746 \\[allout-copy-line-as-kill] `allout-copy-line-as-kill' Copy line but don't delete it.
1747 \\[allout-yank] `allout-yank' Yank, adjusting depth of yanked topic to
1748 depth of heading if yanking into bare topic
1749 heading (ie, prefix sans text).
1750 \\[allout-yank-pop] `allout-yank-pop' Is to allout-yank as yank-pop is to yank
1752 Topic-oriented Encryption:
1753 -------------------------
1754 \\[allout-toggle-current-subtree-encryption] `allout-toggle-current-subtree-encryption'
1755 Encrypt/Decrypt topic content
1757 Misc commands:
1758 -------------
1759 M-x outlineify-sticky Activate outline mode for current buffer,
1760 and establish a default file-var setting
1761 for `allout-layout'.
1762 \\[allout-mark-topic] `allout-mark-topic'
1763 \\[allout-copy-exposed-to-buffer] `allout-copy-exposed-to-buffer'
1764 Duplicate outline, sans concealed text, to
1765 buffer with name derived from derived from that
1766 of current buffer -- \"*BUFFERNAME exposed*\".
1767 \\[allout-flatten-exposed-to-buffer] `allout-flatten-exposed-to-buffer'
1768 Like above 'copy-exposed', but convert topic
1769 prefixes to section.subsection... numeric
1770 format.
1771 \\[eval-expression] (allout-init t) Setup Emacs session for outline mode
1772 auto-activation.
1774 Topic Encryption
1776 Outline mode supports gpg encryption of topics, with support for
1777 symmetric and key-pair modes, passphrase timeout, passphrase
1778 consistency checking, user-provided hinting for symmetric key
1779 mode, and auto-encryption of topics pending encryption on save.
1781 Topics pending encryption are, by default, automatically
1782 encrypted during file saves. If the contents of the topic
1783 containing the cursor was encrypted for a save, it is
1784 automatically decrypted for continued editing.
1786 The aim of these measures is reliable topic privacy while
1787 preventing accidents like neglected encryption before saves,
1788 forgetting which passphrase was used, and other practical
1789 pitfalls.
1791 See `allout-toggle-current-subtree-encryption' function docstring
1792 and `allout-encrypt-unencrypted-on-saves' customization variable
1793 for details.
1795 HOT-SPOT Operation
1797 Hot-spot operation provides a means for easy, single-keystroke outline
1798 navigation and exposure control.
1800 When the text cursor is positioned directly on the bullet character of
1801 a topic, regular characters (a to z) invoke the commands of the
1802 corresponding allout-mode keymap control chars. For example, \"f\"
1803 would invoke the command typically bound to \"C-c<space>C-f\"
1804 \(\\[allout-forward-current-level] `allout-forward-current-level').
1806 Thus, by positioning the cursor on a topic bullet, you can
1807 execute the outline navigation and manipulation commands with a
1808 single keystroke. Regular navigation keys (eg, \\[forward-char], \\[next-line]) don't get
1809 this special translation, so you can use them to get out of the
1810 hot-spot and back to normal editing operation.
1812 In allout-mode, the normal beginning-of-line command (\\[allout-beginning-of-line]]) is
1813 replaced with one that makes it easy to get to the hot-spot. If you
1814 repeat it immediately it cycles (if `allout-beginning-of-line-cycles'
1815 is set) to the beginning of the item and then, if you hit it again
1816 immediately, to the hot-spot. Similarly, `allout-beginning-of-current-entry'
1817 \(\\[allout-beginning-of-current-entry]) moves to the hot-spot when the cursor is already located
1818 at the beginning of the current entry.
1820 Extending Allout
1822 Allout exposure and authoring activites all have associated
1823 hooks, by which independent code can cooperate with allout
1824 without changes to the allout core. Here are key ones:
1826 `allout-mode-hook'
1827 `allout-mode-deactivate-hook'
1828 `allout-exposure-change-hook'
1829 `allout-structure-added-hook'
1830 `allout-structure-deleted-hook'
1831 `allout-structure-shifted-hook'
1833 Terminology
1835 Topic hierarchy constituents -- TOPICS and SUBTOPICS:
1837 ITEM: A unitary outline element, including the HEADER and ENTRY text.
1838 TOPIC: An ITEM and any ITEMs contained within it, ie having greater DEPTH
1839 and with no intervening items of lower DEPTH than the container.
1840 CURRENT ITEM:
1841 The visible ITEM most immediately containing the cursor.
1842 DEPTH: The degree of nesting of an ITEM; it increases with containment.
1843 The DEPTH is determined by the HEADER PREFIX. The DEPTH is also
1844 called the:
1845 LEVEL: The same as DEPTH.
1847 ANCESTORS:
1848 Those ITEMs whose TOPICs contain an ITEM.
1849 PARENT: An ITEM's immediate ANCESTOR. It has a DEPTH one less than that
1850 of the ITEM.
1851 OFFSPRING:
1852 The ITEMs contained within an ITEM's TOPIC.
1853 SUBTOPIC:
1854 An OFFSPRING of its ANCESTOR TOPICs.
1855 CHILD:
1856 An immediate SUBTOPIC of its PARENT.
1857 SIBLINGS:
1858 TOPICs having the same PARENT and DEPTH.
1860 Topic text constituents:
1862 HEADER: The first line of an ITEM, include the ITEM PREFIX and HEADER
1863 text.
1864 ENTRY: The text content of an ITEM, before any OFFSPRING, but including
1865 the HEADER text and distinct from the ITEM PREFIX.
1866 BODY: Same as ENTRY.
1867 PREFIX: The leading text of an ITEM which distinguishes it from normal
1868 ENTRY text. Allout recognizes the outline structure according
1869 to the strict PREFIX format. It consists of a PREFIX-LEAD string,
1870 PREFIX-PADDING, and a BULLET. The BULLET might be followed by a
1871 number, indicating the ordinal number of the topic among its
1872 siblings, or an asterisk indicating encryption, plus an optional
1873 space. After that is the ITEM HEADER text, which is not part of
1874 the PREFIX.
1876 The relative length of the PREFIX determines the nesting DEPTH
1877 of the ITEM.
1878 PREFIX-LEAD:
1879 The string at the beginning of a HEADER PREFIX, by default a `.'.
1880 It can be customized by changing the setting of
1881 `allout-header-prefix' and then reinitializing `allout-mode'.
1883 When the PREFIX-LEAD is set to the comment-string of a
1884 programming language, outline structuring can be embedded in
1885 program code without interfering with processing of the text
1886 (by emacs or the language processor) as program code. This
1887 setting happens automatically when allout mode is used in
1888 programming-mode buffers. See `allout-use-mode-specific-leader'
1889 docstring for more detail.
1890 PREFIX-PADDING:
1891 Spaces or asterisks which separate the PREFIX-LEAD and the
1892 bullet, determining the ITEM's DEPTH.
1893 BULLET: A character at the end of the ITEM PREFIX, it must be one of
1894 the characters listed on `allout-plain-bullets-string' or
1895 `allout-distinctive-bullets-string'. When creating a TOPIC,
1896 plain BULLETs are by default used, according to the DEPTH of the
1897 TOPIC. Choice among the distinctive BULLETs is offered when you
1898 provide a universal argugment \(\\[universal-argument]) to the
1899 TOPIC creation command, or when explictly rebulleting a TOPIC. The
1900 significance of the various distinctive bullets is purely by
1901 convention. See the documentation for the above bullet strings for
1902 more details.
1903 EXPOSURE:
1904 The state of a TOPIC which determines the on-screen visibility
1905 of its OFFSPRING and contained ENTRY text.
1906 CONCEALED:
1907 TOPICs and ENTRY text whose EXPOSURE is inhibited. Concealed
1908 text is represented by \"...\" ellipses.
1910 CONCEALED TOPICs are effectively collapsed within an ANCESTOR.
1911 CLOSED: A TOPIC whose immediate OFFSPRING and body-text is CONCEALED.
1912 OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be."
1913 ;;;_ . Code
1914 (interactive "P")
1916 (let* ((active (and (not (equal major-mode 'outline))
1917 (allout-mode-p)))
1918 ; Massage universal-arg `toggle' val:
1919 (toggle (and toggle
1920 (or (and (listp toggle)(car toggle))
1921 toggle)))
1922 ; Activation specifically demanded?
1923 (explicit-activation (and toggle
1924 (or (symbolp toggle)
1925 (and (wholenump toggle)
1926 (not (zerop toggle))))))
1927 ;; allout-mode already called once during this complex command?
1928 (same-complex-command (eq allout-v18/19-file-var-hack
1929 (car command-history)))
1930 (write-file-hook-var-name (cond ((boundp 'write-file-functions)
1931 'write-file-functions)
1932 ((boundp 'write-file-hooks)
1933 'write-file-hooks)
1934 (t 'local-write-file-hooks)))
1935 do-layout
1938 ; See comments below re v19.18,.19 bug.
1939 (setq allout-v18/19-file-var-hack (car command-history))
1941 (cond
1943 ;; Provision for v19.18, 19.19 bug --
1944 ;; Emacs v 19.18, 19.19 file-var code invokes prop-line-designated
1945 ;; modes twice when file is visited. We have to avoid toggling mode
1946 ;; off on second invocation, so we detect it as best we can, and
1947 ;; skip everything.
1948 ((and same-complex-command ; Still in same complex command
1949 ; as last time `allout-mode' invoked.
1950 active ; Already activated.
1951 (not explicit-activation) ; Prop-line file-vars don't have args.
1952 (string-match "^19.1[89]" ; Bug only known to be in v19.18 and
1953 emacs-version)); 19.19.
1956 ;; Deactivation:
1957 ((and (not explicit-activation)
1958 (or active toggle))
1959 ; Activation not explicitly
1960 ; requested, and either in
1961 ; active state or *de*activation
1962 ; specifically requested:
1963 (setq allout-explicitly-deactivated t)
1965 (allout-do-resumptions)
1967 (remove-from-invisibility-spec '(allout . t))
1968 (remove-hook 'pre-command-hook 'allout-pre-command-business t)
1969 (remove-hook 'post-command-hook 'allout-post-command-business t)
1970 (remove-hook 'before-change-functions 'allout-before-change-handler t)
1971 (remove-hook 'isearch-mode-end-hook 'allout-isearch-end-handler t)
1972 (remove-hook write-file-hook-var-name 'allout-write-file-hook-handler t)
1973 (remove-hook 'auto-save-hook 'allout-auto-save-hook-handler t)
1975 (remove-overlays (point-min) (point-max)
1976 'category 'allout-exposure-category)
1978 (setq allout-mode nil)
1979 (run-hooks 'allout-mode-deactivate-hook))
1981 ;; Activation:
1982 ((not active)
1983 (setq allout-explicitly-deactivated nil)
1984 (if allout-old-style-prefixes
1985 ;; Inhibit all the fancy formatting:
1986 (allout-add-resumptions '(allout-primary-bullet "*")))
1988 (allout-overlay-preparations) ; Doesn't hurt to redo this.
1990 (allout-infer-header-lead-and-primary-bullet)
1991 (allout-infer-body-reindent)
1993 (set-allout-regexp)
1994 (allout-add-resumptions
1995 '(allout-encryption-ciphertext-rejection-regexps
1996 allout-line-boundary-regexp
1997 extend)
1998 '(allout-encryption-ciphertext-rejection-regexps
1999 allout-bob-regexp
2000 extend))
2002 ;; Produce map from current version of allout-keybindings-list:
2003 (allout-setup-mode-map)
2004 (produce-allout-mode-menubar-entries)
2006 ;; Include on minor-mode-map-alist, if not already there:
2007 (if (not (member '(allout-mode . allout-mode-map)
2008 minor-mode-map-alist))
2009 (setq minor-mode-map-alist
2010 (cons '(allout-mode . allout-mode-map)
2011 minor-mode-map-alist)))
2013 (add-to-invisibility-spec '(allout . t))
2015 (allout-add-resumptions '(line-move-ignore-invisible t))
2016 (add-hook 'pre-command-hook 'allout-pre-command-business nil t)
2017 (add-hook 'post-command-hook 'allout-post-command-business nil t)
2018 (add-hook 'before-change-functions 'allout-before-change-handler
2019 nil t)
2020 (add-hook 'isearch-mode-end-hook 'allout-isearch-end-handler nil t)
2021 (add-hook write-file-hook-var-name 'allout-write-file-hook-handler
2022 nil t)
2023 (add-hook 'auto-save-hook 'allout-auto-save-hook-handler
2024 nil t)
2026 ;; Stash auto-fill settings and adjust so custom allout auto-fill
2027 ;; func will be used if auto-fill is active or activated. (The
2028 ;; custom func respects topic headline, maintains hanging-indents,
2029 ;; etc.)
2030 (if (and auto-fill-function (not allout-inhibit-auto-fill))
2031 ;; allout-auto-fill will use the stashed values and so forth.
2032 (allout-add-resumptions '(auto-fill-function allout-auto-fill)))
2033 (allout-add-resumptions (list 'allout-former-auto-filler
2034 auto-fill-function)
2035 ;; Register allout-auto-fill to be used if
2036 ;; filling is active:
2037 (list 'allout-outside-normal-auto-fill-function
2038 normal-auto-fill-function)
2039 '(normal-auto-fill-function allout-auto-fill)
2040 ;; Paragraphs are broken by topic headlines.
2041 (list 'paragraph-start
2042 (concat paragraph-start "\\|^\\("
2043 allout-regexp "\\)"))
2044 (list 'paragraph-separate
2045 (concat paragraph-separate "\\|^\\("
2046 allout-regexp "\\)")))
2047 (or (assq 'allout-mode minor-mode-alist)
2048 (setq minor-mode-alist
2049 (cons '(allout-mode " Allout") minor-mode-alist)))
2051 (allout-setup-menubar)
2053 (if allout-layout
2054 (setq do-layout t))
2056 (setq allout-mode t)
2057 (run-hooks 'allout-mode-hook))
2059 ;; Reactivation:
2060 ((setq do-layout t)
2061 (allout-infer-body-reindent))
2062 ) ;; end of activation-mode cases.
2064 ;; Do auto layout if warranted:
2065 (let ((use-layout (if (listp allout-layout)
2066 allout-layout
2067 allout-default-layout)))
2068 (if (and do-layout
2069 allout-auto-activation
2070 use-layout
2071 (and (not (eq allout-auto-activation 'activate))
2072 (if (eq allout-auto-activation 'ask)
2073 (if (y-or-n-p (format "Expose %s with layout '%s'? "
2074 (buffer-name)
2075 use-layout))
2077 (message "Skipped %s layout." (buffer-name))
2078 nil)
2079 t)))
2080 (save-excursion
2081 (message "Adjusting '%s' exposure..." (buffer-name))
2082 (goto-char 0)
2083 (allout-this-or-next-heading)
2084 (condition-case err
2085 (progn
2086 (apply 'allout-expose-topic (list use-layout))
2087 (message "Adjusting '%s' exposure... done." (buffer-name)))
2088 ;; Problem applying exposure -- notify user, but don't
2089 ;; interrupt, eg, file visit:
2090 (error (message "%s" (car (cdr err)))
2091 (sit-for 1))))))
2092 allout-mode
2093 ) ; let*
2094 ) ; defun
2096 (defun allout-setup-mode-map ()
2097 "Establish allout-mode bindings."
2098 (setq-default allout-mode-map
2099 (produce-allout-mode-map allout-keybindings-list))
2100 (setq allout-mode-map
2101 (produce-allout-mode-map allout-keybindings-list))
2102 (substitute-key-definition 'beginning-of-line
2103 'allout-beginning-of-line
2104 allout-mode-map global-map)
2105 (substitute-key-definition 'move-beginning-of-line
2106 'allout-beginning-of-line
2107 allout-mode-map global-map)
2108 (substitute-key-definition 'end-of-line
2109 'allout-end-of-line
2110 allout-mode-map global-map)
2111 (substitute-key-definition 'move-end-of-line
2112 'allout-end-of-line
2113 allout-mode-map global-map)
2114 (fset 'allout-mode-map allout-mode-map))
2116 ;; ensure that allout-mode-map has some setting even if allout-mode hasn't
2117 ;; been invoked:
2118 (allout-setup-mode-map)
2120 ;;;_ > allout-minor-mode
2121 (defalias 'allout-minor-mode 'allout-mode)
2123 ;;;_ > allout-unload-function
2124 (defun allout-unload-function ()
2125 "Unload the allout outline library."
2126 (save-current-buffer
2127 (dolist (buffer (buffer-list))
2128 (set-buffer buffer)
2129 (when allout-mode (allout-mode -1))))
2130 ;; continue standard unloading
2131 nil)
2133 ;;;_ - Position Assessment
2134 ;;;_ > allout-hidden-p (&optional pos)
2135 (defsubst allout-hidden-p (&optional pos)
2136 "Non-nil if the character after point is invisible."
2137 (eq (get-char-property (or pos (point)) 'invisible) 'allout))
2139 ;;;_ > allout-overlay-insert-in-front-handler (ol after beg end
2140 ;;; &optional prelen)
2141 (defun allout-overlay-insert-in-front-handler (ol after beg end
2142 &optional prelen)
2143 "Shift the overlay so stuff inserted in front of it are excluded."
2144 (if after
2145 (move-overlay ol (1+ beg) (overlay-end ol))))
2146 ;;;_ > allout-overlay-interior-modification-handler (ol after beg end
2147 ;;; &optional prelen)
2148 (defun allout-overlay-interior-modification-handler (ol after beg end
2149 &optional prelen)
2150 "Get confirmation before making arbitrary changes to invisible text.
2152 We expose the invisible text and ask for confirmation. Refusal or
2153 `keyboard-quit' abandons the changes, with keyboard-quit additionally
2154 reclosing the opened text.
2156 No confirmation is necessary when `inhibit-read-only' is set -- eg, allout
2157 internal functions use this feature cohesively bunch changes."
2159 (when (and (not inhibit-read-only) (not after))
2160 (let ((start (point))
2161 (ol-start (overlay-start ol))
2162 (ol-end (overlay-end ol))
2163 first)
2164 (goto-char beg)
2165 (while (< (point) end)
2166 (when (allout-hidden-p)
2167 (allout-show-to-offshoot)
2168 (if (allout-hidden-p)
2169 (save-excursion (forward-char 1)
2170 (allout-show-to-offshoot)))
2171 (when (not first)
2172 (setq first (point))))
2173 (goto-char (if (featurep 'xemacs)
2174 (next-property-change (1+ (point)) nil end)
2175 (next-char-property-change (1+ (point)) end))))
2176 (when first
2177 (goto-char first)
2178 (condition-case nil
2179 (if (not
2180 (yes-or-no-p
2181 (substitute-command-keys
2182 (concat "Modify concealed text? (\"no\" just aborts,"
2183 " \\[keyboard-quit] also reconceals) "))))
2184 (progn (goto-char start)
2185 (error "Concealed-text change refused.")))
2186 (quit (allout-flag-region ol-start ol-end nil)
2187 (allout-flag-region ol-start ol-end t)
2188 (error "Concealed-text change abandoned, text reconcealed."))))
2189 (goto-char start))))
2190 ;;;_ > allout-before-change-handler (beg end)
2191 (defun allout-before-change-handler (beg end)
2192 "Protect against changes to invisible text.
2194 See `allout-overlay-interior-modification-handler' for details."
2196 (if (and (allout-mode-p) undo-in-progress (allout-hidden-p))
2197 (allout-show-to-offshoot))
2199 ;; allout-overlay-interior-modification-handler on an overlay handles
2200 ;; this in other emacs, via `allout-exposure-category's 'modification-hooks.
2201 (when (and (featurep 'xemacs) (allout-mode-p))
2202 ;; process all of the pending overlays:
2203 (save-excursion
2204 (goto-char beg)
2205 (let ((overlay (allout-get-invisibility-overlay)))
2206 (allout-overlay-interior-modification-handler
2207 overlay nil beg end nil)))))
2208 ;;;_ > allout-isearch-end-handler (&optional overlay)
2209 (defun allout-isearch-end-handler (&optional overlay)
2210 "Reconcile allout outline exposure on arriving in hidden text after isearch.
2212 Optional OVERLAY parameter is for when this function is used by
2213 `isearch-open-invisible' overlay property. It is otherwise unused, so this
2214 function can also be used as an `isearch-mode-end-hook'."
2216 (if (and (allout-mode-p) (allout-hidden-p))
2217 (allout-show-to-offshoot)))
2219 ;;;_ #3 Internal Position State-Tracking -- "allout-recent-*" funcs
2220 ;;; All the basic outline functions that directly do string matches to
2221 ;;; evaluate heading prefix location set the variables
2222 ;;; `allout-recent-prefix-beginning' and `allout-recent-prefix-end'
2223 ;;; when successful. Functions starting with `allout-recent-' all
2224 ;;; use this state, providing the means to avoid redundant searches
2225 ;;; for just-established data. This optimization can provide
2226 ;;; significant speed improvement, but it must be employed carefully.
2227 ;;;_ = allout-recent-prefix-beginning
2228 (defvar allout-recent-prefix-beginning 0
2229 "Buffer point of the start of the last topic prefix encountered.")
2230 (make-variable-buffer-local 'allout-recent-prefix-beginning)
2231 ;;;_ = allout-recent-prefix-end
2232 (defvar allout-recent-prefix-end 0
2233 "Buffer point of the end of the last topic prefix encountered.")
2234 (make-variable-buffer-local 'allout-recent-prefix-end)
2235 ;;;_ = allout-recent-depth
2236 (defvar allout-recent-depth 0
2237 "Depth of the last topic prefix encountered.")
2238 (make-variable-buffer-local 'allout-recent-depth)
2239 ;;;_ = allout-recent-end-of-subtree
2240 (defvar allout-recent-end-of-subtree 0
2241 "Buffer point last returned by `allout-end-of-current-subtree'.")
2242 (make-variable-buffer-local 'allout-recent-end-of-subtree)
2243 ;;;_ > allout-prefix-data ()
2244 (defsubst allout-prefix-data ()
2245 "Register allout-prefix state data.
2247 For reference by `allout-recent' funcs. Return
2248 the new value of `allout-recent-prefix-beginning'."
2249 (setq allout-recent-prefix-end (or (match-end 1) (match-end 2))
2250 allout-recent-prefix-beginning (or (match-beginning 1)
2251 (match-beginning 2))
2252 allout-recent-depth (max 1 (- allout-recent-prefix-end
2253 allout-recent-prefix-beginning
2254 allout-header-subtraction)))
2255 allout-recent-prefix-beginning)
2256 ;;;_ > nullify-allout-prefix-data ()
2257 (defsubst nullify-allout-prefix-data ()
2258 "Mark allout prefix data as being uninformative."
2259 (setq allout-recent-prefix-end (point)
2260 allout-recent-prefix-beginning (point)
2261 allout-recent-depth 0)
2262 allout-recent-prefix-beginning)
2263 ;;;_ > allout-recent-depth ()
2264 (defsubst allout-recent-depth ()
2265 "Return depth of last heading encountered by an outline maneuvering function.
2267 All outline functions which directly do string matches to assess
2268 headings set the variables `allout-recent-prefix-beginning' and
2269 `allout-recent-prefix-end' if successful. This function uses those settings
2270 to return the current depth."
2272 allout-recent-depth)
2273 ;;;_ > allout-recent-prefix ()
2274 (defsubst allout-recent-prefix ()
2275 "Like `allout-recent-depth', but returns text of last encountered prefix.
2277 All outline functions which directly do string matches to assess
2278 headings set the variables `allout-recent-prefix-beginning' and
2279 `allout-recent-prefix-end' if successful. This function uses those settings
2280 to return the current prefix."
2281 (buffer-substring-no-properties allout-recent-prefix-beginning
2282 allout-recent-prefix-end))
2283 ;;;_ > allout-recent-bullet ()
2284 (defmacro allout-recent-bullet ()
2285 "Like allout-recent-prefix, but returns bullet of last encountered prefix.
2287 All outline functions which directly do string matches to assess
2288 headings set the variables `allout-recent-prefix-beginning' and
2289 `allout-recent-prefix-end' if successful. This function uses those settings
2290 to return the current depth of the most recently matched topic."
2291 '(buffer-substring-no-properties (1- allout-recent-prefix-end)
2292 allout-recent-prefix-end))
2294 ;;;_ #4 Navigation
2296 ;;;_ - Position Assessment
2297 ;;;_ : Location Predicates
2298 ;;;_ > allout-do-doublecheck ()
2299 (defsubst allout-do-doublecheck ()
2300 "True if current item conditions qualify for checking on topic aberrance."
2301 (and
2302 ;; presume integrity of outline and yanked content during yank -- necessary
2303 ;; to allow for level disparity of yank location and yanked text:
2304 (not allout-inhibit-aberrance-doublecheck)
2305 ;; allout-doublecheck-at-and-shallower is ceiling for doublecheck:
2306 (<= allout-recent-depth allout-doublecheck-at-and-shallower)))
2307 ;;;_ > allout-aberrant-container-p ()
2308 (defun allout-aberrant-container-p ()
2309 "True if topic, or next sibling with children, contains them discontinuously.
2311 Discontinuous means an immediate offspring that is nested more
2312 than one level deeper than the topic.
2314 If topic has no offspring, then the next sibling with offspring will
2315 determine whether or not this one is determined to be aberrant.
2317 If true, then the allout-recent-* settings are calibrated on the
2318 offspring that qaulifies it as aberrant, ie with depth that
2319 exceeds the topic by more than one."
2321 ;; This is most clearly understood when considering standard-prefix-leader
2322 ;; low-level topics, which can all too easily match text not intended as
2323 ;; headers. For example, any line with a leading '.' or '*' and lacking a
2324 ;; following bullet qualifies without this protection. (A sequence of
2325 ;; them can occur naturally, eg a typical textual bullet list.) We
2326 ;; disqualify such low-level sequences when they are followed by a
2327 ;; discontinuously contained child, inferring that the sequences are not
2328 ;; actually connected with their prospective context.
2330 (let ((depth (allout-depth))
2331 (start-point (point))
2332 done aberrant)
2333 (save-excursion
2334 (while (and (not done)
2335 (re-search-forward allout-line-boundary-regexp nil 0))
2336 (allout-prefix-data)
2337 (goto-char allout-recent-prefix-beginning)
2338 (cond
2339 ;; sibling -- continue:
2340 ((eq allout-recent-depth depth))
2341 ;; first offspring is excessive -- aberrant:
2342 ((> allout-recent-depth (1+ depth))
2343 (setq done t aberrant t))
2344 ;; next non-sibling is lower-depth -- not aberrant:
2345 (t (setq done t)))))
2346 (if aberrant
2347 aberrant
2348 (goto-char start-point)
2349 ;; recalibrate allout-recent-*
2350 (allout-depth)
2351 nil)))
2352 ;;;_ > allout-on-current-heading-p ()
2353 (defun allout-on-current-heading-p ()
2354 "Return non-nil if point is on current visible topics' header line.
2356 Actually, returns prefix beginning point."
2357 (save-excursion
2358 (allout-beginning-of-current-line)
2359 (and (looking-at allout-regexp)
2360 (allout-prefix-data)
2361 (or (not (allout-do-doublecheck))
2362 (not (allout-aberrant-container-p))))))
2363 ;;;_ > allout-on-heading-p ()
2364 (defalias 'allout-on-heading-p 'allout-on-current-heading-p)
2365 ;;;_ > allout-e-o-prefix-p ()
2366 (defun allout-e-o-prefix-p ()
2367 "True if point is located where current topic prefix ends, heading begins."
2368 (and (save-excursion (let ((inhibit-field-text-motion t))
2369 (beginning-of-line))
2370 (looking-at allout-regexp))
2371 (= (point)(save-excursion (allout-end-of-prefix)(point)))))
2372 ;;;_ : Location attributes
2373 ;;;_ > allout-depth ()
2374 (defun allout-depth ()
2375 "Return depth of topic most immediately containing point.
2377 Return zero if point is not within any topic.
2379 Like `allout-current-depth', but respects hidden as well as visible topics."
2380 (save-excursion
2381 (let ((start-point (point)))
2382 (if (and (allout-goto-prefix)
2383 (not (< start-point (point))))
2384 allout-recent-depth
2385 (progn
2386 ;; Oops, no prefix, nullify it:
2387 (nullify-allout-prefix-data)
2388 ;; ... and return 0:
2389 0)))))
2390 ;;;_ > allout-current-depth ()
2391 (defun allout-current-depth ()
2392 "Return depth of visible topic most immediately containing point.
2394 Return zero if point is not within any topic."
2395 (save-excursion
2396 (if (allout-back-to-current-heading)
2397 (max 1
2398 (- allout-recent-prefix-end
2399 allout-recent-prefix-beginning
2400 allout-header-subtraction))
2401 0)))
2402 ;;;_ > allout-get-current-prefix ()
2403 (defun allout-get-current-prefix ()
2404 "Topic prefix of the current topic."
2405 (save-excursion
2406 (if (allout-goto-prefix)
2407 (allout-recent-prefix))))
2408 ;;;_ > allout-get-bullet ()
2409 (defun allout-get-bullet ()
2410 "Return bullet of containing topic (visible or not)."
2411 (save-excursion
2412 (and (allout-goto-prefix)
2413 (allout-recent-bullet))))
2414 ;;;_ > allout-current-bullet ()
2415 (defun allout-current-bullet ()
2416 "Return bullet of current (visible) topic heading, or none if none found."
2417 (condition-case nil
2418 (save-excursion
2419 (allout-back-to-current-heading)
2420 (buffer-substring-no-properties (- allout-recent-prefix-end 1)
2421 allout-recent-prefix-end))
2422 ;; Quick and dirty provision, ostensibly for missing bullet:
2423 (args-out-of-range nil))
2425 ;;;_ > allout-get-prefix-bullet (prefix)
2426 (defun allout-get-prefix-bullet (prefix)
2427 "Return the bullet of the header prefix string PREFIX."
2428 ;; Doesn't make sense if we're old-style prefixes, but this just
2429 ;; oughtn't be called then, so forget about it...
2430 (if (string-match allout-regexp prefix)
2431 (substring prefix (1- (match-end 2)) (match-end 2))))
2432 ;;;_ > allout-sibling-index (&optional depth)
2433 (defun allout-sibling-index (&optional depth)
2434 "Item number of this prospective topic among its siblings.
2436 If optional arg DEPTH is greater than current depth, then we're
2437 opening a new level, and return 0.
2439 If less than this depth, ascend to that depth and count..."
2441 (save-excursion
2442 (cond ((and depth (<= depth 0) 0))
2443 ((or (null depth) (= depth (allout-depth)))
2444 (let ((index 1))
2445 (while (allout-previous-sibling allout-recent-depth nil)
2446 (setq index (1+ index)))
2447 index))
2448 ((< depth allout-recent-depth)
2449 (allout-ascend-to-depth depth)
2450 (allout-sibling-index))
2451 (0))))
2452 ;;;_ > allout-topic-flat-index ()
2453 (defun allout-topic-flat-index ()
2454 "Return a list indicating point's numeric section.subsect.subsubsect...
2455 Outermost is first."
2456 (let* ((depth (allout-depth))
2457 (next-index (allout-sibling-index depth))
2458 (rev-sibls nil))
2459 (while (> next-index 0)
2460 (setq rev-sibls (cons next-index rev-sibls))
2461 (setq depth (1- depth))
2462 (setq next-index (allout-sibling-index depth)))
2463 rev-sibls)
2466 ;;;_ - Navigation routines
2467 ;;;_ > allout-beginning-of-current-line ()
2468 (defun allout-beginning-of-current-line ()
2469 "Like beginning of line, but to visible text."
2471 ;; This combination of move-beginning-of-line and beginning-of-line is
2472 ;; deliberate, but the (beginning-of-line) may now be superfluous.
2473 (let ((inhibit-field-text-motion t))
2474 (move-beginning-of-line 1)
2475 (beginning-of-line)
2476 (while (and (not (bobp)) (or (not (bolp)) (allout-hidden-p)))
2477 (beginning-of-line)
2478 (if (or (allout-hidden-p) (not (bolp)))
2479 (forward-char -1)))))
2480 ;;;_ > allout-end-of-current-line ()
2481 (defun allout-end-of-current-line ()
2482 "Move to the end of line, past concealed text if any."
2483 ;; XXX This is for symmetry with `allout-beginning-of-current-line' --
2484 ;; `move-end-of-line' doesn't suffer the same problem as
2485 ;; `move-beginning-of-line'.
2486 (let ((inhibit-field-text-motion t))
2487 (end-of-line)
2488 (while (allout-hidden-p)
2489 (end-of-line)
2490 (if (allout-hidden-p) (forward-char 1)))))
2491 ;;;_ > allout-beginning-of-line ()
2492 (defun allout-beginning-of-line ()
2493 "Beginning-of-line with `allout-beginning-of-line-cycles' behavior, if set."
2495 (interactive)
2497 (if (or (not allout-beginning-of-line-cycles)
2498 (not (equal last-command this-command)))
2499 (move-beginning-of-line 1)
2500 (allout-depth)
2501 (let ((beginning-of-body
2502 (save-excursion
2503 (while (and (allout-do-doublecheck)
2504 (allout-aberrant-container-p)
2505 (allout-previous-visible-heading 1)))
2506 (allout-beginning-of-current-entry)
2507 (point))))
2508 (cond ((= (current-column) 0)
2509 (goto-char beginning-of-body))
2510 ((< (point) beginning-of-body)
2511 (allout-beginning-of-current-line))
2512 ((= (point) beginning-of-body)
2513 (goto-char (allout-current-bullet-pos)))
2514 (t (allout-beginning-of-current-line)
2515 (if (< (point) beginning-of-body)
2516 ;; we were on the headline after its start:
2517 (goto-char beginning-of-body)))))))
2518 ;;;_ > allout-end-of-line ()
2519 (defun allout-end-of-line ()
2520 "End-of-line with `allout-end-of-line-cycles' behavior, if set."
2522 (interactive)
2524 (if (or (not allout-end-of-line-cycles)
2525 (not (equal last-command this-command)))
2526 (allout-end-of-current-line)
2527 (let ((end-of-entry (save-excursion
2528 (allout-end-of-entry)
2529 (point))))
2530 (cond ((not (eolp))
2531 (allout-end-of-current-line))
2532 ((or (allout-hidden-p) (save-excursion
2533 (forward-char -1)
2534 (allout-hidden-p)))
2535 (allout-back-to-current-heading)
2536 (allout-show-current-entry)
2537 (allout-show-children)
2538 (allout-end-of-entry))
2539 ((>= (point) end-of-entry)
2540 (allout-back-to-current-heading)
2541 (allout-end-of-current-line))
2542 (t (allout-end-of-entry))))))
2543 ;;;_ > allout-next-heading ()
2544 (defsubst allout-next-heading ()
2545 "Move to the heading for the topic (possibly invisible) after this one.
2547 Returns the location of the heading, or nil if none found.
2549 We skip anomalous low-level topics, a la `allout-aberrant-container-p'."
2550 (if (looking-at allout-regexp)
2551 (forward-char 1))
2553 (when (re-search-forward allout-line-boundary-regexp nil 0)
2554 (allout-prefix-data)
2555 (and (allout-do-doublecheck)
2556 ;; this will set allout-recent-* on the first non-aberrant topic,
2557 ;; whether it's the current one or one that disqualifies it:
2558 (allout-aberrant-container-p))
2559 (goto-char allout-recent-prefix-beginning)))
2560 ;;;_ > allout-this-or-next-heading
2561 (defun allout-this-or-next-heading ()
2562 "Position cursor on current or next heading."
2563 ;; A throwaway non-macro that is defined after allout-next-heading
2564 ;; and usable by allout-mode.
2565 (if (not (allout-goto-prefix-doublechecked)) (allout-next-heading)))
2566 ;;;_ > allout-previous-heading ()
2567 (defun allout-previous-heading ()
2568 "Move to the prior (possibly invisible) heading line.
2570 Return the location of the beginning of the heading, or nil if not found.
2572 We skip anomalous low-level topics, a la `allout-aberrant-container-p'."
2574 (if (bobp)
2576 (let ((start-point (point)))
2577 ;; allout-goto-prefix-doublechecked calls us, so we can't use it here.
2578 (allout-goto-prefix)
2579 (when (or (re-search-backward allout-line-boundary-regexp nil 0)
2580 (looking-at allout-bob-regexp))
2581 (goto-char (allout-prefix-data))
2582 (if (and (allout-do-doublecheck)
2583 (allout-aberrant-container-p))
2584 (or (allout-previous-heading)
2585 (and (goto-char start-point)
2586 ;; recalibrate allout-recent-*:
2587 (allout-depth)
2588 nil))
2589 (point))))))
2590 ;;;_ > allout-get-invisibility-overlay ()
2591 (defun allout-get-invisibility-overlay ()
2592 "Return the overlay at point that dictates allout invisibility."
2593 (let ((overlays (overlays-at (point)))
2594 got)
2595 (while (and overlays (not got))
2596 (if (equal (overlay-get (car overlays) 'invisible) 'allout)
2597 (setq got (car overlays))
2598 (pop overlays)))
2599 got))
2600 ;;;_ > allout-back-to-visible-text ()
2601 (defun allout-back-to-visible-text ()
2602 "Move to most recent prior character that is visible, and return point."
2603 (if (allout-hidden-p)
2604 (goto-char (overlay-start (allout-get-invisibility-overlay))))
2605 (point))
2607 ;;;_ - Subtree Charting
2608 ;;;_ " These routines either produce or assess charts, which are
2609 ;;; nested lists of the locations of topics within a subtree.
2611 ;;; Charts enable efficient subtree navigation by providing a reusable basis
2612 ;;; for elaborate, compound assessment and adjustment of a subtree.
2614 ;;;_ > allout-chart-subtree (&optional levels visible orig-depth prev-depth)
2615 (defun allout-chart-subtree (&optional levels visible orig-depth prev-depth)
2616 "Produce a location \"chart\" of subtopics of the containing topic.
2618 Optional argument LEVELS specifies a depth limit (relative to start
2619 depth) for the chart. Null LEVELS means no limit.
2621 When optional argument VISIBLE is non-nil, the chart includes
2622 only the visible subelements of the charted subjects.
2624 The remaining optional args are for internal use by the function.
2626 Point is left at the end of the subtree.
2628 Charts are used to capture outline structure, so that outline-altering
2629 routines need assess the structure only once, and then use the chart
2630 for their elaborate manipulations.
2632 The chart entries for the topics are in reverse order, so the
2633 last topic is listed first. The entry for each topic consists of
2634 an integer indicating the point at the beginning of the topic
2635 prefix. Charts for offspring consists of a list containing,
2636 recursively, the charts for the respective subtopics. The chart
2637 for a topics' offspring precedes the entry for the topic itself.
2639 The other function parameters are for internal recursion, and should
2640 not be specified by external callers. ORIG-DEPTH is depth of topic at
2641 starting point, and PREV-DEPTH is depth of prior topic."
2643 (let ((original (not orig-depth)) ; `orig-depth' set only in recursion.
2644 chart curr-depth)
2646 (if original ; Just starting?
2647 ; Register initial settings and
2648 ; position to first offspring:
2649 (progn (setq orig-depth (allout-depth))
2650 (or prev-depth (setq prev-depth (1+ orig-depth)))
2651 (if visible
2652 (allout-next-visible-heading 1)
2653 (allout-next-heading))))
2655 ;; Loop over the current levels' siblings. Besides being more
2656 ;; efficient than tail-recursing over a level, it avoids exceeding
2657 ;; the typically quite constrained Emacs max-lisp-eval-depth.
2659 ;; Probably would speed things up to implement loop-based stack
2660 ;; operation rather than recursing for lower levels. Bah.
2662 (while (and (not (eobp))
2663 ; Still within original topic?
2664 (< orig-depth (setq curr-depth allout-recent-depth))
2665 (cond ((= prev-depth curr-depth)
2666 ;; Register this one and move on:
2667 (setq chart (cons allout-recent-prefix-beginning chart))
2668 (if (and levels (<= levels 1))
2669 ;; At depth limit -- skip sublevels:
2670 (or (allout-next-sibling curr-depth)
2671 ;; or no more siblings -- proceed to
2672 ;; next heading at lesser depth:
2673 (while (and (<= curr-depth
2674 allout-recent-depth)
2675 (if visible
2676 (allout-next-visible-heading 1)
2677 (allout-next-heading)))))
2678 (if visible
2679 (allout-next-visible-heading 1)
2680 (allout-next-heading))))
2682 ((and (< prev-depth curr-depth)
2683 (or (not levels)
2684 (> levels 0)))
2685 ;; Recurse on deeper level of curr topic:
2686 (setq chart
2687 (cons (allout-chart-subtree (and levels
2688 (1- levels))
2689 visible
2690 orig-depth
2691 curr-depth)
2692 chart))
2693 ;; ... then continue with this one.
2696 ;; ... else nil if we've ascended back to prev-depth.
2700 (if original ; We're at the last sibling on
2701 ; the original level. Position
2702 ; to the end of it:
2703 (progn (and (not (eobp)) (forward-char -1))
2704 (and (= (preceding-char) ?\n)
2705 (= (aref (buffer-substring (max 1 (- (point) 3))
2706 (point))
2708 ?\n)
2709 (forward-char -1))
2710 (setq allout-recent-end-of-subtree (point))))
2712 chart ; (nreverse chart) not necessary,
2713 ; and maybe not preferable.
2715 ;;;_ > allout-chart-siblings (&optional start end)
2716 (defun allout-chart-siblings (&optional start end)
2717 "Produce a list of locations of this and succeeding sibling topics.
2718 Effectively a top-level chart of siblings. See `allout-chart-subtree'
2719 for an explanation of charts."
2720 (save-excursion
2721 (when (allout-goto-prefix-doublechecked)
2722 (let ((chart (list (point))))
2723 (while (allout-next-sibling)
2724 (setq chart (cons (point) chart)))
2725 (if chart (setq chart (nreverse chart)))))))
2726 ;;;_ > allout-chart-to-reveal (chart depth)
2727 (defun allout-chart-to-reveal (chart depth)
2729 "Return a flat list of hidden points in subtree CHART, up to DEPTH.
2731 If DEPTH is nil, include hidden points at any depth.
2733 Note that point can be left at any of the points on chart, or at the
2734 start point."
2736 (let (result here)
2737 (while (and (or (null depth) (> depth 0))
2738 chart)
2739 (setq here (car chart))
2740 (if (listp here)
2741 (let ((further (allout-chart-to-reveal here (if (null depth)
2742 depth
2743 (1- depth)))))
2744 ;; We're on the start of a subtree -- recurse with it, if there's
2745 ;; more depth to go:
2746 (if further (setq result (append further result)))
2747 (setq chart (cdr chart)))
2748 (goto-char here)
2749 (if (allout-hidden-p)
2750 (setq result (cons here result)))
2751 (setq chart (cdr chart))))
2752 result))
2753 ;;;_ X allout-chart-spec (chart spec &optional exposing)
2754 ;; (defun allout-chart-spec (chart spec &optional exposing)
2755 ;; "Not yet (if ever) implemented.
2757 ;; Produce exposure directives given topic/subtree CHART and an exposure SPEC.
2759 ;; Exposure spec indicates the locations to be exposed and the prescribed
2760 ;; exposure status. Optional arg EXPOSING is an integer, with 0
2761 ;; indicating pending concealment, anything higher indicating depth to
2762 ;; which subtopic headers should be exposed, and negative numbers
2763 ;; indicating (negative of) the depth to which subtopic headers and
2764 ;; bodies should be exposed.
2766 ;; The produced list can have two types of entries. Bare numbers
2767 ;; indicate points in the buffer where topic headers that should be
2768 ;; exposed reside.
2770 ;; - bare negative numbers indicates that the topic starting at the
2771 ;; point which is the negative of the number should be opened,
2772 ;; including their entries.
2773 ;; - bare positive values indicate that this topic header should be
2774 ;; opened.
2775 ;; - Lists signify the beginning and end points of regions that should
2776 ;; be flagged, and the flag to employ. (For concealment: `(\?r)', and
2777 ;; exposure:"
2778 ;; (while spec
2779 ;; (cond ((listp spec)
2780 ;; )
2781 ;; )
2782 ;; (setq spec (cdr spec)))
2783 ;; )
2785 ;;;_ - Within Topic
2786 ;;;_ > allout-goto-prefix ()
2787 (defun allout-goto-prefix ()
2788 "Put point at beginning of immediately containing outline topic.
2790 Goes to most immediate subsequent topic if none immediately containing.
2792 Not sensitive to topic visibility.
2794 Returns the point at the beginning of the prefix, or nil if none."
2796 (let (done)
2797 (while (and (not done)
2798 (search-backward "\n" nil 1))
2799 (forward-char 1)
2800 (if (looking-at allout-regexp)
2801 (setq done (allout-prefix-data))
2802 (forward-char -1)))
2803 (if (bobp)
2804 (cond ((looking-at allout-regexp)
2805 (allout-prefix-data))
2806 ((allout-next-heading))
2807 (done))
2808 done)))
2809 ;;;_ > allout-goto-prefix-doublechecked ()
2810 (defun allout-goto-prefix-doublechecked ()
2811 "Put point at beginning of immediately containing outline topic.
2813 Like `allout-goto-prefix', but shallow topics (according to
2814 `allout-doublecheck-at-and-shallower') are checked and
2815 disqualified for child containment discontinuity, according to
2816 `allout-aberrant-container-p'."
2817 (if (allout-goto-prefix)
2818 (if (and (allout-do-doublecheck)
2819 (allout-aberrant-container-p))
2820 (allout-previous-heading)
2821 (point))))
2823 ;;;_ > allout-end-of-prefix ()
2824 (defun allout-end-of-prefix (&optional ignore-decorations)
2825 "Position cursor at beginning of header text.
2827 If optional IGNORE-DECORATIONS is non-nil, put just after bullet,
2828 otherwise skip white space between bullet and ensuing text."
2830 (if (not (allout-goto-prefix-doublechecked))
2832 (goto-char allout-recent-prefix-end)
2833 (if ignore-decorations
2835 (while (looking-at "[0-9]") (forward-char 1))
2836 (if (and (not (eolp)) (looking-at "\\s-")) (forward-char 1)))
2837 ;; Reestablish where we are:
2838 (allout-current-depth)))
2839 ;;;_ > allout-current-bullet-pos ()
2840 (defun allout-current-bullet-pos ()
2841 "Return position of current (visible) topic's bullet."
2843 (if (not (allout-current-depth))
2845 (1- allout-recent-prefix-end)))
2846 ;;;_ > allout-back-to-current-heading ()
2847 (defun allout-back-to-current-heading ()
2848 "Move to heading line of current topic, or beginning if not in a topic.
2850 If interactive, we position at the end of the prefix.
2852 Return value of resulting point, unless we started outside
2853 of (before any) topics, in which case we return nil."
2855 (allout-beginning-of-current-line)
2856 (let ((bol-point (point)))
2857 (if (allout-goto-prefix-doublechecked)
2858 (if (<= (point) bol-point)
2859 (if (interactive-p)
2860 (allout-end-of-prefix)
2861 (point))
2862 (goto-char (point-min))
2863 nil))))
2864 ;;;_ > allout-back-to-heading ()
2865 (defalias 'allout-back-to-heading 'allout-back-to-current-heading)
2866 ;;;_ > allout-pre-next-prefix ()
2867 (defun allout-pre-next-prefix ()
2868 "Skip forward to just before the next heading line.
2870 Returns that character position."
2872 (if (allout-next-heading)
2873 (goto-char (1- allout-recent-prefix-beginning))))
2874 ;;;_ > allout-end-of-subtree (&optional current include-trailing-blank)
2875 (defun allout-end-of-subtree (&optional current include-trailing-blank)
2876 "Put point at the end of the last leaf in the containing topic.
2878 Optional CURRENT means put point at the end of the containing
2879 visible topic.
2881 Optional INCLUDE-TRAILING-BLANK means include a trailing blank line, if
2882 any, as part of the subtree. Otherwise, that trailing blank will be
2883 excluded as delimiting whitespace between topics.
2885 Returns the value of point."
2886 (interactive "P")
2887 (if current
2888 (allout-back-to-current-heading)
2889 (allout-goto-prefix-doublechecked))
2890 (let ((level allout-recent-depth))
2891 (allout-next-heading)
2892 (while (and (not (eobp))
2893 (> allout-recent-depth level))
2894 (allout-next-heading))
2895 (if (eobp)
2896 (allout-end-of-entry)
2897 (forward-char -1))
2898 (if (and (not include-trailing-blank) (= ?\n (preceding-char)))
2899 (forward-char -1))
2900 (setq allout-recent-end-of-subtree (point))))
2901 ;;;_ > allout-end-of-current-subtree (&optional include-trailing-blank)
2902 (defun allout-end-of-current-subtree (&optional include-trailing-blank)
2904 "Put point at end of last leaf in currently visible containing topic.
2906 Optional INCLUDE-TRAILING-BLANK means include a trailing blank line, if
2907 any, as part of the subtree. Otherwise, that trailing blank will be
2908 excluded as delimiting whitespace between topics.
2910 Returns the value of point."
2911 (interactive)
2912 (allout-end-of-subtree t include-trailing-blank))
2913 ;;;_ > allout-beginning-of-current-entry ()
2914 (defun allout-beginning-of-current-entry ()
2915 "When not already there, position point at beginning of current topic header.
2917 If already there, move cursor to bullet for hot-spot operation.
2918 \(See `allout-mode' doc string for details of hot-spot operation.)"
2919 (interactive)
2920 (let ((start-point (point)))
2921 (move-beginning-of-line 1)
2922 (if (< 0 (allout-current-depth))
2923 (goto-char allout-recent-prefix-end)
2924 (goto-char (point-min)))
2925 (allout-end-of-prefix)
2926 (if (and (interactive-p)
2927 (= (point) start-point))
2928 (goto-char (allout-current-bullet-pos)))))
2929 ;;;_ > allout-end-of-entry (&optional inclusive)
2930 (defun allout-end-of-entry (&optional inclusive)
2931 "Position the point at the end of the current topics' entry.
2933 Optional INCLUSIVE means also include trailing empty line, if any. When
2934 unset, whitespace between items separates them even when the items are
2935 collapsed."
2936 (interactive)
2937 (allout-pre-next-prefix)
2938 (if (and (not inclusive) (not (bobp)) (= ?\n (preceding-char)))
2939 (forward-char -1))
2940 (point))
2941 ;;;_ > allout-end-of-current-heading ()
2942 (defun allout-end-of-current-heading ()
2943 (interactive)
2944 (allout-beginning-of-current-entry)
2945 (search-forward "\n" nil t)
2946 (forward-char -1))
2947 (defalias 'allout-end-of-heading 'allout-end-of-current-heading)
2948 ;;;_ > allout-get-body-text ()
2949 (defun allout-get-body-text ()
2950 "Return the unmangled body text of the topic immediately containing point."
2951 (save-excursion
2952 (allout-end-of-prefix)
2953 (if (not (search-forward "\n" nil t))
2955 (backward-char 1)
2956 (let ((pre-body (point)))
2957 (if (not pre-body)
2959 (allout-end-of-entry t)
2960 (if (not (= pre-body (point)))
2961 (buffer-substring-no-properties (1+ pre-body) (point))))
2967 ;;;_ - Depth-wise
2968 ;;;_ > allout-ascend-to-depth (depth)
2969 (defun allout-ascend-to-depth (depth)
2970 "Ascend to depth DEPTH, returning depth if successful, nil if not."
2971 (if (and (> depth 0)(<= depth (allout-depth)))
2972 (let (last-ascended)
2973 (while (and (< depth allout-recent-depth)
2974 (setq last-ascended (allout-ascend))))
2975 (goto-char allout-recent-prefix-beginning)
2976 (if (interactive-p) (allout-end-of-prefix))
2977 (and last-ascended allout-recent-depth))))
2978 ;;;_ > allout-ascend ()
2979 (defun allout-ascend (&optional dont-move-if-unsuccessful)
2980 "Ascend one level, returning resulting depth if successful, nil if not.
2982 Point is left at the beginning of the level whether or not
2983 successful, unless optional DONT-MOVE-IF-UNSUCCESSFUL is set, in
2984 which case point is returned to its original starting location."
2985 (if dont-move-if-unsuccessful
2986 (setq dont-move-if-unsuccessful (point)))
2987 (prog1
2988 (if (allout-beginning-of-level)
2989 (let ((bolevel (point))
2990 (bolevel-depth allout-recent-depth))
2991 (allout-previous-heading)
2992 (cond ((< allout-recent-depth bolevel-depth)
2993 allout-recent-depth)
2994 ((= allout-recent-depth bolevel-depth)
2995 (if dont-move-if-unsuccessful
2996 (goto-char dont-move-if-unsuccessful))
2997 (allout-depth)
2998 nil)
3000 ;; some topic after very first is lower depth than first:
3001 (goto-char bolevel)
3002 (allout-depth)
3003 nil))))
3004 (if (interactive-p) (allout-end-of-prefix))))
3005 ;;;_ > allout-descend-to-depth (depth)
3006 (defun allout-descend-to-depth (depth)
3007 "Descend to depth DEPTH within current topic.
3009 Returning depth if successful, nil if not."
3010 (let ((start-point (point))
3011 (start-depth (allout-depth)))
3012 (while
3013 (and (> (allout-depth) 0)
3014 (not (= depth allout-recent-depth)) ; ... not there yet
3015 (allout-next-heading) ; ... go further
3016 (< start-depth allout-recent-depth))) ; ... still in topic
3017 (if (and (> (allout-depth) 0)
3018 (= allout-recent-depth depth))
3019 depth
3020 (goto-char start-point)
3021 nil))
3023 ;;;_ > allout-up-current-level (arg)
3024 (defun allout-up-current-level (arg)
3025 "Move out ARG levels from current visible topic."
3026 (interactive "p")
3027 (let ((start-point (point)))
3028 (allout-back-to-current-heading)
3029 (if (not (allout-ascend))
3030 (progn (goto-char start-point)
3031 (error "Can't ascend past outermost level"))
3032 (if (interactive-p) (allout-end-of-prefix))
3033 allout-recent-prefix-beginning)))
3035 ;;;_ - Linear
3036 ;;;_ > allout-next-sibling (&optional depth backward)
3037 (defun allout-next-sibling (&optional depth backward)
3038 "Like `allout-forward-current-level', but respects invisible topics.
3040 Traverse at optional DEPTH, or current depth if none specified.
3042 Go backward if optional arg BACKWARD is non-nil.
3044 Return the start point of the new topic if successful, nil otherwise."
3046 (if (if backward (bobp) (eobp))
3048 (let ((target-depth (or depth (allout-depth)))
3049 (start-point (point))
3050 (start-prefix-beginning allout-recent-prefix-beginning)
3051 (count 0)
3052 leaping
3053 last-depth)
3054 (while (and
3055 ;; done too few single steps to resort to the leap routine:
3056 (not leaping)
3057 ;; not at limit:
3058 (not (if backward (bobp) (eobp)))
3059 ;; still traversable:
3060 (if backward (allout-previous-heading) (allout-next-heading))
3061 ;; we're below the target depth
3062 (> (setq last-depth allout-recent-depth) target-depth))
3063 (setq count (1+ count))
3064 (if (> count 7) ; lists are commonly 7 +- 2, right?-)
3065 (setq leaping t)))
3066 (cond (leaping
3067 (or (allout-next-sibling-leap target-depth backward)
3068 (progn
3069 (goto-char start-point)
3070 (if depth (allout-depth) target-depth)
3071 nil)))
3072 ((and (not (eobp))
3073 (and (> (or last-depth (allout-depth)) 0)
3074 (= allout-recent-depth target-depth))
3075 (not (= start-prefix-beginning
3076 allout-recent-prefix-beginning)))
3077 allout-recent-prefix-beginning)
3079 (goto-char start-point)
3080 (if depth (allout-depth) target-depth)
3081 nil)))))
3082 ;;;_ > allout-next-sibling-leap (&optional depth backward)
3083 (defun allout-next-sibling-leap (&optional depth backward)
3084 "Like `allout-next-sibling', but by direct search for topic at depth.
3086 Traverse at optional DEPTH, or current depth if none specified.
3088 Go backward if optional arg BACKWARD is non-nil.
3090 Return the start point of the new topic if successful, nil otherwise.
3092 Costs more than regular `allout-next-sibling' for short traversals:
3094 - we have to check the prior (next, if travelling backwards)
3095 item to confirm connectivity with the prior topic, and
3096 - if confirmed, we have to reestablish the allout-recent-* settings with
3097 some extra navigation
3098 - if confirmation fails, we have to do more work to recover
3100 It is an increasingly big win when there are many intervening
3101 offspring before the next sibling, however, so
3102 `allout-next-sibling' resorts to this if it finds itself in that
3103 situation."
3105 (if (if backward (bobp) (eobp))
3107 (let* ((start-point (point))
3108 (target-depth (or depth (allout-depth)))
3109 (search-whitespace-regexp nil)
3110 (depth-biased (- target-depth 2))
3111 (expression (if (<= target-depth 1)
3112 allout-depth-one-regexp
3113 (format allout-depth-specific-regexp
3114 depth-biased depth-biased)))
3115 found
3116 done)
3117 (while (not done)
3118 (setq found (if backward
3119 (re-search-backward expression nil 'to-limit)
3120 (forward-char 1)
3121 (re-search-forward expression nil 'to-limit)))
3122 (if (and found (allout-aberrant-container-p))
3123 (setq found nil))
3124 (setq done (or found (if backward (bobp) (eobp)))))
3125 (if (not found)
3126 (progn (goto-char start-point)
3127 nil)
3128 ;; rationale: if any intervening items were at a lower depth, we
3129 ;; would now be on the first offspring at the target depth -- ie,
3130 ;; the preceeding item (per the search direction) must be at a
3131 ;; lesser depth. that's all we need to check.
3132 (if backward (allout-next-heading) (allout-previous-heading))
3133 (if (< allout-recent-depth target-depth)
3134 ;; return to start and reestablish allout-recent-*:
3135 (progn
3136 (goto-char start-point)
3137 (allout-depth)
3138 nil)
3139 (goto-char found)
3140 ;; locate cursor and set allout-recent-*:
3141 (allout-goto-prefix))))))
3142 ;;;_ > allout-previous-sibling (&optional depth backward)
3143 (defun allout-previous-sibling (&optional depth backward)
3144 "Like `allout-forward-current-level' backwards, respecting invisible topics.
3146 Optional DEPTH specifies depth to traverse, default current depth.
3148 Optional BACKWARD reverses direction.
3150 Return depth if successful, nil otherwise."
3151 (allout-next-sibling depth (not backward))
3153 ;;;_ > allout-snug-back ()
3154 (defun allout-snug-back ()
3155 "Position cursor at end of previous topic.
3157 Presumes point is at the start of a topic prefix."
3158 (if (or (bobp) (eobp))
3160 (forward-char -1))
3161 (if (or (bobp) (not (= ?\n (preceding-char))))
3163 (forward-char -1))
3164 (point))
3165 ;;;_ > allout-beginning-of-level ()
3166 (defun allout-beginning-of-level ()
3167 "Go back to the first sibling at this level, visible or not."
3168 (allout-end-of-level 'backward))
3169 ;;;_ > allout-end-of-level (&optional backward)
3170 (defun allout-end-of-level (&optional backward)
3171 "Go to the last sibling at this level, visible or not."
3173 (let ((depth (allout-depth)))
3174 (while (allout-previous-sibling depth nil))
3175 (prog1 allout-recent-depth
3176 (if (interactive-p) (allout-end-of-prefix)))))
3177 ;;;_ > allout-next-visible-heading (arg)
3178 (defun allout-next-visible-heading (arg)
3179 "Move to the next ARG'th visible heading line, backward if arg is negative.
3181 Move to buffer limit in indicated direction if headings are exhausted."
3183 (interactive "p")
3184 (let* ((inhibit-field-text-motion t)
3185 (backward (if (< arg 0) (setq arg (* -1 arg))))
3186 (step (if backward -1 1))
3187 prev got)
3189 (while (> arg 0)
3190 (while (and
3191 ;; Boundary condition:
3192 (not (if backward (bobp)(eobp)))
3193 ;; Move, skipping over all concealed lines in one fell swoop:
3194 (prog1 (condition-case nil (or (line-move step) t)
3195 (error nil))
3196 (allout-beginning-of-current-line))
3197 ;; Deal with apparent header line:
3198 (if (not (looking-at allout-regexp))
3199 ;; not a header line, keep looking:
3201 (allout-prefix-data)
3202 (if (and (allout-do-doublecheck)
3203 (allout-aberrant-container-p))
3204 ;; skip this aberrant prospective header line:
3206 ;; this prospective headerline qualifies -- register:
3207 (setq got allout-recent-prefix-beginning)
3208 ;; and break the loop:
3209 nil))))
3210 ;; Register this got, it may be the last:
3211 (if got (setq prev got))
3212 (setq arg (1- arg)))
3213 (cond (got ; Last move was to a prefix:
3214 (allout-end-of-prefix))
3215 (prev ; Last move wasn't, but prev was:
3216 (goto-char prev)
3217 (allout-end-of-prefix))
3218 ((not backward) (end-of-line) nil))))
3219 ;;;_ > allout-previous-visible-heading (arg)
3220 (defun allout-previous-visible-heading (arg)
3221 "Move to the previous heading line.
3223 With argument, repeats or can move forward if negative.
3224 A heading line is one that starts with a `*' (or that `allout-regexp'
3225 matches)."
3226 (interactive "p")
3227 (prog1 (allout-next-visible-heading (- arg))
3228 (if (interactive-p) (allout-end-of-prefix))))
3229 ;;;_ > allout-forward-current-level (arg)
3230 (defun allout-forward-current-level (arg)
3231 "Position point at the next heading of the same level.
3233 Takes optional repeat-count, goes backward if count is negative.
3235 Returns resulting position, else nil if none found."
3236 (interactive "p")
3237 (let ((start-depth (allout-current-depth))
3238 (start-arg arg)
3239 (backward (> 0 arg)))
3240 (if (= 0 start-depth)
3241 (error "No siblings, not in a topic..."))
3242 (if backward (setq arg (* -1 arg)))
3243 (allout-back-to-current-heading)
3244 (while (and (not (zerop arg))
3245 (if backward
3246 (allout-previous-sibling)
3247 (allout-next-sibling)))
3248 (setq arg (1- arg)))
3249 (if (not (interactive-p))
3251 (allout-end-of-prefix)
3252 (if (not (zerop arg))
3253 (error "Hit %s level %d topic, traversed %d of %d requested"
3254 (if backward "first" "last")
3255 allout-recent-depth
3256 (- (abs start-arg) arg)
3257 (abs start-arg))))))
3258 ;;;_ > allout-backward-current-level (arg)
3259 (defun allout-backward-current-level (arg)
3260 "Inverse of `allout-forward-current-level'."
3261 (interactive "p")
3262 (if (interactive-p)
3263 (let ((current-prefix-arg (* -1 arg)))
3264 (call-interactively 'allout-forward-current-level))
3265 (allout-forward-current-level (* -1 arg))))
3267 ;;;_ #5 Alteration
3269 ;;;_ - Fundamental
3270 ;;;_ = allout-post-goto-bullet
3271 (defvar allout-post-goto-bullet nil
3272 "Outline internal var, for `allout-pre-command-business' hot-spot operation.
3274 When set, tells post-processing to reposition on topic bullet, and
3275 then unset it. Set by `allout-pre-command-business' when implementing
3276 hot-spot operation, where literal characters typed over a topic bullet
3277 are mapped to the command of the corresponding control-key on the
3278 `allout-mode-map'.")
3279 (make-variable-buffer-local 'allout-post-goto-bullet)
3280 ;;;_ = allout-command-counter
3281 (defvar allout-command-counter 0
3282 "Counter that monotonically increases in allout-mode buffers.
3284 Set by `allout-pre-command-business', to support allout addons in
3285 coordinating with allout activity.")
3286 (make-variable-buffer-local 'allout-command-counter)
3287 ;;;_ > allout-post-command-business ()
3288 (defun allout-post-command-business ()
3289 "Outline `post-command-hook' function.
3291 - Implement (and clear) `allout-post-goto-bullet', for hot-spot
3292 outline commands.
3294 - Decrypt topic currently being edited if it was encrypted for a save."
3296 ; Apply any external change func:
3297 (if (not (allout-mode-p)) ; In allout-mode.
3300 (if (and (boundp 'allout-after-save-decrypt)
3301 allout-after-save-decrypt)
3302 (allout-after-saves-handler))
3304 ;; Implement allout-post-goto-bullet, if set:
3305 (if (and allout-post-goto-bullet
3306 (allout-current-bullet-pos))
3307 (progn (goto-char (allout-current-bullet-pos))
3308 (setq allout-post-goto-bullet nil)))
3310 ;;;_ > allout-pre-command-business ()
3311 (defun allout-pre-command-business ()
3312 "Outline `pre-command-hook' function for outline buffers.
3314 Among other things, implements special behavior when the cursor is on the
3315 topic bullet character.
3317 When the cursor is on the bullet character, self-insert characters are
3318 reinterpreted as the corresponding control-character in the
3319 `allout-mode-map'. The `allout-mode' `post-command-hook' insures that
3320 the cursor which has moved as a result of such reinterpretation is
3321 positioned on the bullet character of the destination topic.
3323 The upshot is that you can get easy, single (ie, unmodified) key
3324 outline maneuvering operations by positioning the cursor on the bullet
3325 char. When in this mode you can use regular cursor-positioning
3326 command/keystrokes to relocate the cursor off of a bullet character to
3327 return to regular interpretation of self-insert characters."
3329 (if (not (allout-mode-p))
3331 ;; Increment allout-command-counter
3332 (setq allout-command-counter (1+ allout-command-counter))
3333 ;; Do hot-spot navigation.
3334 (if (and (eq this-command 'self-insert-command)
3335 (eq (point)(allout-current-bullet-pos)))
3336 (allout-hotspot-key-handler))))
3337 ;;;_ > allout-hotspot-key-handler ()
3338 (defun allout-hotspot-key-handler ()
3339 "Catchall handling of key bindings in hot-spots.
3341 Translates unmodified keystrokes to corresponding allout commands, when
3342 they would qualify if prefixed with the allout-command-prefix, and sets
3343 this-command accordingly.
3345 Returns the qualifying command, if any, else nil."
3346 (interactive)
3347 (let* ((key-string (if (numberp last-command-char)
3348 (char-to-string last-command-char)))
3349 (key-num (cond ((numberp last-command-char) last-command-char)
3350 ;; for XEmacs character type:
3351 ((and (fboundp 'characterp)
3352 (apply 'characterp (list last-command-char)))
3353 (apply 'char-to-int (list last-command-char)))
3354 (t 0)))
3355 mapped-binding)
3357 (if (zerop key-num)
3360 (if (and
3361 ;; exclude control chars and escape:
3362 (<= 33 key-num)
3363 (setq mapped-binding
3364 (or (and (assoc key-string allout-keybindings-list)
3365 ;; translate literal membership on list:
3366 (cadr (assoc key-string allout-keybindings-list)))
3367 ;; translate as a keybinding:
3368 (key-binding (concat allout-command-prefix
3369 (char-to-string
3370 (if (and (<= 97 key-num) ; "a"
3371 (>= 122 key-num)) ; "z"
3372 (- key-num 96) key-num)))
3373 t))))
3374 ;; Qualified as an allout command -- do hot-spot operation.
3375 (setq allout-post-goto-bullet t)
3376 ;; accept-defaults nil, or else we'll get allout-item-icon-key-handler.
3377 (setq mapped-binding (key-binding (char-to-string key-num))))
3379 (while (keymapp mapped-binding)
3380 (setq mapped-binding
3381 (lookup-key mapped-binding (vector (read-char)))))
3383 (if mapped-binding
3384 (setq this-command mapped-binding)))))
3386 ;;;_ > allout-find-file-hook ()
3387 (defun allout-find-file-hook ()
3388 "Activate `allout-mode' on non-nil `allout-auto-activation', `allout-layout'.
3390 See `allout-init' for setup instructions."
3391 (if (and allout-auto-activation
3392 (not (allout-mode-p))
3393 allout-layout)
3394 (allout-mode t)))
3396 ;;;_ - Topic Format Assessment
3397 ;;;_ > allout-solicit-alternate-bullet (depth &optional current-bullet)
3398 (defun allout-solicit-alternate-bullet (depth &optional current-bullet)
3400 "Prompt for and return a bullet char as an alternative to the current one.
3402 Offer one suitable for current depth DEPTH as default."
3404 (let* ((default-bullet (or (and (stringp current-bullet) current-bullet)
3405 (allout-bullet-for-depth depth)))
3406 (sans-escapes (regexp-sans-escapes allout-bullets-string))
3407 choice)
3408 (save-excursion
3409 (goto-char (allout-current-bullet-pos))
3410 (setq choice (solicit-char-in-string
3411 (format "Select bullet: %s ('%s' default): "
3412 sans-escapes
3413 (substring-no-properties default-bullet))
3414 sans-escapes
3415 t)))
3416 (message "")
3417 (if (string= choice "") default-bullet choice))
3419 ;;;_ > allout-distinctive-bullet (bullet)
3420 (defun allout-distinctive-bullet (bullet)
3421 "True if BULLET is one of those on `allout-distinctive-bullets-string'."
3422 (string-match (regexp-quote bullet) allout-distinctive-bullets-string))
3423 ;;;_ > allout-numbered-type-prefix (&optional prefix)
3424 (defun allout-numbered-type-prefix (&optional prefix)
3425 "True if current header prefix bullet is numbered bullet."
3426 (and allout-numbered-bullet
3427 (string= allout-numbered-bullet
3428 (if prefix
3429 (allout-get-prefix-bullet prefix)
3430 (allout-get-bullet)))))
3431 ;;;_ > allout-encrypted-type-prefix (&optional prefix)
3432 (defun allout-encrypted-type-prefix (&optional prefix)
3433 "True if current header prefix bullet is for an encrypted entry (body)."
3434 (and allout-topic-encryption-bullet
3435 (string= allout-topic-encryption-bullet
3436 (if prefix
3437 (allout-get-prefix-bullet prefix)
3438 (allout-get-bullet)))))
3439 ;;;_ > allout-bullet-for-depth (&optional depth)
3440 (defun allout-bullet-for-depth (&optional depth)
3441 "Return outline topic bullet suited to optional DEPTH, or current depth."
3442 ;; Find bullet in plain-bullets-string modulo DEPTH.
3443 (if allout-stylish-prefixes
3444 (char-to-string (aref allout-plain-bullets-string
3445 (% (max 0 (- depth 2))
3446 allout-plain-bullets-string-len)))
3447 allout-primary-bullet)
3450 ;;;_ - Topic Production
3451 ;;;_ > allout-make-topic-prefix (&optional prior-bullet
3452 (defun allout-make-topic-prefix (&optional prior-bullet
3454 depth
3455 solicit
3456 number-control
3457 index)
3458 ;; Depth null means use current depth, non-null means we're either
3459 ;; opening a new topic after current topic, lower or higher, or we're
3460 ;; changing level of current topic.
3461 ;; Solicit dominates specified bullet-char.
3462 ;;;_ . Doc string:
3463 "Generate a topic prefix suitable for optional arg DEPTH, or current depth.
3465 All the arguments are optional.
3467 PRIOR-BULLET indicates the bullet of the prefix being changed, or
3468 nil if none. This bullet may be preserved (other options
3469 notwithstanding) if it is on the `allout-distinctive-bullets-string',
3470 for instance.
3472 Second arg NEW indicates that a new topic is being opened after the
3473 topic at point, if non-nil. Default bullet for new topics, eg, may
3474 be set (contingent to other args) to numbered bullets if previous
3475 sibling is one. The implication otherwise is that the current topic
3476 is being adjusted -- shifted or rebulleted -- and we don't consider
3477 bullet or previous sibling.
3479 Third arg DEPTH forces the topic prefix to that depth, regardless of
3480 the current topics' depth.
3482 If SOLICIT is non-nil, then the choice of bullet is solicited from
3483 user. If it's a character, then that character is offered as the
3484 default, otherwise the one suited to the context (according to
3485 distinction or depth) is offered. (This overrides other options,
3486 including, eg, a distinctive PRIOR-BULLET.) If non-nil, then the
3487 context-specific bullet is used.
3489 Fifth arg, NUMBER-CONTROL, matters only if `allout-numbered-bullet'
3490 is non-nil *and* soliciting was not explicitly invoked. Then
3491 NUMBER-CONTROL non-nil forces prefix to either numbered or
3492 denumbered format, depending on the value of the sixth arg, INDEX.
3494 \(Note that NUMBER-CONTROL does *not* apply to level 1 topics. Sorry...)
3496 If NUMBER-CONTROL is non-nil and sixth arg INDEX is non-nil then
3497 the prefix of the topic is forced to be numbered. Non-nil
3498 NUMBER-CONTROL and nil INDEX forces non-numbered format on the
3499 bullet. Non-nil NUMBER-CONTROL and non-nil, non-number INDEX means
3500 that the index for the numbered prefix will be derived, by counting
3501 siblings back to start of level. If INDEX is a number, then that
3502 number is used as the index for the numbered prefix (allowing, eg,
3503 sequential renumbering to not require this function counting back the
3504 index for each successive sibling)."
3505 ;;;_ . Code:
3506 ;; The options are ordered in likely frequence of use, most common
3507 ;; highest, least lowest. Ie, more likely to be doing prefix
3508 ;; adjustments than soliciting, and yet more than numbering.
3509 ;; Current prefix is least dominant, but most likely to be commonly
3510 ;; specified...
3512 (let* (body
3513 numbering
3514 denumbering
3515 (depth (or depth (allout-depth)))
3516 (header-lead allout-header-prefix)
3517 (bullet-char
3519 ;; Getting value for bullet char is practically the whole job:
3521 (cond
3522 ; Simplest situation -- level 1:
3523 ((<= depth 1) (setq header-lead "") allout-primary-bullet)
3524 ; Simple, too: all asterisks:
3525 (allout-old-style-prefixes
3526 ;; Cheat -- make body the whole thing, null out header-lead and
3527 ;; bullet-char:
3528 (setq body (make-string depth
3529 (string-to-char allout-primary-bullet)))
3530 (setq header-lead "")
3533 ;; (Neither level 1 nor old-style, so we're space padding.
3534 ;; Sneak it in the condition of the next case, whatever it is.)
3536 ;; Solicitation overrides numbering and other cases:
3537 ((progn (setq body (make-string (- depth 2) ?\ ))
3538 ;; The actual condition:
3539 solicit)
3540 (let* ((got (allout-solicit-alternate-bullet depth solicit)))
3541 ;; Gotta check whether we're numbering and got a numbered bullet:
3542 (setq numbering (and allout-numbered-bullet
3543 (not (and number-control (not index)))
3544 (string= got allout-numbered-bullet)))
3545 ;; Now return what we got, regardless:
3546 got))
3548 ;; Numbering invoked through args:
3549 ((and allout-numbered-bullet number-control)
3550 (if (setq numbering (not (setq denumbering (not index))))
3551 allout-numbered-bullet
3552 (if (and prior-bullet
3553 (not (string= allout-numbered-bullet
3554 prior-bullet)))
3555 prior-bullet
3556 (allout-bullet-for-depth depth))))
3558 ;;; Neither soliciting nor controlled numbering ;;;
3559 ;;; (may be controlled denumbering, tho) ;;;
3561 ;; Check wrt previous sibling:
3562 ((and new ; only check for new prefixes
3563 (<= depth (allout-depth))
3564 allout-numbered-bullet ; ... & numbering enabled
3565 (not denumbering)
3566 (let ((sibling-bullet
3567 (save-excursion
3568 ;; Locate correct sibling:
3569 (or (>= depth (allout-depth))
3570 (allout-ascend-to-depth depth))
3571 (allout-get-bullet))))
3572 (if (and sibling-bullet
3573 (string= allout-numbered-bullet sibling-bullet))
3574 (setq numbering sibling-bullet)))))
3576 ;; Distinctive prior bullet?
3577 ((and prior-bullet
3578 (allout-distinctive-bullet prior-bullet)
3579 ;; Either non-numbered:
3580 (or (not (and allout-numbered-bullet
3581 (string= prior-bullet allout-numbered-bullet)))
3582 ;; or numbered, and not denumbering:
3583 (setq numbering (not denumbering)))
3584 ;; Here 'tis:
3585 prior-bullet))
3587 ;; Else, standard bullet per depth:
3588 ((allout-bullet-for-depth depth)))))
3590 (concat header-lead
3591 body
3592 bullet-char
3593 (if numbering
3594 (format "%d" (cond ((and index (numberp index)) index)
3595 (new (1+ (allout-sibling-index depth)))
3596 ((allout-sibling-index))))))
3599 ;;;_ > allout-open-topic (relative-depth &optional before offer-recent-bullet)
3600 (defun allout-open-topic (relative-depth &optional before offer-recent-bullet)
3601 "Open a new topic at depth DEPTH.
3603 New topic is situated after current one, unless optional flag BEFORE
3604 is non-nil, or unless current line is completely empty -- lacking even
3605 whitespace -- in which case open is done on the current line.
3607 When adding an offspring, it will be added immediately after the parent if
3608 the other offspring are exposed, or after the last child if the offspring
3609 are hidden. (The intervening offspring will be exposed in the latter
3610 case.)
3612 If OFFER-RECENT-BULLET is true, offer to use the bullet of the prior sibling.
3614 Nuances:
3616 - Creation of new topics is with respect to the visible topic
3617 containing the cursor, regardless of intervening concealed ones.
3619 - New headers are generally created after/before the body of a
3620 topic. However, they are created right at cursor location if the
3621 cursor is on a blank line, even if that breaks the current topic
3622 body. This is intentional, to provide a simple means for
3623 deliberately dividing topic bodies.
3625 - Double spacing of topic lists is preserved. Also, the first
3626 level two topic is created double-spaced (and so would be
3627 subsequent siblings, if that's left intact). Otherwise,
3628 single-spacing is used.
3630 - Creation of sibling or nested topics is with respect to the topic
3631 you're starting from, even when creating backwards. This way you
3632 can easily create a sibling in front of the current topic without
3633 having to go to its preceding sibling, and then open forward
3634 from there."
3636 (allout-beginning-of-current-line)
3637 (let* ((inhibit-field-text-motion t)
3638 (depth (+ (allout-current-depth) relative-depth))
3639 (opening-on-blank (if (looking-at "^\$")
3640 (not (setq before nil))))
3641 ;; bunch o vars set while computing ref-topic
3642 opening-numbered
3643 ref-depth
3644 ref-bullet
3645 (ref-topic (save-excursion
3646 (cond ((< relative-depth 0)
3647 (allout-ascend-to-depth depth))
3648 ((>= relative-depth 1) nil)
3649 (t (allout-back-to-current-heading)))
3650 (setq ref-depth allout-recent-depth)
3651 (setq ref-bullet
3652 (if (> allout-recent-prefix-end 1)
3653 (allout-recent-bullet)
3654 ""))
3655 (setq opening-numbered
3656 (save-excursion
3657 (and allout-numbered-bullet
3658 (or (<= relative-depth 0)
3659 (allout-descend-to-depth depth))
3660 (if (allout-numbered-type-prefix)
3661 allout-numbered-bullet))))
3662 (point)))
3663 dbl-space
3664 doing-beginning
3665 start end)
3667 (if (not opening-on-blank)
3668 ; Positioning and vertical
3669 ; padding -- only if not
3670 ; opening-on-blank:
3671 (progn
3672 (goto-char ref-topic)
3673 (setq dbl-space ; Determine double space action:
3674 (or (and (<= relative-depth 0) ; not descending;
3675 (save-excursion
3676 ;; at b-o-b or preceded by a blank line?
3677 (or (> 0 (forward-line -1))
3678 (looking-at "^\\s-*$")
3679 (bobp)))
3680 (save-excursion
3681 ;; succeeded by a blank line?
3682 (allout-end-of-current-subtree)
3683 (looking-at "\n\n")))
3684 (and (= ref-depth 1)
3685 (or before
3686 (= depth 1)
3687 (save-excursion
3688 ;; Don't already have following
3689 ;; vertical padding:
3690 (not (allout-pre-next-prefix)))))))
3692 ;; Position to prior heading, if inserting backwards, and not
3693 ;; going outwards:
3694 (if (and before (>= relative-depth 0))
3695 (progn (allout-back-to-current-heading)
3696 (setq doing-beginning (bobp))
3697 (if (not (bobp))
3698 (allout-previous-heading)))
3699 (if (and before (bobp))
3700 (open-line 1)))
3702 (if (<= relative-depth 0)
3703 ;; Not going inwards, don't snug up:
3704 (if doing-beginning
3705 (if (not dbl-space)
3706 (open-line 1)
3707 (open-line 2))
3708 (if before
3709 (progn (end-of-line)
3710 (allout-pre-next-prefix)
3711 (while (and (= ?\n (following-char))
3712 (save-excursion
3713 (forward-char 1)
3714 (allout-hidden-p)))
3715 (forward-char 1))
3716 (if (not (looking-at "^$"))
3717 (open-line 1)))
3718 (allout-end-of-current-subtree)
3719 (if (looking-at "\n\n") (forward-char 1))))
3720 ;; Going inwards -- double-space if first offspring is
3721 ;; double-spaced, otherwise snug up.
3722 (allout-end-of-entry)
3723 (if (eobp)
3724 (newline 1)
3725 (line-move 1))
3726 (allout-beginning-of-current-line)
3727 (backward-char 1)
3728 (if (bolp)
3729 ;; Blank lines between current header body and next
3730 ;; header -- get to last substantive (non-white-space)
3731 ;; line in body:
3732 (progn (setq dbl-space t)
3733 (re-search-backward "[^ \t\n]" nil t)))
3734 (if (looking-at "\n\n")
3735 (setq dbl-space t))
3736 (if (save-excursion
3737 (allout-next-heading)
3738 (when (> allout-recent-depth ref-depth)
3739 ;; This is an offspring.
3740 (forward-line -1)
3741 (looking-at "^\\s-*$")))
3742 (progn (forward-line 1)
3743 (open-line 1)
3744 (forward-line 1)))
3745 (allout-end-of-current-line))
3747 ;;(if doing-beginning (goto-char doing-beginning))
3748 (if (not (bobp))
3749 ;; We insert a newline char rather than using open-line to
3750 ;; avoid rear-stickiness inheritence of read-only property.
3751 (progn (if (and (not (> depth ref-depth))
3752 (not before))
3753 (open-line 1)
3754 (if (and (not dbl-space) (> depth ref-depth))
3755 (newline 1)
3756 (if dbl-space
3757 (open-line 1)
3758 (if (not before)
3759 (newline 1)))))
3760 (if (and dbl-space (not (> relative-depth 0)))
3761 (newline 1))
3762 (if (and (not (eobp))
3763 (or (not (bolp))
3764 (and (not (bobp))
3765 ;; bolp doesnt detect concealed
3766 ;; trailing newlines, compensate:
3767 (save-excursion
3768 (forward-char -1)
3769 (allout-hidden-p)))))
3770 (forward-char 1))))
3772 (setq start (point))
3773 (insert (concat (allout-make-topic-prefix opening-numbered t depth)
3774 " "))
3775 (setq end (1+ (point)))
3777 (allout-rebullet-heading (and offer-recent-bullet ref-bullet)
3778 depth nil nil t)
3779 (if (> relative-depth 0)
3780 (save-excursion (goto-char ref-topic)
3781 (allout-show-children)))
3782 (end-of-line)
3784 (run-hook-with-args 'allout-structure-added-hook start end)
3787 ;;;_ > allout-open-subtopic (arg)
3788 (defun allout-open-subtopic (arg)
3789 "Open new topic header at deeper level than the current one.
3791 Negative universal arg means to open deeper, but place the new topic
3792 prior to the current one."
3793 (interactive "p")
3794 (allout-open-topic 1 (> 0 arg) (< 1 arg)))
3795 ;;;_ > allout-open-sibtopic (arg)
3796 (defun allout-open-sibtopic (arg)
3797 "Open new topic header at same level as the current one.
3799 Positive universal arg means to use the bullet of the prior sibling.
3801 Negative universal arg means to place the new topic prior to the current
3802 one."
3803 (interactive "p")
3804 (allout-open-topic 0 (> 0 arg) (not (= 1 arg))))
3805 ;;;_ > allout-open-supertopic (arg)
3806 (defun allout-open-supertopic (arg)
3807 "Open new topic header at shallower level than the current one.
3809 Negative universal arg means to open shallower, but place the new
3810 topic prior to the current one."
3812 (interactive "p")
3813 (allout-open-topic -1 (> 0 arg) (< 1 arg)))
3815 ;;;_ - Outline Alteration
3816 ;;;_ : Topic Modification
3817 ;;;_ = allout-former-auto-filler
3818 (defvar allout-former-auto-filler nil
3819 "Name of modal fill function being wrapped by `allout-auto-fill'.")
3820 ;;;_ > allout-auto-fill ()
3821 (defun allout-auto-fill ()
3822 "`allout-mode' autofill function.
3824 Maintains outline hanging topic indentation if
3825 `allout-use-hanging-indents' is set."
3827 (when (not allout-inhibit-auto-fill)
3828 (let ((fill-prefix (if allout-use-hanging-indents
3829 ;; Check for topic header indentation:
3830 (save-excursion
3831 (beginning-of-line)
3832 (if (looking-at allout-regexp)
3833 ;; ... construct indentation to account for
3834 ;; length of topic prefix:
3835 (make-string (progn (allout-end-of-prefix)
3836 (current-column))
3837 ?\ )))))
3838 (use-auto-fill-function (or allout-outside-normal-auto-fill-function
3839 auto-fill-function
3840 'do-auto-fill)))
3841 (if (or allout-former-auto-filler allout-use-hanging-indents)
3842 (funcall use-auto-fill-function)))))
3843 ;;;_ > allout-reindent-body (old-depth new-depth &optional number)
3844 (defun allout-reindent-body (old-depth new-depth &optional number)
3845 "Reindent body lines which were indented at OLD-DEPTH to NEW-DEPTH.
3847 Optional arg NUMBER indicates numbering is being added, and it must
3848 be accommodated.
3850 Note that refill of indented paragraphs is not done."
3852 (save-excursion
3853 (allout-end-of-prefix)
3854 (let* ((new-margin (current-column))
3855 excess old-indent-begin old-indent-end
3856 ;; We want the column where the header-prefix text started
3857 ;; *before* the prefix was changed, so we infer it relative
3858 ;; to the new margin and the shift in depth:
3859 (old-margin (+ old-depth (- new-margin new-depth))))
3861 ;; Process lines up to (but excluding) next topic header:
3862 (allout-unprotected
3863 (save-match-data
3864 (while
3865 (and (re-search-forward "\n\\(\\s-*\\)"
3868 ;; Register the indent data, before we reset the
3869 ;; match data with a subsequent `looking-at':
3870 (setq old-indent-begin (match-beginning 1)
3871 old-indent-end (match-end 1))
3872 (not (looking-at allout-regexp)))
3873 (if (> 0 (setq excess (- (- old-indent-end old-indent-begin)
3874 old-margin)))
3875 ;; Text starts left of old margin -- don't adjust:
3877 ;; Text was hanging at or right of old left margin --
3878 ;; reindent it, preserving its existing indentation
3879 ;; beyond the old margin:
3880 (delete-region old-indent-begin old-indent-end)
3881 (indent-to (+ new-margin excess (current-column))))))))))
3882 ;;;_ > allout-rebullet-current-heading (arg)
3883 (defun allout-rebullet-current-heading (arg)
3884 "Solicit new bullet for current visible heading."
3885 (interactive "p")
3886 (let ((initial-col (current-column))
3887 (on-bullet (eq (point)(allout-current-bullet-pos)))
3888 from to
3889 (backwards (if (< arg 0)
3890 (setq arg (* arg -1)))))
3891 (while (> arg 0)
3892 (save-excursion (allout-back-to-current-heading)
3893 (allout-end-of-prefix)
3894 (setq from allout-recent-prefix-beginning
3895 to allout-recent-prefix-end)
3896 (allout-rebullet-heading t ;;; solicit
3897 nil ;;; depth
3898 nil ;;; number-control
3899 nil ;;; index
3900 t) ;;; do-successors
3901 (run-hook-with-args 'allout-exposure-change-hook
3902 from to t))
3903 (setq arg (1- arg))
3904 (if (<= arg 0)
3906 (setq initial-col nil) ; Override positioning back to init col
3907 (if (not backwards)
3908 (allout-next-visible-heading 1)
3909 (allout-goto-prefix-doublechecked)
3910 (allout-next-visible-heading -1))))
3911 (message "Done.")
3912 (cond (on-bullet (goto-char (allout-current-bullet-pos)))
3913 (initial-col (move-to-column initial-col)))))
3914 ;;;_ > allout-rebullet-heading (&optional solicit ...)
3915 (defun allout-rebullet-heading (&optional solicit
3916 new-depth
3917 number-control
3918 index
3919 do-successors)
3921 "Adjust bullet of current topic prefix.
3923 All args are optional.
3925 If SOLICIT is non-nil, then the choice of bullet is solicited from
3926 user. If it's a character, then that character is offered as the
3927 default, otherwise the one suited to the context (according to
3928 distinction or depth) is offered. If non-nil, then the
3929 context-specific bullet is just used.
3931 Second arg DEPTH forces the topic prefix to that depth, regardless
3932 of the topic's current depth.
3934 Third arg NUMBER-CONTROL can force the prefix to or away from
3935 numbered form. It has effect only if `allout-numbered-bullet' is
3936 non-nil and soliciting was not explicitly invoked (via first arg).
3937 Its effect, numbering or denumbering, then depends on the setting
3938 of the fourth arg, INDEX.
3940 If NUMBER-CONTROL is non-nil and fourth arg INDEX is nil, then the
3941 prefix of the topic is forced to be non-numbered. Null index and
3942 non-nil NUMBER-CONTROL forces denumbering. Non-nil INDEX (and
3943 non-nil NUMBER-CONTROL) forces a numbered-prefix form. If non-nil
3944 INDEX is a number, then that number is used for the numbered
3945 prefix. Non-nil and non-number means that the index for the
3946 numbered prefix will be derived by allout-make-topic-prefix.
3948 Fifth arg DO-SUCCESSORS t means re-resolve count on succeeding
3949 siblings.
3951 Cf vars `allout-stylish-prefixes', `allout-old-style-prefixes',
3952 and `allout-numbered-bullet', which all affect the behavior of
3953 this function."
3955 (let* ((current-depth (allout-depth))
3956 (new-depth (or new-depth current-depth))
3957 (mb allout-recent-prefix-beginning)
3958 (me allout-recent-prefix-end)
3959 (current-bullet (buffer-substring-no-properties (- me 1) me))
3960 (has-annotation (get-text-property mb 'allout-was-hidden))
3961 (new-prefix (allout-make-topic-prefix current-bullet
3963 new-depth
3964 solicit
3965 number-control
3966 index)))
3968 ;; Is new one is identical to old?
3969 (if (and (= current-depth new-depth)
3970 (string= current-bullet
3971 (substring new-prefix (1- (length new-prefix)))))
3972 ;; Nothing to do:
3975 ;; New prefix probably different from old:
3976 ; get rid of old one:
3977 (allout-unprotected (delete-region mb me))
3978 (goto-char mb)
3979 ; Dispense with number if
3980 ; numbered-bullet prefix:
3981 (if (and allout-numbered-bullet
3982 (string= allout-numbered-bullet current-bullet)
3983 (looking-at "[0-9]+"))
3984 (allout-unprotected
3985 (delete-region (match-beginning 0)(match-end 0))))
3987 ;; convey 'allout-was-hidden annotation, if original had it:
3988 (if has-annotation
3989 (put-text-property 0 (length new-prefix) 'allout-was-hidden t
3990 new-prefix))
3992 ; Put in new prefix:
3993 (allout-unprotected (insert new-prefix))
3995 ;; Reindent the body if elected, margin changed, and not encrypted body:
3996 (if (and allout-reindent-bodies
3997 (not (= new-depth current-depth))
3998 (not (allout-encrypted-topic-p)))
3999 (allout-reindent-body current-depth new-depth))
4001 ;; Recursively rectify successive siblings of orig topic if
4002 ;; caller elected for it:
4003 (if do-successors
4004 (save-excursion
4005 (while (allout-next-sibling new-depth nil)
4006 (setq index
4007 (cond ((numberp index) (1+ index))
4008 ((not number-control) (allout-sibling-index))))
4009 (if (allout-numbered-type-prefix)
4010 (allout-rebullet-heading nil ;;; solicit
4011 new-depth ;;; new-depth
4012 number-control;;; number-control
4013 index ;;; index
4014 nil))))) ;;;(dont!)do-successors
4015 ) ; (if (and (= current-depth new-depth)...))
4016 ) ; let* ((current-depth (allout-depth))...)
4017 ) ; defun
4018 ;;;_ > allout-rebullet-topic (arg)
4019 (defun allout-rebullet-topic (arg &optional sans-offspring)
4020 "Rebullet the visible topic containing point and all contained subtopics.
4022 Descends into invisible as well as visible topics, however.
4024 When optional SANS-OFFSPRING is non-nil, subtopics are not
4025 shifted. (Shifting a topic outwards without shifting its
4026 offspring is disallowed, since this would create a \"containment
4027 discontinuity\", where the depth difference between a topic and
4028 its immediate offspring is greater than one.)
4030 With repeat count, shift topic depth by that amount."
4031 (interactive "P")
4032 (let ((start-col (current-column)))
4033 (save-excursion
4034 ;; Normalize arg:
4035 (cond ((null arg) (setq arg 0))
4036 ((listp arg) (setq arg (car arg))))
4037 ;; Fill the user in, in case we're shifting a big topic:
4038 (if (not (zerop arg)) (message "Shifting..."))
4039 (allout-back-to-current-heading)
4040 (if (<= (+ allout-recent-depth arg) 0)
4041 (error "Attempt to shift topic below level 1"))
4042 (allout-rebullet-topic-grunt arg nil nil nil nil sans-offspring)
4043 (if (not (zerop arg)) (message "Shifting... done.")))
4044 (move-to-column (max 0 (+ start-col arg)))))
4045 ;;;_ > allout-rebullet-topic-grunt (&optional relative-depth ...)
4046 (defun allout-rebullet-topic-grunt (&optional relative-depth
4047 starting-depth
4048 starting-point
4049 index
4050 do-successors
4051 sans-offspring)
4052 "Like `allout-rebullet-topic', but on nearest containing topic
4053 \(visible or not).
4055 See `allout-rebullet-heading' for rebulleting behavior.
4057 All arguments are optional.
4059 First arg RELATIVE-DEPTH means to shift the depth of the entire
4060 topic that amount.
4062 Several subsequent args are for internal recursive use by the function
4063 itself: STARTING-DEPTH, STARTING-POINT, and INDEX.
4065 Finally, if optional SANS-OFFSPRING is non-nil then the offspring
4066 are not shifted. (Shifting a topic outwards without shifting
4067 its offspring is disallowed, since this would create a
4068 \"containment discontinuity\", where the depth difference between
4069 a topic and its immediate offspring is greater than one.)"
4071 ;; XXX the recursion here is peculiar, and in general the routine may
4072 ;; need simplification with refactoring.
4074 (if (and sans-offspring
4075 relative-depth
4076 (< relative-depth 0))
4077 (error (concat "Attempt to shift topic outwards without offspring,"
4078 " would cause containment discontinuity.")))
4080 (let* ((relative-depth (or relative-depth 0))
4081 (new-depth (allout-depth))
4082 (starting-depth (or starting-depth new-depth))
4083 (on-starting-call (null starting-point))
4084 (index (or index
4085 ;; Leave index null on starting call, so rebullet-heading
4086 ;; calculates it at what might be new depth:
4087 (and (or (zerop relative-depth)
4088 (not on-starting-call))
4089 (allout-sibling-index))))
4090 (starting-index index)
4091 (moving-outwards (< 0 relative-depth))
4092 (starting-point (or starting-point (point)))
4093 (local-point (point)))
4095 ;; Sanity check for excessive promotion done only on starting call:
4096 (and on-starting-call
4097 moving-outwards
4098 (> 0 (+ starting-depth relative-depth))
4099 (error "Attempt to shift topic out beyond level 1"))
4101 (cond ((= starting-depth new-depth)
4102 ;; We're at depth to work on this one.
4104 ;; When shifting out we work on the children before working on
4105 ;; the parent to avoid interim `allout-aberrant-container-p'
4106 ;; aberrancy, and vice-versa when shifting in:
4107 (if (>= relative-depth 0)
4108 (allout-rebullet-heading nil
4109 (+ starting-depth relative-depth)
4110 nil ;;; number
4111 index
4112 nil)) ;;; do-successors
4113 (when (not sans-offspring)
4114 ;; ... and work on subsequent ones which are at greater depth:
4115 (setq index 0)
4116 (allout-next-heading)
4117 (while (and (not (eobp))
4118 (< starting-depth (allout-depth)))
4119 (setq index (1+ index))
4120 (allout-rebullet-topic-grunt relative-depth
4121 (1+ starting-depth)
4122 starting-point
4123 index)))
4124 (when (< relative-depth 0)
4125 (save-excursion
4126 (goto-char local-point)
4127 (allout-rebullet-heading nil ;;; solicit
4128 (+ starting-depth relative-depth)
4129 nil ;;; number
4130 starting-index
4131 nil)))) ;;; do-successors
4133 ((< starting-depth new-depth)
4134 ;; Rare case -- subtopic more than one level deeper than parent.
4135 ;; Treat this one at an even deeper level:
4136 (allout-rebullet-topic-grunt relative-depth
4137 new-depth
4138 starting-point
4139 index
4140 sans-offspring)))
4142 (if on-starting-call
4143 (progn
4144 ;; Rectify numbering of former siblings of the adjusted topic,
4145 ;; if topic has changed depth
4146 (if (or do-successors
4147 (and (not (zerop relative-depth))
4148 (or (= allout-recent-depth starting-depth)
4149 (= allout-recent-depth (+ starting-depth
4150 relative-depth)))))
4151 (allout-rebullet-heading nil nil nil nil t))
4152 ;; Now rectify numbering of new siblings of the adjusted topic,
4153 ;; if depth has been changed:
4154 (progn (goto-char starting-point)
4155 (if (not (zerop relative-depth))
4156 (allout-rebullet-heading nil nil nil nil t)))))
4159 ;;;_ > allout-renumber-to-depth (&optional depth)
4160 (defun allout-renumber-to-depth (&optional depth)
4161 "Renumber siblings at current depth.
4163 Affects superior topics if optional arg DEPTH is less than current depth.
4165 Returns final depth."
4167 ;; Proceed by level, processing subsequent siblings on each,
4168 ;; ascending until we get shallower than the start depth:
4170 (let ((ascender (allout-depth))
4171 was-eobp)
4172 (while (and (not (eobp))
4173 (allout-depth)
4174 (>= allout-recent-depth depth)
4175 (>= ascender depth))
4176 ; Skip over all topics at
4177 ; lesser depths, which can not
4178 ; have been disturbed:
4179 (while (and (not (setq was-eobp (eobp)))
4180 (> allout-recent-depth ascender))
4181 (allout-next-heading))
4182 ; Prime ascender for ascension:
4183 (setq ascender (1- allout-recent-depth))
4184 (if (>= allout-recent-depth depth)
4185 (allout-rebullet-heading nil ;;; solicit
4186 nil ;;; depth
4187 nil ;;; number-control
4188 nil ;;; index
4189 t)) ;;; do-successors
4190 (if was-eobp (goto-char (point-max)))))
4191 allout-recent-depth)
4192 ;;;_ > allout-number-siblings (&optional denumber)
4193 (defun allout-number-siblings (&optional denumber)
4194 "Assign numbered topic prefix to this topic and its siblings.
4196 With universal argument, denumber -- assign default bullet to this
4197 topic and its siblings.
4199 With repeated universal argument (`^U^U'), solicit bullet for each
4200 rebulleting each topic at this level."
4202 (interactive "P")
4204 (save-excursion
4205 (allout-back-to-current-heading)
4206 (allout-beginning-of-level)
4207 (let ((depth allout-recent-depth)
4208 (index (if (not denumber) 1))
4209 (use-bullet (equal '(16) denumber))
4210 (more t))
4211 (while more
4212 (allout-rebullet-heading use-bullet ;;; solicit
4213 depth ;;; depth
4214 t ;;; number-control
4215 index ;;; index
4216 nil) ;;; do-successors
4217 (if index (setq index (1+ index)))
4218 (setq more (allout-next-sibling depth nil))))))
4219 ;;;_ > allout-shift-in (arg)
4220 (defun allout-shift-in (arg)
4221 "Increase depth of current heading and any items collapsed within it.
4223 With a negative argument, the item is shifted out using
4224 `allout-shift-out', instead.
4226 With an argument greater than one, shift-in the item but not its
4227 offspring, making the item into a sibling of its former children,
4228 and a child of sibling that formerly preceeded it.
4230 You are not allowed to shift the first offspring of a topic
4231 inwards, because that would yield a \"containment
4232 discontinuity\", where the depth difference between a topic and
4233 its immediate offspring is greater than one. The first topic in
4234 the file can be adjusted to any positive depth, however."
4236 (interactive "p")
4237 (if (< arg 0)
4238 (allout-shift-out (* arg -1))
4239 ;; refuse to create a containment discontinuity:
4240 (save-excursion
4241 (allout-back-to-current-heading)
4242 (if (not (bobp))
4243 (let* ((current-depth allout-recent-depth)
4244 (start-point (point))
4245 (predecessor-depth (progn
4246 (forward-char -1)
4247 (allout-goto-prefix-doublechecked)
4248 (if (< (point) start-point)
4249 allout-recent-depth
4250 0))))
4251 (if (and (> predecessor-depth 0)
4252 (> (1+ current-depth)
4253 (1+ predecessor-depth)))
4254 (error (concat "Disallowed shift deeper than"
4255 " containing topic's children."))
4256 (allout-back-to-current-heading)
4257 (if (< allout-recent-depth (1+ current-depth))
4258 (allout-show-children))))))
4259 (let ((where (point)))
4260 (allout-rebullet-topic 1 (and (> arg 1) 'sans-offspring))
4261 (run-hook-with-args 'allout-structure-shifted-hook arg where))))
4262 ;;;_ > allout-shift-out (arg)
4263 (defun allout-shift-out (arg)
4264 "Decrease depth of current heading and any topics collapsed within it.
4265 This will make the item a sibling of its former container.
4267 With a negative argument, the item is shifted in using
4268 `allout-shift-in', instead.
4270 With an argument greater than one, shift-out the item's offspring
4271 but not the item itself, making the former children siblings of
4272 the item.
4274 With an argument greater than 1, the item's offspring are shifted
4275 out without shifting the item. This will make the immediate
4276 subtopics into siblings of the item."
4277 (interactive "p")
4278 (if (< arg 0)
4279 (allout-shift-in (* arg -1))
4280 ;; Get proper exposure in this area:
4281 (save-excursion (if (allout-ascend)
4282 (allout-show-children)))
4283 ;; Show collapsed children if there's a successor which will become
4284 ;; their sibling:
4285 (if (and (allout-current-topic-collapsed-p)
4286 (save-excursion (allout-next-sibling)))
4287 (allout-show-children))
4288 (let ((where (and (allout-depth) allout-recent-prefix-beginning)))
4289 (save-excursion
4290 (if (> arg 1)
4291 ;; Shift the offspring but not the topic:
4292 (let ((children-chart (allout-chart-subtree 1)))
4293 (if (listp (car children-chart))
4294 ;; whoops:
4295 (setq children-chart (allout-flatten children-chart)))
4296 (save-excursion
4297 (dolist (child-point children-chart)
4298 (goto-char child-point)
4299 (allout-shift-out 1))))
4300 (allout-rebullet-topic (* arg -1))))
4301 (run-hook-with-args 'allout-structure-shifted-hook (* arg -1) where))))
4302 ;;;_ : Surgery (kill-ring) functions with special provisions for outlines:
4303 ;;;_ > allout-kill-line (&optional arg)
4304 (defun allout-kill-line (&optional arg)
4305 "Kill line, adjusting subsequent lines suitably for outline mode."
4307 (interactive "*P")
4309 (if (or (not (allout-mode-p))
4310 (not (bolp))
4311 (not (looking-at allout-regexp)))
4312 ;; Just do a regular kill:
4313 (kill-line arg)
4314 ;; Ah, have to watch out for adjustments:
4315 (let* ((beg (point))
4317 (beg-hidden (allout-hidden-p))
4318 (end-hidden (save-excursion (allout-end-of-current-line)
4319 (setq end (point))
4320 (allout-hidden-p)))
4321 (depth (allout-depth)))
4323 (allout-annotate-hidden beg end)
4324 (if (and (not beg-hidden) (not end-hidden))
4325 (allout-unprotected (kill-line arg))
4326 (kill-line arg))
4327 (allout-deannotate-hidden beg end)
4329 (if allout-numbered-bullet
4330 (save-excursion ; Renumber subsequent topics if needed:
4331 (if (not (looking-at allout-regexp))
4332 (allout-next-heading))
4333 (allout-renumber-to-depth depth)))
4334 (run-hook-with-args 'allout-structure-deleted-hook depth (point)))))
4335 ;;;_ > allout-copy-line-as-kill ()
4336 (defun allout-copy-line-as-kill ()
4337 "Like allout-kill-topic, but save to kill ring instead of deleting."
4338 (interactive)
4339 (let ((buffer-read-only t))
4340 (condition-case nil
4341 (allout-kill-line)
4342 (buffer-read-only nil))))
4343 ;;;_ > allout-kill-topic ()
4344 (defun allout-kill-topic ()
4345 "Kill topic together with subtopics.
4347 Trailing whitespace is killed with a topic if that whitespace:
4349 - would separate the topic from a subsequent sibling
4350 - would separate the topic from the end of buffer
4351 - would not be added to whitespace already separating the topic from the
4352 previous one.
4354 Topic exposure is marked with text-properties, to be used by
4355 `allout-yank-processing' for exposure recovery."
4357 (interactive)
4358 (let* ((inhibit-field-text-motion t)
4359 (beg (prog1 (allout-back-to-current-heading) (beginning-of-line)))
4361 (depth allout-recent-depth))
4362 (allout-end-of-current-subtree)
4363 (if (and (/= (current-column) 0) (not (eobp)))
4364 (forward-char 1))
4365 (if (not (eobp))
4366 (if (and (looking-at "\n")
4367 (or (save-excursion
4368 (or (not (allout-next-heading))
4369 (= depth allout-recent-depth)))
4370 (and (> (- beg (point-min)) 3)
4371 (string= (buffer-substring (- beg 2) beg) "\n\n"))))
4372 (forward-char 1)))
4374 (allout-annotate-hidden beg (setq end (point)))
4375 (unwind-protect
4376 (allout-unprotected (kill-region beg end))
4377 (if buffer-read-only
4378 ;; eg, during copy-as-kill.
4379 (allout-deannotate-hidden beg end)))
4381 (save-excursion
4382 (allout-renumber-to-depth depth))
4383 (run-hook-with-args 'allout-structure-deleted-hook depth (point))))
4384 ;;;_ > allout-copy-topic-as-kill ()
4385 (defun allout-copy-topic-as-kill ()
4386 "Like `allout-kill-topic', but save to kill ring instead of deleting."
4387 (interactive)
4388 (let ((buffer-read-only t))
4389 (condition-case nil
4390 (allout-kill-topic)
4391 (buffer-read-only (message "Topic copied...")))))
4392 ;;;_ > allout-annotate-hidden (begin end)
4393 (defun allout-annotate-hidden (begin end)
4394 "Qualify text with properties to indicate exposure status."
4396 (let ((was-modified (buffer-modified-p))
4397 (buffer-read-only nil))
4398 (allout-deannotate-hidden begin end)
4399 (save-excursion
4400 (goto-char begin)
4401 (let (done next prev overlay)
4402 (while (not done)
4403 ;; at or advance to start of next hidden region:
4404 (if (not (allout-hidden-p))
4405 (setq next
4406 (max (1+ (point))
4407 (next-single-char-property-change (point)
4408 'invisible
4409 nil end))))
4410 (if (or (not next) (eq prev next))
4411 ;; still not at start of hidden area -- must not be any left.
4412 (setq done t)
4413 (goto-char next)
4414 (setq prev next)
4415 (if (not (allout-hidden-p))
4416 ;; still not at start of hidden area.
4417 (setq done t)
4418 (setq overlay (allout-get-invisibility-overlay))
4419 (setq next (overlay-end overlay)
4420 prev next)
4421 ;; advance to end of this hidden area:
4422 (when next
4423 (goto-char next)
4424 (allout-unprotected
4425 (let ((buffer-undo-list t))
4426 (put-text-property (overlay-start overlay) next
4427 'allout-was-hidden t)))))))))
4428 (set-buffer-modified-p was-modified)))
4429 ;;;_ > allout-deannotate-hidden (begin end)
4430 (defun allout-deannotate-hidden (begin end)
4431 "Remove allout hidden-text annotation between BEGIN and END."
4433 (allout-unprotected
4434 (let ((inhibit-read-only t)
4435 (buffer-undo-list t))
4436 ;(remove-text-properties begin end '(allout-was-hidden t))
4438 ;;;_ > allout-hide-by-annotation (begin end)
4439 (defun allout-hide-by-annotation (begin end)
4440 "Translate text properties indicating exposure status into actual exposure."
4441 (save-excursion
4442 (goto-char begin)
4443 (let ((was-modified (buffer-modified-p))
4444 done next prev)
4445 (while (not done)
4446 ;; at or advance to start of next annotation:
4447 (if (not (get-text-property (point) 'allout-was-hidden))
4448 (setq next (next-single-char-property-change (point)
4449 'allout-was-hidden
4450 nil end)))
4451 (if (or (not next) (eq prev next))
4452 ;; no more or not advancing -- must not be any left.
4453 (setq done t)
4454 (goto-char next)
4455 (setq prev next)
4456 (if (not (get-text-property (point) 'allout-was-hidden))
4457 ;; still not at start of annotation.
4458 (setq done t)
4459 ;; advance to just after end of this annotation:
4460 (setq next (next-single-char-property-change (point)
4461 'allout-was-hidden
4462 nil end))
4463 (overlay-put (make-overlay prev next)
4464 'category 'allout-exposure-category)
4465 (allout-deannotate-hidden prev next)
4466 (setq prev next)
4467 (if next (goto-char next)))))
4468 (set-buffer-modified-p was-modified))))
4469 ;;;_ > allout-yank-processing ()
4470 (defun allout-yank-processing (&optional arg)
4472 "Incidental allout-specific business to be done just after text yanks.
4474 Does depth adjustment of yanked topics, when:
4476 1 the stuff being yanked starts with a valid outline header prefix, and
4477 2 it is being yanked at the end of a line which consists of only a valid
4478 topic prefix.
4480 Also, adjusts numbering of subsequent siblings when appropriate.
4482 Depth adjustment alters the depth of all the topics being yanked
4483 the amount it takes to make the first topic have the depth of the
4484 header into which it's being yanked.
4486 The point is left in front of yanked, adjusted topics, rather than
4487 at the end (and vice-versa with the mark). Non-adjusted yanks,
4488 however, are left exactly like normal, non-allout-specific yanks."
4490 (interactive "*P")
4491 ; Get to beginning, leaving
4492 ; region around subject:
4493 (if (< (allout-mark-marker t) (point))
4494 (exchange-point-and-mark))
4495 (let* ((subj-beg (point))
4496 (into-bol (bolp))
4497 (subj-end (allout-mark-marker t))
4498 ;; 'resituate' if yanking an entire topic into topic header:
4499 (resituate (and (let ((allout-inhibit-aberrance-doublecheck t))
4500 (allout-e-o-prefix-p))
4501 (looking-at allout-regexp)
4502 (allout-prefix-data)))
4503 ;; `rectify-numbering' if resituating (where several topics may
4504 ;; be resituating) or yanking a topic into a topic slot (bol):
4505 (rectify-numbering (or resituate
4506 (and into-bol (looking-at allout-regexp)))))
4507 (if resituate
4508 ;; Yanking a topic into the start of a topic -- reconcile to fit:
4509 (let* ((inhibit-field-text-motion t)
4510 (prefix-len (if (not (match-end 1))
4512 (- (match-end 1) subj-beg)))
4513 (subj-depth allout-recent-depth)
4514 (prefix-bullet (allout-recent-bullet))
4515 (adjust-to-depth
4516 ;; Nil if adjustment unnecessary, otherwise depth to which
4517 ;; adjustment should be made:
4518 (save-excursion
4519 (and (goto-char subj-end)
4520 (eolp)
4521 (goto-char subj-beg)
4522 (and (looking-at allout-regexp)
4523 (progn
4524 (beginning-of-line)
4525 (not (= (point) subj-beg)))
4526 (looking-at allout-regexp)
4527 (allout-prefix-data))
4528 allout-recent-depth)))
4529 (more t))
4530 (setq rectify-numbering allout-numbered-bullet)
4531 (if adjust-to-depth
4532 ; Do the adjustment:
4533 (progn
4534 (save-restriction
4535 (narrow-to-region subj-beg subj-end)
4536 ; Trim off excessive blank
4537 ; line at end, if any:
4538 (goto-char (point-max))
4539 (if (looking-at "^$")
4540 (allout-unprotected (delete-char -1)))
4541 ; Work backwards, with each
4542 ; shallowest level,
4543 ; successively excluding the
4544 ; last processed topic from
4545 ; the narrow region:
4546 (while more
4547 (allout-back-to-current-heading)
4548 ; go as high as we can in each bunch:
4549 (while (allout-ascend t))
4550 (save-excursion
4551 (allout-unprotected
4552 (allout-rebullet-topic-grunt (- adjust-to-depth
4553 subj-depth)))
4554 (allout-depth))
4555 (if (setq more (not (bobp)))
4556 (progn (widen)
4557 (forward-char -1)
4558 (narrow-to-region subj-beg (point))))))
4559 ;; Preserve new bullet if it's a distinctive one, otherwise
4560 ;; use old one:
4561 (if (string-match (regexp-quote prefix-bullet)
4562 allout-distinctive-bullets-string)
4563 ; Delete from bullet of old to
4564 ; before bullet of new:
4565 (progn
4566 (beginning-of-line)
4567 (allout-unprotected
4568 (delete-region (point) subj-beg))
4569 (set-marker (allout-mark-marker t) subj-end)
4570 (goto-char subj-beg)
4571 (allout-end-of-prefix))
4572 ; Delete base subj prefix,
4573 ; leaving old one:
4574 (allout-unprotected
4575 (progn
4576 (delete-region (point) (+ (point)
4577 prefix-len
4578 (- adjust-to-depth
4579 subj-depth)))
4580 ; and delete residual subj
4581 ; prefix digits and space:
4582 (while (looking-at "[0-9]") (delete-char 1))
4583 (if (looking-at " ") (delete-char 1))))))
4584 (exchange-point-and-mark))))
4585 (if rectify-numbering
4586 (progn
4587 (save-excursion
4588 ; Give some preliminary feedback:
4589 (message "... reconciling numbers")
4590 ; ... and renumber, in case necessary:
4591 (goto-char subj-beg)
4592 (if (allout-goto-prefix-doublechecked)
4593 (allout-unprotected
4594 (allout-rebullet-heading nil ;;; solicit
4595 (allout-depth) ;;; depth
4596 nil ;;; number-control
4597 nil ;;; index
4598 t)))
4599 (message ""))))
4600 (if (or into-bol resituate)
4601 (allout-hide-by-annotation (point) (allout-mark-marker t))
4602 (allout-deannotate-hidden (allout-mark-marker t) (point)))
4603 (if (not resituate)
4604 (exchange-point-and-mark))
4605 (run-hook-with-args 'allout-structure-added-hook subj-beg subj-end)))
4606 ;;;_ > allout-yank (&optional arg)
4607 (defun allout-yank (&optional arg)
4608 "`allout-mode' yank, with depth and numbering adjustment of yanked topics.
4610 Non-topic yanks work no differently than normal yanks.
4612 If a topic is being yanked into a bare topic prefix, the depth of the
4613 yanked topic is adjusted to the depth of the topic prefix.
4615 1 we're yanking in an `allout-mode' buffer
4616 2 the stuff being yanked starts with a valid outline header prefix, and
4617 3 it is being yanked at the end of a line which consists of only a valid
4618 topic prefix.
4620 If these conditions hold then the depth of the yanked topics are all
4621 adjusted the amount it takes to make the first one at the depth of the
4622 header into which it's being yanked.
4624 The point is left in front of yanked, adjusted topics, rather than
4625 at the end (and vice-versa with the mark). Non-adjusted yanks,
4626 however, (ones that don't qualify for adjustment) are handled
4627 exactly like normal yanks.
4629 Numbering of yanked topics, and the successive siblings at the depth
4630 into which they're being yanked, is adjusted.
4632 `allout-yank-pop' works with `allout-yank' just like normal `yank-pop'
4633 works with normal `yank' in non-outline buffers."
4635 (interactive "*P")
4636 (setq this-command 'yank)
4637 (allout-unprotected
4638 (yank arg))
4639 (if (allout-mode-p)
4640 (allout-yank-processing)))
4641 ;;;_ > allout-yank-pop (&optional arg)
4642 (defun allout-yank-pop (&optional arg)
4643 "Yank-pop like `allout-yank' when popping to bare outline prefixes.
4645 Adapts level of popped topics to level of fresh prefix.
4647 Note -- prefix changes to distinctive bullets will stick, if followed
4648 by pops to non-distinctive yanks. Bug..."
4650 (interactive "*p")
4651 (setq this-command 'yank)
4652 (yank-pop arg)
4653 (if (allout-mode-p)
4654 (allout-yank-processing)))
4656 ;;;_ - Specialty bullet functions
4657 ;;;_ : File Cross references
4658 ;;;_ > allout-resolve-xref ()
4659 (defun allout-resolve-xref ()
4660 "Pop to file associated with current heading, if it has an xref bullet.
4662 \(Works according to setting of `allout-file-xref-bullet')."
4663 (interactive)
4664 (if (not allout-file-xref-bullet)
4665 (error
4666 "Outline cross references disabled -- no `allout-file-xref-bullet'")
4667 (if (not (string= (allout-current-bullet) allout-file-xref-bullet))
4668 (error "Current heading lacks cross-reference bullet `%s'"
4669 allout-file-xref-bullet)
4670 (let ((inhibit-field-text-motion t)
4671 file-name)
4672 (save-excursion
4673 (let* ((text-start allout-recent-prefix-end)
4674 (heading-end (progn (end-of-line) (point))))
4675 (goto-char text-start)
4676 (setq file-name
4677 (if (re-search-forward "\\s-\\(\\S-*\\)" heading-end t)
4678 (buffer-substring (match-beginning 1) (match-end 1))))))
4679 (setq file-name (expand-file-name file-name))
4680 (if (or (file-exists-p file-name)
4681 (if (file-writable-p file-name)
4682 (y-or-n-p (format "%s not there, create one? "
4683 file-name))
4684 (error "%s not found and can't be created" file-name)))
4685 (condition-case failure
4686 (find-file-other-window file-name)
4687 (error failure))
4688 (error "%s not found" file-name))
4694 ;;;_ #6 Exposure Control
4696 ;;;_ - Fundamental
4697 ;;;_ > allout-flag-region (from to flag)
4698 (defun allout-flag-region (from to flag)
4699 "Conceal text between FROM and TO if FLAG is non-nil, else reveal it.
4701 Exposure-change hook `allout-exposure-change-hook' is run with the same
4702 arguments as this function, after the exposure changes are made. (The old
4703 `allout-view-change-hook' is being deprecated, and eventually will not be
4704 invoked.)"
4706 ;; We use outline invisibility spec.
4707 (remove-overlays from to 'category 'allout-exposure-category)
4708 (when flag
4709 (let ((o (make-overlay from to)))
4710 (overlay-put o 'category 'allout-exposure-category)
4711 (when (featurep 'xemacs)
4712 (let ((props (symbol-plist 'allout-exposure-category)))
4713 (while props
4714 (overlay-put o (pop props) (pop props)))))))
4715 (run-hooks 'allout-view-change-hook)
4716 (run-hook-with-args 'allout-exposure-change-hook from to flag))
4717 ;;;_ > allout-flag-current-subtree (flag)
4718 (defun allout-flag-current-subtree (flag)
4719 "Conceal currently-visible topic's subtree if FLAG non-nil, else reveal it."
4721 (save-excursion
4722 (allout-back-to-current-heading)
4723 (let ((inhibit-field-text-motion t))
4724 (end-of-line))
4725 (allout-flag-region (point)
4726 ;; Exposing must not leave trailing blanks hidden,
4727 ;; but can leave them exposed when hiding, so we
4728 ;; can use flag's inverse as the
4729 ;; include-trailing-blank cue:
4730 (allout-end-of-current-subtree (not flag))
4731 flag)))
4733 ;;;_ - Topic-specific
4734 ;;;_ > allout-show-entry ()
4735 (defun allout-show-entry ()
4736 "Like `allout-show-current-entry', but reveals entries in hidden topics.
4738 This is a way to give restricted peek at a concealed locality without the
4739 expense of exposing its context, but can leave the outline with aberrant
4740 exposure. `allout-show-offshoot' should be used after the peek to rectify
4741 the exposure."
4743 (interactive)
4744 (save-excursion
4745 (let (beg end)
4746 (allout-goto-prefix-doublechecked)
4747 (setq beg (if (allout-hidden-p) (1- (point)) (point)))
4748 (setq end (allout-pre-next-prefix))
4749 (allout-flag-region beg end nil)
4750 (list beg end))))
4751 ;;;_ > allout-show-children (&optional level strict)
4752 (defun allout-show-children (&optional level strict)
4754 "If point is visible, show all direct subheadings of this heading.
4756 Otherwise, do `allout-show-to-offshoot', and then show subheadings.
4758 Optional LEVEL specifies how many levels below the current level
4759 should be shown, or all levels if t. Default is 1.
4761 Optional STRICT means don't resort to -show-to-offshoot, no matter
4762 what. This is basically so -show-to-offshoot, which is called by
4763 this function, can employ the pure offspring-revealing capabilities of
4766 Returns point at end of subtree that was opened, if any. (May get a
4767 point of non-opened subtree?)"
4769 (interactive "p")
4770 (let ((start-point (point)))
4771 (if (and (not strict)
4772 (allout-hidden-p))
4774 (progn (allout-show-to-offshoot) ; Point's concealed, open to
4775 ; expose it.
4776 ;; Then recurse, but with "strict" set so we don't
4777 ;; infinite regress:
4778 (allout-show-children level t))
4780 (save-excursion
4781 (allout-beginning-of-current-line)
4782 (save-restriction
4783 (let* (depth
4784 ;; translate the level spec for this routine to the ones
4785 ;; used by -chart-subtree and -chart-to-reveal:
4786 (chart-level (cond ((not level) 1)
4787 ((eq level t) nil)
4788 (t level)))
4789 (chart (allout-chart-subtree chart-level))
4790 (to-reveal (or (allout-chart-to-reveal chart chart-level)
4791 ;; interactive, show discontinuous children:
4792 (and chart
4793 (interactive-p)
4794 (save-excursion
4795 (allout-back-to-current-heading)
4796 (setq depth (allout-current-depth))
4797 (and (allout-next-heading)
4798 (> allout-recent-depth
4799 (1+ depth))))
4800 (message
4801 "Discontinuous offspring; use `%s %s'%s."
4802 (substitute-command-keys
4803 "\\[universal-argument]")
4804 (substitute-command-keys
4805 "\\[allout-shift-out]")
4806 " to elevate them.")
4807 (allout-chart-to-reveal
4808 chart (- allout-recent-depth depth))))))
4809 (goto-char start-point)
4810 (when (and strict (allout-hidden-p))
4811 ;; Concealed root would already have been taken care of,
4812 ;; unless strict was set.
4813 (allout-flag-region (point) (allout-snug-back) nil)
4814 (when allout-show-bodies
4815 (goto-char (car to-reveal))
4816 (allout-show-current-entry)))
4817 (while to-reveal
4818 (goto-char (car to-reveal))
4819 (allout-flag-region (save-excursion (allout-snug-back) (point))
4820 (progn (search-forward "\n" nil t)
4821 (1- (point)))
4822 nil)
4823 (when allout-show-bodies
4824 (goto-char (car to-reveal))
4825 (allout-show-current-entry))
4826 (setq to-reveal (cdr to-reveal)))))))
4827 ;; Compensate for `save-excursion's maintenance of point
4828 ;; within invisible text:
4829 (goto-char start-point)))
4830 ;;;_ > allout-show-to-offshoot ()
4831 (defun allout-show-to-offshoot ()
4832 "Like `allout-show-entry', but reveals all concealed ancestors, as well.
4834 Useful for coherently exposing to a random point in a hidden region."
4835 (interactive)
4836 (save-excursion
4837 (let ((inhibit-field-text-motion t)
4838 (orig-pt (point))
4839 (orig-pref (allout-goto-prefix-doublechecked))
4840 (last-at (point))
4841 (bag-it 0))
4842 (while (or (> bag-it 1) (allout-hidden-p))
4843 (while (allout-hidden-p)
4844 (move-beginning-of-line 1)
4845 (if (allout-hidden-p) (forward-char -1)))
4846 (if (= last-at (setq last-at (point)))
4847 ;; Oops, we're not making any progress! Show the current topic
4848 ;; completely, and try one more time here, if we haven't already.
4849 (progn (beginning-of-line)
4850 (allout-show-current-subtree)
4851 (goto-char orig-pt)
4852 (setq bag-it (1+ bag-it))
4853 (if (> bag-it 1)
4854 (error "allout-show-to-offshoot: %s"
4855 "Stumped by aberrant nesting.")))
4856 (if (> bag-it 0) (setq bag-it 0))
4857 (allout-show-children)
4858 (goto-char orig-pref)))
4859 (goto-char orig-pt)))
4860 (if (allout-hidden-p)
4861 (allout-show-entry)))
4862 ;;;_ > allout-hide-current-entry ()
4863 (defun allout-hide-current-entry ()
4864 "Hide the body directly following this heading."
4865 (interactive)
4866 (allout-back-to-current-heading)
4867 (save-excursion
4868 (let ((inhibit-field-text-motion t))
4869 (end-of-line))
4870 (allout-flag-region (point)
4871 (progn (allout-end-of-entry) (point))
4872 t)))
4873 ;;;_ > allout-show-current-entry (&optional arg)
4874 (defun allout-show-current-entry (&optional arg)
4875 "Show body following current heading, or hide entry with universal argument."
4877 (interactive "P")
4878 (if arg
4879 (allout-hide-current-entry)
4880 (save-excursion (allout-show-to-offshoot))
4881 (save-excursion
4882 (allout-flag-region (point)
4883 (progn (allout-end-of-entry t) (point))
4884 nil)
4886 ;;;_ > allout-show-current-subtree (&optional arg)
4887 (defun allout-show-current-subtree (&optional arg)
4888 "Show everything within the current topic.
4889 With a repeat-count, expose this topic and its siblings."
4890 (interactive "P")
4891 (save-excursion
4892 (if (<= (allout-current-depth) 0)
4893 ;; Outside any topics -- try to get to the first:
4894 (if (not (allout-next-heading))
4895 (error "No topics")
4896 ;; got to first, outermost topic -- set to expose it and siblings:
4897 (message "Above outermost topic -- exposing all.")
4898 (allout-flag-region (point-min)(point-max) nil))
4899 (allout-beginning-of-current-line)
4900 (if (not arg)
4901 (allout-flag-current-subtree nil)
4902 (allout-beginning-of-level)
4903 (allout-expose-topic '(* :))))))
4904 ;;;_ > allout-current-topic-collapsed-p (&optional include-single-liners)
4905 (defun allout-current-topic-collapsed-p (&optional include-single-liners)
4906 "True if the currently visible containing topic is already collapsed.
4908 Single line topics intrinsically can be considered as being both
4909 collapsed and uncollapsed. If optional INCLUDE-SINGLE-LINERS is
4910 true, then single-line topics are considered to be collapsed. By
4911 default, they are treated as being uncollapsed."
4912 (save-excursion
4913 (and
4914 ;; Is the topic all on one line (allowing for trailing blank line)?
4915 (>= (progn (allout-back-to-current-heading)
4916 (move-end-of-line 1)
4917 (point))
4918 (allout-end-of-current-subtree (not (looking-at "\n\n"))))
4920 (or include-single-liners
4921 (progn (backward-char 1) (allout-hidden-p))))))
4922 ;;;_ > allout-hide-current-subtree (&optional just-close)
4923 (defun allout-hide-current-subtree (&optional just-close)
4924 "Close the current topic, or containing topic if this one is already closed.
4926 If this topic is closed and it's a top level topic, close this topic
4927 and its siblings.
4929 If optional arg JUST-CLOSE is non-nil, do not close the parent or
4930 siblings, even if the target topic is already closed."
4932 (interactive)
4933 (let* ((from (point))
4934 (sibs-msg "Top-level topic already closed -- closing siblings...")
4935 (current-exposed (not (allout-current-topic-collapsed-p t))))
4936 (cond (current-exposed (allout-flag-current-subtree t))
4937 (just-close nil)
4938 ((allout-ascend) (allout-hide-current-subtree))
4939 (t (goto-char 0)
4940 (message sibs-msg)
4941 (allout-goto-prefix-doublechecked)
4942 (allout-expose-topic '(0 :))
4943 (message (concat sibs-msg " Done."))))
4944 (goto-char from)))
4945 ;;;_ > allout-show-current-branches ()
4946 (defun allout-show-current-branches ()
4947 "Show all subheadings of this heading, but not their bodies."
4948 (interactive)
4949 (let ((inhibit-field-text-motion t))
4950 (beginning-of-line))
4951 (allout-show-children t))
4952 ;;;_ > allout-hide-current-leaves ()
4953 (defun allout-hide-current-leaves ()
4954 "Hide the bodies of the current topic and all its offspring."
4955 (interactive)
4956 (allout-back-to-current-heading)
4957 (allout-hide-region-body (point) (progn (allout-end-of-current-subtree)
4958 (point))))
4960 ;;;_ - Region and beyond
4961 ;;;_ > allout-show-all ()
4962 (defun allout-show-all ()
4963 "Show all of the text in the buffer."
4964 (interactive)
4965 (message "Exposing entire buffer...")
4966 (allout-flag-region (point-min) (point-max) nil)
4967 (message "Exposing entire buffer... Done."))
4968 ;;;_ > allout-hide-bodies ()
4969 (defun allout-hide-bodies ()
4970 "Hide all of buffer except headings."
4971 (interactive)
4972 (allout-hide-region-body (point-min) (point-max)))
4973 ;;;_ > allout-hide-region-body (start end)
4974 (defun allout-hide-region-body (start end)
4975 "Hide all body lines in the region, but not headings."
4976 (save-excursion
4977 (save-restriction
4978 (narrow-to-region start end)
4979 (goto-char (point-min))
4980 (let ((inhibit-field-text-motion t))
4981 (while (not (eobp))
4982 (end-of-line)
4983 (allout-flag-region (point) (allout-end-of-entry) t)
4984 (if (not (eobp))
4985 (forward-char
4986 (if (looking-at "\n\n")
4987 2 1))))))))
4989 ;;;_ > allout-expose-topic (spec)
4990 (defun allout-expose-topic (spec)
4991 "Apply exposure specs to successive outline topic items.
4993 Use the more convenient frontend, `allout-new-exposure', if you don't
4994 need evaluation of the arguments, or even better, the `allout-layout'
4995 variable-keyed mode-activation/auto-exposure feature of allout outline
4996 mode. See the respective documentation strings for more details.
4998 Cursor is left at start position.
5000 SPEC is either a number or a list.
5002 Successive specs on a list are applied to successive sibling topics.
5004 A simple spec (either a number, one of a few symbols, or the null
5005 list) dictates the exposure for the corresponding topic.
5007 Non-null lists recursively designate exposure specs for respective
5008 subtopics of the current topic.
5010 The `:' repeat spec is used to specify exposure for any number of
5011 successive siblings, up to the trailing ones for which there are
5012 explicit specs following the `:'.
5014 Simple (numeric and null-list) specs are interpreted as follows:
5016 Numbers indicate the relative depth to open the corresponding topic.
5017 - negative numbers force the topic to be closed before opening to the
5018 absolute value of the number, so all siblings are open only to
5019 that level.
5020 - positive numbers open to the relative depth indicated by the
5021 number, but do not force already opened subtopics to be closed.
5022 - 0 means to close topic -- hide all offspring.
5023 : - `repeat'
5024 apply prior element to all siblings at current level, *up to*
5025 those siblings that would be covered by specs following the `:'
5026 on the list. Ie, apply to all topics at level but the last
5027 ones. (Only first of multiple colons at same level is
5028 respected -- subsequent ones are discarded.)
5029 * - completely opens the topic, including bodies.
5030 + - shows all the sub headers, but not the bodies
5031 - - exposes the body of the corresponding topic.
5033 Examples:
5034 \(allout-expose-topic '(-1 : 0))
5035 Close this and all following topics at current level, exposing
5036 only their immediate children, but close down the last topic
5037 at this current level completely.
5038 \(allout-expose-topic '(-1 () : 1 0))
5039 Close current topic so only the immediate subtopics are shown;
5040 show the children in the second to last topic, and completely
5041 close the last one.
5042 \(allout-expose-topic '(-2 : -1 *))
5043 Expose children and grandchildren of all topics at current
5044 level except the last two; expose children of the second to
5045 last and completely open the last one."
5047 (interactive "xExposure spec: ")
5048 (if (not (listp spec))
5050 (let ((depth (allout-depth))
5051 (max-pos 0)
5052 prev-elem curr-elem
5053 stay)
5054 (while spec
5055 (setq prev-elem curr-elem
5056 curr-elem (car spec)
5057 spec (cdr spec))
5058 (cond ; Do current element:
5059 ((null curr-elem) nil)
5060 ((symbolp curr-elem)
5061 (cond ((eq curr-elem '*) (allout-show-current-subtree)
5062 (if (> allout-recent-end-of-subtree max-pos)
5063 (setq max-pos allout-recent-end-of-subtree)))
5064 ((eq curr-elem '+)
5065 (if (not (allout-hidden-p))
5066 (save-excursion (allout-hide-current-subtree t)))
5067 (allout-show-current-branches)
5068 (if (> allout-recent-end-of-subtree max-pos)
5069 (setq max-pos allout-recent-end-of-subtree)))
5070 ((eq curr-elem '-) (allout-show-current-entry))
5071 ((eq curr-elem ':)
5072 (setq stay t)
5073 ;; Expand the `repeat' spec to an explicit version,
5074 ;; w.r.t. remaining siblings:
5075 (let ((residue ; = # of sibs not covered by remaining spec
5076 ;; Dang, could be nice to make use of the chart, sigh:
5077 (- (length (allout-chart-siblings))
5078 (length spec))))
5079 (if (< 0 residue)
5080 ;; Some residue -- cover it with prev-elem:
5081 (setq spec (append (make-list residue prev-elem)
5082 spec)))))))
5083 ((numberp curr-elem)
5084 (if (and (>= 0 curr-elem) (not (allout-hidden-p)))
5085 (save-excursion (allout-hide-current-subtree t)
5086 (if (> 0 curr-elem)
5088 (if (> allout-recent-end-of-subtree max-pos)
5089 (setq max-pos
5090 allout-recent-end-of-subtree)))))
5091 (if (> (abs curr-elem) 0)
5092 (progn (allout-show-children (abs curr-elem))
5093 (if (> allout-recent-end-of-subtree max-pos)
5094 (setq max-pos allout-recent-end-of-subtree)))))
5095 ((listp curr-elem)
5096 (if (allout-descend-to-depth (1+ depth))
5097 (let ((got (allout-expose-topic curr-elem)))
5098 (if (and got (> got max-pos)) (setq max-pos got))))))
5099 (cond (stay (setq stay nil))
5100 ((listp (car spec)) nil)
5101 ((> max-pos (point))
5102 ;; Capitalize on max-pos state to get us nearer next sibling:
5103 (progn (goto-char (min (point-max) max-pos))
5104 (allout-next-heading)))
5105 ((allout-next-sibling depth))))
5106 max-pos)))
5107 ;;;_ > allout-old-expose-topic (spec &rest followers)
5108 (defun allout-old-expose-topic (spec &rest followers)
5110 "Deprecated. Use `allout-expose-topic' (with different schema
5111 format) instead.
5113 Dictate wholesale exposure scheme for current topic, according to SPEC.
5115 SPEC is either a number or a list. Optional successive args
5116 dictate exposure for subsequent siblings of current topic.
5118 A simple spec (either a number, a special symbol, or the null list)
5119 dictates the overall exposure for a topic. Non null lists are
5120 composite specs whose first element dictates the overall exposure for
5121 a topic, with the subsequent elements in the list interpreted as specs
5122 that dictate the exposure for the successive offspring of the topic.
5124 Simple (numeric and null-list) specs are interpreted as follows:
5126 - Numbers indicate the relative depth to open the corresponding topic:
5127 - negative numbers force the topic to be close before opening to the
5128 absolute value of the number.
5129 - positive numbers just open to the relative depth indicated by the number.
5130 - 0 just closes
5131 - `*' completely opens the topic, including bodies.
5132 - `+' shows all the sub headers, but not the bodies
5133 - `-' exposes the body and immediate offspring of the corresponding topic.
5135 If the spec is a list, the first element must be a number, which
5136 dictates the exposure depth of the topic as a whole. Subsequent
5137 elements of the list are nested SPECs, dictating the specific exposure
5138 for the corresponding offspring of the topic.
5140 Optional FOLLOWERS arguments dictate exposure for succeeding siblings."
5142 (interactive "xExposure spec: ")
5143 (let ((inhibit-field-text-motion t)
5144 (depth (allout-current-depth))
5145 max-pos)
5146 (cond ((null spec) nil)
5147 ((symbolp spec)
5148 (if (eq spec '*) (allout-show-current-subtree))
5149 (if (eq spec '+) (allout-show-current-branches))
5150 (if (eq spec '-) (allout-show-current-entry)))
5151 ((numberp spec)
5152 (if (>= 0 spec)
5153 (save-excursion (allout-hide-current-subtree t)
5154 (end-of-line)
5155 (if (or (not max-pos)
5156 (> (point) max-pos))
5157 (setq max-pos (point)))
5158 (if (> 0 spec)
5159 (setq spec (* -1 spec)))))
5160 (if (> spec 0)
5161 (allout-show-children spec)))
5162 ((listp spec)
5163 ;(let ((got (allout-old-expose-topic (car spec))))
5164 ; (if (and got (or (not max-pos) (> got max-pos)))
5165 ; (setq max-pos got)))
5166 (let ((new-depth (+ (allout-current-depth) 1))
5167 got)
5168 (setq max-pos (allout-old-expose-topic (car spec)))
5169 (setq spec (cdr spec))
5170 (if (and spec
5171 (allout-descend-to-depth new-depth)
5172 (not (allout-hidden-p)))
5173 (progn (setq got (apply 'allout-old-expose-topic spec))
5174 (if (and got (or (not max-pos) (> got max-pos)))
5175 (setq max-pos got)))))))
5176 (while (and followers
5177 (progn (if (and max-pos (< (point) max-pos))
5178 (progn (goto-char max-pos)
5179 (setq max-pos nil)))
5180 (end-of-line)
5181 (allout-next-sibling depth)))
5182 (allout-old-expose-topic (car followers))
5183 (setq followers (cdr followers)))
5184 max-pos))
5185 ;;;_ > allout-new-exposure '()
5186 (defmacro allout-new-exposure (&rest spec)
5187 "Literal frontend for `allout-expose-topic', doesn't evaluate arguments.
5188 Some arguments that would need to be quoted in `allout-expose-topic'
5189 need not be quoted in `allout-new-exposure'.
5191 Cursor is left at start position.
5193 Use this instead of obsolete `allout-exposure'.
5195 Examples:
5196 \(allout-new-exposure (-1 () () () 1) 0)
5197 Close current topic at current level so only the immediate
5198 subtopics are shown, except also show the children of the
5199 third subtopic; and close the next topic at the current level.
5200 \(allout-new-exposure : -1 0)
5201 Close all topics at current level to expose only their
5202 immediate children, except for the last topic at the current
5203 level, in which even its immediate children are hidden.
5204 \(allout-new-exposure -2 : -1 *)
5205 Expose children and grandchildren of first topic at current
5206 level, and expose children of subsequent topics at current
5207 level *except* for the last, which should be opened completely."
5208 (list 'save-excursion
5209 '(if (not (or (allout-goto-prefix-doublechecked)
5210 (allout-next-heading)))
5211 (error "allout-new-exposure: Can't find any outline topics"))
5212 (list 'allout-expose-topic (list 'quote spec))))
5214 ;;;_ #7 Systematic outline presentation -- copying, printing, flattening
5216 ;;;_ - Mapping and processing of topics
5217 ;;;_ ( See also Subtree Charting, in Navigation code.)
5218 ;;;_ > allout-stringify-flat-index (flat-index)
5219 (defun allout-stringify-flat-index (flat-index &optional context)
5220 "Convert list representing section/subsection/... to document string.
5222 Optional arg CONTEXT indicates interior levels to include."
5223 (let ((delim ".")
5224 result
5225 numstr
5226 (context-depth (or (and context 2) 1)))
5227 ;; Take care of the explicit context:
5228 (while (> context-depth 0)
5229 (setq numstr (int-to-string (car flat-index))
5230 flat-index (cdr flat-index)
5231 result (if flat-index
5232 (cons delim (cons numstr result))
5233 (cons numstr result))
5234 context-depth (if flat-index (1- context-depth) 0)))
5235 (setq delim " ")
5236 ;; Take care of the indentation:
5237 (if flat-index
5238 (progn
5239 (while flat-index
5240 (setq result
5241 (cons delim
5242 (cons (make-string
5243 (1+ (truncate (if (zerop (car flat-index))
5245 (log10 (car flat-index)))))
5247 result)))
5248 (setq flat-index (cdr flat-index)))
5249 ;; Dispose of single extra delim:
5250 (setq result (cdr result))))
5251 (apply 'concat result)))
5252 ;;;_ > allout-stringify-flat-index-plain (flat-index)
5253 (defun allout-stringify-flat-index-plain (flat-index)
5254 "Convert list representing section/subsection/... to document string."
5255 (let ((delim ".")
5256 result)
5257 (while flat-index
5258 (setq result (cons (int-to-string (car flat-index))
5259 (if result
5260 (cons delim result))))
5261 (setq flat-index (cdr flat-index)))
5262 (apply 'concat result)))
5263 ;;;_ > allout-stringify-flat-index-indented (flat-index)
5264 (defun allout-stringify-flat-index-indented (flat-index)
5265 "Convert list representing section/subsection/... to document string."
5266 (let ((delim ".")
5267 result
5268 numstr)
5269 ;; Take care of the explicit context:
5270 (setq numstr (int-to-string (car flat-index))
5271 flat-index (cdr flat-index)
5272 result (if flat-index
5273 (cons delim (cons numstr result))
5274 (cons numstr result)))
5275 (setq delim " ")
5276 ;; Take care of the indentation:
5277 (if flat-index
5278 (progn
5279 (while flat-index
5280 (setq result
5281 (cons delim
5282 (cons (make-string
5283 (1+ (truncate (if (zerop (car flat-index))
5285 (log10 (car flat-index)))))
5287 result)))
5288 (setq flat-index (cdr flat-index)))
5289 ;; Dispose of single extra delim:
5290 (setq result (cdr result))))
5291 (apply 'concat result)))
5292 ;;;_ > allout-listify-exposed (&optional start end format)
5293 (defun allout-listify-exposed (&optional start end format)
5295 "Produce a list representing exposed topics in current region.
5297 This list can then be used by `allout-process-exposed' to manipulate
5298 the subject region.
5300 Optional START and END indicate bounds of region.
5302 Optional arg, FORMAT, designates an alternate presentation form for
5303 the prefix:
5305 list -- Present prefix as numeric section.subsection..., starting with
5306 section indicated by the list, innermost nesting first.
5307 `indent' (symbol) -- Convert header prefixes to all white space,
5308 except for distinctive bullets.
5310 The elements of the list produced are lists that represents a topic
5311 header and body. The elements of that list are:
5313 - a number representing the depth of the topic,
5314 - a string representing the header-prefix, including trailing whitespace and
5315 bullet.
5316 - a string representing the bullet character,
5317 - and a series of strings, each containing one line of the exposed
5318 portion of the topic entry."
5320 (interactive "r")
5321 (save-excursion
5322 (let*
5323 ((inhibit-field-text-motion t)
5324 ;; state vars:
5325 strings prefix result depth new-depth out gone-out bullet beg
5326 next done)
5328 (goto-char start)
5329 (beginning-of-line)
5330 ;; Goto initial topic, and register preceeding stuff, if any:
5331 (if (> (allout-goto-prefix-doublechecked) start)
5332 ;; First topic follows beginning point -- register preliminary stuff:
5333 (setq result (list (list 0 "" nil
5334 (buffer-substring start (1- (point)))))))
5335 (while (and (not done)
5336 (not (eobp)) ; Loop until we've covered the region.
5337 (not (> (point) end)))
5338 (setq depth allout-recent-depth ; Current topics depth,
5339 bullet (allout-recent-bullet) ; ... bullet,
5340 prefix (allout-recent-prefix)
5341 beg (progn (allout-end-of-prefix t) (point))) ; and beginning.
5342 (setq done ; The boundary for the current topic:
5343 (not (allout-next-visible-heading 1)))
5344 (setq new-depth allout-recent-depth)
5345 (setq gone-out out
5346 out (< new-depth depth))
5347 (beginning-of-line)
5348 (setq next (point))
5349 (goto-char beg)
5350 (setq strings nil)
5351 (while (> next (point)) ; Get all the exposed text in
5352 (setq strings
5353 (cons (buffer-substring
5355 ;To hidden text or end of line:
5356 (progn
5357 (end-of-line)
5358 (allout-back-to-visible-text)))
5359 strings))
5360 (when (< (point) next) ; Resume from after hid text, if any.
5361 (line-move 1)
5362 (beginning-of-line))
5363 (setq beg (point)))
5364 ;; Accumulate list for this topic:
5365 (setq strings (nreverse strings))
5366 (setq result
5367 (cons
5368 (if format
5369 (let ((special (if (string-match
5370 (regexp-quote bullet)
5371 allout-distinctive-bullets-string)
5372 bullet)))
5373 (cond ((listp format)
5374 (list depth
5375 (if allout-abbreviate-flattened-numbering
5376 (allout-stringify-flat-index format
5377 gone-out)
5378 (allout-stringify-flat-index-plain
5379 format))
5380 strings
5381 special))
5382 ((eq format 'indent)
5383 (if special
5384 (list depth
5385 (concat (make-string (1+ depth) ? )
5386 (substring prefix -1))
5387 strings)
5388 (list depth
5389 (make-string depth ? )
5390 strings)))
5391 (t (error "allout-listify-exposed: %s %s"
5392 "invalid format" format))))
5393 (list depth prefix strings))
5394 result))
5395 ;; Reasses format, if any:
5396 (if (and format (listp format))
5397 (cond ((= new-depth depth)
5398 (setq format (cons (1+ (car format))
5399 (cdr format))))
5400 ((> new-depth depth) ; descending -- assume by 1:
5401 (setq format (cons 1 format)))
5403 ; Pop the residue:
5404 (while (< new-depth depth)
5405 (setq format (cdr format))
5406 (setq depth (1- depth)))
5407 ; And increment the current one:
5408 (setq format
5409 (cons (1+ (or (car format)
5410 -1))
5411 (cdr format)))))))
5412 ;; Put the list with first at front, to last at back:
5413 (nreverse result))))
5414 ;;;_ > my-region-active-p ()
5415 (defmacro my-region-active-p ()
5416 (if (fboundp 'region-active-p)
5417 '(region-active-p)
5418 'mark-active))
5419 ;;;_ > allout-process-exposed (&optional func from to frombuf
5420 ;;; tobuf format)
5421 (defun allout-process-exposed (&optional func from to frombuf tobuf
5422 format start-num)
5423 "Map function on exposed parts of current topic; results to another buffer.
5425 All args are options; default values itemized below.
5427 Apply FUNCTION to exposed portions FROM position TO position in buffer
5428 FROMBUF to buffer TOBUF. Sixth optional arg, FORMAT, designates an
5429 alternate presentation form:
5431 `flat' -- Present prefix as numeric section.subsection..., starting with
5432 section indicated by the START-NUM, innermost nesting first.
5433 X`flat-indented' -- Prefix is like `flat' for first topic at each
5434 X level, but subsequent topics have only leaf topic
5435 X number, padded with blanks to line up with first.
5436 `indent' (symbol) -- Convert header prefixes to all white space,
5437 except for distinctive bullets.
5439 Defaults:
5440 FUNCTION: `allout-insert-listified'
5441 FROM: region start, if region active, else start of buffer
5442 TO: region end, if region active, else end of buffer
5443 FROMBUF: current buffer
5444 TOBUF: buffer name derived: \"*current-buffer-name exposed*\"
5445 FORMAT: nil"
5447 ; Resolve arguments,
5448 ; defaulting if necessary:
5449 (if (not func) (setq func 'allout-insert-listified))
5450 (if (not (and from to))
5451 (if (my-region-active-p)
5452 (setq from (region-beginning) to (region-end))
5453 (setq from (point-min) to (point-max))))
5454 (if frombuf
5455 (if (not (bufferp frombuf))
5456 ;; Specified but not a buffer -- get it:
5457 (let ((got (get-buffer frombuf)))
5458 (if (not got)
5459 (error (concat "allout-process-exposed: source buffer "
5460 frombuf
5461 " not found."))
5462 (setq frombuf got))))
5463 ;; not specified -- default it:
5464 (setq frombuf (current-buffer)))
5465 (if tobuf
5466 (if (not (bufferp tobuf))
5467 (setq tobuf (get-buffer-create tobuf)))
5468 ;; not specified -- default it:
5469 (setq tobuf (concat "*" (buffer-name frombuf) " exposed*")))
5470 (if (listp format)
5471 (nreverse format))
5473 (let* ((listified
5474 (progn (set-buffer frombuf)
5475 (allout-listify-exposed from to format))))
5476 (set-buffer tobuf)
5477 (mapcar func listified)
5478 (pop-to-buffer tobuf)))
5480 ;;;_ - Copy exposed
5481 ;;;_ > allout-insert-listified (listified)
5482 (defun allout-insert-listified (listified)
5483 "Insert contents of listified outline portion in current buffer.
5485 LISTIFIED is a list representing each topic header and body:
5487 \`(depth prefix text)'
5489 or \`(depth prefix text bullet-plus)'
5491 If `bullet-plus' is specified, it is inserted just after the entire prefix."
5492 (setq listified (cdr listified))
5493 (let ((prefix (prog1
5494 (car listified)
5495 (setq listified (cdr listified))))
5496 (text (prog1
5497 (car listified)
5498 (setq listified (cdr listified))))
5499 (bullet-plus (car listified)))
5500 (insert prefix)
5501 (if bullet-plus (insert (concat " " bullet-plus)))
5502 (while text
5503 (insert (car text))
5504 (if (setq text (cdr text))
5505 (insert "\n")))
5506 (insert "\n")))
5507 ;;;_ > allout-copy-exposed-to-buffer (&optional arg tobuf format)
5508 (defun allout-copy-exposed-to-buffer (&optional arg tobuf format)
5509 "Duplicate exposed portions of current outline to another buffer.
5511 Other buffer has current buffers name with \" exposed\" appended to it.
5513 With repeat count, copy the exposed parts of only the current topic.
5515 Optional second arg TOBUF is target buffer name.
5517 Optional third arg FORMAT, if non-nil, symbolically designates an
5518 alternate presentation format for the outline:
5520 `flat' - Convert topic header prefixes to numeric
5521 section.subsection... identifiers.
5522 `indent' - Convert header prefixes to all white space, except for
5523 distinctive bullets.
5524 `indent-flat' - The best of both - only the first of each level has
5525 the full path, the rest have only the section number
5526 of the leaf, preceded by the right amount of indentation."
5528 (interactive "P")
5529 (if (not tobuf)
5530 (setq tobuf (get-buffer-create (concat "*" (buffer-name) " exposed*"))))
5531 (let* ((start-pt (point))
5532 (beg (if arg (allout-back-to-current-heading) (point-min)))
5533 (end (if arg (allout-end-of-current-subtree) (point-max)))
5534 (buf (current-buffer))
5535 (start-list ()))
5536 (if (eq format 'flat)
5537 (setq format (if arg (save-excursion
5538 (goto-char beg)
5539 (allout-topic-flat-index))
5540 '(1))))
5541 (save-excursion (set-buffer tobuf)(erase-buffer))
5542 (allout-process-exposed 'allout-insert-listified
5545 (current-buffer)
5546 tobuf
5547 format start-list)
5548 (goto-char (point-min))
5549 (pop-to-buffer buf)
5550 (goto-char start-pt)))
5551 ;;;_ > allout-flatten-exposed-to-buffer (&optional arg tobuf)
5552 (defun allout-flatten-exposed-to-buffer (&optional arg tobuf)
5553 "Present numeric outline of outline's exposed portions in another buffer.
5555 The resulting outline is not compatible with outline mode -- use
5556 `allout-copy-exposed-to-buffer' if you want that.
5558 Use `allout-indented-exposed-to-buffer' for indented presentation.
5560 With repeat count, copy the exposed portions of only current topic.
5562 Other buffer has current buffer's name with \" exposed\" appended to
5563 it, unless optional second arg TOBUF is specified, in which case it is
5564 used verbatim."
5565 (interactive "P")
5566 (allout-copy-exposed-to-buffer arg tobuf 'flat))
5567 ;;;_ > allout-indented-exposed-to-buffer (&optional arg tobuf)
5568 (defun allout-indented-exposed-to-buffer (&optional arg tobuf)
5569 "Present indented outline of outline's exposed portions in another buffer.
5571 The resulting outline is not compatible with outline mode -- use
5572 `allout-copy-exposed-to-buffer' if you want that.
5574 Use `allout-flatten-exposed-to-buffer' for numeric sectional presentation.
5576 With repeat count, copy the exposed portions of only current topic.
5578 Other buffer has current buffer's name with \" exposed\" appended to
5579 it, unless optional second arg TOBUF is specified, in which case it is
5580 used verbatim."
5581 (interactive "P")
5582 (allout-copy-exposed-to-buffer arg tobuf 'indent))
5584 ;;;_ - LaTeX formatting
5585 ;;;_ > allout-latex-verb-quote (string &optional flow)
5586 (defun allout-latex-verb-quote (string &optional flow)
5587 "Return copy of STRING for literal reproduction across LaTeX processing.
5588 Expresses the original characters (including carriage returns) of the
5589 string across LaTeX processing."
5590 (mapconcat (function
5591 (lambda (char)
5592 (cond ((memq char '(?\\ ?$ ?% ?# ?& ?{ ?} ?_ ?^ ?- ?*))
5593 (concat "\\char" (number-to-string char) "{}"))
5594 ((= char ?\n) "\\\\")
5595 (t (char-to-string char)))))
5596 string
5597 ""))
5598 ;;;_ > allout-latex-verbatim-quote-curr-line ()
5599 (defun allout-latex-verbatim-quote-curr-line ()
5600 "Express line for exact (literal) representation across LaTeX processing.
5602 Adjust line contents so it is unaltered (from the original line)
5603 across LaTeX processing, within the context of a `verbatim'
5604 environment. Leaves point at the end of the line."
5605 (let ((inhibit-field-text-motion t))
5606 (beginning-of-line)
5607 (let ((beg (point))
5608 (end (progn (end-of-line)(point))))
5609 (goto-char beg)
5610 (while (re-search-forward "\\\\"
5611 ;;"\\\\\\|\\{\\|\\}\\|\\_\\|\\$\\|\\\"\\|\\&\\|\\^\\|\\-\\|\\*\\|#"
5612 end ; bounded by end-of-line
5613 1) ; no matches, move to end & return nil
5614 (goto-char (match-beginning 2))
5615 (insert "\\")
5616 (setq end (1+ end))
5617 (goto-char (1+ (match-end 2)))))))
5618 ;;;_ > allout-insert-latex-header (buffer)
5619 (defun allout-insert-latex-header (buffer)
5620 "Insert initial LaTeX commands at point in BUFFER."
5621 ;; Much of this is being derived from the stuff in appendix of E in
5622 ;; the TeXBook, pg 421.
5623 (set-buffer buffer)
5624 (let ((doc-style (format "\n\\documentstyle{%s}\n"
5625 "report"))
5626 (page-numbering (if allout-number-pages
5627 "\\pagestyle{empty}\n"
5628 ""))
5629 (titlecmd (format "\\newcommand{\\titlecmd}[1]{{%s #1}}\n"
5630 allout-title-style))
5631 (labelcmd (format "\\newcommand{\\labelcmd}[1]{{%s #1}}\n"
5632 allout-label-style))
5633 (headlinecmd (format "\\newcommand{\\headlinecmd}[1]{{%s #1}}\n"
5634 allout-head-line-style))
5635 (bodylinecmd (format "\\newcommand{\\bodylinecmd}[1]{{%s #1}}\n"
5636 allout-body-line-style))
5637 (setlength (format "%s%s%s%s"
5638 "\\newlength{\\stepsize}\n"
5639 "\\setlength{\\stepsize}{"
5640 allout-indent
5641 "}\n"))
5642 (oneheadline (format "%s%s%s%s%s%s%s"
5643 "\\newcommand{\\OneHeadLine}[3]{%\n"
5644 "\\noindent%\n"
5645 "\\hspace*{#2\\stepsize}%\n"
5646 "\\labelcmd{#1}\\hspace*{.2cm}"
5647 "\\headlinecmd{#3}\\\\["
5648 allout-line-skip
5649 "]\n}\n"))
5650 (onebodyline (format "%s%s%s%s%s%s"
5651 "\\newcommand{\\OneBodyLine}[2]{%\n"
5652 "\\noindent%\n"
5653 "\\hspace*{#1\\stepsize}%\n"
5654 "\\bodylinecmd{#2}\\\\["
5655 allout-line-skip
5656 "]\n}\n"))
5657 (begindoc "\\begin{document}\n\\begin{center}\n")
5658 (title (format "%s%s%s%s"
5659 "\\titlecmd{"
5660 (allout-latex-verb-quote (if allout-title
5661 (condition-case nil
5662 (eval allout-title)
5663 (error "<unnamed buffer>"))
5664 "Unnamed Outline"))
5665 "}\n"
5666 "\\end{center}\n\n"))
5667 (hsize "\\hsize = 7.5 true in\n")
5668 (hoffset "\\hoffset = -1.5 true in\n")
5669 (vspace "\\vspace{.1cm}\n\n"))
5670 (insert (concat doc-style
5671 page-numbering
5672 titlecmd
5673 labelcmd
5674 headlinecmd
5675 bodylinecmd
5676 setlength
5677 oneheadline
5678 onebodyline
5679 begindoc
5680 title
5681 hsize
5682 hoffset
5683 vspace)
5685 ;;;_ > allout-insert-latex-trailer (buffer)
5686 (defun allout-insert-latex-trailer (buffer)
5687 "Insert concluding LaTeX commands at point in BUFFER."
5688 (set-buffer buffer)
5689 (insert "\n\\end{document}\n"))
5690 ;;;_ > allout-latexify-one-item (depth prefix bullet text)
5691 (defun allout-latexify-one-item (depth prefix bullet text)
5692 "Insert LaTeX commands for formatting one outline item.
5694 Args are the topics numeric DEPTH, the header PREFIX lead string, the
5695 BULLET string, and a list of TEXT strings for the body."
5696 (let* ((head-line (if text (car text)))
5697 (body-lines (cdr text))
5698 (curr-line)
5699 body-content bop)
5700 ; Do the head line:
5701 (insert (concat "\\OneHeadLine{\\verb\1 "
5702 (allout-latex-verb-quote bullet)
5703 "\1}{"
5704 depth
5705 "}{\\verb\1 "
5706 (if head-line
5707 (allout-latex-verb-quote head-line)
5709 "\1}\n"))
5710 (if (not body-lines)
5712 ;;(insert "\\beginlines\n")
5713 (insert "\\begin{verbatim}\n")
5714 (while body-lines
5715 (setq curr-line (car body-lines))
5716 (if (and (not body-content)
5717 (not (string-match "^\\s-*$" curr-line)))
5718 (setq body-content t))
5719 ; Mangle any occurrences of
5720 ; "\end{verbatim}" in text,
5721 ; it's special:
5722 (if (and body-content
5723 (setq bop (string-match "\\end{verbatim}" curr-line)))
5724 (setq curr-line (concat (substring curr-line 0 bop)
5726 (substring curr-line bop))))
5727 ;;(insert "|" (car body-lines) "|")
5728 (insert curr-line)
5729 (allout-latex-verbatim-quote-curr-line)
5730 (insert "\n")
5731 (setq body-lines (cdr body-lines)))
5732 (if body-content
5733 (setq body-content nil)
5734 (forward-char -1)
5735 (insert "\\ ")
5736 (forward-char 1))
5737 ;;(insert "\\endlines\n")
5738 (insert "\\end{verbatim}\n")
5740 ;;;_ > allout-latexify-exposed (arg &optional tobuf)
5741 (defun allout-latexify-exposed (arg &optional tobuf)
5742 "Format current topics exposed portions to TOBUF for LaTeX processing.
5743 TOBUF defaults to a buffer named the same as the current buffer, but
5744 with \"*\" prepended and \" latex-formed*\" appended.
5746 With repeat count, copy the exposed portions of entire buffer."
5748 (interactive "P")
5749 (if (not tobuf)
5750 (setq tobuf
5751 (get-buffer-create (concat "*" (buffer-name) " latexified*"))))
5752 (let* ((start-pt (point))
5753 (beg (if arg (point-min) (allout-back-to-current-heading)))
5754 (end (if arg (point-max) (allout-end-of-current-subtree)))
5755 (buf (current-buffer)))
5756 (set-buffer tobuf)
5757 (erase-buffer)
5758 (allout-insert-latex-header tobuf)
5759 (goto-char (point-max))
5760 (allout-process-exposed 'allout-latexify-one-item
5764 tobuf)
5765 (goto-char (point-max))
5766 (allout-insert-latex-trailer tobuf)
5767 (goto-char (point-min))
5768 (pop-to-buffer buf)
5769 (goto-char start-pt)))
5771 ;;;_ #8 Encryption
5772 ;;;_ > allout-toggle-current-subtree-encryption (&optional fetch-pass)
5773 (defun allout-toggle-current-subtree-encryption (&optional fetch-pass)
5774 "Encrypt clear or decrypt encoded text of visibly-containing topic's contents.
5776 Optional FETCH-PASS universal argument provokes key-pair encryption with
5777 single universal argument. With doubled universal argument (value = 16),
5778 it forces prompting for the passphrase regardless of availability from the
5779 passphrase cache. With no universal argument, the appropriate passphrase
5780 is obtained from the cache, if available, else from the user.
5782 Only GnuPG encryption is supported.
5784 \*NOTE WELL* that the encrypted text must be ascii-armored. For gnupg
5785 encryption, include the option ``armor'' in your ~/.gnupg/gpg.conf file.
5787 Both symmetric-key and key-pair encryption is implemented. Symmetric is
5788 the default, use a single (x4) universal argument for keypair mode.
5790 Encrypted topic's bullet is set to a `~' to signal that the contents of the
5791 topic (body and subtopics, but not heading) is pending encryption or
5792 encrypted. `*' asterisk immediately after the bullet signals that the body
5793 is encrypted, its' absence means the topic is meant to be encrypted but is
5794 not. When a file with topics pending encryption is saved, topics pending
5795 encryption are encrypted. See allout-encrypt-unencrypted-on-saves for
5796 auto-encryption specifics.
5798 \*NOTE WELL* that automatic encryption that happens during saves will
5799 default to symmetric encryption -- you must deliberately (re)encrypt key-pair
5800 encrypted topics if you want them to continue to use the key-pair cipher.
5802 Level-one topics, with prefix consisting solely of an `*' asterisk, cannot be
5803 encrypted. If you want to encrypt the contents of a top-level topic, use
5804 \\[allout-shift-in] to increase its depth.
5806 Passphrase Caching
5808 The encryption passphrase is solicited if not currently available in the
5809 passphrase cache from a recent encryption action.
5811 The solicited passphrase is retained for reuse in a cache, if enabled. See
5812 `pgg-cache-passphrase' and `pgg-passphrase-cache-expiry' for details.
5814 Symmetric Passphrase Hinting and Verification
5816 If the file previously had no associated passphrase, or had a different
5817 passphrase than specified, the user is prompted to repeat the new one for
5818 corroboration. A random string encrypted by the new passphrase is set on
5819 the buffer-specific variable `allout-passphrase-verifier-string', for
5820 confirmation of the passphrase when next obtained, before encrypting or
5821 decrypting anything with it. This helps avoid mistakenly shifting between
5822 keys.
5824 If allout customization var `allout-passphrase-verifier-handling' is
5825 non-nil, an entry for `allout-passphrase-verifier-string' and its value is
5826 added to an Emacs 'local variables' section at the end of the file, which
5827 is created if necessary. That setting is for retention of the passphrase
5828 verifier across Emacs sessions.
5830 Similarly, `allout-passphrase-hint-string' stores a user-provided reminder
5831 about their passphrase, and `allout-passphrase-hint-handling' specifies
5832 when the hint is presented, or if passphrase hints are disabled. If
5833 enabled (see the `allout-passphrase-hint-handling' docstring for details),
5834 the hint string is stored in the local-variables section of the file, and
5835 solicited whenever the passphrase is changed."
5836 (interactive "P")
5837 (save-excursion
5838 (allout-back-to-current-heading)
5839 (allout-toggle-subtree-encryption fetch-pass)
5842 ;;;_ > allout-toggle-subtree-encryption (&optional fetch-pass)
5843 (defun allout-toggle-subtree-encryption (&optional fetch-pass)
5844 "Encrypt clear text or decrypt encoded topic contents (body and subtopics.)
5846 Optional FETCH-PASS universal argument provokes key-pair encryption with
5847 single universal argument. With doubled universal argument (value = 16),
5848 it forces prompting for the passphrase regardless of availability from the
5849 passphrase cache. With no universal argument, the appropriate passphrase
5850 is obtained from the cache, if available, else from the user.
5852 Currently only GnuPG encryption is supported, and integration
5853 with gpg-agent is not yet implemented.
5855 \**NOTE WELL** that the encrypted text must be ascii-armored. For gnupg
5856 encryption, include the option ``armor'' in your ~/.gnupg/gpg.conf file.
5858 See `allout-toggle-current-subtree-encryption' for more details."
5860 (interactive "P")
5861 (save-excursion
5862 (allout-end-of-prefix t)
5864 (if (= allout-recent-depth 1)
5865 (error (concat "Cannot encrypt or decrypt level 1 topics -"
5866 " shift it in to make it encryptable")))
5868 (let* ((allout-buffer (current-buffer))
5869 ;; Assess location:
5870 (bullet-pos allout-recent-prefix-beginning)
5871 (after-bullet-pos (point))
5872 (was-encrypted
5873 (progn (if (= (point-max) after-bullet-pos)
5874 (error "no body to encrypt"))
5875 (allout-encrypted-topic-p)))
5876 (was-collapsed (if (not (search-forward "\n" nil t))
5878 (backward-char 1)
5879 (allout-hidden-p)))
5880 (subtree-beg (1+ (point)))
5881 (subtree-end (allout-end-of-subtree))
5882 (subject-text (buffer-substring-no-properties subtree-beg
5883 subtree-end))
5884 (subtree-end-char (char-after (1- subtree-end)))
5885 (subtree-trailing-char (char-after subtree-end))
5886 ;; kluge -- result-text needs to be nil, but we also want to
5887 ;; check for the error condition
5888 (result-text (if (or (string= "" subject-text)
5889 (string= "\n" subject-text))
5890 (error "No topic contents to %scrypt"
5891 (if was-encrypted "de" "en"))
5892 nil))
5893 ;; Assess key parameters:
5894 (key-info (or
5895 ;; detect the type by which it is already encrypted
5896 (and was-encrypted
5897 (allout-encrypted-key-info subject-text))
5898 (and (member fetch-pass '(4 (4)))
5899 '(keypair nil))
5900 '(symmetric nil)))
5901 (for-key-type (car key-info))
5902 (for-key-identity (cadr key-info))
5903 (fetch-pass (and fetch-pass (member fetch-pass '(16 (16)))))
5904 (was-coding-system buffer-file-coding-system))
5906 (when (not was-encrypted)
5907 ;; ensure that non-ascii chars pending encryption are noticed before
5908 ;; they're encrypted, so the coding system is set to accomodate
5909 ;; them.
5910 (setq buffer-file-coding-system
5911 (select-safe-coding-system subtree-beg subtree-end))
5912 ;; if the coding system for the text being encrypted is different
5913 ;; than that prevailing, then there a real risk that the coding
5914 ;; system can't be noticed by emacs when the file is visited. to
5915 ;; mitigate that, offer to preserve the coding system using a file
5916 ;; local variable.
5917 (if (and (not (equal buffer-file-coding-system
5918 was-coding-system))
5919 (yes-or-no-p
5920 (format (concat "Register coding system %s as file local"
5921 " var? Necessary when only encrypted text"
5922 " is in that coding system. ")
5923 buffer-file-coding-system)))
5924 (allout-adjust-file-variable "buffer-file-coding-system"
5925 buffer-file-coding-system)))
5927 (setq result-text
5928 (allout-encrypt-string subject-text was-encrypted
5929 (current-buffer)
5930 for-key-type for-key-identity fetch-pass))
5932 ;; Replace the subtree with the processed product.
5933 (allout-unprotected
5934 (progn
5935 (set-buffer allout-buffer)
5936 (delete-region subtree-beg subtree-end)
5937 (insert result-text)
5938 (if was-collapsed
5939 (allout-flag-region (1- subtree-beg) (point) t))
5940 ;; adjust trailing-blank-lines to preserve topic spacing:
5941 (if (not was-encrypted)
5942 (if (and (= subtree-end-char ?\n)
5943 (= subtree-trailing-char ?\n))
5944 (insert subtree-trailing-char)))
5945 ;; Ensure that the item has an encrypted-entry bullet:
5946 (if (not (string= (buffer-substring-no-properties
5947 (1- after-bullet-pos) after-bullet-pos)
5948 allout-topic-encryption-bullet))
5949 (progn (goto-char (1- after-bullet-pos))
5950 (delete-char 1)
5951 (insert allout-topic-encryption-bullet)))
5952 (if was-encrypted
5953 ;; Remove the is-encrypted bullet qualifier:
5954 (progn (goto-char after-bullet-pos)
5955 (delete-char 1))
5956 ;; Add the is-encrypted bullet qualifier:
5957 (goto-char after-bullet-pos)
5958 (insert "*"))))
5959 (run-hook-with-args 'allout-structure-added-hook
5960 bullet-pos subtree-end))))
5961 ;;;_ > allout-encrypt-string (text decrypt allout-buffer key-type for-key
5962 ;;; fetch-pass &optional retried verifying
5963 ;;; passphrase)
5964 (defun allout-encrypt-string (text decrypt allout-buffer key-type for-key
5965 fetch-pass &optional retried rejected
5966 verifying passphrase)
5967 "Encrypt or decrypt message TEXT.
5969 If DECRYPT is true (default false), then decrypt instead of encrypt.
5971 FETCH-PASS (default false) forces fresh prompting for the passphrase.
5973 KEY-TYPE, either `symmetric' or `keypair', specifies which type
5974 of cypher to use.
5976 FOR-KEY is human readable identification of the first of the user's
5977 eligible secret keys a keypair decryption targets, or else nil.
5979 Optional RETRIED is for internal use -- conveys the number of failed keys
5980 that have been solicited in sequence leading to this current call.
5982 Optional PASSPHRASE enables explicit delivery of the decryption passphrase,
5983 for verification purposes.
5985 Optional REJECTED is for internal use -- conveys the number of
5986 rejections due to matches against
5987 `allout-encryption-ciphertext-rejection-regexps', as limited by
5988 `allout-encryption-ciphertext-rejection-ceiling'.
5990 Returns the resulting string, or nil if the transformation fails."
5992 (require 'pgg)
5994 (if (not (fboundp 'pgg-encrypt-symmetric))
5995 (error "Allout encryption depends on a newer version of pgg"))
5997 (let* ((scheme (upcase
5998 (format "%s" (or pgg-scheme pgg-default-scheme "GPG"))))
5999 (for-key (and (equal key-type 'keypair)
6000 (or for-key
6001 (split-string (read-string
6002 (format "%s message recipients: "
6003 scheme))
6004 "[ \t,]+"))))
6005 (target-prompt-id (if (equal key-type 'keypair)
6006 (if (= (length for-key) 1)
6007 (car for-key) for-key)
6008 (buffer-name allout-buffer)))
6009 (target-cache-id (format "%s-%s"
6010 key-type
6011 (if (equal key-type 'keypair)
6012 target-prompt-id
6013 (or (buffer-file-name allout-buffer)
6014 target-prompt-id))))
6015 (encoding (with-current-buffer allout-buffer
6016 buffer-file-coding-system))
6017 (multibyte (with-current-buffer allout-buffer
6018 enable-multibyte-characters))
6019 (strip-plaintext-regexps
6020 (if (not decrypt)
6021 (allout-get-configvar-values
6022 'allout-encryption-plaintext-sanitization-regexps)))
6023 (reject-ciphertext-regexps
6024 (if (not decrypt)
6025 (allout-get-configvar-values
6026 'allout-encryption-ciphertext-rejection-regexps)))
6027 (rejected (or rejected 0))
6028 (rejections-left (- allout-encryption-ciphertext-rejection-ceiling
6029 rejected))
6030 result-text status
6033 (if (and fetch-pass (not passphrase))
6034 ;; Force later fetch by evicting passphrase from the cache.
6035 (pgg-remove-passphrase-from-cache target-cache-id t))
6037 (catch 'encryption-failed
6039 ;; We handle only symmetric-key passphrase caching.
6040 (if (and (not passphrase)
6041 (not (equal key-type 'keypair)))
6042 (setq passphrase (allout-obtain-passphrase for-key
6043 target-cache-id
6044 target-prompt-id
6045 key-type
6046 allout-buffer
6047 retried fetch-pass)))
6049 (with-temp-buffer
6051 (insert text)
6053 ;; convey the text characteristics of the original buffer:
6054 (set-buffer-multibyte multibyte)
6055 (when encoding
6056 (set-buffer-file-coding-system encoding)
6057 (if (not decrypt)
6058 (encode-coding-region (point-min) (point-max) encoding)))
6060 (when (and strip-plaintext-regexps (not decrypt))
6061 (dolist (re strip-plaintext-regexps)
6062 (let ((re (if (listp re) (car re) re))
6063 (replacement (if (listp re) (cadr re) "")))
6064 (goto-char (point-min))
6065 (while (re-search-forward re nil t)
6066 (replace-match replacement nil nil)))))
6068 (cond
6070 ;; symmetric:
6071 ((equal key-type 'symmetric)
6072 (setq status
6073 (if decrypt
6075 (pgg-decrypt (point-min) (point-max) passphrase)
6077 (pgg-encrypt-symmetric (point-min) (point-max)
6078 passphrase)))
6080 (if status
6081 (pgg-situate-output (point-min) (point-max))
6082 ;; failed -- handle passphrase caching
6083 (if verifying
6084 (throw 'encryption-failed nil)
6085 (pgg-remove-passphrase-from-cache target-cache-id t)
6086 (error "Symmetric-cipher %scryption failed -- %s"
6087 (if decrypt "de" "en")
6088 "try again with different passphrase"))))
6090 ;; encrypt `keypair':
6091 ((not decrypt)
6093 (setq status
6095 (pgg-encrypt for-key
6096 nil (point-min) (point-max) passphrase))
6098 (if status
6099 (pgg-situate-output (point-min) (point-max))
6100 (error (pgg-remove-passphrase-from-cache target-cache-id t)
6101 (error "encryption failed"))))
6103 ;; decrypt `keypair':
6106 (setq status
6107 (pgg-decrypt (point-min) (point-max) passphrase))
6109 (if status
6110 (pgg-situate-output (point-min) (point-max))
6111 (error (pgg-remove-passphrase-from-cache target-cache-id t)
6112 (error "decryption failed")))))
6114 (setq result-text
6115 (buffer-substring-no-properties
6116 1 (- (point-max) (if decrypt 0 1))))
6119 ;; validate result -- non-empty
6120 (cond ((not result-text)
6121 (if verifying
6123 ;; transform was fruitless, retry w/new passphrase.
6124 (pgg-remove-passphrase-from-cache target-cache-id t)
6125 (allout-encrypt-string text decrypt allout-buffer
6126 key-type for-key nil
6127 (if retried (1+ retried) 1)
6128 rejected verifying nil)))
6130 ;; Retry (within limit) if ciphertext contains rejections:
6131 ((and (not decrypt)
6132 ;; Check for disqualification of this ciphertext:
6133 (let ((regexps reject-ciphertext-regexps)
6134 reject-it)
6135 (while (and regexps (not reject-it))
6136 (setq reject-it (string-match (car regexps)
6137 result-text))
6138 (pop regexps))
6139 reject-it))
6140 (setq rejections-left (1- rejections-left))
6141 (if (<= rejections-left 0)
6142 (error (concat "Ciphertext rejected too many times"
6143 " (%s), per `%s'")
6144 allout-encryption-ciphertext-rejection-ceiling
6145 'allout-encryption-ciphertext-rejection-regexps)
6146 (allout-encrypt-string text decrypt allout-buffer
6147 key-type for-key nil
6148 retried (1+ rejected)
6149 verifying passphrase)))
6150 ;; Barf if encryption yields extraordinary control chars:
6151 ((and (not decrypt)
6152 (string-match "[\C-a\C-k\C-o-\C-z\C-@]"
6153 result-text))
6154 (error (concat "Encryption produced non-armored text, which"
6155 "conflicts with allout mode -- reconfigure!")))
6157 ;; valid result and just verifying or non-symmetric:
6158 ((or verifying (not (equal key-type 'symmetric)))
6159 (if (or verifying decrypt)
6160 (pgg-add-passphrase-to-cache target-cache-id
6161 passphrase t))
6162 result-text)
6164 ;; valid result and regular symmetric -- "register"
6165 ;; passphrase with mnemonic aids/cache.
6167 (set-buffer allout-buffer)
6168 (if passphrase
6169 (pgg-add-passphrase-to-cache target-cache-id
6170 passphrase t))
6171 (allout-update-passphrase-mnemonic-aids for-key passphrase
6172 allout-buffer)
6173 result-text)
6178 ;;;_ > allout-obtain-passphrase (for-key cache-id prompt-id key-type
6179 ;;; allout-buffer retried fetch-pass)
6180 (defun allout-obtain-passphrase (for-key cache-id prompt-id key-type
6181 allout-buffer retried fetch-pass)
6182 "Obtain passphrase for a key from the cache or else from the user.
6184 When obtaining from the user, symmetric-cipher passphrases are verified
6185 against either, if available and enabled, a random string that was
6186 encrypted against the passphrase, or else against repeated entry by the
6187 user for corroboration.
6189 FOR-KEY is the key for which the passphrase is being obtained.
6191 CACHE-ID is the cache id of the key for the passphrase.
6193 PROMPT-ID is the id for use when prompting the user.
6195 KEY-TYPE is either `symmetric' or `keypair'.
6197 ALLOUT-BUFFER is the buffer containing the entry being en/decrypted.
6199 RETRIED is the number of this attempt to obtain this passphrase.
6201 FETCH-PASS causes the passphrase to be solicited from the user, regardless
6202 of the availability of a cached copy."
6204 (if (not (equal key-type 'symmetric))
6205 ;; do regular passphrase read on non-symmetric passphrase:
6206 (pgg-read-passphrase (format "%s passphrase%s: "
6207 (upcase (format "%s" (or pgg-scheme
6208 pgg-default-scheme
6209 "GPG")))
6210 (if prompt-id
6211 (format " for %s" prompt-id)
6212 ""))
6213 cache-id t)
6215 ;; Symmetric hereon:
6217 (save-excursion
6218 (set-buffer allout-buffer)
6219 (let* ((hint (if (and (not (string= allout-passphrase-hint-string ""))
6220 (or (equal allout-passphrase-hint-handling 'always)
6221 (and (equal allout-passphrase-hint-handling
6222 'needed)
6223 retried)))
6224 (format " [%s]" allout-passphrase-hint-string)
6225 ""))
6226 (retry-message (if retried (format " (%s retry)" retried) ""))
6227 (prompt-sans-hint (format "'%s' symmetric passphrase%s: "
6228 prompt-id retry-message))
6229 (full-prompt (format "'%s' symmetric passphrase%s%s: "
6230 prompt-id hint retry-message))
6231 (prompt full-prompt)
6232 (verifier-string (allout-get-encryption-passphrase-verifier))
6234 (cached (and (not fetch-pass)
6235 (pgg-read-passphrase-from-cache cache-id t)))
6236 (got-pass (or cached
6237 (pgg-read-passphrase full-prompt cache-id t)))
6238 confirmation)
6240 (if (not got-pass)
6243 ;; Duplicate our handle on the passphrase so it's not clobbered by
6244 ;; deactivate-passwd memory clearing:
6245 (setq got-pass (copy-sequence got-pass))
6247 (cond (verifier-string
6248 (save-window-excursion
6249 (if (allout-encrypt-string verifier-string 'decrypt
6250 allout-buffer 'symmetric
6251 for-key nil 0 0 'verifying
6252 (copy-sequence got-pass))
6253 (setq confirmation (format "%s" got-pass))))
6255 (if (and (not confirmation)
6256 (if (yes-or-no-p
6257 (concat "Passphrase differs from established"
6258 " -- use new one instead? "))
6259 ;; deactivate password for subsequent
6260 ;; confirmation:
6261 (progn
6262 (pgg-remove-passphrase-from-cache cache-id t)
6263 (setq prompt prompt-sans-hint)
6264 nil)
6266 (progn (pgg-remove-passphrase-from-cache cache-id t)
6267 (error "Wrong passphrase."))))
6268 ;; No verifier string -- force confirmation by repetition of
6269 ;; (new) passphrase:
6270 ((or fetch-pass (not cached))
6271 (pgg-remove-passphrase-from-cache cache-id t))))
6272 ;; confirmation vs new input -- doing pgg-read-passphrase will do the
6273 ;; right thing, in either case:
6274 (if (not confirmation)
6275 (setq confirmation
6276 (pgg-read-passphrase (concat prompt
6277 " ... confirm spelling: ")
6278 cache-id t)))
6279 (prog1
6280 (if (equal got-pass confirmation)
6281 confirmation
6282 (if (yes-or-no-p (concat "spelling of original and"
6283 " confirmation differ -- retry? "))
6284 (progn (setq retried (if retried (1+ retried) 1))
6285 (pgg-remove-passphrase-from-cache cache-id t)
6286 ;; recurse to this routine:
6287 (pgg-read-passphrase prompt-sans-hint cache-id t))
6288 (pgg-remove-passphrase-from-cache cache-id t)
6289 (error "Confirmation failed."))))))))
6290 ;;;_ > allout-encrypted-topic-p ()
6291 (defun allout-encrypted-topic-p ()
6292 "True if the current topic is encryptable and encrypted."
6293 (save-excursion
6294 (allout-end-of-prefix t)
6295 (and (string= (buffer-substring-no-properties (1- (point)) (point))
6296 allout-topic-encryption-bullet)
6297 (looking-at "\\*"))
6300 ;;;_ > allout-encrypted-key-info (text)
6301 ;; XXX gpg-specific, alas
6302 (defun allout-encrypted-key-info (text)
6303 "Return a pair of the key type and identity of a recipient's secret key.
6305 The key type is one of `symmetric' or `keypair'.
6307 If `keypair', and some of the user's secret keys are among those for which
6308 the message was encoded, return the identity of the first. Otherwise,
6309 return nil for the second item of the pair.
6311 An error is raised if the text is not encrypted."
6312 (require 'pgg-parse)
6313 (save-excursion
6314 (with-temp-buffer
6315 (insert text)
6316 (let* ((parsed-armor (pgg-parse-armor-region (point-min) (point-max)))
6317 (type (if (pgg-gpg-symmetric-key-p parsed-armor)
6318 'symmetric
6319 'keypair))
6320 secret-keys first-secret-key for-key-owner)
6321 (if (equal type 'keypair)
6322 (setq secret-keys (pgg-gpg-lookup-all-secret-keys)
6323 first-secret-key (pgg-gpg-select-matching-key parsed-armor
6324 secret-keys)
6325 for-key-owner (and first-secret-key
6326 (pgg-gpg-lookup-key-owner
6327 first-secret-key))))
6328 (list type (pgg-gpg-key-id-from-key-owner for-key-owner))
6333 ;;;_ > allout-create-encryption-passphrase-verifier (passphrase)
6334 (defun allout-create-encryption-passphrase-verifier (passphrase)
6335 "Encrypt random message for later validation of symmetric key's passphrase."
6336 ;; use 20 random ascii characters, across the entire ascii range.
6337 (random t)
6338 (let ((spew (make-string 20 ?\0)))
6339 (dotimes (i (length spew))
6340 (aset spew i (1+ (random 254))))
6341 (allout-encrypt-string spew nil (current-buffer) 'symmetric
6342 nil nil 0 0 passphrase))
6344 ;;;_ > allout-update-passphrase-mnemonic-aids (for-key passphrase
6345 ;;; outline-buffer)
6346 (defun allout-update-passphrase-mnemonic-aids (for-key passphrase
6347 outline-buffer)
6348 "Update passphrase verifier and hint strings if necessary.
6350 See `allout-passphrase-verifier-string' and `allout-passphrase-hint-string'
6351 settings.
6353 PASSPHRASE is the passphrase being mnemonicized.
6355 OUTLINE-BUFFER is the buffer of the outline being adjusted.
6357 These are used to help the user keep track of the passphrase they use for
6358 symmetric encryption in the file.
6360 Behavior is governed by `allout-passphrase-verifier-handling',
6361 `allout-passphrase-hint-handling', and also, controlling whether the values
6362 are preserved on Emacs local file variables,
6363 `allout-enable-file-variable-adjustment'."
6365 ;; If passphrase doesn't agree with current verifier:
6366 ;; - adjust the verifier
6367 ;; - if passphrase hint handling is enabled, adjust the passphrase hint
6368 ;; - if file var settings are enabled, adjust the file vars
6370 (let* ((new-verifier-needed (not (allout-verify-passphrase
6371 for-key passphrase outline-buffer)))
6372 (new-verifier-string
6373 (if new-verifier-needed
6374 ;; Collapse to a single line and enclose in string quotes:
6375 (subst-char-in-string
6376 ?\n ?\C-a (allout-create-encryption-passphrase-verifier
6377 passphrase))))
6378 new-hint)
6379 (when new-verifier-string
6380 ;; do the passphrase hint first, since it's interactive
6381 (when (and allout-passphrase-hint-handling
6382 (not (equal allout-passphrase-hint-handling 'disabled)))
6383 (setq new-hint
6384 (read-from-minibuffer "Passphrase hint to jog your memory: "
6385 allout-passphrase-hint-string))
6386 (when (not (string= new-hint allout-passphrase-hint-string))
6387 (setq allout-passphrase-hint-string new-hint)
6388 (allout-adjust-file-variable "allout-passphrase-hint-string"
6389 allout-passphrase-hint-string)))
6390 (when allout-passphrase-verifier-handling
6391 (setq allout-passphrase-verifier-string new-verifier-string)
6392 (allout-adjust-file-variable "allout-passphrase-verifier-string"
6393 allout-passphrase-verifier-string))
6397 ;;;_ > allout-get-encryption-passphrase-verifier ()
6398 (defun allout-get-encryption-passphrase-verifier ()
6399 "Return text of the encrypt passphrase verifier, unmassaged, or nil if none.
6401 Derived from value of `allout-passphrase-verifier-string'."
6403 (let ((verifier-string (and (boundp 'allout-passphrase-verifier-string)
6404 allout-passphrase-verifier-string)))
6405 (if verifier-string
6406 ;; Return it uncollapsed
6407 (subst-char-in-string ?\C-a ?\n verifier-string))
6410 ;;;_ > allout-verify-passphrase (key passphrase allout-buffer)
6411 (defun allout-verify-passphrase (key passphrase allout-buffer)
6412 "True if passphrase successfully decrypts verifier, nil otherwise.
6414 \"Otherwise\" includes absence of passphrase verifier."
6415 (save-excursion
6416 (set-buffer allout-buffer)
6417 (and (boundp 'allout-passphrase-verifier-string)
6418 allout-passphrase-verifier-string
6419 (allout-encrypt-string (allout-get-encryption-passphrase-verifier)
6420 'decrypt allout-buffer 'symmetric
6421 key nil 0 0 'verifying passphrase)
6422 t)))
6423 ;;;_ > allout-next-topic-pending-encryption (&optional except-mark)
6424 (defun allout-next-topic-pending-encryption (&optional except-mark)
6425 "Return the point of the next topic pending encryption, or nil if none.
6427 EXCEPT-MARK identifies a point whose containing topics should be excluded
6428 from encryption. This supports 'except-current mode of
6429 `allout-encrypt-unencrypted-on-saves'.
6431 Such a topic has the `allout-topic-encryption-bullet' without an
6432 immediately following '*' that would mark the topic as being encrypted. It
6433 must also have content."
6434 (let (done got content-beg)
6435 (while (not done)
6437 (if (not (re-search-forward
6438 (format "\\(\\`\\|\n\\)%s *%s[^*]"
6439 (regexp-quote allout-header-prefix)
6440 (regexp-quote allout-topic-encryption-bullet))
6441 nil t))
6442 (setq got nil
6443 done t)
6444 (goto-char (setq got (match-beginning 0)))
6445 (if (looking-at "\n")
6446 (forward-char 1))
6447 (setq got (point)))
6449 (cond ((not got)
6450 (setq done t))
6452 ((not (search-forward "\n"))
6453 (setq got nil
6454 done t))
6456 ((eobp)
6457 (setq got nil
6458 done t))
6461 (setq content-beg (point))
6462 (backward-char 1)
6463 (allout-end-of-subtree)
6464 (if (or (<= (point) content-beg)
6465 (and except-mark
6466 (<= content-beg except-mark)
6467 (>= (point) except-mark)))
6468 ;; Continue looking
6469 (setq got nil)
6470 ;; Got it!
6471 (setq done t)))
6474 (if got
6475 (goto-char got))
6478 ;;;_ > allout-encrypt-decrypted (&optional except-mark)
6479 (defun allout-encrypt-decrypted (&optional except-mark)
6480 "Encrypt topics pending encryption except those containing exemption point.
6482 EXCEPT-MARK identifies a point whose containing topics should be excluded
6483 from encryption. This supports the `except-current' mode of
6484 `allout-encrypt-unencrypted-on-saves'.
6486 If a topic that is currently being edited was encrypted, we return a list
6487 containing the location of the topic and the location of the cursor just
6488 before the topic was encrypted. This can be used, eg, to decrypt the topic
6489 and exactly resituate the cursor if this is being done as part of a file
6490 save. See `allout-encrypt-unencrypted-on-saves' for more info."
6492 (interactive "p")
6493 (save-excursion
6494 (let* ((current-mark (point-marker))
6495 (current-mark-position (marker-position current-mark))
6496 was-modified
6497 bo-subtree
6498 editing-topic editing-point)
6499 (goto-char (point-min))
6500 (while (allout-next-topic-pending-encryption except-mark)
6501 (setq was-modified (buffer-modified-p))
6502 (when (save-excursion
6503 (and (boundp 'allout-encrypt-unencrypted-on-saves)
6504 allout-encrypt-unencrypted-on-saves
6505 (setq bo-subtree (re-search-forward "$"))
6506 (not (allout-hidden-p))
6507 (>= current-mark (point))
6508 (allout-end-of-current-subtree)
6509 (<= current-mark (point))))
6510 (setq editing-topic (point)
6511 ;; we had to wait for this 'til now so prior topics are
6512 ;; encrypted, any relevant text shifts are in place:
6513 editing-point (- current-mark-position
6514 (count-trailing-whitespace-region
6515 bo-subtree current-mark-position))))
6516 (allout-toggle-subtree-encryption)
6517 (if (not was-modified)
6518 (set-buffer-modified-p nil))
6520 (if (not was-modified)
6521 (set-buffer-modified-p nil))
6522 (if editing-topic (list editing-topic editing-point))
6527 ;;;_ #9 miscellaneous
6528 ;;;_ : Mode:
6529 ;;;_ > outlineify-sticky ()
6530 ;; outlinify-sticky is correct spelling; provide this alias for sticklers:
6531 ;;;###autoload
6532 (defalias 'outlinify-sticky 'outlineify-sticky)
6533 ;;;###autoload
6534 (defun outlineify-sticky (&optional arg)
6535 "Activate outline mode and establish file var so it is started subsequently.
6537 See doc-string for `allout-layout' and `allout-init' for details on
6538 setup for auto-startup."
6540 (interactive "P")
6542 (allout-mode t)
6544 (save-excursion
6545 (goto-char (point-min))
6546 (if (allout-goto-prefix)
6548 (allout-open-topic 2)
6549 (insert (concat "Dummy outline topic header -- see"
6550 "`allout-mode' docstring: `^Hm'."))
6551 (allout-adjust-file-variable
6552 "allout-layout" (or allout-layout '(-1 : 0))))))
6553 ;;;_ > allout-file-vars-section-data ()
6554 (defun allout-file-vars-section-data ()
6555 "Return data identifying the file-vars section, or nil if none.
6557 Returns a list of the form (BEGINNING-POINT PREFIX-STRING SUFFIX-STRING)."
6558 ;; minimally gleaned from emacs 21.4 files.el hack-local-variables function.
6559 (let (beg prefix suffix)
6560 (save-excursion
6561 (goto-char (point-max))
6562 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
6563 (if (let ((case-fold-search t))
6564 (not (search-forward "Local Variables:" nil t)))
6566 (setq beg (- (point) 16))
6567 (setq suffix (buffer-substring-no-properties
6568 (point)
6569 (progn (if (search-forward "\n" nil t)
6570 (forward-char -1))
6571 (point))))
6572 (setq prefix (buffer-substring-no-properties
6573 (progn (if (search-backward "\n" nil t)
6574 (forward-char 1))
6575 (point))
6576 beg))
6577 (list beg prefix suffix))
6581 ;;;_ > allout-adjust-file-variable (varname value)
6582 (defun allout-adjust-file-variable (varname value)
6583 "Adjust the setting of an Emacs file variable named VARNAME to VALUE.
6585 This activity is inhibited if either `enable-local-variables'
6586 `allout-enable-file-variable-adjustment' are nil.
6588 When enabled, an entry for the variable is created if not already present,
6589 or changed if established with a different value. The section for the file
6590 variables, itself, is created if not already present. When created, the
6591 section lines (including the section line) exist as second-level topics in
6592 a top-level topic at the end of the file.
6594 `enable-local-variables' must be true for any of this to happen."
6595 (if (not (and enable-local-variables
6596 allout-enable-file-variable-adjustment))
6598 (save-excursion
6599 (let ((inhibit-field-text-motion t)
6600 (section-data (allout-file-vars-section-data))
6601 beg prefix suffix)
6602 (if section-data
6603 (setq beg (car section-data)
6604 prefix (cadr section-data)
6605 suffix (car (cddr section-data)))
6606 ;; create the section
6607 (goto-char (point-max))
6608 (open-line 1)
6609 (allout-open-topic 0)
6610 (end-of-line)
6611 (insert "Local emacs vars.\n")
6612 (allout-open-topic 1)
6613 (setq beg (point)
6614 suffix ""
6615 prefix (buffer-substring-no-properties (progn
6616 (beginning-of-line)
6617 (point))
6618 beg))
6619 (goto-char beg)
6620 (insert "Local variables:\n")
6621 (allout-open-topic 0)
6622 (insert "End:\n")
6624 ;; look for existing entry or create one, leaving point for insertion
6625 ;; of new value:
6626 (goto-char beg)
6627 (allout-show-to-offshoot)
6628 (if (search-forward (concat "\n" prefix varname ":") nil t)
6629 (let* ((value-beg (point))
6630 (line-end (progn (if (search-forward "\n" nil t)
6631 (forward-char -1))
6632 (point)))
6633 (value-end (- line-end (length suffix))))
6634 (if (> value-end value-beg)
6635 (delete-region value-beg value-end)))
6636 (end-of-line)
6637 (open-line 1)
6638 (forward-line 1)
6639 (insert (concat prefix varname ":")))
6640 (insert (format " %S%s" value suffix))
6645 ;;;_ > allout-get-configvar-values (varname)
6646 (defun allout-get-configvar-values (configvar-name)
6647 "Return a list of values of the symbols in list bound to CONFIGVAR-NAME.
6649 The user is prompted for removal of symbols that are unbound, and they
6650 otherwise are ignored.
6652 CONFIGVAR-NAME should be the name of the configuration variable,
6653 not its value."
6655 (let ((configvar-value (symbol-value configvar-name))
6656 got)
6657 (dolist (sym configvar-value)
6658 (if (not (boundp sym))
6659 (if (yes-or-no-p (format "%s entry `%s' is unbound -- remove it? "
6660 configvar-name sym))
6661 (delq sym (symbol-value configvar-name)))
6662 (push (symbol-value sym) got)))
6663 (reverse got)))
6664 ;;;_ : Topics:
6665 ;;;_ > allout-mark-topic ()
6666 (defun allout-mark-topic ()
6667 "Put the region around topic currently containing point."
6668 (interactive)
6669 (let ((inhibit-field-text-motion t))
6670 (beginning-of-line))
6671 (allout-goto-prefix-doublechecked)
6672 (push-mark (point))
6673 (allout-end-of-current-subtree)
6674 (exchange-point-and-mark))
6675 ;;;_ : UI:
6676 ;;;_ > solicit-char-in-string (prompt string &optional do-defaulting)
6677 (defun solicit-char-in-string (prompt string &optional do-defaulting)
6678 "Solicit (with first arg PROMPT) choice of a character from string STRING.
6680 Optional arg DO-DEFAULTING indicates to accept empty input (CR)."
6682 (let ((new-prompt prompt)
6683 got)
6685 (while (not got)
6686 (message "%s" new-prompt)
6688 ;; We do our own reading here, so we can circumvent, eg, special
6689 ;; treatment for `?' character. (Oughta use minibuffer keymap instead.)
6690 (setq got
6691 (char-to-string (let ((cursor-in-echo-area nil)) (read-char))))
6693 (setq got
6694 (cond ((string-match (regexp-quote got) string) got)
6695 ((and do-defaulting (string= got "\r"))
6696 ;; Return empty string to default:
6698 ((string= got "\C-g") (signal 'quit nil))
6700 (setq new-prompt (concat prompt
6702 " ...pick from: "
6703 string
6704 ""))
6705 nil))))
6706 ;; got something out of loop -- return it:
6707 got)
6709 ;;;_ : Strings:
6710 ;;;_ > regexp-sans-escapes (string)
6711 (defun regexp-sans-escapes (regexp &optional successive-backslashes)
6712 "Return a copy of REGEXP with all character escapes stripped out.
6714 Representations of actual backslashes -- '\\\\\\\\' -- are left as a
6715 single backslash.
6717 Optional arg SUCCESSIVE-BACKSLASHES is used internally for recursion."
6719 (if (string= regexp "")
6721 ;; Set successive-backslashes to number if current char is
6722 ;; backslash, or else to nil:
6723 (setq successive-backslashes
6724 (if (= (aref regexp 0) ?\\)
6725 (if successive-backslashes (1+ successive-backslashes) 1)
6726 nil))
6727 (if (or (not successive-backslashes) (= 2 successive-backslashes))
6728 ;; Include first char:
6729 (concat (substring regexp 0 1)
6730 (regexp-sans-escapes (substring regexp 1)))
6731 ;; Exclude first char, but maintain count:
6732 (regexp-sans-escapes (substring regexp 1) successive-backslashes))))
6733 ;;;_ > count-trailing-whitespace-region (beg end)
6734 (defun count-trailing-whitespace-region (beg end)
6735 "Return number of trailing whitespace chars between BEG and END.
6737 If BEG is bigger than END we return 0."
6738 (if (> beg end)
6740 (save-excursion
6741 (goto-char beg)
6742 (let ((count 0))
6743 (while (re-search-forward "[ ][ ]*$" end t)
6744 (goto-char (1+ (match-beginning 2)))
6745 (setq count (1+ count)))
6746 count))))
6747 ;;;_ > allout-format-quote (string)
6748 (defun allout-format-quote (string)
6749 "Return a copy of string with all \"%\" characters doubled."
6750 (apply 'concat
6751 (mapcar (lambda (char) (if (= char ?%) "%%" (char-to-string char)))
6752 string)))
6753 ;;;_ : lists
6754 ;;;_ > allout-flatten (list)
6755 (defun allout-flatten (list)
6756 "Return a list of all atoms in list."
6757 ;; classic.
6758 (cond ((null list) nil)
6759 ((atom (car list)) (cons (car list) (allout-flatten (cdr list))))
6760 (t (append (allout-flatten (car list)) (allout-flatten (cdr list))))))
6761 ;;;_ : Compatibility:
6762 ;;;_ > allout-mark-marker to accommodate divergent emacsen:
6763 (defun allout-mark-marker (&optional force buffer)
6764 "Accommodate the different signature for `mark-marker' across Emacsen.
6766 XEmacs takes two optional args, while mainline GNU Emacs does not,
6767 so pass them along when appropriate."
6768 (if (featurep 'xemacs)
6769 (apply 'mark-marker force buffer)
6770 (mark-marker)))
6771 ;;;_ > subst-char-in-string if necessary
6772 (if (not (fboundp 'subst-char-in-string))
6773 (defun subst-char-in-string (fromchar tochar string &optional inplace)
6774 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
6775 Unless optional argument INPLACE is non-nil, return a new string."
6776 (let ((i (length string))
6777 (newstr (if inplace string (copy-sequence string))))
6778 (while (> i 0)
6779 (setq i (1- i))
6780 (if (eq (aref newstr i) fromchar)
6781 (aset newstr i tochar)))
6782 newstr)))
6783 ;;;_ > wholenump if necessary
6784 (if (not (fboundp 'wholenump))
6785 (defalias 'wholenump 'natnump))
6786 ;;;_ > remove-overlays if necessary
6787 (if (not (fboundp 'remove-overlays))
6788 (defun remove-overlays (&optional beg end name val)
6789 "Clear BEG and END of overlays whose property NAME has value VAL.
6790 Overlays might be moved and/or split.
6791 BEG and END default respectively to the beginning and end of buffer."
6792 (unless beg (setq beg (point-min)))
6793 (unless end (setq end (point-max)))
6794 (if (< end beg)
6795 (setq beg (prog1 end (setq end beg))))
6796 (save-excursion
6797 (dolist (o (overlays-in beg end))
6798 (when (eq (overlay-get o name) val)
6799 ;; Either push this overlay outside beg...end
6800 ;; or split it to exclude beg...end
6801 ;; or delete it entirely (if it is contained in beg...end).
6802 (if (< (overlay-start o) beg)
6803 (if (> (overlay-end o) end)
6804 (progn
6805 (move-overlay (copy-overlay o)
6806 (overlay-start o) beg)
6807 (move-overlay o end (overlay-end o)))
6808 (move-overlay o (overlay-start o) beg))
6809 (if (> (overlay-end o) end)
6810 (move-overlay o end (overlay-end o))
6811 (delete-overlay o)))))))
6813 ;;;_ > copy-overlay if necessary -- xemacs ~ 21.4
6814 (if (not (fboundp 'copy-overlay))
6815 (defun copy-overlay (o)
6816 "Return a copy of overlay O."
6817 (let ((o1 (make-overlay (overlay-start o) (overlay-end o)
6818 ;; FIXME: there's no easy way to find the
6819 ;; insertion-type of the two markers.
6820 (overlay-buffer o)))
6821 (props (overlay-properties o)))
6822 (while props
6823 (overlay-put o1 (pop props) (pop props)))
6824 o1)))
6825 ;;;_ > add-to-invisibility-spec if necessary -- xemacs ~ 21.4
6826 (if (not (fboundp 'add-to-invisibility-spec))
6827 (defun add-to-invisibility-spec (element)
6828 "Add ELEMENT to `buffer-invisibility-spec'.
6829 See documentation for `buffer-invisibility-spec' for the kind of elements
6830 that can be added."
6831 (if (eq buffer-invisibility-spec t)
6832 (setq buffer-invisibility-spec (list t)))
6833 (setq buffer-invisibility-spec
6834 (cons element buffer-invisibility-spec))))
6835 ;;;_ > remove-from-invisibility-spec if necessary -- xemacs ~ 21.4
6836 (if (not (fboundp 'remove-from-invisibility-spec))
6837 (defun remove-from-invisibility-spec (element)
6838 "Remove ELEMENT from `buffer-invisibility-spec'."
6839 (if (consp buffer-invisibility-spec)
6840 (setq buffer-invisibility-spec (delete element
6841 buffer-invisibility-spec)))))
6842 ;;;_ > move-beginning-of-line if necessary -- older emacs, xemacs
6843 (if (not (fboundp 'move-beginning-of-line))
6844 (defun move-beginning-of-line (arg)
6845 "Move point to beginning of current line as displayed.
6846 \(This disregards invisible newlines such as those
6847 which are part of the text that an image rests on.)
6849 With argument ARG not nil or 1, move forward ARG - 1 lines first.
6850 If point reaches the beginning or end of buffer, it stops there.
6851 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6852 (interactive "p")
6853 (or arg (setq arg 1))
6854 (if (/= arg 1)
6855 (condition-case nil (line-move (1- arg)) (error nil)))
6857 ;; Move to beginning-of-line, ignoring fields and invisibles.
6858 (skip-chars-backward "^\n")
6859 (while (and (not (bobp)) (line-move-invisible-p (1- (point))))
6860 (goto-char (if (featurep 'xemacs)
6861 (previous-property-change (point))
6862 (previous-char-property-change (point))))
6863 (skip-chars-backward "^\n"))
6864 (vertical-motion 0))
6866 ;;;_ > move-end-of-line if necessary -- older emacs, xemacs
6867 (if (not (fboundp 'move-end-of-line))
6868 (defun move-end-of-line (arg)
6869 "Move point to end of current line as displayed.
6870 \(This disregards invisible newlines such as those
6871 which are part of the text that an image rests on.)
6873 With argument ARG not nil or 1, move forward ARG - 1 lines first.
6874 If point reaches the beginning or end of buffer, it stops there.
6875 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6876 (interactive "p")
6877 (or arg (setq arg 1))
6878 (let (done)
6879 (while (not done)
6880 (let ((newpos
6881 (save-excursion
6882 (let ((goal-column 0))
6883 (and (condition-case nil
6884 (or (line-move arg) t)
6885 (error nil))
6886 (not (bobp))
6887 (progn
6888 (while (and (not (bobp))
6889 (line-move-invisible-p (1- (point))))
6890 (goto-char
6891 (previous-char-property-change (point))))
6892 (backward-char 1)))
6893 (point)))))
6894 (goto-char newpos)
6895 (if (and (> (point) newpos)
6896 (eq (preceding-char) ?\n))
6897 (backward-char 1)
6898 (if (and (> (point) newpos) (not (eobp))
6899 (not (eq (following-char) ?\n)))
6900 ;; If we skipped something intangible
6901 ;; and now we're not really at eol,
6902 ;; keep going.
6903 (setq arg 1)
6904 (setq done t)))))))
6906 ;;;_ > line-move-invisible-p if necessary
6907 (if (not (fboundp 'line-move-invisible-p))
6908 (defun line-move-invisible-p (pos)
6909 "Return non-nil if the character after POS is currently invisible."
6910 (let ((prop
6911 (get-char-property pos 'invisible)))
6912 (if (eq buffer-invisibility-spec t)
6913 prop
6914 (or (memq prop buffer-invisibility-spec)
6915 (assq prop buffer-invisibility-spec))))))
6917 ;;;_ #10 Unfinished
6918 ;;;_ > allout-bullet-isearch (&optional bullet)
6919 (defun allout-bullet-isearch (&optional bullet)
6920 "Isearch (regexp) for topic with bullet BULLET."
6921 (interactive)
6922 (if (not bullet)
6923 (setq bullet (solicit-char-in-string
6924 "ISearch for topic with bullet: "
6925 (regexp-sans-escapes allout-bullets-string))))
6927 (let ((isearch-regexp t)
6928 (isearch-string (concat "^"
6929 allout-header-prefix
6930 "[ \t]*"
6931 bullet)))
6932 (isearch-repeat 'forward)
6933 (isearch-mode t)))
6935 ;;;_ #11 Unit tests -- this should be last item before "Provide"
6936 ;;;_ > allout-run-unit-tests ()
6937 (defun allout-run-unit-tests ()
6938 "Run the various allout unit tests."
6939 (message "Running allout tests...")
6940 (allout-test-resumptions)
6941 (message "Running allout tests... Done.")
6942 (sit-for .5))
6943 ;;;_ : test resumptions:
6944 ;;;_ > allout-tests-obliterate-variable (name)
6945 (defun allout-tests-obliterate-variable (name)
6946 "Completely unbind variable with NAME."
6947 (if (local-variable-p name) (kill-local-variable name))
6948 (while (boundp name) (makunbound name)))
6949 ;;;_ > allout-test-resumptions ()
6950 (defvar allout-tests-globally-unbound nil
6951 "Fodder for allout resumptions tests -- defvar just for byte compiler.")
6952 (defvar allout-tests-globally-true nil
6953 "Fodder for allout resumptions tests -- defvar just for byte compiler.")
6954 (defvar allout-tests-locally-true nil
6955 "Fodder for allout resumptions tests -- defvar just for byte compiler.")
6956 (defun allout-test-resumptions ()
6957 "Exercise allout resumptions."
6958 ;; for each resumption case, we also test that the right local/global
6959 ;; scopes are affected during resumption effects:
6961 ;; ensure that previously unbound variables return to the unbound state.
6962 (with-temp-buffer
6963 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
6964 (allout-add-resumptions '(allout-tests-globally-unbound t))
6965 (assert (not (default-boundp 'allout-tests-globally-unbound)))
6966 (assert (local-variable-p 'allout-tests-globally-unbound))
6967 (assert (boundp 'allout-tests-globally-unbound))
6968 (assert (equal allout-tests-globally-unbound t))
6969 (allout-do-resumptions)
6970 (assert (not (local-variable-p 'allout-tests-globally-unbound)))
6971 (assert (not (boundp 'allout-tests-globally-unbound))))
6973 ;; ensure that variable with prior global value is resumed
6974 (with-temp-buffer
6975 (allout-tests-obliterate-variable 'allout-tests-globally-true)
6976 (setq allout-tests-globally-true t)
6977 (allout-add-resumptions '(allout-tests-globally-true nil))
6978 (assert (equal (default-value 'allout-tests-globally-true) t))
6979 (assert (local-variable-p 'allout-tests-globally-true))
6980 (assert (equal allout-tests-globally-true nil))
6981 (allout-do-resumptions)
6982 (assert (not (local-variable-p 'allout-tests-globally-true)))
6983 (assert (boundp 'allout-tests-globally-true))
6984 (assert (equal allout-tests-globally-true t)))
6986 ;; ensure that prior local value is resumed
6987 (with-temp-buffer
6988 (allout-tests-obliterate-variable 'allout-tests-locally-true)
6989 (set (make-local-variable 'allout-tests-locally-true) t)
6990 (assert (not (default-boundp 'allout-tests-locally-true))
6991 nil (concat "Test setup mistake -- variable supposed to"
6992 " not have global binding, but it does."))
6993 (assert (local-variable-p 'allout-tests-locally-true)
6994 nil (concat "Test setup mistake -- variable supposed to have"
6995 " local binding, but it lacks one."))
6996 (allout-add-resumptions '(allout-tests-locally-true nil))
6997 (assert (not (default-boundp 'allout-tests-locally-true)))
6998 (assert (local-variable-p 'allout-tests-locally-true))
6999 (assert (equal allout-tests-locally-true nil))
7000 (allout-do-resumptions)
7001 (assert (boundp 'allout-tests-locally-true))
7002 (assert (local-variable-p 'allout-tests-locally-true))
7003 (assert (equal allout-tests-locally-true t))
7004 (assert (not (default-boundp 'allout-tests-locally-true))))
7006 ;; ensure that last of multiple resumptions holds, for various scopes.
7007 (with-temp-buffer
7008 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
7009 (allout-tests-obliterate-variable 'allout-tests-globally-true)
7010 (setq allout-tests-globally-true t)
7011 (allout-tests-obliterate-variable 'allout-tests-locally-true)
7012 (set (make-local-variable 'allout-tests-locally-true) t)
7013 (allout-add-resumptions '(allout-tests-globally-unbound t)
7014 '(allout-tests-globally-true nil)
7015 '(allout-tests-locally-true nil))
7016 (allout-add-resumptions '(allout-tests-globally-unbound 2)
7017 '(allout-tests-globally-true 3)
7018 '(allout-tests-locally-true 4))
7019 ;; reestablish many of the basic conditions are maintained after re-add:
7020 (assert (not (default-boundp 'allout-tests-globally-unbound)))
7021 (assert (local-variable-p 'allout-tests-globally-unbound))
7022 (assert (equal allout-tests-globally-unbound 2))
7023 (assert (default-boundp 'allout-tests-globally-true))
7024 (assert (local-variable-p 'allout-tests-globally-true))
7025 (assert (equal allout-tests-globally-true 3))
7026 (assert (not (default-boundp 'allout-tests-locally-true)))
7027 (assert (local-variable-p 'allout-tests-locally-true))
7028 (assert (equal allout-tests-locally-true 4))
7029 (allout-do-resumptions)
7030 (assert (not (local-variable-p 'allout-tests-globally-unbound)))
7031 (assert (not (boundp 'allout-tests-globally-unbound)))
7032 (assert (not (local-variable-p 'allout-tests-globally-true)))
7033 (assert (boundp 'allout-tests-globally-true))
7034 (assert (equal allout-tests-globally-true t))
7035 (assert (boundp 'allout-tests-locally-true))
7036 (assert (local-variable-p 'allout-tests-locally-true))
7037 (assert (equal allout-tests-locally-true t))
7038 (assert (not (default-boundp 'allout-tests-locally-true))))
7040 ;; ensure that deliberately unbinding registered variables doesn't foul things
7041 (with-temp-buffer
7042 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
7043 (allout-tests-obliterate-variable 'allout-tests-globally-true)
7044 (setq allout-tests-globally-true t)
7045 (allout-tests-obliterate-variable 'allout-tests-locally-true)
7046 (set (make-local-variable 'allout-tests-locally-true) t)
7047 (allout-add-resumptions '(allout-tests-globally-unbound t)
7048 '(allout-tests-globally-true nil)
7049 '(allout-tests-locally-true nil))
7050 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
7051 (allout-tests-obliterate-variable 'allout-tests-globally-true)
7052 (allout-tests-obliterate-variable 'allout-tests-locally-true)
7053 (allout-do-resumptions))
7055 ;;;_ % Run unit tests if `allout-run-unit-tests-after-load' is true:
7056 (when allout-run-unit-tests-on-load
7057 (allout-run-unit-tests))
7059 ;;;_ #12 Provide
7060 (provide 'allout)
7062 ;;;_* Local emacs vars.
7063 ;; The following `allout-layout' local variable setting:
7064 ;; - closes all topics from the first topic to just before the third-to-last,
7065 ;; - shows the children of the third to last (config vars)
7066 ;; - and the second to last (code section),
7067 ;; - and closes the last topic (this local-variables section).
7068 ;;Local variables:
7069 ;;allout-layout: (0 : -1 -1 0)
7070 ;;End:
7072 ;; arch-tag: cf38fbc3-c044-450f-8bff-afed8ba5681c
7073 ;;; allout.el ends here