Mercurial > emacs
annotate lisp/nxml/nxml-mode.el @ 93853:8fc3183d5a63
(checkdoc-this-string-valid-engine): Use `string-match-p'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 08 Apr 2008 11:47:48 +0000 |
parents | b6c62ca6da76 |
children | 3fad91a9740c |
rev | line source |
---|---|
86361 | 1 ;;; nxml-mode.el --- a new XML mode |
2 | |
87665 | 3 ;; Copyright (C) 2003, 2004, 2007, 2008 Free Software Foundation, Inc. |
86361 | 4 |
5 ;; Author: James Clark | |
6 ;; Keywords: XML | |
7 | |
86538 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 3, or (at your option) | |
13 ;; any later version. | |
86361 | 14 |
86538 | 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. | |
86361 | 19 |
86538 | 20 ;; You should have received a copy of the GNU General Public License |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
23 ;; Boston, MA 02110-1301, USA. | |
86361 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; See nxml-rap.el for description of parsing strategy. | |
28 | |
29 ;; The font locking here is independent of font-lock.el. We want to | |
30 ;; do more sophisticated handling of changes and we want to use the | |
31 ;; same xmltok rather than regexps for parsing so that we parse | |
32 ;; consistently and correctly. | |
33 | |
34 ;;; Code: | |
35 | |
36 (when (featurep 'mucs) | |
37 (error "nxml-mode is not compatible with Mule-UCS")) | |
38 | |
39 (require 'xmltok) | |
40 (require 'nxml-enc) | |
41 (require 'nxml-glyph) | |
42 (require 'nxml-util) | |
43 (require 'nxml-rap) | |
44 (require 'nxml-outln) | |
45 | |
87719
a38e332c61af
(nxml-enable-unicode-char-name-sets, rng-nxml-mode-init): Declare.
Jason Rumney <jasonr@gnu.org>
parents:
87715
diff
changeset
|
46 (declare-function rng-nxml-mode-init "rng-nxml") |
a38e332c61af
(nxml-enable-unicode-char-name-sets, rng-nxml-mode-init): Declare.
Jason Rumney <jasonr@gnu.org>
parents:
87715
diff
changeset
|
47 (declare-function nxml-enable-unicode-char-name-sets "nxml-uchnm") |
a38e332c61af
(nxml-enable-unicode-char-name-sets, rng-nxml-mode-init): Declare.
Jason Rumney <jasonr@gnu.org>
parents:
87715
diff
changeset
|
48 |
86361 | 49 ;;; Customization |
50 | |
51 (defgroup nxml nil | |
52 "New XML editing mode" | |
53 :group 'languages | |
54 :group 'wp) | |
55 | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
56 (defgroup nxml-faces nil |
86361 | 57 "Faces for XML syntax highlighting." |
58 :group 'nxml | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
59 :group 'font-lock-faces) |
86361 | 60 |
61 (defcustom nxml-syntax-highlight-flag t | |
62 "*Non-nil means nxml-mode should perform syntax highlighting." | |
63 :group 'nxml | |
64 :type 'boolean) | |
65 | |
66 (defcustom nxml-char-ref-display-glyph-flag t | |
67 "*Non-nil means display glyph following character reference. | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
68 The glyph is displayed in face `nxml-glyph'. The hook |
86361 | 69 `nxml-glyph-set-hook' can be used to customize for which characters |
70 glyphs are displayed." | |
71 :group 'nxml | |
72 :type 'boolean) | |
73 | |
74 (defcustom nxml-mode-hook nil | |
75 "Hook run by command `nxml-mode'." | |
76 :group 'nxml | |
77 :type 'hook) | |
78 | |
79 (defcustom nxml-sexp-element-flag nil | |
80 "*Non-nil means sexp commands treat an element as a single expression." | |
81 :group 'nxml | |
82 :type 'boolean) | |
83 | |
84 (defcustom nxml-slash-auto-complete-flag nil | |
85 "*Non-nil means typing a slash automatically completes the end-tag. | |
86 This is used by `nxml-electric-slash'." | |
87 :group 'nxml | |
88 :type 'boolean) | |
89 | |
90 (defcustom nxml-child-indent 2 | |
91 "*Indentation for the children of an element relative to the start-tag. | |
92 This only applies when the line or lines containing the start-tag contains | |
93 nothing else other than that start-tag." | |
94 :group 'nxml | |
95 :type 'integer) | |
96 | |
97 (defcustom nxml-attribute-indent 4 | |
98 "*Indentation for the attributes of an element relative to the start-tag. | |
99 This only applies when the first attribute of a tag starts a line. In other | |
100 cases, the first attribute on one line is indented the same as the first | |
101 attribute on the previous line." | |
102 :group 'nxml | |
103 :type 'integer) | |
104 | |
105 (defvar nxml-fontify-chunk-size 500) | |
106 | |
107 (defcustom nxml-bind-meta-tab-to-complete-flag (not window-system) | |
108 "*Non-nil means bind M-TAB in `nxml-mode-map' to `nxml-complete'. | |
109 C-return will be bound to `nxml-complete' in any case. | |
110 M-TAB gets swallowed by many window systems/managers, and | |
111 `documentation' will show M-TAB rather than C-return as the | |
112 binding `rng-complete' when both are bound. So it's better | |
113 to bind M-TAB only when it will work." | |
114 :group 'nxml | |
115 :set (lambda (sym flag) | |
116 (set-default sym flag) | |
117 (when (and (boundp 'nxml-mode-map) nxml-mode-map) | |
118 (define-key nxml-mode-map "\M-\t" (and flag 'nxml-complete)))) | |
119 :type 'boolean) | |
120 | |
121 (defcustom nxml-prefer-utf-16-to-utf-8-flag nil | |
122 "*Non-nil means prefer UTF-16 to UTF-8 when saving a buffer. | |
123 This is used only when a buffer does not contain an encoding declaration | |
124 and when its current `buffer-file-coding-system' specifies neither UTF-16 | |
125 nor UTF-8." | |
126 :group 'nxml | |
127 :type 'boolean) | |
128 | |
129 (defcustom nxml-prefer-utf-16-little-to-big-endian-flag (eq system-type | |
130 'windows-nt) | |
131 "*Non-nil means prefer little-endian to big-endian byte-order for UTF-16. | |
132 This is used only for saving a buffer; when reading the byte-order is | |
133 auto-detected. It may be relevant both when there is no encoding declaration | |
134 and when the encoding declaration specifies `UTF-16'." | |
135 :group 'nxml | |
136 :type 'boolean) | |
137 | |
138 (defcustom nxml-default-buffer-file-coding-system nil | |
139 "*Default value for `buffer-file-coding-system' for a buffer for a new file. | |
140 Nil means use the default value of `buffer-file-coding-system' as normal. | |
141 A buffer's `buffer-file-coding-system' affects what \\[nxml-insert-xml-declaration] inserts." | |
142 :group 'nxml | |
143 :type 'coding-system) | |
144 | |
145 (defcustom nxml-auto-insert-xml-declaration-flag nil | |
146 "*Non-nil means automatically insert an XML declaration in a new file. | |
147 The XML declaration is inserted using `nxml-insert-xml-declaration'." | |
148 :group 'nxml | |
149 :type 'boolean) | |
150 | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
151 (defface nxml-delimited-data |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
152 '((t (:inherit font-lock-doc-face))) |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
153 "Face used to highlight data enclosed between delimiters. |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
154 This is not used directly, but only via inheritance by other faces." |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
155 :group 'nxml-faces) |
86361 | 156 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
157 (defface nxml-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
158 '((t (:inherit font-lock-builtin-face))) |
86361 | 159 "Face used to highlight various names. |
160 This includes element and attribute names, processing | |
161 instruction targets and the CDATA keyword in a CDATA section. | |
162 This is not used directly, but only via inheritance by other faces." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
163 :group 'nxml-faces) |
86361 | 164 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
165 (defface nxml-ref |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
166 '((t (:inherit font-lock-constant-face))) |
86361 | 167 "Face used to highlight character and entity references. |
168 This is not used directly, but only via inheritance by other faces." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
169 :group 'nxml-faces) |
86361 | 170 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
171 (defface nxml-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
172 nil |
86361 | 173 "Face used to highlight delimiters. |
174 This is not used directly, but only via inheritance by other faces." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
175 :group 'nxml-faces) |
86361 | 176 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
177 (defface nxml-text |
86361 | 178 nil |
179 "Face used to highlight text." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
180 :group 'nxml-faces) |
86361 | 181 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
182 (defface nxml-comment-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
183 '((t (:inherit font-lock-comment-face))) |
86361 | 184 "Face used to highlight the content of comments." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
185 :group 'nxml-faces) |
86361 | 186 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
187 (defface nxml-comment-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
188 '((t (:inherit font-lock-comment-delimiter-face))) |
86361 | 189 "Face used for the delimiters of comments, i.e <!-- and -->." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
190 :group 'nxml-faces) |
86361 | 191 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
192 (defface nxml-processing-instruction-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
193 '((t (:inherit nxml-delimiter))) |
86361 | 194 "Face used for the delimiters of processing instructions, i.e <? and ?>." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
195 :group 'nxml-faces) |
86361 | 196 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
197 (defface nxml-processing-instruction-target |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
198 '((t (:inherit font-lock-keyword-face))) |
86361 | 199 "Face used for the target of processing instructions." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
200 :group 'nxml-faces) |
86361 | 201 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
202 (defface nxml-processing-instruction-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
203 '((t (:inherit nxml-delimited-data))) |
86361 | 204 "Face used for the content of processing instructions." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
205 :group 'nxml-faces) |
86361 | 206 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
207 (defface nxml-cdata-section-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
208 '((t (:inherit nxml-delimiter))) |
86361 | 209 "Face used for the delimiters of CDATA sections, i.e <![, [, and ]]>." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
210 :group 'nxml-faces) |
86361 | 211 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
212 (defface nxml-cdata-section-CDATA |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
213 '((t (:inherit nxml-name))) |
86361 | 214 "Face used for the CDATA keyword in CDATA sections." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
215 :group 'nxml-faces) |
86361 | 216 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
217 (defface nxml-cdata-section-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
218 '((t (:inherit nxml-text))) |
86361 | 219 "Face used for the content of CDATA sections." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
220 :group 'nxml-faces) |
86361 | 221 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
222 (defface nxml-char-ref-number |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
223 '((t (:inherit nxml-ref))) |
86361 | 224 "Face used for the number in character references. |
225 This includes ths `x' in hex references." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
226 :group 'nxml-faces) |
86361 | 227 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
228 (defface nxml-char-ref-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
229 '((t (:inherit nxml-ref))) |
86361 | 230 "Face used for the delimiters of character references, i.e &# and ;." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
231 :group 'nxml-faces) |
86361 | 232 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
233 (defface nxml-entity-ref-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
234 '((t (:inherit nxml-ref))) |
86361 | 235 "Face used for the entity name in general entity references." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
236 :group 'nxml-faces) |
86361 | 237 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
238 (defface nxml-entity-ref-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
239 '((t (:inherit nxml-ref))) |
86361 | 240 "Face used for the delimiters of entity references, i.e & and ;." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
241 :group 'nxml-faces) |
86361 | 242 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
243 (defface nxml-tag-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
244 '((t (:inherit nxml-delimiter))) |
86361 | 245 "Face used for the angle brackets delimiting tags. |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
246 `nxml-tag-slash' is used for slashes." |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
247 :group 'nxml-faces) |
86361 | 248 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
249 (defface nxml-tag-slash |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
250 '((t (:inherit nxml-tag-delimiter))) |
86361 | 251 "Face used for slashes in tags, both in end-tags and empty-elements." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
252 :group 'nxml-faces) |
86361 | 253 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
254 (defface nxml-element-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
255 '((t (:inherit nxml-name))) |
86361 | 256 "Face used for the prefix of elements." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
257 :group 'nxml-faces) |
86361 | 258 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
259 (defface nxml-element-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
260 nil |
86361 | 261 "Face used for the colon in element names." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
262 :group 'nxml-faces) |
86361 | 263 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
264 (defface nxml-element-local-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
265 '((t (:inherit font-lock-function-name-face))) |
86361 | 266 "Face used for the local name of elements." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
267 :group 'nxml-faces) |
86361 | 268 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
269 (defface nxml-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
270 '((t (:inherit nxml-name))) |
86361 | 271 "Face used for the prefix of attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
272 :group 'nxml-faces) |
86361 | 273 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
274 (defface nxml-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
275 '((t (:inherit nxml-delimiter))) |
86361 | 276 "Face used for the colon in attribute names." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
277 :group 'nxml-faces) |
86361 | 278 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
279 (defface nxml-attribute-local-name |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
280 '((t (:inherit font-lock-variable-name-face))) |
86361 | 281 "Face used for the local name of attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
282 :group 'nxml-faces) |
86361 | 283 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
284 (defface nxml-namespace-attribute-xmlns |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
285 '((t (:inherit nxml-attribute-prefix))) |
86361 | 286 "Face used for `xmlns' in namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
287 :group 'nxml-faces) |
86361 | 288 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
289 (defface nxml-namespace-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
290 '((t (:inherit nxml-attribute-colon))) |
86361 | 291 "Face used for the colon in namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
292 :group 'nxml-faces) |
86361 | 293 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
294 (defface nxml-namespace-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
295 '((t (:inherit nxml-attribute-local-name))) |
86361 | 296 "Face used for the prefix declared in namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
297 :group 'nxml-faces) |
86361 | 298 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
299 (defface nxml-attribute-value |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
300 '((t (:inherit font-lock-string-face))) |
86361 | 301 "Face used for the value of attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
302 :group 'nxml-faces) |
86361 | 303 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
304 (defface nxml-attribute-value-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
305 '((t (:inherit nxml-attribute-value))) |
86361 | 306 "Face used for the delimiters of attribute values." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
307 :group 'nxml-faces) |
86361 | 308 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
309 (defface nxml-namespace-attribute-value |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
310 '((t (:inherit nxml-attribute-value))) |
86361 | 311 "Face used for the value of namespace attributes." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
312 :group 'nxml-faces) |
86361 | 313 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
314 (defface nxml-namespace-attribute-value-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
315 '((t (:inherit nxml-attribute-value-delimiter))) |
86361 | 316 "Face used for the delimiters of namespace attribute values." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
317 :group 'nxml-faces) |
86361 | 318 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
319 (defface nxml-prolog-literal-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
320 '((t (:inherit nxml-delimited-data))) |
86361 | 321 "Face used for the delimiters of literals in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
322 :group 'nxml-faces) |
86361 | 323 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
324 (defface nxml-prolog-literal-content |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
325 '((t (:inherit nxml-delimited-data))) |
86361 | 326 "Face used for the content of literals in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
327 :group 'nxml-faces) |
86361 | 328 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
329 (defface nxml-prolog-keyword |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
330 '((t (:inherit font-lock-keyword-face))) |
86361 | 331 "Face used for keywords in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
332 :group 'nxml-faces) |
86361 | 333 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
334 (defface nxml-markup-declaration-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
335 '((t (:inherit nxml-delimiter))) |
86361 | 336 "Face used for the delimiters of markup declarations in the prolog. |
337 The delimiters are <! and >." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
338 :group 'nxml-faces) |
86361 | 339 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
340 (defface nxml-hash |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
341 '((t (:inherit nxml-name))) |
86361 | 342 "Face used for # before a name in the prolog." |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
343 :group 'nxml-faces) |
86361 | 344 |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
345 (defface nxml-glyph |
86361 | 346 '((((type x)) |
347 (:family | |
348 "misc-fixed" | |
349 :background | |
350 "light grey" | |
351 :foreground | |
352 "black" | |
353 :weight | |
354 normal | |
355 :slant | |
356 normal)) | |
357 (t | |
358 (:background | |
359 "light grey" | |
360 :foreground | |
361 "black" | |
362 :weight | |
363 normal | |
364 :slant | |
365 normal))) | |
366 "Face used for glyph for char references." | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
367 :group 'nxml-faces) |
86361 | 368 |
369 ;;; Global variables | |
370 | |
371 (defvar nxml-prolog-regions nil | |
372 "List of regions in the prolog to be fontified. | |
373 See the function `xmltok-forward-prolog' for more information.") | |
374 (make-variable-buffer-local 'nxml-prolog-regions) | |
375 | |
376 (defvar nxml-last-fontify-end nil | |
377 "Position where fontification last ended. | |
378 Nil if the buffer changed since the last fontification.") | |
379 (make-variable-buffer-local 'nxml-last-fontify-end) | |
380 | |
381 (defvar nxml-degraded nil | |
382 "Non-nil if currently operating in degraded mode. | |
383 Degraded mode is enabled when an internal error is encountered in the | |
384 fontification or after-change functions.") | |
385 (make-variable-buffer-local 'nxml-degraded) | |
386 | |
387 (defvar nxml-completion-hook nil | |
388 "Hook run by `nxml-complete'. | |
389 This hook is run until success.") | |
390 | |
391 (defvar nxml-in-mixed-content-hook nil | |
392 "Hook to determine whether point is in mixed content. | |
393 The hook is called without arguments. It should return nil if it is | |
394 definitely not mixed; non-nil otherwise. The hook will be run until | |
395 one of the functions returns nil.") | |
396 | |
397 (defvar nxml-mixed-scan-distance 4000 | |
398 "Maximum distance from point to scan when checking for mixed content.") | |
399 | |
400 (defvar nxml-end-tag-indent-scan-distance 4000 | |
401 "Maximum distance from point to scan backwards when indenting end-tag.") | |
402 | |
403 (defvar nxml-char-ref-extra-display t | |
404 "Non-nil means display extra information for character references. | |
405 The extra information consists of a tooltip with the character name | |
406 and, if `nxml-char-ref-display-glyph-flag' is non-nil, a glyph | |
407 corresponding to the referenced character following the character | |
408 reference.") | |
409 (make-variable-buffer-local 'nxml-char-ref-extra-display) | |
410 | |
411 (defvar nxml-mode-map | |
412 (let ((map (make-sparse-keymap))) | |
413 (define-key map "\M-\C-u" 'nxml-backward-up-element) | |
414 (define-key map "\M-\C-d" 'nxml-down-element) | |
415 (define-key map "\M-\C-n" 'nxml-forward-element) | |
416 (define-key map "\M-\C-p" 'nxml-backward-element) | |
417 (define-key map "\M-{" 'nxml-backward-paragraph) | |
418 (define-key map "\M-}" 'nxml-forward-paragraph) | |
419 (define-key map "\M-h" 'nxml-mark-paragraph) | |
420 (define-key map "\C-c\C-f" 'nxml-finish-element) | |
421 (define-key map "\C-c\C-m" 'nxml-split-element) | |
422 (define-key map "\C-c\C-b" 'nxml-balanced-close-start-tag-block) | |
423 (define-key map "\C-c\C-i" 'nxml-balanced-close-start-tag-inline) | |
424 (define-key map "\C-c\C-x" 'nxml-insert-xml-declaration) | |
425 (define-key map "\C-c\C-d" 'nxml-dynamic-markup-word) | |
426 ;; u is for Unicode | |
427 (define-key map "\C-c\C-u" 'nxml-insert-named-char) | |
428 (define-key map "\C-c\C-o" nxml-outline-prefix-map) | |
429 (define-key map [S-mouse-2] 'nxml-mouse-hide-direct-text-content) | |
430 (define-key map "/" 'nxml-electric-slash) | |
431 (define-key map [C-return] 'nxml-complete) | |
432 (when nxml-bind-meta-tab-to-complete-flag | |
433 (define-key map "\M-\t" 'nxml-complete)) | |
434 map) | |
435 "Keymap for nxml-mode.") | |
436 | |
437 (defsubst nxml-set-face (start end face) | |
438 (when (and face (< start end)) | |
439 (put-text-property start end 'face face))) | |
440 | |
441 (defun nxml-clear-face (start end) | |
442 (remove-text-properties start end '(face nil)) | |
443 (nxml-clear-char-ref-extra-display start end)) | |
444 | |
445 (defsubst nxml-set-fontified (start end) | |
446 (put-text-property start end 'fontified t)) | |
447 | |
448 (defsubst nxml-clear-fontified (start end) | |
449 (remove-text-properties start end '(fontified nil))) | |
450 | |
451 ;;;###autoload | |
452 (defun nxml-mode () | |
453 ;; We use C-c C-i instead of \\[nxml-balanced-close-start-tag-inline] | |
454 ;; because Emacs turns C-c C-i into C-c TAB which is hard to type and | |
455 ;; not mnemonic. | |
456 "Major mode for editing XML. | |
457 | |
458 Syntax highlighting is performed unless the variable | |
459 `nxml-syntax-highlight-flag' is nil. | |
460 | |
461 \\[nxml-finish-element] finishes the current element by inserting an end-tag. | |
462 C-c C-i closes a start-tag with `>' and then inserts a balancing end-tag | |
463 leaving point between the start-tag and end-tag. | |
464 \\[nxml-balanced-close-start-tag-block] is similar but for block rather than inline elements: | |
465 the start-tag, point, and end-tag are all left on separate lines. | |
466 If `nxml-slash-auto-complete-flag' is non-nil, then inserting a `</' | |
467 automatically inserts the rest of the end-tag. | |
468 | |
469 \\[nxml-complete] performs completion on the symbol preceding point. | |
470 | |
471 \\[nxml-dynamic-markup-word] uses the contents of the current buffer | |
472 to choose a tag to put around the word preceding point. | |
473 | |
474 Sections of the document can be displayed in outline form. The | |
475 variable `nxml-section-element-name-regexp' controls when an element | |
476 is recognized as a section. The same key sequences that change | |
477 visibility in outline mode are used except that they start with C-c C-o | |
478 instead of C-c. | |
479 | |
480 Validation is provided by the related minor-mode `rng-validate-mode'. | |
481 This also makes completion schema- and context- sensitive. Element | |
482 names, attribute names, attribute values and namespace URIs can all be | |
87712
a9f53375739a
(nxml-mode): Call rng-nxml-mode-init directly.
Jason Rumney <jasonr@gnu.org>
parents:
87665
diff
changeset
|
483 completed. By default, `rng-validate-mode' is automatically enabled. You |
a9f53375739a
(nxml-mode): Call rng-nxml-mode-init directly.
Jason Rumney <jasonr@gnu.org>
parents:
87665
diff
changeset
|
484 can toggle it using \\[rng-validate-mode] or change the default by |
a9f53375739a
(nxml-mode): Call rng-nxml-mode-init directly.
Jason Rumney <jasonr@gnu.org>
parents:
87665
diff
changeset
|
485 customizing `rng-nxml-auto-validate-flag'. |
86361 | 486 |
487 \\[indent-for-tab-command] indents the current line appropriately. | |
488 This can be customized using the variable `nxml-child-indent' | |
489 and the variable `nxml-attribute-indent'. | |
490 | |
491 \\[nxml-insert-named-char] inserts a character reference using | |
492 the character's name (by default, the Unicode name). \\[universal-argument] \\[nxml-insert-named-char] | |
493 inserts the character directly. | |
494 | |
495 The Emacs commands that normally operate on balanced expressions will | |
496 operate on XML markup items. Thus \\[forward-sexp] will move forward | |
497 across one markup item; \\[backward-sexp] will move backward across | |
498 one markup item; \\[kill-sexp] will kill the following markup item; | |
499 \\[mark-sexp] will mark the following markup item. By default, each | |
500 tag each treated as a single markup item; to make the complete element | |
501 be treated as a single markup item, set the variable | |
502 `nxml-sexp-element-flag' to t. For more details, see the function | |
503 `nxml-forward-balanced-item'. | |
504 | |
505 \\[nxml-backward-up-element] and \\[nxml-down-element] move up and down the element structure. | |
506 | |
507 Many aspects this mode can be customized using | |
508 \\[customize-group] nxml RET." | |
509 (interactive) | |
510 (kill-all-local-variables) | |
511 (setq major-mode 'nxml-mode) | |
512 (setq mode-name "nXML") | |
87793
b0683497550c
(nxml-mode): Use mode-line-process to indicate the use of degraded mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87719
diff
changeset
|
513 (set (make-local-variable 'mode-line-process) '((nxml-degraded "/degraded"))) |
86361 | 514 ;; We'll determine the fill prefix ourselves |
515 (make-local-variable 'adaptive-fill-mode) | |
516 (setq adaptive-fill-mode nil) | |
517 (make-local-variable 'forward-sexp-function) | |
518 (setq forward-sexp-function 'nxml-forward-balanced-item) | |
519 (make-local-variable 'indent-line-function) | |
520 (setq indent-line-function 'nxml-indent-line) | |
521 (make-local-variable 'fill-paragraph-function) | |
522 (setq fill-paragraph-function 'nxml-do-fill-paragraph) | |
523 ;; Comment support | |
524 ;; This doesn't seem to work too well; | |
525 ;; I think we should probably roll our own nxml-comment-dwim function. | |
526 (make-local-variable 'comment-indent-function) | |
527 (setq comment-indent-function 'nxml-indent-line) | |
528 (make-local-variable 'comment-start) | |
529 (setq comment-start "<!--") | |
530 (make-local-variable 'comment-start-skip) | |
531 (setq comment-start-skip "<!--[ \t\r\n]*") | |
532 (make-local-variable 'comment-end) | |
533 (setq comment-end "-->") | |
534 (make-local-variable 'comment-end-skip) | |
535 (setq comment-end-skip "[ \t\r\n]*-->") | |
536 (make-local-variable 'comment-line-break-function) | |
537 (setq comment-line-break-function 'nxml-newline-and-indent) | |
538 (use-local-map nxml-mode-map) | |
539 (save-excursion | |
540 (save-restriction | |
541 (widen) | |
542 (nxml-clear-dependent-regions (point-min) (point-max)) | |
543 (setq nxml-scan-end (copy-marker (point-min) nil)) | |
544 (nxml-with-unmodifying-text-property-changes | |
545 (when nxml-syntax-highlight-flag | |
546 (nxml-clear-fontified (point-min) (point-max))) | |
547 (nxml-clear-inside (point-min) (point-max)) | |
548 (nxml-with-invisible-motion | |
549 (nxml-scan-prolog))))) | |
550 (when nxml-syntax-highlight-flag | |
551 (add-hook 'fontification-functions 'nxml-fontify nil t)) | |
552 (add-hook 'after-change-functions 'nxml-after-change nil t) | |
91924
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
553 ;; Emacs 23 handles the encoding attribute on the xml declaration |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
554 ;; transparently to nxml-mode, so there is no longer a need for the below |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
555 ;; hook. The hook also had the drawback of overriding explicit user |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
556 ;; instruction to save as some encoding other than utf-8. |
b6c62ca6da76
(nxml-mode): Don't add a write-contents-hook.
Jason Rumney <jasonr@gnu.org>
parents:
87793
diff
changeset
|
557 ;;; (add-hook 'write-contents-hooks 'nxml-prepare-to-save) |
86361 | 558 (when (not (and (buffer-file-name) (file-exists-p (buffer-file-name)))) |
559 (when (and nxml-default-buffer-file-coding-system | |
560 (not (local-variable-p 'buffer-file-coding-system))) | |
561 (setq buffer-file-coding-system nxml-default-buffer-file-coding-system)) | |
562 (when nxml-auto-insert-xml-declaration-flag | |
563 (nxml-insert-xml-declaration))) | |
87712
a9f53375739a
(nxml-mode): Call rng-nxml-mode-init directly.
Jason Rumney <jasonr@gnu.org>
parents:
87665
diff
changeset
|
564 (rng-nxml-mode-init) |
87715
39844b05431b
(nxml-char-name-ignore-case): Change default value.
Jason Rumney <jasonr@gnu.org>
parents:
87712
diff
changeset
|
565 (nxml-enable-unicode-char-name-sets) |
86361 | 566 (run-hooks 'nxml-mode-hook)) |
567 | |
568 (defun nxml-degrade (context err) | |
569 (message "Internal nXML mode error in %s (%s), degrading" | |
570 context | |
571 (error-message-string err)) | |
572 (ding) | |
573 (setq nxml-degraded t) | |
574 (setq nxml-prolog-end 1) | |
575 (save-excursion | |
576 (save-restriction | |
577 (widen) | |
578 (nxml-with-unmodifying-text-property-changes | |
579 (nxml-clear-face (point-min) (point-max)) | |
580 (nxml-set-fontified (point-min) (point-max)) | |
87793
b0683497550c
(nxml-mode): Use mode-line-process to indicate the use of degraded mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87719
diff
changeset
|
581 (nxml-clear-inside (point-min) (point-max)))))) |
86361 | 582 |
583 ;;; Change management | |
584 | |
585 (defun nxml-after-change (start end pre-change-length) | |
586 ;; Work around bug in insert-file-contents. | |
587 (when (> end (1+ (buffer-size))) | |
588 (setq start 1) | |
589 (setq end (1+ (buffer-size)))) | |
590 (unless nxml-degraded | |
591 (condition-case err | |
592 (save-excursion | |
593 (save-restriction | |
594 (widen) | |
595 (save-match-data | |
596 (nxml-with-invisible-motion | |
597 (nxml-with-unmodifying-text-property-changes | |
598 (nxml-after-change1 start end pre-change-length)))))) | |
599 (error | |
600 (nxml-degrade 'nxml-after-change err))))) | |
601 | |
602 (defun nxml-after-change1 (start end pre-change-length) | |
603 (setq nxml-last-fontify-end nil) | |
604 (let ((pre-change-end (+ start pre-change-length))) | |
605 (setq start | |
606 (nxml-adjust-start-for-dependent-regions start | |
607 end | |
608 pre-change-length)) | |
609 (when (<= start | |
610 ;; Add 2 so as to include the < and following char | |
611 ;; that start the instance, since changing these | |
612 ;; can change where the prolog ends. | |
613 (+ nxml-prolog-end 2)) | |
614 ;; end must be extended to at least the end of the old prolog | |
615 (when (< pre-change-end nxml-prolog-end) | |
616 (setq end | |
617 ;; don't let end get out of range even if pre-change-length | |
618 ;; is bogus | |
619 (min (point-max) | |
620 (+ end (- nxml-prolog-end pre-change-end))))) | |
621 (nxml-scan-prolog))) | |
622 (cond ((<= end nxml-prolog-end) | |
623 (setq end nxml-prolog-end) | |
624 (goto-char start) | |
625 ;; This is so that Emacs redisplay works | |
626 (setq start (line-beginning-position))) | |
627 ((and (<= start nxml-scan-end) | |
628 (> start (point-min)) | |
629 (nxml-get-inside (1- start))) | |
630 ;; The closing delimiter might have been removed. | |
631 ;; So we may need to redisplay from the beginning | |
632 ;; of the token. | |
633 (goto-char (1- start)) | |
634 (nxml-move-outside-backwards) | |
635 ;; This is so that Emacs redisplay works | |
636 (setq start (line-beginning-position)) | |
637 (setq end (max (nxml-scan-after-change (point) end) | |
638 end))) | |
639 (t | |
640 (goto-char start) | |
641 ;; This is both for redisplay and to move back | |
642 ;; past any incomplete opening delimiters | |
643 (setq start (line-beginning-position)) | |
644 (setq end (max (nxml-scan-after-change start end) | |
645 end)))) | |
646 (when nxml-syntax-highlight-flag | |
647 (when (>= start end) | |
648 ;; Must clear at least one char so as to trigger redisplay. | |
649 (cond ((< start (point-max)) | |
650 (setq end (1+ start))) | |
651 (t | |
652 (setq end (point-max)) | |
653 (goto-char end) | |
654 (setq start (line-beginning-position))))) | |
655 (nxml-clear-fontified start end))) | |
656 | |
657 ;;; Encodings | |
658 | |
659 (defun nxml-insert-xml-declaration () | |
660 "Insert an XML declaration at the beginning of buffer. | |
661 The XML declaration will declare an encoding depending on the buffer's | |
662 `buffer-file-coding-system'." | |
663 (interactive "*") | |
664 (let ((coding-system | |
665 (if (and buffer-file-coding-system | |
666 (coding-system-p buffer-file-coding-system) | |
667 (coding-system-get buffer-file-coding-system | |
668 'mime-charset)) | |
669 buffer-file-coding-system | |
670 (nxml-choose-utf-coding-system)))) | |
671 (goto-char (point-min)) | |
672 (insert (format "<?xml version=\"1.0\" encoding=\"%s\"?>\n" | |
673 (nxml-coding-system-name coding-system))))) | |
674 | |
675 (defun nxml-prepare-to-save () | |
676 (unless (and (not enable-multibyte-characters) | |
677 (local-variable-p 'buffer-file-coding-system) | |
678 buffer-file-coding-system | |
679 (or (eq (coding-system-type buffer-file-coding-system) 5) | |
680 (eq buffer-file-coding-system 'no-conversion))) | |
681 (save-excursion | |
682 (setq buffer-file-coding-system (nxml-select-coding-system)))) | |
683 ;; nil from a function in `write-contents-hooks' means | |
684 ;; to continue and write the file as normal | |
685 nil) | |
686 | |
687 (defun nxml-select-coding-system () | |
688 (let* ((suitable-coding-systems | |
689 (find-coding-systems-region (point-min) (point-max))) | |
690 (enc-pos (progn | |
691 (goto-char (point-min)) | |
692 (xmltok-get-declared-encoding-position))) | |
693 (enc-name | |
694 (and (consp enc-pos) | |
695 (buffer-substring-no-properties (car enc-pos) | |
696 (cdr enc-pos)))) | |
697 (coding-system | |
698 (cond (enc-name | |
699 (if (string= (downcase enc-name) "utf-16") | |
700 (nxml-choose-utf-16-coding-system) | |
701 (nxml-mime-charset-coding-system enc-name))) | |
702 (enc-pos (nxml-choose-utf-coding-system))))) | |
703 ;; Make sure we have a coding-system | |
704 (unless coding-system | |
705 (setq coding-system | |
706 (and (not buffer-read-only) | |
707 (nxml-choose-suitable-coding-system | |
708 suitable-coding-systems))) | |
709 (let ((message | |
710 (if enc-name | |
711 (format "Unknown encoding %s" enc-name) | |
712 "XML declaration is not well-formed"))) | |
713 (cond ((not coding-system) | |
714 (error "%s" message)) | |
715 ((y-or-n-p | |
716 (concat message | |
717 ". " | |
718 (format (if enc-name | |
719 "Save with %s" | |
720 "Modify and save with encoding %s") | |
721 (nxml-coding-system-name coding-system)) | |
722 " ")) | |
723 (nxml-fix-encoding-declaration enc-pos coding-system)) | |
724 (t (signal 'quit nil))))) | |
725 ;; Make sure it can encode all the characters in the buffer | |
726 (unless (or (memq (coding-system-base coding-system) | |
727 suitable-coding-systems) | |
728 (equal suitable-coding-systems '(undecided))) | |
729 (let ((message | |
730 (nxml-unsuitable-coding-system-message coding-system | |
731 enc-name))) | |
732 (setq coding-system | |
733 (and (not buffer-read-only) | |
734 (nxml-choose-suitable-coding-system | |
735 suitable-coding-systems))) | |
736 (cond ((not coding-system) (error "%s" message)) | |
737 ((y-or-n-p (concat message | |
738 (format ". Save with %s " | |
739 (nxml-coding-system-name | |
740 coding-system)))) | |
741 (nxml-fix-encoding-declaration enc-pos coding-system)) | |
742 (t (signal 'quit nil))))) | |
743 ;; Merge the newline type of our existing encoding | |
744 (let ((current-eol-type | |
745 (coding-system-eol-type buffer-file-coding-system))) | |
746 (when (and current-eol-type (integerp current-eol-type)) | |
747 (setq coding-system | |
748 (coding-system-change-eol-conversion coding-system | |
749 current-eol-type)))) | |
750 coding-system)) | |
751 | |
752 (defun nxml-unsuitable-coding-system-message (coding-system &optional enc-name) | |
753 (if (nxml-coding-system-unicode-p coding-system) | |
754 "Cannot translate some characters to Unicode" | |
755 (format "Cannot encode some characters with %s" | |
756 (or enc-name | |
757 (nxml-coding-system-name coding-system))))) | |
758 | |
759 (defconst nxml-utf-16-coding-systems (and (coding-system-p 'utf-16-be) | |
760 (coding-system-p 'utf-16-le) | |
761 '(utf-16-be utf-16-le))) | |
762 | |
763 (defconst nxml-utf-coding-systems (cons 'utf-8 nxml-utf-16-coding-systems)) | |
764 | |
765 (defun nxml-coding-system-unicode-p (coding-system) | |
766 (nxml-coding-system-member (coding-system-base coding-system) | |
767 nxml-utf-coding-systems)) | |
768 | |
769 (defun nxml-coding-system-name (coding-system) | |
770 (setq coding-system (coding-system-base coding-system)) | |
771 (symbol-name | |
772 (if (nxml-coding-system-member coding-system nxml-utf-16-coding-systems) | |
773 'utf-16 | |
774 (or (coding-system-get coding-system 'mime-charset) | |
775 coding-system)))) | |
776 | |
777 (defun nxml-fix-encoding-declaration (enc-pos coding-system) | |
778 (let ((charset (nxml-coding-system-name coding-system))) | |
779 (cond ((consp enc-pos) | |
780 (delete-region (car enc-pos) (cdr enc-pos)) | |
781 (goto-char (car enc-pos)) | |
782 (insert charset)) | |
783 ((integerp enc-pos) | |
784 (goto-char enc-pos) | |
785 (insert " encoding=\"" charset ?\")) | |
786 (t | |
787 (goto-char (point-min)) | |
788 (insert "<?xml version=\"1.0\" encoding=\"" | |
789 charset | |
790 "\"?>\n") | |
791 (when (and (not enc-pos) | |
792 (let ((case-fold-search t)) | |
793 (looking-at xmltok-bad-xml-decl-regexp))) | |
794 (delete-region (point) (match-end 0))))))) | |
795 | |
796 (defun nxml-choose-suitable-coding-system (suitable-coding-systems) | |
797 (let (ret coding-system) | |
798 (if (and buffer-file-coding-system | |
799 (memq (coding-system-base buffer-file-coding-system) | |
800 suitable-coding-systems)) | |
801 buffer-file-coding-system | |
802 (while (and suitable-coding-systems (not ret)) | |
803 (setq coding-system (car suitable-coding-systems)) | |
804 (if (coding-system-get coding-system 'mime-charset) | |
805 (setq ret coding-system) | |
806 (setq suitable-coding-systems (cdr suitable-coding-systems)))) | |
807 ret))) | |
808 | |
809 (defun nxml-choose-utf-coding-system () | |
810 (let ((cur (and (local-variable-p 'buffer-file-coding-system) | |
811 buffer-file-coding-system | |
812 (coding-system-base buffer-file-coding-system)))) | |
813 (cond ((car (nxml-coding-system-member cur nxml-utf-coding-systems))) | |
814 ((and nxml-prefer-utf-16-to-utf-8-flag | |
815 (coding-system-p 'utf-16-le) | |
816 (coding-system-p 'utf-16-be)) | |
817 (if nxml-prefer-utf-16-little-to-big-endian-flag | |
818 'utf-16-le | |
819 'utf-16-be)) | |
820 (t 'utf-8)))) | |
821 | |
822 (defun nxml-choose-utf-16-coding-system () | |
823 (let ((cur (and (local-variable-p 'buffer-file-coding-system) | |
824 buffer-file-coding-system | |
825 (coding-system-base buffer-file-coding-system)))) | |
826 (cond ((car (nxml-coding-system-member cur nxml-utf-16-coding-systems))) | |
827 (nxml-prefer-utf-16-little-to-big-endian-flag | |
828 (and (coding-system-p 'utf-16-le) 'utf-16-le)) | |
829 (t (and (coding-system-p 'utf-16-be) 'utf-16-be))))) | |
830 | |
831 (defun nxml-coding-system-member (coding-system coding-systems) | |
832 (let (ret) | |
833 (while (and coding-systems (not ret)) | |
834 (if (coding-system-equal coding-system | |
835 (car coding-systems)) | |
836 (setq ret coding-systems) | |
837 (setq coding-systems (cdr coding-systems)))) | |
838 ret)) | |
839 | |
840 ;;; Fontification | |
841 | |
842 (defun nxml-fontify (start) | |
843 (condition-case err | |
844 (save-excursion | |
845 (save-restriction | |
846 (widen) | |
847 (save-match-data | |
848 (nxml-with-invisible-motion | |
849 (nxml-with-unmodifying-text-property-changes | |
850 (if (or nxml-degraded | |
851 ;; just in case we get called in the wrong buffer | |
852 (not nxml-prolog-end)) | |
853 (nxml-set-fontified start (point-max)) | |
854 (nxml-fontify1 start))))))) | |
855 (error | |
856 (nxml-degrade 'nxml-fontify err)))) | |
857 | |
858 (defun nxml-fontify1 (start) | |
859 (cond ((< start nxml-prolog-end) | |
860 (nxml-fontify-prolog) | |
861 (nxml-set-fontified (point-min) | |
862 nxml-prolog-end)) | |
863 (t | |
864 (goto-char start) | |
865 (when (not (eq nxml-last-fontify-end start)) | |
866 (when (not (equal (char-after) ?\<)) | |
867 (search-backward "<" nxml-prolog-end t)) | |
868 (nxml-ensure-scan-up-to-date) | |
869 (nxml-move-outside-backwards)) | |
870 (let ((start (point))) | |
871 (nxml-do-fontify (min (point-max) | |
872 (+ start nxml-fontify-chunk-size))) | |
873 (setq nxml-last-fontify-end (point)) | |
874 (nxml-set-fontified start nxml-last-fontify-end))))) | |
875 | |
876 (defun nxml-fontify-buffer () | |
877 (interactive) | |
878 (save-excursion | |
879 (save-restriction | |
880 (widen) | |
881 (nxml-with-invisible-motion | |
882 (goto-char (point-min)) | |
883 (nxml-with-unmodifying-text-property-changes | |
884 (nxml-fontify-prolog) | |
885 (goto-char nxml-prolog-end) | |
886 (nxml-do-fontify)))))) | |
887 | |
888 (defun nxml-fontify-prolog () | |
889 "Fontify the prolog. | |
890 The buffer is assumed to be prepared for fontification. | |
891 This does not set the fontified property, but it does clear | |
892 faces appropriately." | |
893 (let ((regions nxml-prolog-regions)) | |
894 (nxml-clear-face (point-min) nxml-prolog-end) | |
895 (while regions | |
896 (let ((region (car regions))) | |
897 (nxml-apply-fontify-rule (aref region 0) | |
898 (aref region 1) | |
899 (aref region 2))) | |
900 (setq regions (cdr regions))))) | |
901 | |
902 (defun nxml-do-fontify (&optional bound) | |
903 "Fontify at least as far as bound. | |
904 Leave point after last fontified position." | |
905 (unless bound (setq bound (point-max))) | |
906 (let (xmltok-dependent-regions | |
907 xmltok-errors) | |
908 (while (and (< (point) bound) | |
909 (nxml-tokenize-forward)) | |
910 (nxml-clear-face xmltok-start (point)) | |
911 (nxml-apply-fontify-rule)))) | |
912 | |
913 ;; Vectors identify a substring of the token to be highlighted in some face. | |
914 | |
915 ;; Token types returned by xmltok-forward. | |
916 | |
917 (put 'start-tag | |
918 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
919 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
920 [-1 nil nxml-tag-delimiter] |
86361 | 921 (element-qname . 1) |
922 attributes)) | |
923 | |
924 (put 'partial-start-tag | |
925 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
926 '([nil 1 nxml-tag-delimiter] |
86361 | 927 (element-qname . 1) |
928 attributes)) | |
929 | |
930 (put 'end-tag | |
931 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
932 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
933 [1 2 nxml-tag-slash] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
934 [-1 nil nxml-tag-delimiter] |
86361 | 935 (element-qname . 2))) |
936 | |
937 (put 'partial-end-tag | |
938 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
939 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
940 [1 2 nxml-tag-slash] |
86361 | 941 (element-qname . 2))) |
942 | |
943 (put 'empty-element | |
944 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
945 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
946 [-2 -1 nxml-tag-slash] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
947 [-1 nil nxml-tag-delimiter] |
86361 | 948 (element-qname . 1) |
949 attributes)) | |
950 | |
951 (put 'partial-empty-element | |
952 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
953 '([nil 1 nxml-tag-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
954 [-1 nil nxml-tag-slash] |
86361 | 955 (element-qname . 1) |
956 attributes)) | |
957 | |
958 (put 'char-ref | |
959 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
960 '([nil 2 nxml-char-ref-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
961 [2 -1 nxml-char-ref-number] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
962 [-1 nil nxml-char-ref-delimiter] |
86361 | 963 char-ref)) |
964 | |
965 (put 'entity-ref | |
966 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
967 '([nil 1 nxml-entity-ref-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
968 [1 -1 nxml-entity-ref-name] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
969 [-1 nil nxml-entity-ref-delimiter])) |
86361 | 970 |
971 (put 'comment | |
972 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
973 '([nil 4 nxml-comment-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
974 [4 -3 nxml-comment-content] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
975 [-3 nil nxml-comment-delimiter])) |
86361 | 976 |
977 (put 'processing-instruction | |
978 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
979 '([nil 2 nxml-processing-instruction-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
980 [-2 nil nxml-processing-instruction-delimiter] |
86361 | 981 processing-instruction-content)) |
982 | |
983 (put 'cdata-section | |
984 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
985 '([nil 3 nxml-cdata-section-delimiter] ; <![ |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
986 [3 8 nxml-cdata-section-CDATA] ; CDATA |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
987 [8 9 nxml-cdata-section-delimiter] ; [ |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
988 [9 -3 nxml-cdata-section-content] ; ]]> |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
989 [-3 nil nxml-cdata-section-delimiter])) |
86361 | 990 |
991 (put 'data | |
992 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
993 '([nil nil nxml-text])) |
86361 | 994 |
995 ;; Prolog region types in list returned by xmltok-forward-prolog. | |
996 | |
997 (put 'xml-declaration | |
998 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
999 '([nil 2 nxml-processing-instruction-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1000 [2 5 nxml-processing-instruction-target] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1001 [-2 nil nxml-processing-instruction-delimiter])) |
86361 | 1002 |
1003 (put 'xml-declaration-attribute-name | |
1004 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1005 '([nil nil nxml-attribute-local-name])) |
86361 | 1006 |
1007 (put 'xml-declaration-attribute-value | |
1008 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1009 '([nil 1 nxml-attribute-value-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1010 [1 -1 nxml-attribute-value] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1011 [-1 nil nxml-attribute-value-delimiter])) |
86361 | 1012 |
1013 (put 'processing-instruction-left | |
1014 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1015 '([nil 2 nxml-processing-instruction-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1016 [2 nil nxml-processing-instruction-target])) |
86361 | 1017 |
1018 (put 'processing-instruction-right | |
1019 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1020 '([nil -2 nxml-processing-instruction-content] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1021 [-2 nil nxml-processing-instruction-delimiter])) |
86361 | 1022 |
1023 (put 'literal | |
1024 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1025 '([nil 1 nxml-prolog-literal-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1026 [1 -1 nxml-prolog-literal-content] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1027 [-1 nil nxml-prolog-literal-delimiter])) |
86361 | 1028 |
1029 (put 'keyword | |
1030 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1031 '([nil nil nxml-prolog-keyword])) |
86361 | 1032 |
1033 (put 'markup-declaration-open | |
1034 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1035 '([0 2 nxml-markup-declaration-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1036 [2 nil nxml-prolog-keyword])) |
86361 | 1037 |
1038 (put 'markup-declaration-close | |
1039 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1040 '([nil nil nxml-markup-declaration-delimiter])) |
86361 | 1041 |
1042 (put 'internal-subset-open | |
1043 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1044 '([nil nil nxml-markup-declaration-delimiter])) |
86361 | 1045 |
1046 (put 'internal-subset-close | |
1047 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1048 '([nil 1 nxml-markup-declaration-delimiter] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1049 [-1 nil nxml-markup-declaration-delimiter])) |
86361 | 1050 |
1051 (put 'hash-name | |
1052 'nxml-fontify-rule | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1053 '([nil 1 nxml-hash] |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1054 [1 nil nxml-prolog-keyword])) |
86361 | 1055 |
1056 (defun nxml-apply-fontify-rule (&optional type start end) | |
1057 (let ((rule (get (or type xmltok-type) 'nxml-fontify-rule))) | |
1058 (unless start (setq start xmltok-start)) | |
1059 (unless end (setq end (point))) | |
1060 (while rule | |
1061 (let* ((action (car rule))) | |
1062 (setq rule (cdr rule)) | |
1063 (cond ((vectorp action) | |
1064 (nxml-set-face (let ((offset (aref action 0))) | |
1065 (cond ((not offset) start) | |
1066 ((< offset 0) (+ end offset)) | |
1067 (t (+ start offset)))) | |
1068 (let ((offset (aref action 1))) | |
1069 (cond ((not offset) end) | |
1070 ((< offset 0) (+ end offset)) | |
1071 (t (+ start offset)))) | |
1072 (aref action 2))) | |
1073 ((and (consp action) | |
1074 (eq (car action) 'element-qname)) | |
1075 (when xmltok-name-end ; maybe nil in partial-end-tag case | |
1076 (nxml-fontify-qname (+ start (cdr action)) | |
1077 xmltok-name-colon | |
1078 xmltok-name-end | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1079 'nxml-element-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1080 'nxml-element-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1081 'nxml-element-local-name))) |
86361 | 1082 ((eq action 'attributes) |
1083 (nxml-fontify-attributes)) | |
1084 ((eq action 'processing-instruction-content) | |
1085 (nxml-set-face (+ start 2) | |
1086 xmltok-name-end | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1087 'nxml-processing-instruction-target) |
86361 | 1088 (nxml-set-face (save-excursion |
1089 (goto-char xmltok-name-end) | |
1090 (skip-chars-forward " \t\r\n") | |
1091 (point)) | |
1092 (- end 2) | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1093 'nxml-processing-instruction-content)) |
86361 | 1094 ((eq action 'char-ref) |
1095 (nxml-char-ref-display-extra start | |
1096 end | |
1097 (xmltok-char-number start end))) | |
1098 (t (error "Invalid nxml-fontify-rule action %s" action))))))) | |
1099 | |
1100 (defun nxml-fontify-attributes () | |
1101 (while xmltok-namespace-attributes | |
1102 (nxml-fontify-attribute (car xmltok-namespace-attributes) | |
1103 'namespace) | |
1104 (setq xmltok-namespace-attributes | |
1105 (cdr xmltok-namespace-attributes))) | |
1106 (while xmltok-attributes | |
1107 (nxml-fontify-attribute (car xmltok-attributes)) | |
1108 (setq xmltok-attributes | |
1109 (cdr xmltok-attributes)))) | |
1110 | |
1111 (defun nxml-fontify-attribute (att &optional namespace-declaration) | |
1112 (if namespace-declaration | |
1113 (nxml-fontify-qname (xmltok-attribute-name-start att) | |
1114 (xmltok-attribute-name-colon att) | |
1115 (xmltok-attribute-name-end att) | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1116 'nxml-namespace-attribute-xmlns |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1117 'nxml-namespace-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1118 'nxml-namespace-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1119 'nxml-namespace-attribute-xmlns) |
86361 | 1120 (nxml-fontify-qname (xmltok-attribute-name-start att) |
1121 (xmltok-attribute-name-colon att) | |
1122 (xmltok-attribute-name-end att) | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1123 'nxml-attribute-prefix |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1124 'nxml-attribute-colon |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1125 'nxml-attribute-local-name)) |
86361 | 1126 (let ((start (xmltok-attribute-value-start att)) |
1127 (end (xmltok-attribute-value-end att)) | |
1128 (refs (xmltok-attribute-refs att)) | |
1129 (delimiter-face (if namespace-declaration | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1130 'nxml-namespace-attribute-value-delimiter |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1131 'nxml-attribute-value-delimiter)) |
86361 | 1132 (value-face (if namespace-declaration |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1133 'nxml-namespace-attribute-value |
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
1134 'nxml-attribute-value))) |
86361 | 1135 (when start |
1136 (nxml-set-face (1- start) start delimiter-face) | |
1137 (nxml-set-face end (1+ end) delimiter-face) | |
1138 (while refs | |
1139 (let* ((ref (car refs)) | |
1140 (ref-type (aref ref 0)) | |
1141 (ref-start (aref ref 1)) | |
1142 (ref-end (aref ref 2))) | |
1143 (nxml-set-face start ref-start value-face) | |
1144 (nxml-apply-fontify-rule ref-type ref-start ref-end) | |
1145 (setq start ref-end)) | |
1146 (setq refs (cdr refs))) | |
1147 (nxml-set-face start end value-face)))) | |
1148 | |
1149 (defun nxml-fontify-qname (start | |
1150 colon | |
1151 end | |
1152 prefix-face | |
1153 colon-face | |
1154 local-name-face | |
1155 &optional | |
1156 unprefixed-face) | |
1157 (cond (colon (nxml-set-face start colon prefix-face) | |
1158 (nxml-set-face colon (1+ colon) colon-face) | |
1159 (nxml-set-face (1+ colon) end local-name-face)) | |
1160 (t (nxml-set-face start end (or unprefixed-face | |
1161 local-name-face))))) | |
1162 | |
1163 ;;; Editing | |
1164 | |
1165 (defun nxml-electric-slash (arg) | |
1166 "Insert a slash. | |
1167 | |
1168 With a prefix ARG, do nothing other than insert the slash. | |
1169 | |
1170 Otherwise, if `nxml-slash-auto-complete-flag' is non-nil, insert the | |
1171 rest of the end-tag or empty-element if the slash is potentially part | |
1172 of an end-tag or the close of an empty-element. | |
1173 | |
1174 If the slash is part of an end-tag that is the first non-whitespace | |
1175 on the line, reindent the line." | |
1176 (interactive "*P") | |
1177 (nxml-ensure-scan-up-to-date) | |
1178 (let* ((slash-pos (point)) | |
1179 (end-tag-p (and (eq (char-before slash-pos) ?<) | |
1180 (not (nxml-get-inside slash-pos)))) | |
1181 (at-indentation (save-excursion | |
1182 (back-to-indentation) | |
1183 (eq (point) (1- slash-pos))))) | |
1184 (self-insert-command (prefix-numeric-value arg)) | |
1185 (unless arg | |
1186 (if nxml-slash-auto-complete-flag | |
1187 (if end-tag-p | |
1188 (condition-case err | |
1189 (let ((start-tag-end | |
1190 (nxml-scan-element-backward (1- slash-pos) t))) | |
1191 (when start-tag-end | |
1192 (insert (xmltok-start-tag-qname) ">") | |
1193 ;; copy the indentation of the start-tag | |
1194 (when (and at-indentation | |
1195 (save-excursion | |
1196 (goto-char xmltok-start) | |
1197 (back-to-indentation) | |
1198 (eq (point) xmltok-start))) | |
1199 (save-excursion | |
1200 (indent-line-to (save-excursion | |
1201 (goto-char xmltok-start) | |
1202 (current-column))))))) | |
1203 (nxml-scan-error nil)) | |
1204 (when (and (eq (nxml-token-before) (point)) | |
1205 (eq xmltok-type 'partial-empty-element)) | |
1206 (insert ">"))) | |
1207 (when (and end-tag-p at-indentation) | |
1208 (nxml-indent-line)))))) | |
1209 | |
1210 (defun nxml-balanced-close-start-tag-block () | |
1211 "Close the start-tag before point with `>' and insert a balancing end-tag. | |
1212 Point is left between the start-tag and the end-tag. | |
1213 If there is nothing but whitespace before the `<' that opens the | |
1214 start-tag, then put point on a blank line, and put the end-tag on | |
1215 another line aligned with the start-tag." | |
1216 (interactive "*") | |
1217 (nxml-balanced-close-start-tag 'block)) | |
1218 | |
1219 (defun nxml-balanced-close-start-tag-inline () | |
1220 "Close the start-tag before point with `>' and insert a balancing end-tag. | |
1221 Point is left between the start-tag and the end-tag. | |
1222 No extra whitespace is inserted." | |
1223 (interactive "*") | |
1224 (nxml-balanced-close-start-tag 'inline)) | |
1225 | |
1226 (defun nxml-balanced-close-start-tag (block-or-inline) | |
1227 (let ((token-end (nxml-token-before)) | |
1228 (pos (1+ (point)))) | |
1229 (unless (or (eq xmltok-type 'partial-start-tag) | |
1230 (and (memq xmltok-type '(start-tag | |
1231 empty-element | |
1232 partial-empty-element)) | |
1233 (>= token-end pos))) | |
1234 (error "Not in a start-tag")) | |
1235 (insert "></" | |
1236 (buffer-substring-no-properties (+ xmltok-start 1) | |
1237 (min xmltok-name-end (point))) | |
1238 ">") | |
1239 (if (eq block-or-inline 'inline) | |
1240 (goto-char pos) | |
1241 (goto-char xmltok-start) | |
1242 (back-to-indentation) | |
1243 (if (= (point) xmltok-start) | |
1244 (let ((indent (current-column))) | |
1245 (goto-char pos) | |
1246 (insert "\n") | |
1247 (indent-line-to indent) | |
1248 (goto-char pos) | |
1249 (insert "\n") | |
1250 (indent-line-to (+ nxml-child-indent indent))) | |
1251 (goto-char pos))))) | |
1252 | |
1253 (defun nxml-finish-element () | |
1254 "Finish the current element by inserting an end-tag." | |
1255 (interactive "*") | |
1256 (nxml-finish-element-1 nil)) | |
1257 | |
1258 (defvar nxml-last-split-position nil | |
1259 "Position where `nxml-split-element' split the current element.") | |
1260 | |
1261 (defun nxml-split-element () | |
1262 "Split the current element by inserting an end-tag and a start-tag. | |
1263 Point is left after the newly inserted start-tag. When repeated, | |
1264 split immediately before the previously inserted start-tag and leave | |
1265 point unchanged." | |
1266 (interactive "*") | |
1267 (setq nxml-last-split-position | |
1268 (if (and (eq last-command this-command) | |
1269 nxml-last-split-position) | |
1270 (save-excursion | |
1271 (goto-char nxml-last-split-position) | |
1272 (nxml-finish-element-1 t)) | |
1273 (nxml-finish-element-1 t)))) | |
1274 | |
1275 (defun nxml-finish-element-1 (startp) | |
1276 "Insert an end-tag for the current element and optionally a start-tag. | |
1277 The start-tag is inserted if STARTP is non-nil. Return the position | |
1278 of the inserted start-tag or nil if none was inserted." | |
1279 (interactive "*") | |
1280 (let* ((token-end (nxml-token-before)) | |
1281 (start-tag-end | |
1282 (save-excursion | |
1283 (when (and (< (point) token-end) | |
1284 (memq xmltok-type | |
1285 '(cdata-section | |
1286 processing-instruction | |
1287 comment | |
1288 start-tag | |
1289 end-tag | |
1290 empty-element))) | |
1291 (error "Point is inside a %s" | |
1292 (nxml-token-type-friendly-name xmltok-type))) | |
1293 (nxml-scan-element-backward token-end t))) | |
1294 (starts-line | |
1295 (save-excursion | |
1296 (unless (eq xmltok-type 'start-tag) | |
1297 (error "No matching start-tag")) | |
1298 (goto-char xmltok-start) | |
1299 (back-to-indentation) | |
1300 (eq (point) xmltok-start))) | |
1301 (ends-line | |
1302 (save-excursion | |
1303 (goto-char start-tag-end) | |
1304 (looking-at "[ \t\r\n]*$"))) | |
1305 (start-tag-indent (save-excursion | |
1306 (goto-char xmltok-start) | |
1307 (current-column))) | |
1308 (qname (xmltok-start-tag-qname)) | |
1309 inserted-start-tag-pos) | |
1310 (when (and starts-line ends-line) | |
1311 ;; start-tag is on a line by itself | |
1312 ;; => put the end-tag on a line by itself | |
1313 (unless (<= (point) | |
1314 (save-excursion | |
1315 (back-to-indentation) | |
1316 (point))) | |
1317 (insert "\n")) | |
1318 (indent-line-to start-tag-indent)) | |
1319 (insert "</" qname ">") | |
1320 (when startp | |
1321 (when starts-line | |
1322 (insert "\n") | |
1323 (indent-line-to start-tag-indent)) | |
1324 (setq inserted-start-tag-pos (point)) | |
1325 (insert "<" qname ">") | |
1326 (when (and starts-line ends-line) | |
1327 (insert "\n") | |
1328 (indent-line-to (save-excursion | |
1329 (goto-char xmltok-start) | |
1330 (forward-line 1) | |
1331 (back-to-indentation) | |
1332 (if (= (current-column) | |
1333 (+ start-tag-indent nxml-child-indent)) | |
1334 (+ start-tag-indent nxml-child-indent) | |
1335 start-tag-indent))))) | |
1336 inserted-start-tag-pos)) | |
1337 | |
1338 ;;; Indentation | |
1339 | |
1340 (defun nxml-indent-line () | |
1341 "Indent current line as XML." | |
1342 (let ((indent (nxml-compute-indent)) | |
1343 (from-end (- (point-max) (point)))) | |
1344 (when indent | |
1345 (beginning-of-line) | |
1346 (let ((bol (point))) | |
1347 (skip-chars-forward " \t") | |
1348 (delete-region bol (point))) | |
1349 (indent-to indent) | |
1350 (when (> (- (point-max) from-end) (point)) | |
1351 (goto-char (- (point-max) from-end)))))) | |
1352 | |
1353 (defun nxml-compute-indent () | |
1354 "Return the indent for the line containing point." | |
1355 (or (nxml-compute-indent-from-matching-start-tag) | |
1356 (nxml-compute-indent-from-previous-line))) | |
1357 | |
1358 (defun nxml-compute-indent-from-matching-start-tag () | |
1359 "Compute the indent for a line with an end-tag using the matching start-tag. | |
1360 When the line containing point ends with an end-tag and does not start | |
1361 in the middle of a token, return the indent of the line containing the | |
1362 matching start-tag, if there is one and it occurs at the beginning of | |
1363 its line. Otherwise return nil." | |
1364 (save-excursion | |
1365 (back-to-indentation) | |
1366 (let ((bol (point))) | |
1367 (let ((inhibit-field-text-motion t)) | |
1368 (end-of-line)) | |
1369 (skip-chars-backward " \t") | |
1370 (and (= (nxml-token-before) (point)) | |
1371 (memq xmltok-type '(end-tag partial-end-tag)) | |
1372 ;; start of line must not be inside a token | |
1373 (or (= xmltok-start bol) | |
1374 (save-excursion | |
1375 (goto-char bol) | |
1376 (nxml-token-after) | |
1377 (= xmltok-start bol)) | |
1378 (eq xmltok-type 'data)) | |
1379 (condition-case err | |
1380 (nxml-scan-element-backward | |
1381 (point) | |
1382 nil | |
1383 (- (point) | |
1384 nxml-end-tag-indent-scan-distance)) | |
1385 (nxml-scan-error nil)) | |
1386 (< xmltok-start bol) | |
1387 (progn | |
1388 (goto-char xmltok-start) | |
1389 (skip-chars-backward " \t") | |
1390 (bolp)) | |
1391 (current-indentation))))) | |
1392 | |
1393 (defun nxml-compute-indent-from-previous-line () | |
1394 "Compute the indent for a line using the indentation of a previous line." | |
1395 (save-excursion | |
1396 (end-of-line) | |
1397 (let ((eol (point)) | |
1398 bol prev-bol ref | |
1399 before-context after-context) | |
1400 (back-to-indentation) | |
1401 (setq bol (point)) | |
1402 (catch 'indent | |
1403 ;; Move backwards until the start of a non-blank line that is | |
1404 ;; not inside a token. | |
1405 (while (progn | |
1406 (when (= (forward-line -1) -1) | |
1407 (throw 'indent 0)) | |
1408 (back-to-indentation) | |
1409 (if (looking-at "[ \t]*$") | |
1410 t | |
1411 (or prev-bol | |
1412 (setq prev-bol (point))) | |
1413 (nxml-token-after) | |
1414 (not (or (= xmltok-start (point)) | |
1415 (eq xmltok-type 'data)))))) | |
1416 (setq ref (point)) | |
1417 ;; Now scan over tokens until the end of the line to be indented. | |
1418 ;; Determine the context before and after the beginning of the | |
1419 ;; line. | |
1420 (while (< (point) eol) | |
1421 (nxml-tokenize-forward) | |
1422 (cond ((<= bol xmltok-start) | |
1423 (setq after-context | |
1424 (nxml-merge-indent-context-type after-context))) | |
1425 ((and (<= (point) bol) | |
1426 (not (and (eq xmltok-type 'partial-start-tag) | |
1427 (= (point) bol)))) | |
1428 (setq before-context | |
1429 (nxml-merge-indent-context-type before-context))) | |
1430 ((eq xmltok-type 'data) | |
1431 (setq before-context | |
1432 (nxml-merge-indent-context-type before-context)) | |
1433 (setq after-context | |
1434 (nxml-merge-indent-context-type after-context))) | |
1435 ;; If in the middle of a token that looks inline, | |
1436 ;; then indent relative to the previous non-blank line | |
1437 ((eq (nxml-merge-indent-context-type before-context) | |
1438 'mixed) | |
1439 (goto-char prev-bol) | |
1440 (throw 'indent (current-column))) | |
1441 (t | |
1442 (throw 'indent | |
1443 (nxml-compute-indent-in-token bol)))) | |
1444 (skip-chars-forward " \t\r\n")) | |
1445 (goto-char ref) | |
1446 (+ (current-column) | |
1447 (* nxml-child-indent | |
1448 (+ (if (eq before-context 'start-tag) 1 0) | |
1449 (if (eq after-context 'end-tag) -1 0)))))))) | |
1450 | |
1451 (defun nxml-merge-indent-context-type (context) | |
1452 "Merge the indent context type CONTEXT with the token in `xmltok-type'. | |
1453 Return the merged indent context type. An indent context type is | |
1454 either nil or one of the symbols start-tag, end-tag, markup, comment, | |
1455 mixed." | |
1456 (cond ((memq xmltok-type '(start-tag partial-start-tag)) | |
1457 (if (memq context '(nil start-tag comment)) | |
1458 'start-tag | |
1459 'mixed)) | |
1460 ((memq xmltok-type '(end-tag partial-end-tag)) | |
1461 (if (memq context '(nil end-tag comment)) | |
1462 'end-tag | |
1463 'mixed)) | |
1464 ((eq xmltok-type 'comment) | |
1465 (cond ((memq context '(start-tag end-tag comment)) | |
1466 context) | |
1467 (context 'mixed) | |
1468 (t 'comment))) | |
1469 (context 'mixed) | |
1470 (t 'markup))) | |
1471 | |
1472 (defun nxml-compute-indent-in-token (pos) | |
1473 "Return the indent for a line that starts inside a token. | |
1474 POS is the position of the first non-whitespace character of the line. | |
1475 This expects the xmltok-* variables to be set up as by `xmltok-forward'." | |
1476 (cond ((memq xmltok-type '(start-tag | |
1477 partial-start-tag | |
1478 empty-element | |
1479 partial-empty-element)) | |
1480 (nxml-compute-indent-in-start-tag pos)) | |
1481 ((eq xmltok-type 'comment) | |
1482 (nxml-compute-indent-in-delimited-token pos "<!--" "-->")) | |
1483 ((eq xmltok-type 'cdata-section) | |
1484 (nxml-compute-indent-in-delimited-token pos "<![CDATA[" "]]>")) | |
1485 ((eq xmltok-type 'processing-instruction) | |
1486 (nxml-compute-indent-in-delimited-token pos "<?" "?>")) | |
1487 (t | |
1488 (goto-char pos) | |
1489 (if (and (= (forward-line -1) 0) | |
1490 (< xmltok-start (point))) | |
1491 (back-to-indentation) | |
1492 (goto-char xmltok-start)) | |
1493 (current-column)))) | |
1494 | |
1495 (defun nxml-compute-indent-in-start-tag (pos) | |
1496 "Return the indent for a line that starts inside a start-tag. | |
1497 Also for a line that starts inside an empty element. | |
1498 POS is the position of the first non-whitespace character of the line. | |
1499 This expects the xmltok-* variables to be set up as by `xmltok-forward'." | |
1500 (let ((value-boundary (nxml-attribute-value-boundary pos)) | |
1501 (off 0)) | |
1502 (if value-boundary | |
1503 ;; inside an attribute value | |
1504 (let ((value-start (car value-boundary)) | |
1505 (value-end (cdr value-boundary))) | |
1506 (goto-char pos) | |
1507 (forward-line -1) | |
1508 (if (< (point) value-start) | |
1509 (goto-char value-start) | |
1510 (back-to-indentation))) | |
1511 ;; outside an attribute value | |
1512 (goto-char pos) | |
1513 (while (and (= (forward-line -1) 0) | |
1514 (nxml-attribute-value-boundary (point)))) | |
1515 (cond ((<= (point) xmltok-start) | |
1516 (goto-char xmltok-start) | |
1517 (setq off nxml-attribute-indent) | |
1518 (let ((atts (xmltok-merge-attributes))) | |
1519 (when atts | |
1520 (let* ((att (car atts)) | |
1521 (start (xmltok-attribute-name-start att))) | |
1522 (when (< start pos) | |
1523 (goto-char start) | |
1524 (setq off 0)))))) | |
1525 (t | |
1526 (back-to-indentation)))) | |
1527 (+ (current-column) off))) | |
1528 | |
1529 (defun nxml-attribute-value-boundary (pos) | |
1530 "Return a pair (START . END) if POS is inside an attribute value. | |
1531 Otherwise return nil. START and END are the positions of the start | |
1532 and end of the attribute value containing POS. This expects the | |
1533 xmltok-* variables to be set up as by `xmltok-forward'." | |
1534 (let ((atts (xmltok-merge-attributes)) | |
1535 att value-start value-end value-boundary) | |
1536 (while atts | |
1537 (setq att (car atts)) | |
1538 (setq value-start (xmltok-attribute-value-start att)) | |
1539 (setq value-end (xmltok-attribute-value-end att)) | |
1540 (cond ((and value-start (< pos value-start)) | |
1541 (setq atts nil)) | |
1542 ((and value-start value-end (<= pos value-end)) | |
1543 (setq value-boundary (cons value-start value-end)) | |
1544 (setq atts nil)) | |
1545 (t (setq atts (cdr atts))))) | |
1546 value-boundary)) | |
1547 | |
1548 (defun nxml-compute-indent-in-delimited-token (pos open-delim close-delim) | |
1549 "Return the indent for a line that starts inside a token with delimiters. | |
1550 OPEN-DELIM and CLOSE-DELIM are strings giving the opening and closing | |
1551 delimiters. POS is the position of the first non-whitespace character | |
1552 of the line. This expects the xmltok-* variables to be set up as by | |
1553 `xmltok-forward'." | |
1554 (cond ((let ((end (+ pos (length close-delim)))) | |
1555 (and (<= end (point-max)) | |
1556 (string= (buffer-substring-no-properties pos end) | |
1557 close-delim))) | |
1558 (goto-char xmltok-start)) | |
1559 ((progn | |
1560 (goto-char pos) | |
1561 (forward-line -1) | |
1562 (<= (point) xmltok-start)) | |
1563 (goto-char (+ xmltok-start (length open-delim))) | |
1564 (when (and (string= open-delim "<!--") | |
1565 (looking-at " ")) | |
1566 (goto-char (1+ (point))))) | |
1567 (t (back-to-indentation))) | |
1568 (current-column)) | |
1569 | |
1570 ;;; Completion | |
1571 | |
1572 (defun nxml-complete () | |
1573 "Perform completion on the symbol preceding point. | |
1574 | |
1575 Inserts as many characters as can be completed. However, if not even | |
1576 one character can be completed, then a buffer with the possibilities | |
1577 is popped up and the symbol is read from the minibuffer with | |
1578 completion. If the symbol is complete, then any characters that must | |
1579 follow the symbol are also inserted. | |
1580 | |
1581 The name space used for completion and what is treated as a symbol | |
1582 depends on the context. The contexts in which completion is performed | |
1583 depend on `nxml-completion-hook'." | |
1584 (interactive) | |
1585 (unless (run-hook-with-args-until-success 'nxml-completion-hook) | |
1586 ;; Eventually we will complete on entity names here. | |
1587 (ding) | |
1588 (message "Cannot complete in this context"))) | |
1589 | |
1590 ;;; Movement | |
1591 | |
1592 (defun nxml-forward-balanced-item (&optional arg) | |
1593 "Move forward across one balanced item. | |
1594 With ARG, do it that many times. Negative arg -N means | |
1595 move backward across N balanced expressions. | |
1596 This is the equivalent of `forward-sexp' for XML. | |
1597 | |
1598 An element contains as items strings with no markup, tags, processing | |
1599 instructions, comments, CDATA sections, entity references and | |
1600 characters references. However, if the variable | |
1601 `nxml-sexp-element-flag' is non-nil, then an element is treated as a | |
1602 single markup item. A start-tag contains an element name followed by | |
1603 one or more attributes. An end-tag contains just an element name. An | |
1604 attribute value literals contains strings with no markup, entity | |
1605 references and character references. A processing instruction | |
1606 consists of a target and a content string. A comment or a CDATA | |
1607 section contains a single string. An entity reference contains a | |
1608 single name. A character reference contains a character number." | |
1609 (interactive "p") | |
1610 (or arg (setq arg 1)) | |
1611 (cond ((> arg 0) | |
1612 (while (progn | |
1613 (nxml-forward-single-balanced-item) | |
1614 (> (setq arg (1- arg)) 0)))) | |
1615 ((< arg 0) | |
1616 (while (progn | |
1617 (nxml-backward-single-balanced-item) | |
1618 (< (setq arg (1+ arg)) 0)))))) | |
1619 | |
1620 (defun nxml-forward-single-balanced-item () | |
1621 (condition-case err | |
1622 (goto-char (let ((end (nxml-token-after))) | |
1623 (save-excursion | |
1624 (while (eq xmltok-type 'space) | |
1625 (goto-char end) | |
1626 (setq end (nxml-token-after))) | |
1627 (cond ((/= (point) xmltok-start) | |
1628 (nxml-scan-forward-within end)) | |
1629 ((and nxml-sexp-element-flag | |
1630 (eq xmltok-type 'start-tag)) | |
1631 ;; can't ever return nil here | |
1632 (nxml-scan-element-forward xmltok-start)) | |
1633 ((and nxml-sexp-element-flag | |
1634 (memq xmltok-type | |
1635 '(end-tag partial-end-tag))) | |
1636 (error "Already at end of element")) | |
1637 (t end))))) | |
1638 (nxml-scan-error | |
1639 (goto-char (cadr err)) | |
1640 (apply 'error (cddr err))))) | |
1641 | |
1642 (defun nxml-backward-single-balanced-item () | |
1643 (condition-case err | |
1644 (goto-char (let ((end (nxml-token-before))) | |
1645 (save-excursion | |
1646 (while (eq xmltok-type 'space) | |
1647 (goto-char xmltok-start) | |
1648 (setq end (nxml-token-before))) | |
1649 (cond ((/= (point) end) | |
1650 (nxml-scan-backward-within end)) | |
1651 ((and nxml-sexp-element-flag | |
1652 (eq xmltok-type 'end-tag)) | |
1653 ;; can't ever return nil here | |
1654 (nxml-scan-element-backward end) | |
1655 xmltok-start) | |
1656 ((and nxml-sexp-element-flag | |
1657 (eq xmltok-type 'start-tag)) | |
1658 (error "Already at start of element")) | |
1659 (t xmltok-start))))) | |
1660 (nxml-scan-error | |
1661 (goto-char (cadr err)) | |
1662 (apply 'error (cddr err))))) | |
1663 | |
1664 (defun nxml-scan-forward-within (end) | |
1665 (setq end (- end (nxml-end-delimiter-length xmltok-type))) | |
1666 (when (<= end (point)) | |
1667 (error "Already at end of %s" | |
1668 (nxml-token-type-friendly-name xmltok-type))) | |
1669 (cond ((memq xmltok-type '(start-tag | |
1670 empty-element | |
1671 partial-start-tag | |
1672 partial-empty-element)) | |
1673 (if (< (point) xmltok-name-end) | |
1674 xmltok-name-end | |
1675 (let ((att (nxml-find-following-attribute))) | |
1676 (cond ((not att) end) | |
1677 ((and (xmltok-attribute-value-start att) | |
1678 (<= (xmltok-attribute-value-start att) | |
1679 (point))) | |
1680 (nxml-scan-forward-in-attribute-value att)) | |
1681 ((xmltok-attribute-value-end att) | |
1682 (1+ (xmltok-attribute-value-end att))) | |
1683 ((save-excursion | |
1684 (goto-char (xmltok-attribute-name-end att)) | |
1685 (looking-at "[ \t\r\n]*=")) | |
1686 (match-end 0)) | |
1687 (t (xmltok-attribute-name-end att)))))) | |
1688 ((and (eq xmltok-type 'processing-instruction) | |
1689 (< (point) xmltok-name-end)) | |
1690 xmltok-name-end) | |
1691 (t end))) | |
1692 | |
1693 (defun nxml-scan-backward-within (end) | |
1694 (setq xmltok-start | |
1695 (+ xmltok-start | |
1696 (nxml-start-delimiter-length xmltok-type))) | |
1697 (when (<= (point) xmltok-start) | |
1698 (error "Already at start of %s" | |
1699 (nxml-token-type-friendly-name xmltok-type))) | |
1700 (cond ((memq xmltok-type '(start-tag | |
1701 empty-element | |
1702 partial-start-tag | |
1703 partial-empty-element)) | |
1704 (let ((att (nxml-find-preceding-attribute))) | |
1705 (cond ((not att) xmltok-start) | |
1706 ((and (xmltok-attribute-value-start att) | |
1707 (<= (xmltok-attribute-value-start att) | |
1708 (point)) | |
1709 (<= (point) | |
1710 (xmltok-attribute-value-end att))) | |
1711 (nxml-scan-backward-in-attribute-value att)) | |
1712 (t (xmltok-attribute-name-start att))))) | |
1713 ((and (eq xmltok-type 'processing-instruction) | |
1714 (let ((content-start (save-excursion | |
1715 (goto-char xmltok-name-end) | |
1716 (skip-chars-forward " \r\t\n") | |
1717 (point)))) | |
1718 (and (< content-start (point)) | |
1719 content-start)))) | |
1720 (t xmltok-start))) | |
1721 | |
1722 (defun nxml-scan-forward-in-attribute-value (att) | |
1723 (when (= (point) (xmltok-attribute-value-end att)) | |
1724 (error "Already at end of attribute value")) | |
1725 (let ((refs (xmltok-attribute-refs att)) | |
1726 ref) | |
1727 (while refs | |
1728 (setq ref (car refs)) | |
1729 (if (< (point) (aref ref 2)) | |
1730 (setq refs nil) | |
1731 (setq ref nil) | |
1732 (setq refs (cdr refs)))) | |
1733 (cond ((not ref) | |
1734 (xmltok-attribute-value-end att)) | |
1735 ((< (point) (aref ref 1)) | |
1736 (aref ref 1)) | |
1737 ((= (point) (aref ref 1)) | |
1738 (aref ref 2)) | |
1739 (t | |
1740 (let ((end (- (aref ref 2) | |
1741 (nxml-end-delimiter-length (aref ref 0))))) | |
1742 (if (< (point) end) | |
1743 end | |
1744 (error "Already at end of %s" | |
1745 (nxml-token-type-friendly-name (aref ref 0))))))))) | |
1746 | |
1747 (defun nxml-scan-backward-in-attribute-value (att) | |
1748 (when (= (point) (xmltok-attribute-value-start att)) | |
1749 (error "Already at start of attribute value")) | |
1750 (let ((refs (reverse (xmltok-attribute-refs att))) | |
1751 ref) | |
1752 (while refs | |
1753 (setq ref (car refs)) | |
1754 (if (< (aref ref 1) (point)) | |
1755 (setq refs nil) | |
1756 (setq ref nil) | |
1757 (setq refs (cdr refs)))) | |
1758 (cond ((not ref) | |
1759 (xmltok-attribute-value-start att)) | |
1760 ((< (aref ref 2) (point)) | |
1761 (aref ref 2)) | |
1762 ((= (point) (aref ref 2)) | |
1763 (aref ref 1)) | |
1764 (t | |
1765 (let ((start (+ (aref ref 1) | |
1766 (nxml-start-delimiter-length (aref ref 0))))) | |
1767 (if (< start (point)) | |
1768 start | |
1769 (error "Already at start of %s" | |
1770 (nxml-token-type-friendly-name (aref ref 0))))))))) | |
1771 | |
1772 (defun nxml-find-following-attribute () | |
1773 (let ((ret nil) | |
1774 (atts (or xmltok-attributes xmltok-namespace-attributes)) | |
1775 (more-atts (and xmltok-attributes xmltok-namespace-attributes))) | |
1776 (while atts | |
1777 (let* ((att (car atts)) | |
1778 (name-start (xmltok-attribute-name-start att))) | |
1779 (cond ((and (<= name-start (point)) | |
1780 (xmltok-attribute-value-end att) | |
1781 ;; <= because end is before quote | |
1782 (<= (point) (xmltok-attribute-value-end att))) | |
1783 (setq atts nil) | |
1784 (setq ret att)) | |
1785 ((and (< (point) name-start) | |
1786 (or (not ret) | |
1787 (< name-start | |
1788 (xmltok-attribute-name-start ret)))) | |
1789 (setq ret att)))) | |
1790 (setq atts (cdr atts)) | |
1791 (unless atts | |
1792 (setq atts more-atts) | |
1793 (setq more-atts nil))) | |
1794 ret)) | |
1795 | |
1796 (defun nxml-find-preceding-attribute () | |
1797 (let ((ret nil) | |
1798 (atts (or xmltok-attributes xmltok-namespace-attributes)) | |
1799 (more-atts (and xmltok-attributes xmltok-namespace-attributes))) | |
1800 (while atts | |
1801 (let* ((att (car atts)) | |
1802 (name-start (xmltok-attribute-name-start att))) | |
1803 (cond ((and (< name-start (point)) | |
1804 (xmltok-attribute-value-end att) | |
1805 ;; <= because end is before quote | |
1806 (<= (point) (xmltok-attribute-value-end att))) | |
1807 (setq atts nil) | |
1808 (setq ret att)) | |
1809 ((and (< name-start (point)) | |
1810 (or (not ret) | |
1811 (< (xmltok-attribute-name-start ret) | |
1812 name-start))) | |
1813 (setq ret att)))) | |
1814 (setq atts (cdr atts)) | |
1815 (unless atts | |
1816 (setq atts more-atts) | |
1817 (setq more-atts nil))) | |
1818 ret)) | |
1819 | |
1820 (defun nxml-up-element (&optional arg) | |
1821 (interactive "p") | |
1822 (or arg (setq arg 1)) | |
1823 (if (< arg 0) | |
1824 (nxml-backward-up-element (- arg)) | |
1825 (condition-case err | |
1826 (while (and (> arg 0) | |
1827 (< (point) (point-max))) | |
1828 (let ((token-end (nxml-token-after))) | |
1829 (goto-char (cond ((or (memq xmltok-type '(end-tag | |
1830 partial-end-tag)) | |
1831 (and (memq xmltok-type | |
1832 '(empty-element | |
1833 partial-empty-element)) | |
1834 (< xmltok-start (point)))) | |
1835 token-end) | |
1836 ((nxml-scan-element-forward | |
1837 (if (and (eq xmltok-type 'start-tag) | |
1838 (= (point) xmltok-start)) | |
1839 xmltok-start | |
1840 token-end) | |
1841 t)) | |
1842 (t (error "No parent element"))))) | |
1843 (setq arg (1- arg))) | |
1844 (nxml-scan-error | |
1845 (goto-char (cadr err)) | |
1846 (apply 'error (cddr err)))))) | |
1847 | |
1848 (defun nxml-backward-up-element (&optional arg) | |
1849 (interactive "p") | |
1850 (or arg (setq arg 1)) | |
1851 (if (< arg 0) | |
1852 (nxml-up-element (- arg)) | |
1853 (condition-case err | |
1854 (while (and (> arg 0) | |
1855 (< (point-min) (point))) | |
1856 (let ((token-end (nxml-token-before))) | |
1857 (goto-char (cond ((or (memq xmltok-type '(start-tag | |
1858 partial-start-tag)) | |
1859 (and (memq xmltok-type | |
1860 '(empty-element | |
1861 partial-empty-element)) | |
1862 (< (point) token-end))) | |
1863 xmltok-start) | |
1864 ((nxml-scan-element-backward | |
1865 (if (and (eq xmltok-type 'end-tag) | |
1866 (= (point) token-end)) | |
1867 token-end | |
1868 xmltok-start) | |
1869 t) | |
1870 xmltok-start) | |
1871 (t (error "No parent element"))))) | |
1872 (setq arg (1- arg))) | |
1873 (nxml-scan-error | |
1874 (goto-char (cadr err)) | |
1875 (apply 'error (cddr err)))))) | |
1876 | |
1877 (defun nxml-down-element (&optional arg) | |
1878 "Move forward down into the content of an element. | |
1879 With ARG, do this that many times. | |
1880 Negative ARG means move backward but still down." | |
1881 (interactive "p") | |
1882 (or arg (setq arg 1)) | |
1883 (if (< arg 0) | |
1884 (nxml-backward-down-element (- arg)) | |
1885 (while (> arg 0) | |
1886 (goto-char | |
1887 (let ((token-end (nxml-token-after))) | |
1888 (save-excursion | |
1889 (goto-char token-end) | |
1890 (while (progn | |
1891 (when (memq xmltok-type '(nil end-tag partial-end-tag)) | |
1892 (error "No following start-tags in this element")) | |
1893 (not (memq xmltok-type '(start-tag partial-start-tag)))) | |
1894 (nxml-tokenize-forward)) | |
1895 (point)))) | |
1896 (setq arg (1- arg))))) | |
1897 | |
1898 (defun nxml-backward-down-element (&optional arg) | |
1899 (interactive "p") | |
1900 (or arg (setq arg 1)) | |
1901 (if (< arg 0) | |
1902 (nxml-down-element (- arg)) | |
1903 (while (> arg 0) | |
1904 (goto-char | |
1905 (save-excursion | |
1906 (nxml-token-before) | |
1907 (goto-char xmltok-start) | |
1908 (while (progn | |
1909 (when (memq xmltok-type '(start-tag | |
1910 partial-start-tag | |
1911 prolog | |
1912 nil)) | |
1913 (error "No preceding end-tags in this element")) | |
1914 (not (memq xmltok-type '(end-tag partial-end-tag)))) | |
1915 (if (or (<= (point) nxml-prolog-end) | |
1916 (not (search-backward "<" nxml-prolog-end t))) | |
1917 (setq xmltok-type nil) | |
1918 (nxml-move-outside-backwards) | |
1919 (xmltok-forward))) | |
1920 xmltok-start)) | |
1921 (setq arg (1- arg))))) | |
1922 | |
1923 (defun nxml-forward-element (&optional arg) | |
1924 "Move forward over one element. | |
1925 With ARG, do it that many times. | |
1926 Negative ARG means move backward." | |
1927 (interactive "p") | |
1928 (or arg (setq arg 1)) | |
1929 (if (< arg 0) | |
1930 (nxml-backward-element (- arg)) | |
1931 (condition-case err | |
1932 (while (and (> arg 0) | |
1933 (< (point) (point-max))) | |
1934 (goto-char | |
1935 (or (nxml-scan-element-forward (nxml-token-before)) | |
1936 (error "No more elements"))) | |
1937 (setq arg (1- arg))) | |
1938 (nxml-scan-error | |
1939 (goto-char (cadr err)) | |
1940 (apply 'error (cddr err)))))) | |
1941 | |
1942 (defun nxml-backward-element (&optional arg) | |
1943 "Move backward over one element. | |
1944 With ARG, do it that many times. | |
1945 Negative ARG means move forward." | |
1946 (interactive "p") | |
1947 (or arg (setq arg 1)) | |
1948 (if (< arg 0) | |
1949 (nxml-forward-element (- arg)) | |
1950 (condition-case err | |
1951 (while (and (> arg 0) | |
1952 (< (point-min) (point))) | |
1953 (goto-char | |
1954 (or (and (nxml-scan-element-backward (progn | |
1955 (nxml-token-after) | |
1956 xmltok-start)) | |
1957 xmltok-start) | |
1958 (error "No preceding elements"))) | |
1959 (setq arg (1- arg))) | |
1960 (nxml-scan-error | |
1961 (goto-char (cadr err)) | |
1962 (apply 'error (cddr err)))))) | |
1963 | |
1964 (defun nxml-mark-token-after () | |
1965 (interactive) | |
1966 (push-mark (nxml-token-after) nil t) | |
1967 (goto-char xmltok-start) | |
1968 (message "Marked %s" xmltok-type)) | |
1969 | |
1970 ;;; Paragraphs | |
1971 | |
1972 (defun nxml-mark-paragraph () | |
1973 "Put point at beginning of this paragraph, mark at end. | |
1974 The paragraph marked is the one that contains point or follows point." | |
1975 (interactive) | |
1976 (nxml-forward-paragraph) | |
1977 (push-mark nil t t) | |
1978 (nxml-backward-paragraph)) | |
1979 | |
1980 (defun nxml-forward-paragraph (&optional arg) | |
1981 (interactive "p") | |
1982 (or arg (setq arg 1)) | |
1983 (cond ((< arg 0) | |
1984 (nxml-backward-paragraph (- arg))) | |
1985 ((> arg 0) | |
1986 (forward-line 0) | |
1987 (while (and (nxml-forward-single-paragraph) | |
1988 (> (setq arg (1- arg)) 0)))))) | |
1989 | |
1990 (defun nxml-backward-paragraph (&optional arg) | |
1991 (interactive "p") | |
1992 (or arg (setq arg 1)) | |
1993 (cond ((< arg 0) | |
1994 (nxml-forward-paragraph (- arg))) | |
1995 ((> arg 0) | |
1996 (unless (bolp) | |
1997 (let ((inhibit-field-text-motion t)) | |
1998 (end-of-line))) | |
1999 (while (and (nxml-backward-single-paragraph) | |
2000 (> (setq arg (1- arg)) 0)))))) | |
2001 | |
2002 (defun nxml-forward-single-paragraph () | |
2003 "Move forward over a single paragraph. | |
2004 Return nil at end of buffer, t otherwise." | |
2005 (let* ((token-end (nxml-token-after)) | |
2006 (offset (- (point) xmltok-start)) | |
2007 pos had-data) | |
2008 (goto-char token-end) | |
2009 (while (and (< (point) (point-max)) | |
2010 (not (setq pos | |
2011 (nxml-paragraph-end-pos had-data offset)))) | |
2012 (when (nxml-token-contains-data-p offset) | |
2013 (setq had-data t)) | |
2014 (nxml-tokenize-forward) | |
2015 (setq offset 0)) | |
2016 (when pos (goto-char pos)))) | |
2017 | |
2018 (defun nxml-backward-single-paragraph () | |
2019 "Move backward over a single paragraph. | |
2020 Return nil at start of buffer, t otherwise." | |
2021 (let* ((token-end (nxml-token-before)) | |
2022 (offset (- token-end (point))) | |
2023 (last-tag-pos xmltok-start) | |
2024 pos had-data last-data-pos) | |
2025 (goto-char token-end) | |
2026 (unless (setq pos (nxml-paragraph-start-pos nil offset)) | |
2027 (setq had-data (nxml-token-contains-data-p nil offset)) | |
2028 (goto-char xmltok-start) | |
2029 (while (and (not pos) (< (point-min) (point))) | |
2030 (cond ((search-backward "<" nxml-prolog-end t) | |
2031 (nxml-move-outside-backwards) | |
2032 (save-excursion | |
2033 (while (< (point) last-tag-pos) | |
2034 (xmltok-forward) | |
2035 (when (and (not had-data) (nxml-token-contains-data-p)) | |
2036 (setq pos nil) | |
2037 (setq last-data-pos xmltok-start)) | |
2038 (let ((tem (nxml-paragraph-start-pos had-data 0))) | |
2039 (when tem (setq pos tem))))) | |
2040 (when (and (not had-data) last-data-pos (not pos)) | |
2041 (setq had-data t) | |
2042 (save-excursion | |
2043 (while (< (point) last-data-pos) | |
2044 (xmltok-forward)) | |
2045 (let ((tem (nxml-paragraph-start-pos had-data 0))) | |
2046 (when tem (setq pos tem))))) | |
2047 (setq last-tag-pos (point))) | |
2048 (t (goto-char (point-min)))))) | |
2049 (when pos (goto-char pos)))) | |
2050 | |
2051 (defun nxml-token-contains-data-p (&optional start end) | |
2052 (setq start (+ xmltok-start (or start 0))) | |
2053 (setq end (- (point) (or end 0))) | |
2054 (when (eq xmltok-type 'cdata-section) | |
2055 (setq start (max start (+ xmltok-start 9))) | |
2056 (setq end (min end (- (point) 3)))) | |
2057 (or (and (eq xmltok-type 'data) | |
2058 (eq start xmltok-start) | |
2059 (eq end (point))) | |
2060 (eq xmltok-type 'char-ref) | |
2061 (and (memq xmltok-type '(data cdata-section)) | |
2062 (< start end) | |
2063 (save-excursion | |
2064 (goto-char start) | |
2065 (re-search-forward "[^ \t\r\n]" end t))))) | |
2066 | |
2067 (defun nxml-paragraph-end-pos (had-data offset) | |
2068 "Return the position of the paragraph end if contained in the current token. | |
2069 Return nil if the current token does not contain the paragraph end. | |
2070 Only characters after OFFSET from the start of the token are eligible. | |
2071 HAD-DATA says whether there have been non-whitespace data characters yet." | |
2072 (cond ((not had-data) | |
2073 (cond ((memq xmltok-type '(data cdata-section)) | |
2074 (save-excursion | |
2075 (let ((end (point))) | |
2076 (goto-char (+ xmltok-start | |
2077 (max (if (eq xmltok-type 'cdata-section) | |
2078 9 | |
2079 0) | |
2080 offset))) | |
2081 (and (re-search-forward "[^ \t\r\n]" end t) | |
2082 (re-search-forward "^[ \t]*$" end t) | |
2083 (match-beginning 0))))) | |
2084 ((and (eq xmltok-type 'comment) | |
2085 (nxml-token-begins-line-p) | |
2086 (nxml-token-ends-line-p)) | |
2087 (save-excursion | |
2088 (let ((end (point))) | |
2089 (goto-char (+ xmltok-start (max 4 offset))) | |
2090 (when (re-search-forward "[^ \t\r\n]" (- end 3) t) | |
2091 (if (re-search-forward "^[ \t]*$" end t) | |
2092 (match-beginning 0) | |
2093 (goto-char (- end 3)) | |
2094 (skip-chars-backward " \t") | |
2095 (unless (bolp) | |
2096 (beginning-of-line 2)) | |
2097 (point)))))))) | |
2098 ((memq xmltok-type '(data space cdata-section)) | |
2099 (save-excursion | |
2100 (let ((end (point))) | |
2101 (goto-char (+ xmltok-start offset)) | |
2102 (and (re-search-forward "^[ \t]*$" end t) | |
2103 (match-beginning 0))))) | |
2104 ((and (memq xmltok-type '(start-tag | |
2105 end-tag | |
2106 empty-element | |
2107 comment | |
2108 processing-instruction | |
2109 entity-ref)) | |
2110 (nxml-token-begins-line-p) | |
2111 (nxml-token-ends-line-p)) | |
2112 (save-excursion | |
2113 (goto-char xmltok-start) | |
2114 (skip-chars-backward " \t") | |
2115 (point))) | |
2116 ((and (eq xmltok-type 'end-tag) | |
2117 (looking-at "[ \t]*$") | |
2118 (not (nxml-in-mixed-content-p t))) | |
2119 (save-excursion | |
2120 (or (search-forward "\n" nil t) | |
2121 (point-max)))))) | |
2122 | |
2123 (defun nxml-paragraph-start-pos (had-data offset) | |
2124 "Return the position of the paragraph start if contained in the current token. | |
2125 Return nil if the current token does not contain the paragraph start. | |
2126 Only characters before OFFSET from the end of the token are eligible. | |
2127 HAD-DATA says whether there have been non-whitespace data characters yet." | |
2128 (cond ((not had-data) | |
2129 (cond ((memq xmltok-type '(data cdata-section)) | |
2130 (save-excursion | |
2131 (goto-char (- (point) | |
2132 (max (if (eq xmltok-type 'cdata-section) | |
2133 3 | |
2134 0) | |
2135 offset))) | |
2136 (and (re-search-backward "[^ \t\r\n]" xmltok-start t) | |
2137 (re-search-backward "^[ \t]*$" xmltok-start t) | |
2138 (match-beginning 0)))) | |
2139 ((and (eq xmltok-type 'comment) | |
2140 (nxml-token-ends-line-p) | |
2141 (nxml-token-begins-line-p)) | |
2142 (save-excursion | |
2143 (goto-char (- (point) (max 3 offset))) | |
2144 (when (and (< (+ xmltok-start 4) (point)) | |
2145 (re-search-backward "[^ \t\r\n]" | |
2146 (+ xmltok-start 4) | |
2147 t)) | |
2148 (if (re-search-backward "^[ \t]*$" xmltok-start t) | |
2149 (match-beginning 0) | |
2150 (goto-char xmltok-start) | |
2151 (if (looking-at "<!--[ \t]*\n") | |
2152 (match-end 0) | |
2153 (skip-chars-backward " \t") | |
2154 (point)))))))) | |
2155 ((memq xmltok-type '(data space cdata-section)) | |
2156 (save-excursion | |
2157 (goto-char (- (point) offset)) | |
2158 (and (re-search-backward "^[ \t]*$" xmltok-start t) | |
2159 (match-beginning 0)))) | |
2160 ((and (memq xmltok-type '(start-tag | |
2161 end-tag | |
2162 empty-element | |
2163 comment | |
2164 processing-instruction | |
2165 entity-ref)) | |
2166 (nxml-token-ends-line-p) | |
2167 (nxml-token-begins-line-p)) | |
2168 (or (search-forward "\n" nil t) | |
2169 (point-max))) | |
2170 ((and (eq xmltok-type 'start-tag) | |
2171 (nxml-token-begins-line-p) | |
2172 (not (save-excursion | |
2173 (goto-char xmltok-start) | |
2174 (nxml-in-mixed-content-p nil)))) | |
2175 (save-excursion | |
2176 (goto-char xmltok-start) | |
2177 (skip-chars-backward " \t") | |
2178 ;; include any blank line before | |
2179 (or (and (eq (char-before) ?\n) | |
2180 (save-excursion | |
2181 (goto-char (1- (point))) | |
2182 (skip-chars-backward " \t") | |
2183 (and (bolp) (point)))) | |
2184 (point)))))) | |
2185 | |
2186 (defun nxml-token-ends-line-p () (looking-at "[ \t]*$")) | |
2187 | |
2188 (defun nxml-token-begins-line-p () | |
2189 (save-excursion | |
2190 (goto-char xmltok-start) | |
2191 (skip-chars-backward " \t") | |
2192 (bolp))) | |
2193 | |
2194 (defun nxml-in-mixed-content-p (endp) | |
2195 "Return non-nil if point is in mixed content. | |
2196 Point must be after an end-tag or before a start-tag. | |
2197 ENDP is t in the former case, nil in the latter." | |
2198 (let (matching-tag-pos) | |
2199 (cond ((not (run-hook-with-args-until-failure | |
2200 'nxml-in-mixed-content-hook)) | |
2201 nil) | |
2202 ;; See if the matching tag does not start or end a line. | |
2203 ((condition-case err | |
2204 (progn | |
2205 (setq matching-tag-pos | |
2206 (xmltok-save | |
2207 (if endp | |
2208 (and (nxml-scan-element-backward (point)) | |
2209 xmltok-start) | |
2210 (nxml-scan-element-forward (point))))) | |
2211 (and matching-tag-pos | |
2212 (save-excursion | |
2213 (goto-char matching-tag-pos) | |
2214 (not (if endp | |
2215 (progn | |
2216 (skip-chars-backward " \t") | |
2217 (bolp)) | |
2218 (looking-at "[ \t]*$")))))) | |
2219 (nxml-scan-error nil)) | |
2220 t) | |
2221 ;; See if there's data at the same level. | |
2222 ((let (start end) | |
2223 (if endp | |
2224 (setq start matching-tag-pos | |
2225 end (point)) | |
2226 (setq start (point) | |
2227 end matching-tag-pos)) | |
2228 (save-excursion | |
2229 (or (when start | |
2230 (goto-char start) | |
2231 (nxml-preceding-sibling-data-p)) | |
2232 (when end | |
2233 (goto-char end) | |
2234 (nxml-following-sibling-data-p))))) | |
2235 t) | |
2236 ;; Otherwise, treat as not mixed | |
2237 (t nil)))) | |
2238 | |
2239 (defun nxml-preceding-sibling-data-p () | |
2240 "Return non-nil if there is a previous sibling that is data." | |
2241 (let ((lim (max (- (point) nxml-mixed-scan-distance) | |
2242 nxml-prolog-end)) | |
2243 (level 0) | |
2244 found end) | |
2245 (xmltok-save | |
2246 (save-excursion | |
2247 (while (and (< lim (point)) | |
2248 (>= level 0) | |
2249 (not found) | |
2250 (progn | |
2251 (setq end (point)) | |
2252 (search-backward "<" lim t))) | |
2253 (nxml-move-outside-backwards) | |
2254 (save-excursion | |
2255 (xmltok-forward) | |
2256 (let ((prev-level level)) | |
2257 (cond ((eq xmltok-type 'end-tag) | |
2258 (setq level (1+ level))) | |
2259 ((eq xmltok-type 'start-tag) | |
2260 (setq level (1- level)))) | |
2261 (when (eq prev-level 0) | |
2262 (while (and (< (point) end) (not found)) | |
2263 (xmltok-forward) | |
2264 (when (memq xmltok-type '(data cdata-section char-ref)) | |
2265 (setq found t))))))))) | |
2266 found)) | |
2267 | |
2268 (defun nxml-following-sibling-data-p () | |
2269 (let ((lim (min (+ (point) nxml-mixed-scan-distance) | |
2270 (point-max))) | |
2271 (level 0) | |
2272 found) | |
2273 (xmltok-save | |
2274 (save-excursion | |
2275 (while (and (< (point) lim) | |
2276 (>= level 0) | |
2277 (nxml-tokenize-forward) | |
2278 (not found)) | |
2279 (cond ((eq xmltok-type 'start-tag) | |
2280 (setq level (1+ level))) | |
2281 ((eq xmltok-type 'end-tag) | |
2282 (setq level (1- level))) | |
2283 ((and (eq level 0) | |
2284 (memq xmltok-type '(data cdata-section char-ref))) | |
2285 (setq found t)))))) | |
2286 found)) | |
2287 | |
2288 ;;; Filling | |
2289 | |
2290 (defun nxml-do-fill-paragraph (arg) | |
2291 (let (fill-paragraph-function | |
2292 fill-prefix | |
2293 start end) | |
2294 (save-excursion | |
2295 (nxml-forward-paragraph) | |
2296 (setq end (point)) | |
2297 (nxml-backward-paragraph) | |
2298 (skip-chars-forward " \t\r\n") | |
2299 (setq start (point)) | |
2300 (beginning-of-line) | |
2301 (setq fill-prefix (buffer-substring-no-properties (point) start)) | |
2302 (when (and (not (nxml-get-inside (point))) | |
2303 (looking-at "[ \t]*<!--")) | |
2304 (setq fill-prefix (concat fill-prefix " "))) | |
2305 (fill-region-as-paragraph start end arg)) | |
2306 (skip-line-prefix fill-prefix) | |
2307 fill-prefix)) | |
2308 | |
2309 (defun nxml-newline-and-indent (soft) | |
2310 (delete-horizontal-space) | |
2311 (if soft (insert-and-inherit ?\n) (newline 1)) | |
2312 (nxml-indent-line)) | |
2313 | |
2314 | |
2315 ;;; Dynamic markup | |
2316 | |
2317 (defvar nxml-dynamic-markup-prev-pos nil) | |
2318 (defvar nxml-dynamic-markup-prev-lengths nil) | |
2319 (defvar nxml-dynamic-markup-prev-found-marker nil) | |
2320 (defvar nxml-dynamic-markup-prev-start-tags (make-hash-table :test 'equal)) | |
2321 | |
2322 (defun nxml-dynamic-markup-word () | |
2323 "Dynamically markup the word before point. | |
2324 This attempts to find a tag to put around the word before point based | |
2325 on the contents of the current buffer. The end-tag will be inserted at | |
2326 point. The start-tag will be inserted at or before the beginning of | |
2327 the word before point; the contents of the current buffer is used to | |
2328 decide where. | |
2329 | |
2330 It works in a similar way to \\[dabbrev-expand]. It searches first | |
2331 backwards from point, then forwards from point for an element whose | |
2332 content is a string which matches the contents of the buffer before | |
2333 point and which includes at least the word before point. It then | |
2334 copies the start- and end-tags from that element and uses them to | |
2335 surround the matching string before point. | |
2336 | |
2337 Repeating \\[nxml-dynamic-markup-word] immediately after successful | |
2338 \\[nxml-dynamic-markup-word] removes the previously inserted markup | |
2339 and attempts to find another possible way to do the markup." | |
2340 (interactive "*") | |
2341 (let (search-start-pos done) | |
2342 (if (and (integerp nxml-dynamic-markup-prev-pos) | |
2343 (= nxml-dynamic-markup-prev-pos (point)) | |
2344 (eq last-command this-command) | |
2345 nxml-dynamic-markup-prev-lengths) | |
2346 (let* ((end-tag-open-pos | |
2347 (- nxml-dynamic-markup-prev-pos | |
2348 (nth 2 nxml-dynamic-markup-prev-lengths))) | |
2349 (start-tag-close-pos | |
2350 (- end-tag-open-pos | |
2351 (nth 1 nxml-dynamic-markup-prev-lengths))) | |
2352 (start-tag-open-pos | |
2353 (- start-tag-close-pos | |
2354 (nth 0 nxml-dynamic-markup-prev-lengths)))) | |
2355 (delete-region end-tag-open-pos nxml-dynamic-markup-prev-pos) | |
2356 (delete-region start-tag-open-pos start-tag-close-pos) | |
2357 (setq search-start-pos | |
2358 (marker-position nxml-dynamic-markup-prev-found-marker))) | |
2359 (clrhash nxml-dynamic-markup-prev-start-tags)) | |
2360 (setq nxml-dynamic-markup-prev-pos nil) | |
2361 (setq nxml-dynamic-markup-prev-lengths nil) | |
2362 (setq nxml-dynamic-markup-prev-found-marker nil) | |
2363 (goto-char | |
2364 (save-excursion | |
2365 (let* ((pos (point)) | |
2366 (word (progn | |
2367 (backward-word 1) | |
2368 (unless (< (point) pos) | |
2369 (error "No word to markup")) | |
2370 (buffer-substring-no-properties (point) pos))) | |
2371 (search (concat word "</")) | |
2372 done) | |
2373 (when search-start-pos | |
2374 (goto-char search-start-pos)) | |
2375 (while (and (not done) | |
2376 (or (and (< (point) pos) | |
2377 (or (search-backward search nil t) | |
2378 (progn (goto-char pos) nil))) | |
2379 (search-forward search nil t))) | |
2380 (goto-char (- (match-end 0) 2)) | |
2381 (setq done (nxml-try-copy-markup pos))) | |
2382 (or done | |
2383 (error (if (zerop (hash-table-count | |
2384 nxml-dynamic-markup-prev-start-tags)) | |
2385 "No possible markup found for `%s'" | |
2386 "No more markup possibilities found for `%s'") | |
2387 word))))))) | |
2388 | |
2389 (defun nxml-try-copy-markup (word-end-pos) | |
2390 (save-excursion | |
2391 (let ((end-tag-pos (point))) | |
2392 (when (and (not (nxml-get-inside end-tag-pos)) | |
2393 (search-backward "<" nil t) | |
2394 (not (nxml-get-inside (point)))) | |
2395 (xmltok-forward) | |
2396 (when (and (eq xmltok-type 'start-tag) | |
2397 (< (point) end-tag-pos)) | |
2398 (let* ((start-tag-close-pos (point)) | |
2399 (start-tag | |
2400 (buffer-substring-no-properties xmltok-start | |
2401 start-tag-close-pos)) | |
2402 (words | |
2403 (nreverse | |
2404 (split-string | |
2405 (buffer-substring-no-properties start-tag-close-pos | |
2406 end-tag-pos) | |
2407 "[ \t\r\n]+")))) | |
2408 (goto-char word-end-pos) | |
2409 (while (and words | |
2410 (re-search-backward (concat | |
2411 (regexp-quote (car words)) | |
2412 "\\=") | |
2413 nil | |
2414 t)) | |
2415 (setq words (cdr words)) | |
2416 (skip-chars-backward " \t\r\n")) | |
2417 (when (and (not words) | |
2418 (progn | |
2419 (skip-chars-forward " \t\r\n") | |
2420 (not (gethash (cons (point) start-tag) | |
2421 nxml-dynamic-markup-prev-start-tags))) | |
2422 (or (< end-tag-pos (point)) | |
2423 (< word-end-pos xmltok-start))) | |
2424 (setq nxml-dynamic-markup-prev-found-marker | |
2425 (copy-marker end-tag-pos t)) | |
2426 (puthash (cons (point) start-tag) | |
2427 t | |
2428 nxml-dynamic-markup-prev-start-tags) | |
2429 (setq nxml-dynamic-markup-prev-lengths | |
2430 (list (- start-tag-close-pos xmltok-start) | |
2431 (- word-end-pos (point)) | |
2432 (+ (- xmltok-name-end xmltok-start) 2))) | |
2433 (let ((name (xmltok-start-tag-qname))) | |
2434 (insert start-tag) | |
2435 (goto-char (+ word-end-pos | |
2436 (- start-tag-close-pos xmltok-start))) | |
2437 (insert "</" name ">") | |
2438 (setq nxml-dynamic-markup-prev-pos (point)))))))))) | |
2439 | |
2440 | |
2441 ;;; Character names | |
2442 | |
87715
39844b05431b
(nxml-char-name-ignore-case): Change default value.
Jason Rumney <jasonr@gnu.org>
parents:
87712
diff
changeset
|
2443 (defvar nxml-char-name-ignore-case t) |
86361 | 2444 |
2445 (defvar nxml-char-name-alist nil | |
2446 "Alist of character names. | |
2447 Each member of the list has the form (NAME CODE . NAMESET), | |
2448 where NAME is a string naming a character, NAMESET is a symbol | |
2449 identifying a set of names and CODE is an integer specifying the | |
2450 Unicode scalar value of the named character. | |
2451 The NAME will only be used for completion if NAMESET has | |
2452 a non-nil `nxml-char-name-set-enabled' property. | |
2453 If NAMESET does does not have `nxml-char-name-set-defined' property, | |
2454 then it must have a `nxml-char-name-set-file' property and `load' | |
2455 will be applied to the value of this property if the nameset | |
2456 is enabled.") | |
2457 | |
2458 (defvar nxml-char-name-table (make-hash-table :test 'eq) | |
2459 "Hash table for mapping char codes to names. | |
2460 Each key is a Unicode scalar value. | |
2461 Each value is a list of pairs of the form (NAMESET . NAME), | |
2462 where NAMESET is a symbol identifying a set of names, | |
2463 and NAME is a string naming a character.") | |
2464 | |
2465 (defvar nxml-autoload-char-name-set-list nil | |
2466 "List of char namesets that can be autoloaded.") | |
2467 | |
2468 (defun nxml-enable-char-name-set (nameset) | |
2469 (put nameset 'nxml-char-name-set-enabled t)) | |
2470 | |
2471 (defun nxml-disable-char-name-set (nameset) | |
2472 (put nameset 'nxml-char-name-set-enabled nil)) | |
2473 | |
2474 (defun nxml-char-name-set-enabled-p (nameset) | |
2475 (get nameset 'nxml-char-name-set-enabled)) | |
2476 | |
2477 (defun nxml-autoload-char-name-set (nameset file) | |
2478 (unless (memq nameset nxml-autoload-char-name-set-list) | |
2479 (setq nxml-autoload-char-name-set-list | |
2480 (cons nameset nxml-autoload-char-name-set-list))) | |
2481 (put nameset 'nxml-char-name-set-file file)) | |
2482 | |
2483 (defun nxml-define-char-name-set (nameset alist) | |
2484 "Define a set of character names. | |
2485 NAMESET is a symbol identifying the set. | |
2486 Alist is a list where each member has the form (NAME CODE), | |
2487 where NAME is a string naming a character and code | |
2488 is an integer giving the Unicode scalar value of the character." | |
2489 (when (get nameset 'nxml-char-name-set-defined) | |
2490 (error "Nameset `%s' already defined" nameset)) | |
2491 (let ((iter alist)) | |
2492 (while iter | |
2493 (let* ((name-code (car iter)) | |
2494 (name (car name-code)) | |
2495 (code (cadr name-code))) | |
2496 (puthash code | |
2497 (cons (cons nameset name) | |
2498 (gethash code nxml-char-name-table)) | |
2499 nxml-char-name-table)) | |
2500 (setcdr (cdr (car iter)) nameset) | |
2501 (setq iter (cdr iter)))) | |
2502 (setq nxml-char-name-alist | |
2503 (nconc alist nxml-char-name-alist)) | |
2504 (put nameset 'nxml-char-name-set-defined t)) | |
2505 | |
2506 (defun nxml-get-char-name (code) | |
86538 | 2507 (mapc 'nxml-maybe-load-char-name-set nxml-autoload-char-name-set-list) |
86361 | 2508 (let ((names (gethash code nxml-char-name-table)) |
2509 name) | |
2510 (while (and names (not name)) | |
2511 (if (nxml-char-name-set-enabled-p (caar names)) | |
2512 (setq name (cdar names)) | |
2513 (setq names (cdr names)))) | |
2514 name)) | |
2515 | |
2516 (defvar nxml-named-char-history nil) | |
2517 | |
2518 (defun nxml-insert-named-char (arg) | |
2519 "Insert a character using its name. | |
2520 The name is read from the minibuffer. | |
2521 Normally, inserts the character as a numeric character reference. | |
2522 With a prefix argument, inserts the character directly." | |
2523 (interactive "*P") | |
86538 | 2524 (mapc 'nxml-maybe-load-char-name-set nxml-autoload-char-name-set-list) |
86361 | 2525 (let ((name |
2526 (let ((completion-ignore-case nxml-char-name-ignore-case)) | |
2527 (completing-read "Character name: " | |
2528 nxml-char-name-alist | |
2529 (lambda (member) | |
2530 (get (cddr member) 'nxml-char-name-set-enabled)) | |
2531 t | |
2532 nil | |
2533 'nxml-named-char-history))) | |
2534 (alist nxml-char-name-alist) | |
2535 elt code) | |
2536 (while (and alist (not code)) | |
2537 (setq elt (assoc name alist)) | |
2538 (if (get (cddr elt) 'nxml-char-name-set-enabled) | |
2539 (setq code (cadr elt)) | |
2540 (setq alist (cdr (member elt alist))))) | |
2541 (when code | |
2542 (insert (if arg | |
2543 (or (decode-char 'ucs code) | |
2544 (error "Character %x is not supported by Emacs" | |
2545 code)) | |
2546 (format "&#x%X;" code)))))) | |
2547 | |
2548 (defun nxml-maybe-load-char-name-set (sym) | |
2549 (when (and (get sym 'nxml-char-name-set-enabled) | |
2550 (not (get sym 'nxml-char-name-set-defined)) | |
2551 (stringp (get sym 'nxml-char-name-set-file))) | |
2552 (load (get sym 'nxml-char-name-set-file)))) | |
2553 | |
2554 (defun nxml-toggle-char-ref-extra-display (arg) | |
2555 "*Toggle the display of extra information for character references." | |
2556 (interactive "P") | |
2557 (let ((new (if (null arg) | |
2558 (not nxml-char-ref-extra-display) | |
2559 (> (prefix-numeric-value arg) 0)))) | |
2560 (when (not (eq new nxml-char-ref-extra-display)) | |
2561 (setq nxml-char-ref-extra-display new) | |
2562 (save-excursion | |
2563 (save-restriction | |
2564 (widen) | |
2565 (if nxml-char-ref-extra-display | |
2566 (nxml-with-unmodifying-text-property-changes | |
2567 (nxml-clear-fontified (point-min) (point-max))) | |
2568 (nxml-clear-char-ref-extra-display (point-min) (point-max)))))))) | |
2569 | |
2570 (put 'nxml-char-ref 'evaporate t) | |
2571 | |
2572 (defun nxml-char-ref-display-extra (start end n) | |
2573 (when nxml-char-ref-extra-display | |
2574 (let ((name (nxml-get-char-name n)) | |
2575 (glyph-string (and nxml-char-ref-display-glyph-flag | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
2576 (nxml-glyph-display-string n 'nxml-glyph))) |
86361 | 2577 ov) |
2578 (when (or name glyph-string) | |
2579 (setq ov (make-overlay start end nil t)) | |
2580 (overlay-put ov 'category 'nxml-char-ref) | |
2581 (when name | |
2582 (overlay-put ov 'help-echo name)) | |
2583 (when glyph-string | |
2584 (overlay-put ov | |
2585 'after-string | |
87348
3d42d5ccb130
(nxml-faces): Rename from nxml-highlighting-faces.
Jason Rumney <jasonr@gnu.org>
parents:
86538
diff
changeset
|
2586 (propertize glyph-string 'face 'nxml-glyph))))))) |
86361 | 2587 |
2588 (defun nxml-clear-char-ref-extra-display (start end) | |
2589 (let ((ov (overlays-in start end))) | |
2590 (while ov | |
2591 (when (eq (overlay-get (car ov) 'category) 'nxml-char-ref) | |
2592 (delete-overlay (car ov))) | |
2593 (setq ov (cdr ov))))) | |
2594 | |
2595 | |
2596 (defun nxml-start-delimiter-length (type) | |
2597 (or (get type 'nxml-start-delimiter-length) | |
2598 0)) | |
2599 | |
2600 (put 'cdata-section 'nxml-start-delimiter-length 9) | |
2601 (put 'comment 'nxml-start-delimiter-length 4) | |
2602 (put 'processing-instruction 'nxml-start-delimiter-length 2) | |
2603 (put 'start-tag 'nxml-start-delimiter-length 1) | |
2604 (put 'empty-element 'nxml-start-delimiter-length 1) | |
2605 (put 'partial-empty-element 'nxml-start-delimiter-length 1) | |
2606 (put 'entity-ref 'nxml-start-delimiter-length 1) | |
2607 (put 'char-ref 'nxml-start-delimiter-length 2) | |
2608 | |
2609 (defun nxml-end-delimiter-length (type) | |
2610 (or (get type 'nxml-end-delimiter-length) | |
2611 0)) | |
2612 | |
2613 (put 'cdata-section 'nxml-end-delimiter-length 3) | |
2614 (put 'comment 'nxml-end-delimiter-length 3) | |
2615 (put 'processing-instruction 'nxml-end-delimiter-length 2) | |
2616 (put 'start-tag 'nxml-end-delimiter-length 1) | |
2617 (put 'empty-element 'nxml-end-delimiter-length 2) | |
2618 (put 'partial-empty-element 'nxml-end-delimiter-length 1) | |
2619 (put 'entity-ref 'nxml-end-delimiter-length 1) | |
2620 (put 'char-ref 'nxml-end-delimiter-length 1) | |
2621 | |
2622 (defun nxml-token-type-friendly-name (type) | |
2623 (or (get type 'nxml-friendly-name) | |
2624 (symbol-name type))) | |
2625 | |
2626 (put 'cdata-section 'nxml-friendly-name "CDATA section") | |
2627 (put 'processing-instruction 'nxml-friendly-name "processing instruction") | |
2628 (put 'entity-ref 'nxml-friendly-name "entity reference") | |
2629 (put 'char-ref 'nxml-friendly-name "character reference") | |
2630 | |
2631 (provide 'nxml-mode) | |
2632 | |
86379 | 2633 ;; arch-tag: 8603bc5f-1ef9-4021-b223-322fb2ca708e |
86361 | 2634 ;;; nxml-mode.el ends here |