1 ;;; enriched.el --- read and save files in text/enriched format
3 ;; Copyright (C) 1994-1996, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Boris Goldowsky <boris@gnu.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; This file implements reading, editing, and saving files with
26 ;; text-properties such as faces, levels of indentation, and true line
27 ;; breaks distinguished from newlines just used to fit text into the window.
29 ;; The file format used is the MIME text/enriched format, which is a
30 ;; standard format defined in internet RFC 1563. All standard annotations
31 ;; are supported except for <smaller> and <bigger>, which are currently not
32 ;; possible to display.
34 ;; A separate file, enriched.txt, contains further documentation and other
35 ;; important information about this code. It also serves as an example
36 ;; file in text/enriched format. It should be in the etc directory of your
37 ;; emacs distribution.
44 ;;; Variables controlling the display
47 (defgroup enriched nil
48 "Read and save files in text/enriched format."
51 (defcustom enriched-verbose t
52 "If non-nil, give status messages when reading and writing files."
57 ;;; Set up faces & display table
60 ;; Emacs doesn't have a "fixed" face by default, since all faces currently
61 ;; have to be fixed-width. So we just pick one that looks different from the
65 "Face used for text that must be shown in fixed width.
66 Currently, Emacs can only display fixed-width fonts, but this may change.
67 This face is used for text specifically marked as fixed-width, for example
68 in text/enriched files."
72 '((t (:slant italic
)))
73 "Face used for text that is an excerpt from another document.
74 This is used in Enriched mode for text explicitly marked as an excerpt."
77 (defconst enriched-display-table
(or (copy-sequence standard-display-table
)
78 (make-display-table)))
79 (aset enriched-display-table ?
\f (make-vector (1- (frame-width)) ?-
))
81 (defconst enriched-par-props
'(left-margin right-margin justification
)
82 "Text-properties that usually apply to whole paragraphs.
83 These are set front-sticky everywhere except at hard newlines.")
86 ;;; Variables controlling the file format
89 (defconst enriched-initial-annotation
91 (format "Content-Type: text/enriched\nText-Width: %d\n\n"
93 "What to insert at the start of a text/enriched file.
94 If this is a string, it is inserted. If it is a list, it should be a lambda
95 expression, which is evaluated to get the string to insert.")
97 (defconst enriched-annotation-format
"<%s%s>"
98 "General format of enriched-text annotations.")
100 (defconst enriched-annotation-regexp
"<\\(/\\)?\\([-A-Za-z0-9]+\\)>"
101 "Regular expression matching enriched-text annotations.")
103 (defvar enriched-translations
104 '((face (bold-italic "bold" "italic")
107 (underline "underline")
111 (nil enriched-encode-other-face
))
112 (left-margin (4 "indent"))
113 (right-margin (4 "indentright"))
114 (justification (none "nofill")
119 (PARAMETER (t "param")) ; Argument of preceding annotation
120 ;; The following are not part of the standard:
121 (FUNCTION (enriched-decode-foreground "x-color")
122 (enriched-decode-background "x-bg-color")
123 (enriched-decode-display-prop "x-display"))
124 (read-only (t "x-read-only"))
125 (display (nil enriched-handle-display-prop
))
126 (unknown (nil format-annotate-value
))
127 ; (font-size (2 "bigger") ; unimplemented
130 "List of definitions of text/enriched annotations.
131 See `format-annotate-region' and `format-deannotate-region' for the definition
134 (defconst enriched-ignore
135 '(front-sticky rear-nonsticky hard
)
136 "Properties that are OK to ignore when saving text/enriched files.
137 Any property that is neither on this list nor dealt with by
138 `enriched-translations' will generate a warning.")
140 ;;; Internal variables
142 (defcustom enriched-mode-hook nil
143 "Hook run after entering/leaving Enriched mode.
144 If you set variables in this hook, you should arrange for them to be restored
145 to their old values if you leave Enriched mode. One way to do this is to add
146 them and their old values to `enriched-old-bindings'."
150 (defvar enriched-old-bindings nil
151 "Store old variable values that we change when entering mode.
152 The value is a list of \(VAR VALUE VAR VALUE...).")
153 (make-variable-buffer-local 'enriched-old-bindings
)
155 ;; The next variable is buffer local if and only if Enriched mode is
156 ;; enabled. The buffer local value records whether
157 ;; `default-text-properties' should remain buffer local when disabling
158 ;; Enriched mode. For technical reasons, the default value should be t.
159 (defvar enriched-default-text-properties-local-flag t
)
161 ;; Technical internal variable. Bound to t if `enriched-mode' is
162 ;; being rerun by a major mode to allow it to restore buffer-local
163 ;; variables and to correctly update `enriched-old-bindings'.
164 (defvar enriched-rerun-flag nil
)
170 (defvar enriched-mode-map
171 (let ((map (make-sparse-keymap)))
172 (define-key map
[remap move-beginning-of-line
] 'beginning-of-line-text
)
173 (define-key map
"\C-m" 'reindent-then-newline-and-indent
)
175 [remap newline-and-indent
] 'reindent-then-newline-and-indent
)
176 (define-key map
"\M-j" 'facemenu-justification-menu
)
177 (define-key map
"\M-S" 'set-justification-center
)
178 (define-key map
"\C-x\t" 'increase-left-margin
)
179 (define-key map
"\C-c[" 'set-left-margin
)
180 (define-key map
"\C-c]" 'set-right-margin
)
182 "Keymap for Enriched mode.")
188 (put 'enriched-mode
'permanent-local t
)
190 (define-minor-mode enriched-mode
191 "Minor mode for editing text/enriched files.
192 These are files with embedded formatting information in the MIME standard
193 text/enriched format.
195 With a prefix argument ARG, enable the mode if ARG is positive,
196 and disable it otherwise. If called from Lisp, enable the mode
197 if ARG is omitted or nil.
199 Turning the mode on or off runs `enriched-mode-hook'.
201 More information about Enriched mode is available in the file
202 \"enriched.txt\" in `data-directory'.
206 \\{enriched-mode-map}"
207 :group
'enriched
:lighter
" Enriched"
208 (cond ((null enriched-mode
)
210 (remove-hook 'change-major-mode-hook
211 'enriched-before-change-major-mode
'local
)
212 (setq buffer-file-format
(delq 'text
/enriched buffer-file-format
))
213 ;; restore old variable values
214 (while enriched-old-bindings
215 (set (pop enriched-old-bindings
) (pop enriched-old-bindings
)))
216 (unless enriched-default-text-properties-local-flag
217 (kill-local-variable 'default-text-properties
))
218 (kill-local-variable 'enriched-default-text-properties-local-flag
)
219 (unless use-hard-newlines
(use-hard-newlines 0)))
221 ((and (memq 'text
/enriched buffer-file-format
)
222 (not enriched-rerun-flag
))
223 ;; Mode already on; do nothing.
227 (add-hook 'change-major-mode-hook
228 'enriched-before-change-major-mode nil
'local
)
229 (add-to-list 'buffer-file-format
'text
/enriched
)
230 ;; Save old variable values before we change them.
231 ;; These will be restored if we exit Enriched mode.
232 (setq enriched-old-bindings
233 (list 'buffer-display-table buffer-display-table
234 'default-text-properties default-text-properties
235 'use-hard-newlines use-hard-newlines
))
236 (make-local-variable 'enriched-default-text-properties-local-flag
)
237 (setq enriched-default-text-properties-local-flag
238 (local-variable-p 'default-text-properties
))
239 (make-local-variable 'default-text-properties
)
240 (setq buffer-display-table enriched-display-table
)
241 (use-hard-newlines 1 (if enriched-rerun-flag
'never nil
))
242 (let ((sticky (plist-get default-text-properties
'front-sticky
))
243 (p enriched-par-props
))
245 (add-to-list 'sticky x
))
247 (setq default-text-properties
248 (plist-put default-text-properties
249 'front-sticky sticky
)))))))
251 (defun enriched-before-change-major-mode ()
253 (while enriched-old-bindings
254 (set (pop enriched-old-bindings
) (pop enriched-old-bindings
)))))
256 (defun enriched-after-change-major-mode ()
258 (let ((enriched-rerun-flag t
))
261 (add-hook 'after-change-major-mode-hook
'enriched-after-change-major-mode
)
264 (fset 'enriched-mode-map enriched-mode-map
)
267 ;;; Some functions dealing with text-properties, especially indentation
270 (defun enriched-map-property-regions (prop func
&optional from to
)
271 "Apply a function to regions of the buffer based on a text property.
272 For each contiguous region of the buffer for which the value of PROPERTY is
273 eq, the FUNCTION will be called. Optional arguments FROM and TO specify the
274 region over which to scan.
276 The specified function receives three arguments: the VALUE of the property in
277 the region, and the START and END of each region."
280 (if to
(narrow-to-region (point-min) to
))
281 (goto-char (or from
(point-min)))
282 (let ((begin (point))
284 (marker (make-marker))
285 (val (get-text-property (point) prop
)))
286 (while (setq end
(text-property-not-all begin
(point-max) prop val
))
287 (move-marker marker end
)
288 (funcall func val begin
(marker-position marker
))
289 (setq begin
(marker-position marker
)
290 val
(get-text-property marker prop
)))
291 (if (< begin
(point-max))
292 (funcall func val begin
(point-max)))))))
294 (put 'enriched-map-property-regions
'lisp-indent-hook
1)
296 (defun enriched-insert-indentation (&optional from to
)
297 "Indent and justify each line in the region."
300 (if to
(narrow-to-region (point-min) to
))
301 (goto-char (or from
(point-min)))
302 (if (not (bolp)) (forward-line 1))
305 nil
; skip blank lines
306 (indent-to (current-left-margin))
307 (justify-current-line t nil t
))
315 (defun enriched-encode (from to orig-buf
)
316 (if enriched-verbose
(message "Enriched: encoding document..."))
317 (let ((inhibit-read-only t
))
319 (narrow-to-region from to
)
320 (delete-to-left-margin)
323 (format-replace-strings '(("<" .
"<<")))
324 (format-insert-annotations
325 (format-annotate-region from
(point-max) enriched-translations
326 'enriched-make-annotation enriched-ignore
))
328 (insert (if (stringp enriched-initial-annotation
)
329 enriched-initial-annotation
331 ;; Eval this in the buffer we are annotating. This
332 ;; fixes a bug which was saving incorrect File-Width
333 ;; information, since we were looking at local
334 ;; variables in the wrong buffer.
335 (if orig-buf
(set-buffer orig-buf
))
336 (funcall enriched-initial-annotation
))))
337 (enriched-map-property-regions 'hard
339 (if (and v
(= ?
\n (char-after b
)))
340 (progn (goto-char b
) (insert "\n"))))
342 (if enriched-verbose
(message nil
))
346 (defun enriched-make-annotation (internal-ann positive
)
347 "Format an annotation INTERNAL-ANN.
348 INTERNAL-ANN may be a string, for a flag, or a list of the form (PARAM VALUE).
349 If POSITIVE is non-nil, this is the opening annotation;
350 if nil, the matching close."
351 (cond ((stringp internal-ann
)
352 (format enriched-annotation-format
(if positive
"" "/") internal-ann
))
353 ;; Otherwise it is an annotation with parameters, represented as a list
355 (let ((item (car internal-ann
))
356 (params (cdr internal-ann
)))
357 (concat (format enriched-annotation-format
"" item
)
358 (mapconcat (lambda (i) (concat "<param>" i
"</param>"))
360 (t (format enriched-annotation-format
"/" (car internal-ann
)))))
362 (defun enriched-encode-other-face (old new
)
363 "Generate annotations for random face change.
364 One annotation each for foreground color, background color, italic, etc."
365 (cons (and old
(enriched-face-ans old
))
366 (and new
(enriched-face-ans new
))))
368 (defun enriched-face-ans (face)
369 "Return annotations specifying FACE.
370 FACE may be a list of faces instead of a single face;
371 it can also be anything allowed as an element of a list
372 which can be the value of the `face' text property."
373 (cond ((and (consp face
) (eq (car face
) 'foreground-color
))
374 (list (list "x-color" (cdr face
))))
375 ((and (consp face
) (eq (car face
) 'background-color
))
376 (list (list "x-bg-color" (cdr face
))))
377 ((and (listp face
) (eq (car face
) :foreground
))
378 (list (list "x-color" (cadr face
))))
379 ((and (listp face
) (eq (car face
) :background
))
380 (list (list "x-bg-color" (cadr face
))))
382 (apply 'append
(mapcar 'enriched-face-ans face
)))
383 ((let* ((fg (face-attribute face
:foreground
))
384 (bg (face-attribute face
:background
))
385 (props (face-font face t
))
386 (ans (cdr (format-annotate-single-property-change
387 'face nil props enriched-translations
))))
388 (unless (eq fg
'unspecified
)
389 (setq ans
(cons (list "x-color" fg
) ans
)))
390 (unless (eq bg
'unspecified
)
391 (setq ans
(cons (list "x-bg-color" bg
) ans
)))
399 (defun enriched-decode (from to
)
400 (if enriched-verbose
(message "Enriched: decoding document..."))
401 (use-hard-newlines 1 'never
)
404 (narrow-to-region from to
)
408 (let ((file-width (enriched-get-file-width)))
409 (enriched-remove-header)
411 ;; Deal with newlines
412 (while (search-forward-regexp "\n\n+" nil t
)
413 (if (current-justification)
415 (set-hard-newline-properties (match-beginning 0) (point)))
417 ;; Translate annotations
418 (format-deannotate-region from
(point-max) enriched-translations
419 'enriched-next-annotation
)
421 ;; Indent or fill the buffer
422 (cond (file-width ; File was filled to this width
423 (setq fill-column file-width
)
424 (if enriched-verbose
(message "Indenting..."))
425 (enriched-insert-indentation))
426 (t ; File was not filled.
427 (if enriched-verbose
(message "Filling paragraphs..."))
428 (fill-region (point-min) (point-max))))
429 (if enriched-verbose
(message nil
)))
432 (defun enriched-next-annotation ()
433 "Find and return next text/enriched annotation.
434 Any \"<<\" strings encountered are converted to \"<\".
435 Return value is \(begin end name positive-p), or nil if none was found."
436 (while (and (search-forward "<" nil
1)
437 (progn (goto-char (match-beginning 0))
438 (not (looking-at enriched-annotation-regexp
))))
440 (if (eq ?
< (char-after (point)))
442 ;; A single < that does not start an annotation is an error,
443 ;; which we note and then ignore.
444 (message "Warning: malformed annotation in file at %s"
447 (let* ((beg (match-beginning 0))
449 (name (downcase (buffer-substring
450 (match-beginning 2) (match-end 2))))
451 (pos (not (match-beginning 1))))
452 (list beg end name pos
))))
454 (defun enriched-get-file-width ()
455 "Look for file width information on this line."
457 (if (search-forward "Text-Width: " (+ (point) 1000) t
)
458 (read (current-buffer)))))
460 (defun enriched-remove-header ()
461 "Remove file-format header at point."
462 (while (looking-at "^[-A-Za-z]+: .*\n")
463 (delete-region (point) (match-end 0)))
464 (if (looking-at "^\n")
467 (defun enriched-decode-foreground (from to
&optional color
)
469 (list from to
'face
(list ':foreground color
))
470 (message "Warning: no color specified for <x-color>")
473 (defun enriched-decode-background (from to
&optional color
)
475 (list from to
'face
(list ':background color
))
476 (message "Warning: no color specified for <x-bg-color>")
479 ;;; Handling the `display' property.
482 (defun enriched-handle-display-prop (old new
)
483 "Return a list of annotations for a change in the `display' property.
484 OLD is the old value of the property, NEW is the new value. Value
485 is a list `(CLOSE OPEN)', where CLOSE is a list of annotations to
486 close and OPEN a list of annotations to open. Each of these lists
487 has the form `(ANNOTATION PARAM ...)'."
488 (let ((annotation "x-display")
489 (param (prin1-to-string (or old new
))))
491 (cons nil
(list (list annotation param
)))
492 (cons (list (list annotation param
)) nil
))))
494 (defun enriched-decode-display-prop (start end
&optional param
)
495 "Decode a `display' property for text between START and END.
496 PARAM is a `<param>' found for the property.
497 Value is a list `(START END SYMBOL VALUE)' with START and END denoting
498 the range of text to assign text property SYMBOL with value VALUE."
499 (let ((prop (when (stringp param
)
501 (car (read-from-string param
))
504 (message "Warning: invalid <x-display> parameter %s" param
))
505 (list start end
'display prop
)))
507 ;;; enriched.el ends here