annotate lisp/psgml/psgml-parse.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;;; psgml-parse.el --- Parser for SGML-editing mode with parsing support
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; $Id: psgml-parse.el,v 1.1.1.1 1996/12/18 03:35:21 steve Exp $
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Copyright (C) 1994, 1995 Lennart Staflin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Author: Lennart Staflin <lenst@lysator.liu.se>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Acknowledgment:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; The catalog parsing code was contributed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; David Megginson <dmeggins@aix1.uottawa.CA>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; This program is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; modify it under the terms of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; as published by the Free Software Foundation; either version 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; of the License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; This program is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; along with this program; if not, write to the Free Software
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; Part of major mode for editing the SGML document-markup language.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (require 'psgml)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;;; Interface to psgml-dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (autoload 'sgml-do-usemap-element "psgml-dtd")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (autoload 'sgml-write-dtd "psgml-dtd")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (autoload 'sgml-check-dtd-subset "psgml-dtd")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;;; Advise to do-auto-fill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (defvar sgml-auto-fill-inhibit-function nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 "If non-nil, it should be a function of no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 The functions is evaluated before the standard auto-fill function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 do-auto-fill, tries to fill a line. If the function returns a true
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 value the auto-fill is inhibited.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;(defadvice do-auto-fill (around disable-auto-fill-hook activate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; (or (and sgml-auto-fill-inhibit-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; (funcall sgml-auto-fill-inhibit-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; ad-do-it))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;;;; Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;;; Hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (defvar sgml-open-element-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 "The hook run by `sgml-open-element'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Theses functions are called with two arguments, the first argument is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 the opened element and the second argument is the attribute specification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 list. It is probably best not to refer to the content or the end-tag of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 the element.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (defvar sgml-close-element-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 "The hook run by `sgml-close-element'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 These functions are invoked with `sgml-current-tree' bound to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 element just parsed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar sgml-doctype-parsed-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "This hook is caled after the doctype has been parsed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 It can be used to load any additional information into the DTD structure.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (defvar sgml-sysid-resolve-functions nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 "This variable should contain a list of functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Each function should take one argument, the system identifier of an entity.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 If the function can handle that identifier, it should insert the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 of the entity into the current buffer at point and return t. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 system identifier is not handled the function should return nil.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;;; Internal variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (defconst sgml-pcdata-token (intern "#PCDATA"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (defvar sgml-computed-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 "Internal representation of entity search map.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (defvar sgml-used-entity-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 "The value of `sgml-current-entity-map' used to compute the map in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 `sgml-compute-map'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (defvar sgml-last-element nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 "Used to keep information about position in element structure between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 commands.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (defconst sgml-users-of-last-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 '(sgml-beginning-of-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 sgml-end-of-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 sgml-up-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 sgml-backward-up-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 sgml-backward-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 sgml-forward-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 sgml-down-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 sgml-show-context
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 sgml-next-data-field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 "List of commands that set the sgml-last-element variable.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (defvar sgml-parser-syntax nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 "Syntax table used during parsing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (defvar sgml-ecat-assoc nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 "Assoc list caching parsed ecats.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (defvar sgml-catalog-assoc nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "Assoc list caching parsed catalogs.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 ;;; Variables dynamically bound to affect parsing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (defvar sgml-throw-on-warning nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 "Set to a symbol other than nil to make sgml-log-warning throw to that symbol.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (defvar sgml-throw-on-error nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 "Set to a symbol other than nil to make sgml-error throw to that symbol.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (defvar sgml-show-warnings nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 "Set to t to show warnings.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (defvar sgml-close-element-trap nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 "Can be nil for no trap, an element or t for any element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 Tested by sgml-close-element to see if the parse should be ended.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (defvar sgml-goal 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 "Point in buffer to parse up to.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (defvar sgml-shortref-handler (function sgml-handle-shortref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 "Function called by parser to handle a short reference.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 Called with the entity as argument. The start and end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 short reference is `sgml-markup-start' and point.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (defvar sgml-data-function nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 "Function called with parsed data.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (defvar sgml-entity-function nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 "Function called with entity referenced at current point in parse.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (defvar sgml-pi-function nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 "Function called with parsed process instruction.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (defvar sgml-signal-data-function nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 "Called when some data characters are conceptually parsed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 e.g. a data entity reference.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (defvar sgml-throw-on-element-change nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 "Throw tag.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ;;; Global variables active during parsing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (defvar sgml-parsing-dtd nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 "This variable is bound to `t' while parsing a DTD (subset).")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (defvar sgml-rs-ignore-pos nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 "Set to position of last parsing start in current buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (make-variable-buffer-local 'sgml-rs-ignore-pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (defvar sgml-dtd-info nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 "Holds the `sgml-dtd' structure describing the current DTD.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (defvar sgml-current-omittag nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 "Value of `sgml-omittag' in main buffer. Valid during parsing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (defvar sgml-current-shorttag nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 "Value of `sgml-shorttag' in main buffer. Valid during parsing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (defvar sgml-current-localcat nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 "Value of `sgml-local-catalogs' in main buffer. Valid during parsing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (defvar sgml-current-local-ecat nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 "Value of `sgml-local-ecat-files' in main buffer. Valid during parsing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (defvar sgml-current-state nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 "Current state in content model or model type if CDATA, RCDATA or ANY.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (defvar sgml-current-shortmap nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 "The current active short reference map.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defvar sgml-current-tree nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 "Current parse tree node, identifies open element.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (defvar sgml-previous-tree nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 "Previous tree node in current tree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 This is nil if no previous node.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (defvar sgml-markup-type nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 "Contains the type of markup parsed last.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 The value is a symbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 nil - pcdata or space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 CDATA - CDATA or RCDATA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 comment - comment declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 doctype - doctype declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 end-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 ignored - ignored marked section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 ms-end - marked section start, if not ignored
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ms-start - marked section end, if not ignored
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 pi - processing instruction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 sgml - SGML declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 start-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 entity - general entity reference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 param - parameter reference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 shortref- short reference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 mdecl - markup declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (defvar sgml-top-tree nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 "Root node of parse tree during parsing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (defvar sgml-markup-tree nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 "Tree node of markup parsed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 In case markup closed element this is different from sgml-current-tree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 Only valid after `sgml-parse-to'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (defvar sgml-markup-start nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 "Start point of markup beeing parsed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (defvar sgml-conref-flag nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 "This variable is set by `sgml-parse-attribute-specification-list'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 if a CONREF attribute is parsed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (defvar sgml-no-elements nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 "Number of declared elements.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 ;;; Vars used in *param* buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (defvar sgml-previous-buffer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (defvar sgml-current-eref nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 "This is the entity reference used to enter current entity.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 If this is nil, then current entity is main buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (defvar sgml-scratch-buffer nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 "The global value of this variable is the first scratch buffer for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 entities. The entity buffers can have a buffer local value for this variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 to point to the next scratch buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (defvar sgml-last-entity-buffer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ;;; For loading DTD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (defconst sgml-max-single-octet-number 250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 "Octets greater than this is the first of a two octet coding."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (defvar sgml-read-token-vector nil) ; Vector of symbols used to decode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 ; token numbers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (defvar sgml-read-nodes nil) ; Vector of nodes used when reading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 ; a finite automaton.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 ;; Buffer local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (defvar sgml-loaded-dtd nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 "File name corresponding to current DTD.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (make-variable-buffer-local 'sgml-loaded-dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (defvar sgml-current-element-name nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 "Name of current element for mode line display.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 ;;;; Build parser syntax table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (setq sgml-parser-syntax (make-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (let ((i 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (while (< i 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (modify-syntax-entry i " " sgml-parser-syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (setq i (1+ i))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (mapconcat (function (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (modify-syntax-entry c "w" sgml-parser-syntax)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrtsuvwxyz" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (mapconcat (function (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (modify-syntax-entry c "_" sgml-parser-syntax)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 "-.0123456789" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (mapconcat (function (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (modify-syntax-entry c "." sgml-parser-syntax)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 "</>&%#[]" ".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 ;;(progn (set-syntax-table sgml-parser-syntax) (describe-syntax))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (defmacro sgml-with-parser-syntax (&rest body)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (` (let ((normal-syntax-table (syntax-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (set-syntax-table sgml-parser-syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (progn (,@ body))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (set-syntax-table normal-syntax-table)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ;;;; State machine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ;; From the parsers POV a state is a mapping from tokens (in sgml it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;; is primitive state tokens) to states. The pairs of the mapping is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 ;; called moves.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 ;; DFAs are always represented by the start state, which is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 ;; normal state. Normal states contain moves of two types:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 ;; 1. moves for required tokens, 2. moves for optional tokens.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 ;; By design these are keept in two different sets.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 ;; [Alt: they could perhaps have been keept in one set but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 ;; marked in different ways.]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 ;; The &-model groups creates too big state machines, therefor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 ;; there is a datastruture called &-node.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 ;; A &-node is a specification for a dfa that has not been computed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 ;; It contains a set of dfas that all have to be traversed befor going
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 ;; to the next state. The &-nodes are only stored in moves and are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 ;; not seen by the parser. When a move is taken the &-node is converted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 ;; to a &-state.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 ;; A &-state keeps track of which dfas still need to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 ;; traversed and the state of the current dfa.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ;; move = <token, node>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 ;; node = normal-state | &-node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 ;; &-node = <dfas, next>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 ;; where: dfas is a set of normal-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;; next is a normal-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 ;; State = normal-state | &-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 ;; The parser only knows about the state type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 ;; normal-state = <opts, reqs>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 ;; where: opts is a set of moves for optional tokens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 ;; reqs is a set of moves for required tokens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 ;; &-state = <substate, dfas, next>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ;; where: substate is a normal-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ;; dfas is a set of states
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ;; next is the next state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 ;; The &-state is only used during the parsing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ;; Primitiv functions to get data from parse state need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 ;; to know both normal-state and &-state.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 ;;; Representations:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 ;;move: (token . node)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (defmacro sgml-make-move (token node)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (` (cons (, token) (, node))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (defmacro sgml-move-token (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (` (car (, x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (defmacro sgml-move-dest (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (` (cdr (, x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 ;; set of moves: list of moves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (defmacro sgml-add-move-to-set (token node set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (`(cons (cons (, token) (, node)) (, set))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (defmacro sgml-moves-lookup (token set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (` (assq (, token) (, set))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 ;; normal-state: ('normal-state opts . reqs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (defsubst sgml-make-state ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (cons 'normal-state (cons nil nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (defmacro sgml-normal-state-p (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (` (eq (car (, s)) 'normal-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (defmacro sgml-state-opts (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (` (cadr (, s))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (defmacro sgml-state-reqs (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (` (cddr (, s))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (defmacro sgml-state-final-p (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (`(null (sgml-state-reqs (, s)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 ;; adding moves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 ;; *** Should these functions check for ambiguity?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 ;; What if adding a optional move for a token that has a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 ;; required move?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ;; What about the other way?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (defsubst sgml-add-opt-move (s token dest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (or (sgml-moves-lookup token (sgml-state-opts s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (setf (sgml-state-opts s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (sgml-add-move-to-set token dest (sgml-state-opts s)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (defsubst sgml-add-req-move (s token dest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (or (sgml-moves-lookup token (sgml-state-reqs s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (setf (sgml-state-reqs s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (sgml-add-move-to-set token dest (sgml-state-reqs s)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (defsubst sgml-make-primitive-content-token (token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (let ((s1 (sgml-make-state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (s2 (sgml-make-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (sgml-add-req-move s1 token s2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 s1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 ;;&-state: (state next . dfas)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (defsubst sgml-make-&state (state dfas next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (cons state (cons next dfas)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (defsubst sgml-step-&state (state &state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (cons state (cdr &state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (defsubst sgml-&state-substate (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (car s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (defsubst sgml-&state-dfas (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (cddr s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (defsubst sgml-&state-next (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (cadr s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 ;;&-node: (next . dfas)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (defsubst sgml-make-&node (dfas next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (cons next dfas))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (defmacro sgml-&node-next (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (` (car (, n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (defmacro sgml-&node-dfas (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (` (cdr (, n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 ;;; Using states
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 ;; get-move: State x Token --> State|nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (defsubst sgml-get-move (state token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 "Return a new state or nil, after traversing TOKEN from STATE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 ((sgml-normal-state-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (let ((c (or (sgml-moves-lookup token (sgml-state-opts state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (sgml-moves-lookup token (sgml-state-reqs state)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (if c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (let ((dest (sgml-move-dest c)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (if (sgml-normal-state-p dest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 dest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ;; dest is a &-node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (sgml-next-sub& (sgml-&node-dfas dest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (sgml-&node-next dest)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (t ;state is a &-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (sgml-get-&move state token))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (defun sgml-get-&move (state token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 ;; state is a &-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (let ((m (sgml-get-move (sgml-&state-substate state) token)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (cond (m (cons m (cdr state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 ((sgml-state-final-p (sgml-&state-substate state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (sgml-next-sub& (sgml-&state-dfas state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (sgml-&state-next state))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (defun sgml-next-sub& (dfas token next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 "Compute the next state, choosing from DFAS and moving by TOKEN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 If this is not possible, but all DFAS are final, move by TOKEN in NEXT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (let ((allfinal t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (l dfas)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (res nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 s1 s2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (while (and l (not res))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (setq s1 (car l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 allfinal (and allfinal (sgml-state-final-p s1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 s2 (sgml-get-move s1 token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 res (and s2 (sgml-make-&state s2 (remq s1 dfas) next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 l (cdr l)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (cond (res)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (allfinal (sgml-get-move next token)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (defsubst sgml-tokens-of-moves (moves)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (mapcar (function (lambda (m) (sgml-move-token m)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 moves))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (defun sgml-required-tokens (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (if (sgml-normal-state-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (sgml-tokens-of-moves (sgml-state-reqs state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (or (sgml-required-tokens (sgml-&state-substate state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (loop for s in (sgml-&state-dfas state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 nconc (sgml-tokens-of-moves (sgml-state-reqs s)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (sgml-tokens-of-moves (sgml-state-reqs (sgml-&state-next state))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (defsubst sgml-final (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (if (sgml-normal-state-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (sgml-state-final-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (sgml-final& state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (defun sgml-final& (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (and (sgml-final (sgml-&state-substate state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (loop for s in (sgml-&state-dfas state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 always (sgml-state-final-p s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (sgml-state-final-p (sgml-&state-next state))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (defun sgml-optional-tokens (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (if (sgml-normal-state-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (sgml-tokens-of-moves (sgml-state-opts state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (nconc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (sgml-optional-tokens (sgml-&state-substate state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (if (sgml-final (sgml-&state-substate state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (loop for s in (sgml-&state-dfas state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 nconc (sgml-tokens-of-moves (sgml-state-opts s))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (if (loop for s in (sgml-&state-dfas state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 always (sgml-state-final-p s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (sgml-tokens-of-moves (sgml-state-opts (sgml-&state-next state)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 ;;;; Attribute Types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 ;;; Basic Types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 ;; name = string attribute names are lisp symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 ;; attval = string attribute values are lisp strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 ;;; Attribute Declaration Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 ;; attdecl = <name, declared-value, default-value>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 ;; This is the result of the ATTLIST declarations in the DTD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ;; All attribute declarations for an element is the elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 ;; attlist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 ;;; Attribute Declaration Operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 ;; sgml-make-attdecl: name declared-value default-value -> attdecl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 ;; sgml-attdecl-name: attdecl -> name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 ;; sgml-attdecl-declared-value: attdecl -> declared-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 ;; sgml-attdecl-default-value: attdecl -> default-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 ;;; Attribute Declaration List Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 ;; attlist = attdecl*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 ;;; Attribute Declaration List Operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 ;; sgml-lookup-attdecl: name x attlist -> attdecl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 ;;; Declared Value Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 ;; declared-value = (token-group | notation | simpel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 ;; token-group = nametoken+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 ;; notation = nametoken+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 ;; simple = symbol lisp symbol corresponding to SGML type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 ;;; Declared Value Operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 ;; sgml-declared-value-token-group: declared-value -> list of symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 ;; sgml-declared-value-notation: declared-value -> list of symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 ;; (empty list if not token-group/notation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 ;;; Default Value Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 ;; default-value = (required | implied | conref | specified )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 ;; implied, conref = constant symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 ;; specified = (fixed | normal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 ;; fixed, normal = attval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 ;;; Default Value Operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 ;; sgml-default-value-attval: default-value -> (attval | nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 ;; sgml-default-value-type-p: type x default-value -> cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 ;;; Attribute Specification Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 ;; attspec = <name, attval>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 ;; This is the result of parsing an attribute specification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 ;; sgml-make-attspec: name x attval -> attspec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ;; sgml-attspec-name: attspec -> name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 ;; sgml-attspec-attval: attspec -> attval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ;;; Attribute Specification List Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 ;; asl = attspec*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 ;; aka. attribute value list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 ;;; Code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 ;;; attdecl representation = (name declared-value default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (defun sgml-make-attdecl (name dcl-value default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (list name dcl-value default-value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (defun sgml-attdecl-name (attdecl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (car attdecl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (defun sgml-attdecl-declared-value (attdecl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 "The declared value of ATTDECL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 It may be a symbol or (name-token-group (NAME1 ... NAMEn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 or (notation (NOT1 ... NOTn))"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (cadr attdecl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (defun sgml-attdecl-default-value (attdecl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 "The default value of ATTDECL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 The default value is either a symbol (required | implied | current |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 conref) or a list with first element nil or symbol 'fixed' and second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 element the value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (caddr attdecl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 ;;; attlist representation = (attspec*)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (defun sgml-lookup-attdecl (name attlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 "Return the attribute declaration for NAME in ATTLIST."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (assoc name attlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (defun sgml-attribute-with-declared-value (attlist declared-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 "Find the first attribute in ATTLIST that has DECLARED-VALUE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (let ((found nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (while (and attlist (not found))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (when (equal declared-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (sgml-attdecl-declared-value (car attlist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (setq found (car attlist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (setq attlist (cdr attlist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 found))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 ;;; declared-value representation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 ;; token-group = (name-token (symbol+))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 ;; notation = (notation (symbol+))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 ;; simple = symbol lisp symbol correspoinding to SGML type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (defun sgml-make-declared-value (type &optional names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 "Make a declared-value of TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 TYPE should be a symbol. If TYPE is name-token-group or notation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 NAMES should be a list of symbols."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (if (consp names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (list type names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (defun sgml-declared-value-token-group (declared-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 "Return the name token group for the DECLARED-VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 This applies to name token groups. For other declared values nil is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 returned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (and (consp declared-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (eq 'name-token-group (car declared-value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (cadr declared-value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (defun sgml-declared-value-notation (declared-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 "Return the list of notation names for the DECLARED-VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 This applies to notation declared value. For other declared values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 nil is returned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (and (consp declared-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (eq 'notation (car declared-value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (cadr declared-value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 ;;; default-value representation = symbol | ((nil | 'fixed) attval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (defun sgml-make-default-value (type &optional attval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (if attval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (list type attval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (defun sgml-default-value-attval (default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 "Return the actual default value of the declared DEFAULT-VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 The actual value is a string. Return nil if no actual value."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (and (consp default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (cadr default-value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (defun sgml-default-value-type-p (type default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 "Return true if DEFAULT-VALUE is of TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 Where TYPE is a symbol, one of required, implied, conref, or fixed."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (or (eq type default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (and (consp default-value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (eq type (car default-value)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 ;;; attspec representation = (symbol . string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (defun sgml-make-attspec (name attval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 "Create an attspec from NAME and ATTVAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 Special case, if ATTVAL is nil this is an implied attribute."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (cons name attval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 ;; sgml-attspec-name: attspec -> name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (defun sgml-attspec-name (attspec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (car attspec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 ;; sgml-attspec-attval: attspec -> attval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (defun sgml-attspec-attval (attspec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 "Return the value of attribute specification ATTSPEC.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 If ATTSPEC is nil, nil is returned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (cdr attspec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 ;;; asl representaion = (attspec*)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (defun sgml-lookup-attspec (name asl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (assoc name asl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ;;;; Element content types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 ;; The content of an element is defined as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 ;; (125 declared content | 126 content model),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 ;; 125 declared content = "CDATA" | "RCDATA" | "EMPTY"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 ;; 126 content model = (127 model group | "ANY"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 ;; (65 ps+, 138 exceptions)?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 ;; I represent a model group with the first state of a corresponding finite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 ;; automaton (this is a cons). Exceptions are handled separately.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 ;; The other content types are represented by symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (defsubst sgml-model-group-p (model)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (consp model))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (defconst sgml-cdata 'CDATA)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (defconst sgml-rcdata 'RCDATA)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (defconst sgml-empty 'EMPTY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (defconst sgml-any 'ANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 ;;;; External identifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 ;; extid = (pubid? sysid? dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 ;; Representation as (pubid sysid . dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 ;; where pubid = nil | string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 ;; sysid = nil | string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 ;; dir = string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (defun sgml-make-extid (pubid sysid &optional dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (cons pubid (cons sysid (or dir default-directory))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (defun sgml-extid-pubid (extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (car extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (defun sgml-extid-sysid (extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (if (consp (cdr extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (cadr extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (cdr extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (defun sgml-extid-dir (extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 "Directory where EXTID was declared"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (if (consp (cdr extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (cddr extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (defun sgml-extid-expand (file extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 "Expand file name FILE in the context of EXTID."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (expand-file-name file (sgml-extid-dir extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 ;;;; DTD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 ;; DTD = (doctype, eltypes, parameters, entities, shortmaps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 ;; notations, dependencies, merged)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 ;; DTDsubset ~=~ DTD, but doctype is unused
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 ;; doctype = name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 ;; eltypes = oblist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 ;; parameters = entity*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 ;; entities = entity*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 ;; shortmaps = (name, shortmap)*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 ;; dependencies = file*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 ;; merged = Compiled-DTD? where Compiled-DTD = (file, DTD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (defstruct (sgml-dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (:type vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (:constructor sgml-make-dtd (doctype)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 doctype ; STRING, name of doctype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (eltypes ; OBLIST, element types defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (sgml-make-eltype-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (parameters ; ALIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (sgml-make-entity-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (entities ; ALIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (sgml-make-entity-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (shortmaps ; ALIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (sgml-make-shortref-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (notations ; ??
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (dependencies ; LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (merged ; (file . DTD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (undef-entities ; LIST of entity names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 ;;;; Element type objects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 ;; An element type object contains the information about an element type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 ;; obtained from parsing the DTD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 ;; An element type object is represented by a symbol in a special oblist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 ;; A table of element type objects is represented by a oblist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 ;;; Element type objects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (defun sgml-eltype-name (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 (symbol-name et))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (define-compiler-macro sgml-eltype-name (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (`(symbol-name (, et))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (defun sgml-eltype-defined (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (fboundp et))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (defun sgml-eltype-token (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 "Return a token for the element type"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (define-compiler-macro sgml-eltype-token (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (defun sgml-token-eltype (token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 "Return the element type corresponding to TOKEN."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (define-compiler-macro sgml-token-eltype (token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 (defmacro sgml-prop-fields (&rest names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 'progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (loop for n in names collect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (`(defmacro (, (intern (format "sgml-eltype-%s" n))) (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (list 'get et ''(, n)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (sgml-prop-fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 ;;flags ; optional tags and mixed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 ; (perhaps in value field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 ;;model ; Content type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 ; (perhaps in function field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 attlist ; List of defined attributes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 includes ; List of included elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 excludes ; List of excluded elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 shortmap ; Associated shortref map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 ; nil if none and 'empty if #empty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (defmacro sgml-eltype-flags (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (` (symbol-value (, et))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (defun sgml-eltype-model (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (if (fboundp et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 (symbol-function et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 sgml-any))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (defsetf sgml-eltype-model fset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (defun sgml-eltype-stag-optional (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (oddp (sgml-eltype-flags et)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (defun sgml-eltype-etag-optional (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (/= 0 (logand 2 (sgml-eltype-flags et))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (defun sgml-eltype-mixed (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 (< 3 (sgml-eltype-flags et)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (define-compiler-macro sgml-eltype-mixed (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (`(< 3 (sgml-eltype-flags (, et)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (defsetf sgml-eltype-stag-optional (et) (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (list 'sgml-set-eltype-flag et 1 f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (defsetf sgml-eltype-etag-optional (et) (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (list 'sgml-set-eltype-flag et 2 f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (defsetf sgml-eltype-mixed (et) (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (list 'sgml-set-eltype-flag et 4 f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (defun sgml-set-eltype-flag (et mask f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (setf (sgml-eltype-flags et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (logior (logand (if (boundp et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (sgml-eltype-flags et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (lognot mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (if f mask 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (defun sgml-maybe-put (sym prop val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (when val (put sym prop val)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (defsetf sgml-eltype-includes (et) (l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (list 'sgml-maybe-put et ''includes l))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (defsetf sgml-eltype-excludes (et) (l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (list 'sgml-maybe-put et ''excludes l))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (defmacro sgml-eltype-appdata (et prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 "Get application data from element type ET with name PROP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 PROP should be a symbol, reserved names are: flags, model, attlist,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 includes, excludes, conref-regexp, mixed, stag-optional, etag-optional."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 (` (get (, et) (, prop))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (defun sgml-eltype-all-miscdata (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (loop for p on (symbol-plist et) by (function cddr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 unless (memq (car p) '(model flags includes excludes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 nconc (list (car p) (cadr p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (defun sgml-eltype-set-all-miscdata (et miscdata)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (setf (symbol-plist et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 (nconc (symbol-plist et) miscdata)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (defun sgml-make-eltype (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 (let ((et (make-symbol name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 (setf (sgml-eltype-flags et) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 et))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 ;;; Element type tables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (defun sgml-make-eltype-table ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 "Make an empty table of element types."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (make-vector 73 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 (defun sgml-eltype-table-empty (eltype-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (loop for x across eltype-table always (eq x 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (defun sgml-merge-eltypes (eltypes1 eltypes2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 "Return the merge of two element type tables ELTYPES1 and ELTYPES2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 This may change ELTYPES1, ELTYPES2 is unchanged. Returns the new table."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (if (sgml-eltype-table-empty eltypes1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 eltypes2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (mapatoms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (function (lambda (sym)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (let ((et (intern (symbol-name sym) eltypes1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (unless (fboundp et) ; not yet defined by <!element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (when (fboundp sym)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (fset et (symbol-function sym)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (when (boundp sym)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (set et (symbol-value sym))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (setf (symbol-plist et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (nconc (symbol-plist et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (copy-list (symbol-plist sym)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 eltypes2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 eltypes1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (defun sgml-lookup-eltype (name &optional dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 "Lookup the element defintion for NAME (string)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 (intern name (sgml-dtd-eltypes (or dtd sgml-dtd-info))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (defun sgml-eltype-completion-table (eltypes)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 "Make a completion table from a list, ELTYPES, of element types."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (loop for et in eltypes as name = (sgml-eltype-name et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 if (boundp et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 collect (cons name name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (defun sgml-read-element-type (prompt dtd &optional default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 "Read an element type name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 PROMPT is displayed as a prompt and DTD should be the dtd to get the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 element types from. Optional argument DEFAULT (string) will be used as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 a default for the element type name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 (let ((name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 (completing-read prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 (sgml-dtd-eltypes dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 (function fboundp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (when (equal name "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (setq name (or default (error "Aborted"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (sgml-lookup-eltype name dtd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (defun sgml-map-eltypes (fn dtd &optional collect all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (let ((*res* nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (mapatoms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (cond ((and collect all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (function (lambda (a) (push (funcall fn a) *res*))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (collect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (function (lambda (a) (when (boundp a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (push (funcall fn a) *res*)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (function (lambda (a) (funcall fn a))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (function (lambda (a) (when (boundp a) (funcall fn a))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 (sgml-dtd-eltypes dtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (nreverse *res*)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 ;;;; Load a saved dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (defmacro sgml-char-int (ch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (if (fboundp 'char-int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (` (char-int (, ch)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (defsubst sgml-read-octet ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 (prog1 (sgml-char-int (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (forward-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (defsubst sgml-read-number ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 "Read a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 A number is 1: an octet [0--sgml-max-singel-octet-number]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 or 2: two octets (n,m) interpreted as (n-t-1)*256+m+t."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 (if (> (following-char) sgml-max-single-octet-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (+ (* (- (following-char) (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 (1+ sgml-max-single-octet-number)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 (prog1 (char-after (1+ (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 (forward-char 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 sgml-max-single-octet-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (sgml-read-octet)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (defsubst sgml-read-peek ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (defun sgml-read-sexp ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (let ((standard-input (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (read))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (skip-chars-forward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 (forward-char 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 (defsubst sgml-read-token ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (aref sgml-read-token-vector (sgml-read-number)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (defsubst sgml-read-node-ref ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (aref sgml-read-nodes (sgml-read-octet)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (defun sgml-read-model-seq ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (loop repeat (sgml-read-number) collect (sgml-read-model)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (defun sgml-read-token-seq ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (loop repeat (sgml-read-number) collect (sgml-read-token)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 (defun sgml-read-moves ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (loop repeat (sgml-read-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 collect (sgml-make-move (sgml-read-token) (sgml-read-node-ref))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (defun sgml-read-model ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (let* ((n (sgml-read-number))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (sgml-read-nodes (make-vector n nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (loop for i below n do (aset sgml-read-nodes i (sgml-make-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 (loop for e across sgml-read-nodes do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (cond ((eq 255 (sgml-read-peek)) ; a &node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (sgml-read-octet) ; skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (setf (sgml-&node-next e) (sgml-read-node-ref))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (setf (sgml-&node-dfas e) (sgml-read-model-seq)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 (t ; a normal-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 (setf (sgml-state-opts e) (sgml-read-moves))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 (setf (sgml-state-reqs e) (sgml-read-moves)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (aref sgml-read-nodes 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (defun sgml-read-content ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 (let ((c (sgml-read-octet)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 (cond ((eq c 0) sgml-cdata)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 ((eq c 1) sgml-rcdata)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 ((eq c 2) sgml-empty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 ((eq c 3) sgml-any)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 ((eq c 4) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 ((eq c 128)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (sgml-read-model)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (defun sgml-read-decode-flag (flag mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (not (zerop (logand flag mask))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (defun sgml-read-element (et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (sgml-eltype-set-all-miscdata et (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (let ((flags (sgml-read-octet)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (unless (= flags 128)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (setf (sgml-eltype-flags et) flags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 (sgml-eltype-model et) (sgml-read-content)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (sgml-eltype-includes et) (sgml-read-token-seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (sgml-eltype-excludes et) (sgml-read-token-seq)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 (defun sgml-read-dtd ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 "Decode the saved DTD in current buffer, return the DTD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (let ((gc-cons-threshold (max gc-cons-threshold 500000))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 temp dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 (setq temp (sgml-read-sexp)) ; file-version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 ((equal temp '(sgml-saved-dtd-version 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 ;; Doctype -- create dtd structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (setq dtd (sgml-make-dtd (sgml-read-sexp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 ;; Element type names -- read and create token vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 (setq temp (sgml-read-number)) ; # eltypes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (setq sgml-read-token-vector (make-vector (1+ temp) nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 (aset sgml-read-token-vector 0 sgml-pcdata-token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (loop for i from 1 to temp do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 (aset sgml-read-token-vector i
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 (sgml-lookup-eltype (sgml-read-sexp) dtd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 ;; Element type descriptions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (loop for i from 1 to (sgml-read-number) do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (sgml-read-element (aref sgml-read-token-vector i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (setf (sgml-dtd-parameters dtd) (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 (setf (sgml-dtd-entities dtd) (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (setf (sgml-dtd-shortmaps dtd) (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (setf (sgml-dtd-notations dtd) (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (setf (sgml-dtd-dependencies dtd) (sgml-read-sexp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 ;; New version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 ((equal temp '(sgml-saved-dtd-version 6))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (setq dtd (sgml-bdtd-read-dtd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 ;; Something else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (error "Unknown file format for saved DTD: %s" temp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 dtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (defun sgml-load-dtd (file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 "Load a saved DTD from FILE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (let ((tem (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (or sgml-default-dtd-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (sgml-default-dtd-file)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (list (read-file-name "Load DTD from: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 (file-name-directory tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 tem
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (file-name-nondirectory tem)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (setq sgml-loaded-dtd nil) ; Allow reloading of DTD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 ;; Search for 'file' on the sgml-system-path [ndw]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (let ((real-file (car (mapcan (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 (lambda (dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 (let ((f (expand-file-name file dir)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 (if (file-exists-p f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (list f)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 (cons "."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 ;; wing change -- add sgml-data-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 (append sgml-system-path
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 (list sgml-data-directory)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (or real-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (error "Saved DTD file %s not found" file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (let ((cb (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (tem nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (dtd nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 (l (buffer-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (find-file-type ; Allways binary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (function (lambda (fname) 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 ;; Search loaded buffer for a already loaded DTD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (while (and l (null tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (set-buffer (car l))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (if (equal sgml-loaded-dtd real-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (setq tem (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 (setq l (cdr l)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 (tem ; loaded DTD found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 (setq dtd (sgml-pstate-dtd sgml-buffer-parse-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (t ; load DTD from file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (set-buffer cb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 (sgml-push-to-entity real-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 (message "Loading DTD from %s..." real-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (setq dtd (sgml-read-dtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 (message "Loading DTD from %s...done" real-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (sgml-pop-entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (set-buffer cb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (sgml-set-initial-state dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 (setq sgml-default-dtd-file file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (setq sgml-loaded-dtd real-file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 ;;;; Biniary coded DTD module
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 ;;; Works on the binary coded compiled DTD (bdtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 ;;; bdtd-load: cfile dtdfile ents -> bdtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 ;;; bdtd-merge: bdtd dtd -> dtd?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 ;;; bdtd-read-dtd: bdtd -> dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 ;;; Implement by letting bdtd be implicitly the current buffer and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 ;;; dtd implicit in sgml-dtd-info.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 (defun sgml-bdtd-load (cfile dtdfile ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 "Load the compiled dtd from CFILE into the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 If this file does not exists, is of an old version or out of date, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 new compiled dtd will be creted from file DTDFILE and parameter entity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 settings in ENTS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 ;;(Assume the current buffer is a scratch buffer and is empty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 (sgml-debug "Trying to load compiled DTD from %s..." cfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 (or (and (file-readable-p cfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 (let ((find-file-type ; Allways binary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (function (lambda (fname) 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 ;; fifth arg to insert-file-contents is not available in early
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 ;; v19.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (insert-file-contents cfile nil nil nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 (equal '(sgml-saved-dtd-version 6) (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (or (sgml-up-to-date-p cfile (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 (if (eq 'ask sgml-recompile-out-of-date-cdtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 (not (y-or-n-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 "Compiled DTD is out of date, recompile? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 (not sgml-recompile-out-of-date-cdtd))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (sgml-compile-dtd dtdfile cfile ents)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (defun sgml-up-to-date-p (file dependencies)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 "Check if FILE is newer than all files in the list DEPENDENCIES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 If DEPENDENCIES contains the symbol `t', FILE is not considered newer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (if (memq t dependencies)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (loop for f in dependencies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 always (file-newer-than-file-p file f))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 (defun sgml-compile-dtd (dtd-file to-file ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 "Construct a binary code compiled dtd from DTD-FILE and write it to TO-FILE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 The dtd will be constructed with the parameter entities set according
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 to ENTS. The bdtd will be left in the current buffer. The current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 buffer is assumend to be empty to start with."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 (sgml-log-message "Recompiling DTD file %s..." dtd-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 (let* ((sgml-dtd-info (sgml-make-dtd nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (parameters (sgml-dtd-parameters sgml-dtd-info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 (sgml-parsing-dtd t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 (push dtd-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 (sgml-dtd-dependencies sgml-dtd-info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 (loop for (name . val) in ents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 do (sgml-entity-declare name parameters 'text val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (sgml-push-to-entity dtd-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (sgml-check-dtd-subset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (sgml-pop-entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (sgml-write-dtd sgml-dtd-info to-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (defun sgml-check-entities (params1 params2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 "Check that PARAMS1 is compatible with PARAMS2."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 (block check-entities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 (sgml-map-entities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 (function (lambda (entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 (let ((other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 (sgml-lookup-entity (sgml-entity-name entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 params2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 (unless (or (null other)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 (equal entity other))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 (sgml-log-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 "Parameter %s in complied DTD has wrong value;\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 is '%s' should be '%s'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 (sgml-entity-name entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (sgml-entity-text other)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (sgml-entity-text entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 (return-from check-entities nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 params1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 (defun sgml-bdtd-merge ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 "Merge the binary coded dtd in the current buffer with the current dtd.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 The current dtd is the variable sgml-dtd-info. Return t if mereged
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 was successfull or nil if failed."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (sgml-read-sexp) ; skip filev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 (let ((dependencies (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (parameters (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 (gc-cons-threshold (max gc-cons-threshold 500000))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 temp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 ;; Check comaptibility of parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 (and (sgml-check-entities (sgml-dtd-parameters sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 parameters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 ;; Do the merger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 (sgml-message "Reading compiled DTD...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 (sgml-merge-entity-tables (sgml-dtd-parameters sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 parameters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (setf (sgml-dtd-dependencies sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (nconc (sgml-dtd-dependencies sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 dependencies))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 ;; Doctype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 (setq temp (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 (when (and temp (null (sgml-dtd-doctype sgml-dtd-info)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 (setf (sgml-dtd-doctype sgml-dtd-info) temp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 ;; Element type names -- read and create token vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (setq temp (sgml-read-number)) ; # eltypes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (setq sgml-read-token-vector (make-vector (1+ temp) nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (aset sgml-read-token-vector 0 sgml-pcdata-token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (loop for i from 1 to temp do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (aset sgml-read-token-vector i
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (sgml-lookup-eltype (sgml-read-sexp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 ;; Element type descriptions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 (loop for i from 1 to (sgml-read-number) do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 (sgml-read-element (aref sgml-read-token-vector i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 (sgml-merge-entity-tables (sgml-dtd-entities sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (sgml-merge-shortmaps (sgml-dtd-shortmaps sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (setf (sgml-dtd-notations sgml-dtd-info) (sgml-read-sexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 (defun sgml-bdtd-read-dtd ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 "Create and return a dtd from the binary coded dtd in the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 (let ((sgml-dtd-info (sgml-make-dtd nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 (sgml-bdtd-merge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 sgml-dtd-info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 ;;;; Set markup type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 (defsubst sgml-set-markup-type (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 "Set the type of the markup parsed to TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 The markup starts at position given by variable sgml-markup-start and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 ends at point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 (when (and sgml-set-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 (null sgml-current-eref))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 (sgml-set-face-for sgml-markup-start (point) type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (setq sgml-markup-type type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 ;;;; Parsing delimiters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 (defconst sgml-delimiters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 '("AND" "&"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 "COM" "--"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 "CRO" "&#"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 "DSC" "]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 "DSO" "["
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 "DTGC" "]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 "DTGO" "["
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 "ERO" "&"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 "ETAGO" "</"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 "GRPC" ")"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 "GRPO" "("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 "LIT" "\""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 "LITA" "'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 "MDC" ">"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 "MDO" "<!"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 "MINUS" "-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 "MSC" "]]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 "NET" "/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 "OPT" "?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 "OR" "|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 "PERO" "%"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 "PIC" ">"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 "PIO" "<?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 "PLUS" "+"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 "REFC" ";"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 "REP" "*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 "RNI" "#"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 "SEQ" ","
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 "STAGO" "<"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 "TAGC" ">"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 "VI" "="
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 ;; Some combinations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 "MS-START" "<![" ; MDO DSO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 "MS-END" "]]>" ; MSC MDC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 ;; Pseudo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 "NULL" ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 (defmacro sgml-is-delim (delim &optional context move offset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 "Macro for matching delimiters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 Syntax: DELIM &optional CONTEXT MOVE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 where DELIM is the delimiter name (string or symbol),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 CONTEXT the contextual constraint, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 MOVE is `nil', `move' or `check'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 Test if the text following point in current buffer matches the SGML
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 delimiter DELIM. Also check the characters after the delimiter for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 CONTEXT. Applicable values for CONTEXT is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 `gi' -- name start or TAGC if SHORTTAG YES,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 `com' -- if COM or MDC,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 `nmstart' -- name start character,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 `stagc' -- TAGC if SHORTTAG YES,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 `digit' -- any Digit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 string -- delimiter with that name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 list -- any of the contextual constraints in the list."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 (or offset (setq offset 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (let ((ds (member (upcase (format "%s" delim))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 sgml-delimiters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 (assert ds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 (setq delim (car ds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 ds (cadr ds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 (cond ((eq context 'gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (setq context '(nmstart stagc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 ((eq context 'com)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 (setq context '("COM" "MDC")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 ((null context)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 (setq context '(t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 ((not (listp context))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 (setq context (list context))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 (`(if (and ; This and checks that characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 ; of the delimiter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 (,@(loop for i from 0 below (length ds) collect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 (` (eq (, (aref ds i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (sgml-following-char (, (+ i offset)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 (,@(loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 for c in context collect ; context check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 ((eq c 'nmstart) ; name start character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 (`(sgml-startnm-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 (or (sgml-following-char (, (length ds))) 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 ((eq c 'stagc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 (`(and sgml-current-shorttag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 (sgml-is-delim "TAGC" nil nil (, (length ds))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 ((eq c 'digit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 (`(memq (sgml-following-char (, (length ds)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 '(?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 ((stringp c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 (`(sgml-is-delim (, c) nil nil (, (length ds)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 ((eq c t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 (t (error "Context type: %s" c))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 (progn ; Do operations if delimiter found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 (,@ (if move (`((forward-char (, (length ds)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 (,@ (if (not (eq move 'check))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 '(t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 (,@ (if (eq move 'check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 (`((sgml-delimiter-parse-error (, delim))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 (defmacro sgml-following-char (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 (cond ((zerop n) '(following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 ((= n 1) '(char-after (1+ (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 (t (` (char-after (+ (, n) (point)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 (defun sgml-delimiter-parse-error (delim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 (sgml-parse-error "Delimiter %s (%s) expected"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 delim (cadr (member delim sgml-delimiters))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (defmacro sgml-parse-delim (delim &optional context)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 (`(sgml-is-delim (, delim) (, context) move)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 (defmacro sgml-check-delim (delim &optional context)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 (`(sgml-is-delim (, delim) (, context) check)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 (defmacro sgml-skip-upto (delim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 "Skip until the delimiter or first char of one of the delimiters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 If DELIM is a string/symbol this is should be a delimiter role.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 Characters are skipped until the delimiter is recognized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 If DELIM is a list of delimiters, skip until a character that is first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 in any of them."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 ((consp delim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 (list 'skip-chars-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 (concat "^"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 (loop for d in delim
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 concat (let ((ds (member (upcase (format "%s" d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 sgml-delimiters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 (assert ds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (let ((s (substring (cadr ds) 0 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 (if (member s '("-" "\\"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 (concat "\\" s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 s)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 (let ((ds (member (upcase (format "%s" delim))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 sgml-delimiters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 (assert ds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 (setq ds (cadr ds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (if (= 1 (length ds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (list 'skip-chars-forward (concat "^" ds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 (`(and (search-forward (, ds) nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (backward-char (, (length ds))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 ;;(macroexpand '(sgml-is-delim mdo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 ;;(macroexpand '(sgml-parse-delim mdo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 ;;(macroexpand '(sgml-check-delim mdo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 ;;;; General lexical functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 ;;; Naming conventions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 ;;; sgml-parse-xx try to parse xx, return nil if can't else return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 ;;; some propriate non-nil value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 ;;; Except: for name/nametoken parsing, return 0 if can't.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 ;;; sgml-check-xx require xx, report error if can't parse. Return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 ;;; aproporiate value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (defmacro sgml-parse-char (char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (` (cond ((eq (, char) (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 (defmacro sgml-parse-chars (char1 char2 &optional char3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 "Parse two or three chars; return nil if can't"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 (if (null char3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 (` (cond ((and (eq (, char1) (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 (eq (, char2) (char-after (1+ (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 (forward-char 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 (` (cond ((and (eq (, char1) (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 (eq (, char2) (char-after (1+ (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 (eq (, char3) (char-after (1+ (1+ (point))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (forward-char 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 (defun sgml-check-char (char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 (cond ((not (sgml-parse-char char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 (sgml-parse-error "Expecting %c" char))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (defun sgml-parse-RE ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 (or (sgml-parse-char ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 (sgml-parse-char ?\r)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 (defmacro sgml-startnm-char (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 (` (eq ?w (char-syntax (, c)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 (defun sgml-startnm-char-next ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 (and (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (sgml-startnm-char (following-char))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 (defun sgml-name-char (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 (and c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 (or (sgml-startnm-char c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 (eq ?_ (char-syntax c)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 (defun sgml-is-end-tag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 (sgml-is-delim "ETAGO" gi))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 (defsubst sgml-is-enabled-net ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 (and (sgml-is-delim "NET")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 sgml-current-shorttag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 (sgml-tree-net-enabled sgml-current-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 (defun sgml-is-start-tag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 (sgml-is-delim "STAGO" gi))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 (defsubst sgml-parse-s (&optional shortmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (if shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 (or (/= 0 (skip-chars-forward " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 (/= 0 (skip-chars-forward "\t"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 (sgml-parse-char ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 (sgml-parse-char ?\r))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (/= 0 (skip-chars-forward " \t\n\r"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 (defsubst sgml-parse-processing-instruction ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 (if (sgml-parse-delim "PIO")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 (sgml-do-processing-instruction)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 (defun sgml-do-processing-instruction ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 (let ((start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 (sgml-skip-upto "PIC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 (when sgml-pi-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 (funcall sgml-pi-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 (buffer-substring-no-properties start (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 (sgml-check-delim "PIC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 (sgml-set-markup-type 'pi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 (defmacro sgml-general-case (string) (`(downcase (, string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 (defmacro sgml-entity-case (string) string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 (defun sgml-parse-name (&optional entity-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 (if (sgml-startnm-char-next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 (let ((name (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 (progn (skip-syntax-forward "w_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (if entity-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (sgml-entity-case name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 (sgml-general-case name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 (define-compiler-macro sgml-parse-name (&whole form &optional entity-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 ((memq entity-name '(nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (` (if (sgml-startnm-char-next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 ((, (if entity-name 'sgml-entity-case 'sgml-general-case))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 (buffer-substring-no-properties (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 (progn (skip-syntax-forward "w_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 (point)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 (defun sgml-check-name (&optional entity-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 (or (sgml-parse-name entity-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 (sgml-parse-error "Name expected")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 (define-compiler-macro sgml-check-name (&optional entity-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 (`(or (, (if entity-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 (`(sgml-parse-name (, entity-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 '(sgml-parse-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 (sgml-parse-error "Name expected"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 (defun sgml-parse-nametoken (&optional entity-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 "Parses a name token and returns a string or nil if no nametoken."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 (if (sgml-name-char (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (let ((name (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 (progn (skip-syntax-forward "w_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (if entity-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 (sgml-entity-case name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (sgml-general-case name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 (defun sgml-check-nametoken ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (or (sgml-parse-nametoken)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 (sgml-parse-error "Name token expected")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 ;;(defun sgml-gname-symbol (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 ;; "Convert a string to a general name/nametoken/numbertoken."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 ;; (intern (sgml-general-case string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 ;;(defun sgml-ename-symbol (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 ;; "Convert a string to an entity name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 ;; (intern (sgml-entity-case string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (defsubst sgml-parse-general-entity-ref ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (if (sgml-parse-delim "ERO" nmstart)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (sgml-do-general-entity-ref)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 (defun sgml-do-general-entity-ref ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (sgml-do-entity-ref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (prog1 (sgml-parse-name t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (or (sgml-parse-delim "REFC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (sgml-parse-RE))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 (sgml-set-markup-type 'entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 (defun sgml-do-entity-ref (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (let ((entity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 (sgml-lookup-entity name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 (sgml-dtd-entities sgml-dtd-info))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 (cond ((and (null entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 sgml-warn-about-undefined-entities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 "Undefined entity %s" name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 ((sgml-entity-data-p entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 (when sgml-signal-data-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 (funcall sgml-signal-data-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 (sgml-entity-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 (funcall sgml-entity-function entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 (sgml-data-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 (sgml-push-to-entity entity sgml-markup-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 (funcall sgml-data-function (buffer-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 (sgml-pop-entity))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 (sgml-push-to-entity entity sgml-markup-start)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 (defsubst sgml-parse-parameter-entity-ref ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 "Parse and push to a parameter entity, return nil if no ref here."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 ;;(setq sgml-markup-start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 (if (sgml-parse-delim "PERO" nmstart)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 (sgml-do-parameter-entity-ref)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (defun sgml-do-parameter-entity-ref ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 (let* ((name (sgml-parse-name t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 (ent (sgml-lookup-entity name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 (sgml-dtd-parameters sgml-dtd-info))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 (or (sgml-parse-delim "REFC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 (sgml-parse-char ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 ;;(sgml-set-markup-type 'param)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 (cond (ent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (sgml-push-to-entity ent sgml-markup-start 'param))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 "Undefined parameter entity %s" name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (defun sgml-parse-comment ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 (if (sgml-parse-delim "COM")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 (progn (sgml-skip-upto "COM")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 (sgml-check-delim "COM")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 (defun sgml-skip-cs ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 "Skip over the separator used in the catalog.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 Return true if not at the end of the buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 (while (or (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 (sgml-parse-comment)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 (not (eobp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 (defsubst sgml-skip-ps ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 "Move point forward stopping before a char that isn't a parameter separator."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 (or (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 (if (eobp) (sgml-pop-entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 (sgml-parse-parameter-entity-ref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (sgml-parse-comment))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 (defsubst sgml-parse-ds ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 ;71 ds = 5 s | EE | 60+ parameter entity reference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 ; | 91 comment declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 ; | 44 processing instruction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 ; | 93 marked section declaration ***
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (or (and (eobp) (sgml-pop-entity)) ;EE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 (sgml-parse-s) ;5 s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 ;;(sgml-parse-comment-declaration) ;91 comment declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 (sgml-parse-parameter-entity-ref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 (sgml-parse-processing-instruction)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 (defun sgml-skip-ds ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 (while (sgml-parse-ds)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 (defmacro sgml-parse-rni (&optional name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 "Parse a RNI (#) return nil if none; with optional NAME,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 a RNI must be followed by NAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 (name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 (` (if (sgml-parse-delim "RNI")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (sgml-check-token (, name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 (t '(sgml-parse-delim "RNI"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 (defun sgml-check-token (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 (or (equal (sgml-check-name) name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 (sgml-parse-error "Reserved name not expected")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 (defun sgml-parse-literal ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 "Parse a literal and return a string, if no literal return nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (let (lita start value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 (cond ((or (sgml-parse-delim "LIT")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 (setq lita (sgml-parse-delim "LITA")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (setq start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 (if lita
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 (sgml-skip-upto "LITA")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 (sgml-skip-upto "LIT"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 (setq value (buffer-substring-no-properties start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 (if lita
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 (sgml-check-delim "LITA")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 (sgml-check-delim "LIT"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 (defun sgml-check-literal ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 (or (sgml-parse-literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 (sgml-parse-error "A litteral expected")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 (defun sgml-parse-minimum-literal ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 "Parse a quoted SGML string and return it, if no string return nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 ((memq (following-char) '(?\" ?\'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 (let* ((qchar (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 (blanks " \t\r\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 (qskip (format "^%s%c" blanks qchar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 (start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 (value ; accumulates the literal value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (spaced ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 (skip-chars-forward blanks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 (while (not (sgml-parse-char qchar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 (cond ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (sgml-parse-error "Unterminated literal"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 ((sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 (setq spaced " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 (setq value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 (concat value spaced
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 (progn (skip-chars-forward qskip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 spaced ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 value))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 (defun sgml-check-minimum-literal ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 (or (sgml-parse-minimum-literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 (sgml-parse-error "A minimum literal expected")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 (defun sgml-parse-external ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 "Leaves nil if no external id, or (pubid . sysid)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 (let* ((p (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 (token (sgml-parse-nametoken)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 (token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 (cond ((member token '("public" "system"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 (let* ((pubid ; the public id
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 (if (string-equal token "public")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 (or (sgml-parse-minimum-literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 (sgml-parse-error "Public identifier expected"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 (sysid ; the system id
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 (progn (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (sgml-parse-literal))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 (sgml-make-extid pubid sysid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 (goto-char p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 nil))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 (defun sgml-skip-tag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 (when (sgml-parse-char ?<)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 (sgml-parse-char ?/)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 (unless (search-forward-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 "\\([^\"'<>/]\\|\"[^\"]*\"\\|'[^']*'\\)*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 (sgml-error "Invalid tag"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 (or (sgml-parse-char ?>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 (sgml-parse-char ?/))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 ;;;; Entity Manager
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 (defstruct (sgml-entity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 (:type list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 (:constructor sgml-make-entity (name type text)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 name ; Name of entity (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 type ; Type of entity CDATA NDATA PI SDATA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 text ; string or external
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 (defun sgml-entity-data-p (entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 "True if ENTITY is a data entity, that is not a text entity."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (not (eq (sgml-entity-type entity) 'text)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 (defun sgml-entity-marked-undefined-p (entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 (cdddr entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 (defun sgml-entity-insert-text (entity &optional ptype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 "Insert the text of ENTITY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 PTYPE can be 'param if this is a parameter entity."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 (let ((text (sgml-entity-text entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 ((stringp text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 (insert text))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 (unless (sgml-insert-external-entity text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 (or ptype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 (sgml-entity-type entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 (sgml-entity-name entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 ;; Mark entity as not found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 (setcdr (cddr entity) t) ;***
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 )))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 (defun sgml-entity-file (entity &optional ptype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 (sgml-external-file (sgml-entity-text entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 (or ptype (sgml-entity-type entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 (sgml-entity-name entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 ;;; Entity tables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 ;; Represented by a cons-cell whose car is the default entity (or nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 ;; and whose cdr is as an association list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 (defun sgml-make-entity-table ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (list nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 (defun sgml-lookup-entity (name entity-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 (or (assoc name (cdr entity-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 (car entity-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 (defun sgml-entity-declare (name entity-table type text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 "Declare an entity with name NAME in table ENTITY-TABLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 TYPE should be the type of the entity (text|cdata|ndata|sdata...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 TEXT is the text of the entity, a string or an external identifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 If NAME is nil, this defines the default entity."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 (name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 (unless (sgml-lookup-entity name entity-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 (sgml-debug "Declare entity %s %s as %S" name type text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 (nconc entity-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 (list (sgml-make-entity name type text)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 (unless (car entity-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 (sgml-debug "Declare default entity %s as %S" type text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 (setcar entity-table (sgml-make-entity name type text))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 (defun sgml-entity-completion-table (entity-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 "Make a completion table from the ENTITY-TABLE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 (cdr entity-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 (defun sgml-map-entities (fn entity-table &optional collect)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 (if collect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 (mapcar fn (cdr entity-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (loop for e in (cdr entity-table) do (funcall fn e))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (defun sgml-merge-entity-tables (tab1 tab2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 "Merge entity table TAB2 into TAB1. TAB1 is modified."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 (nconc tab1 (cdr tab2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 (setcar tab1 (or (car tab1) (car tab2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 ;;;; External identifyer resolve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 (defun sgml-cache-catalog (file cache-var parser-fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 "Return parsed catalog.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 FILE is the file containing the catalog. Maintains a cache of parsed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 catalog files in variable CACHE-VAR. The parsing is done by function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 PARSER-FUN that should parse the current buffer and return the parsed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 repreaentation of the catalog."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 (setq file (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 (let ((c (assoc file (symbol-value cache-var)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 (modtime (elt (file-attributes file) 5)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 (if (and c (equal (second c) modtime))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 (cddr c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (when c (set cache-var (delq c (symbol-value cache-var))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 (let (new)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 (message "Loading %s ..." file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 (sgml-push-to-entity file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 (setq default-directory (file-name-directory file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 (setq new (funcall parser-fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 (sgml-pop-entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 (push (cons file (cons modtime new)) (symbol-value cache-var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 (message "Loading %s ... done" file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 new)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 (defun sgml-catalog-lookup (files pubid type name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 "Look up the public identifier/entity name in catalogs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 FILES is a list of catalogs to use. PUBID is the public identifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 \(if any). TYPE is the entity type and NAME is the entity name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 (cond ((eq type 'param)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 (setq name (format "%%%s" name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 type 'entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 ((eq type 'dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 (setq type 'doctype)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 (loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 for f in files thereis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 (let ((cat (sgml-cache-catalog f 'sgml-catalog-assoc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 (function sgml-parse-catalog-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 ;; Giv PUBLIC entries priority over ENTITY and DOCTYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 (if pubid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 (loop for (key cname file) in cat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 thereis (and (eq 'public key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 (string= pubid cname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 (loop for (key cname file) in cat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 thereis (and (eq type key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 (or (null cname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 (string= name cname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 file))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 (defun sgml-search-catalog (func filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 (loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 for files in (list sgml-local-catalogs sgml-catalog-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 thereis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 (loop for file in files thereis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 (loop for entry in (sgml-cache-catalog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 file 'sgml-catalog-assoc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 (function sgml-parse-catalog-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 when (or (null filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 (memq (car entry) filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 thereis (funcall func entry)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 (defun sgml-path-lookup (extid type name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 (let* ((pubid (sgml-extid-pubid extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 (sysid (sgml-extid-sysid extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 (subst (list '(?% ?%))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 (when pubid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 (nconc subst (list (cons ?p (sgml-transliterate-file pubid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 (sgml-pubid-parts pubid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 (setq pubid (sgml-canonize-pubid pubid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 (when sysid (nconc subst (list (cons ?s sysid))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 (when name (nconc subst (list (cons ?n name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 (when type (nconc subst (list (cons ?y (cond ((eq type 'dtd) "dtd")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 ((eq type 'text) "text")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 ((eq type 'param) "parm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 (t "sgml"))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 (sgml-debug "Ext. file subst. = %S" subst)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 (loop for cand in sgml-public-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 thereis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 (and (setq cand (sgml-subst-expand cand subst))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 (file-readable-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 (setq cand
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 (sgml-extid-expand (substitute-in-file-name cand)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 (not (file-directory-p cand))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 cand))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 (defun sgml-external-file (extid &optional type name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 "Return file name for entity with external identifier EXTID.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 Optional argument TYPE should be the type of entity and NAME should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 the entity name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 ;; extid is (pubid . sysid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 (let ((pubid (sgml-extid-pubid extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 (when pubid (setq pubid (sgml-canonize-pubid pubid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 (or (if sgml-system-identifiers-are-preferred
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 (sgml-lookup-sysid-as-file extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 (sgml-catalog-lookup sgml-current-localcat pubid type name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 (sgml-catalog-lookup sgml-catalog-files pubid type name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 (if (not sgml-system-identifiers-are-preferred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 (sgml-lookup-sysid-as-file extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 (sgml-path-lookup extid type name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 (defun sgml-lookup-sysid-as-file (extid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 (let ((sysid (sgml-extid-sysid extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 (and sysid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 (loop for pat in sgml-public-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 never (string-match "%[Ss]" pat))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 (file-readable-p (setq sysid (sgml-extid-expand sysid extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 sysid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 (defun sgml-insert-external-entity (extid &optional type name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 "Insert the contents of an external entity at point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 EXTID is the external identifier of the entity. Optional arguments TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 is the entity type and NAME is the entity name, used to find the entity.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 Returns nil if entity is not found."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 (let* ((pubid (sgml-extid-pubid extid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 (sysid (sgml-extid-sysid extid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 (or (if sysid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 (loop for fn in sgml-sysid-resolve-functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 thereis (funcall fn sysid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 (let ((file (sgml-external-file extid type name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 (and file (insert-file-contents file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (sgml-log-warning "External entity %s not found" name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 (when pubid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 (sgml-log-warning " Public identifier %s" pubid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 (when sysid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 (sgml-log-warning " System identfier %s" sysid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 ;; Parse a buffer full of catalogue entries.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 (defun sgml-parse-catalog-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 "Parse all entries in a catalogue."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 (loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 while (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 for type = (downcase (sgml-check-cat-literal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 for class = (cdr (assoc type '(("public" . public) ("dtddecl" . public)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 ("entity" . name) ("linktype" . name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 ("doctype" . name) ("sgmldecl" . noname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 ("document" . noname))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 when (not (null class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 collect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 (let* ((name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 (cond ((eq class 'public)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 (sgml-canonize-pubid (sgml-check-minimum-literal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 ((string= type "doctype")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 (sgml-general-case (sgml-check-cat-literal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 ((eq class 'name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 (sgml-entity-case (sgml-check-cat-literal)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 (file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 (expand-file-name (sgml-check-cat-literal))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 (list (intern type) name file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 (defun sgml-check-cat-literal ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 "Read the next catalog token.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 Skips any leading spaces/comments."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 (or (sgml-parse-literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 (progn (skip-chars-forward "^ \r\n\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 (defconst sgml-formal-pubid-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 "^\\(+//\\|-//\\|\\)" ; Registered indicator [1]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 "\\(\\([^/]\\|/[^/]\\)+\\)" ; Owner [2]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 "//"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 "\\([^ ]+\\)" ; Text class [4]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 "\\(\\([^/]\\|/[^/]\\)*\\)" ; Text description [5]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 "//"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 "\\(\\([^/]\\|/[^/]\\)*\\)" ; Language [7]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 "\\(//" ; [9]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 "\\(\\([^/]\\|/[^/]\\)*\\)" ; Version [10]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 "\\)?"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 (defun sgml-pubid-parts (pubid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 (nconc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 (if (string-match sgml-formal-pubid-regexp pubid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 (nconc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 (cons ?o (sgml-transliterate-file (sgml-matched-string pubid 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 (cons ?c (downcase (sgml-matched-string pubid 4)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 (cons ?d (sgml-transliterate-file (sgml-matched-string pubid 5)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 ;; t alias for d (%T used by sgmls)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 (cons ?t (sgml-transliterate-file (sgml-matched-string pubid 5)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 (cons ?l (downcase (sgml-matched-string pubid 7))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 (if (match-beginning 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 (list (cons ?v (sgml-transliterate-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 (sgml-matched-string pubid 10)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 (defun sgml-canonize-pubid (pubid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 (if (string-match sgml-formal-pubid-regexp pubid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 (sgml-matched-string pubid 1) ; registered indicator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 (sgml-matched-string pubid 2) ; Owner
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 "//"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 (upcase (sgml-matched-string pubid 4)) ; class
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 (sgml-matched-string pubid 5) ; Text description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 "//"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 (upcase (sgml-matched-string pubid 7)) ; Language
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 "//"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 (if (match-beginning 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 (sgml-matched-string pubid 10) ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 (defun sgml-transliterate-file (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 (mapconcat (function (lambda (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 (char-to-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 (or (cdr-safe (assq c sgml-public-transliterations))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 c))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 string ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 (defun sgml-subst-expand-char (c parts)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 (cdr-safe (assq (downcase c) parts)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 (defun sgml-subst-expand (s parts)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 (loop for i from 0 to (1- (length s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 as c = (aref s i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 concat (if (eq c ?%)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 (or (sgml-subst-expand-char (aref s (incf i)) parts)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 (return nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 (char-to-string (aref s i)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 (defun sgml-matched-string (string n &optional regexp noerror)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 (let ((res (if regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 (or (string-match regexp string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 noerror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 (error "String match fail")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 (if (or (null regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 (numberp res))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 (substring string (match-beginning n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 (match-end n)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 ;;;; Files for SGML declaration and DOCTYPE declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 (defun sgml-declaration ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 (or sgml-declaration
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 (if sgml-doctype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 (sgml-in-file-eval sgml-doctype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 '(sgml-declaration)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 (if sgml-parent-document
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 (sgml-in-file-eval (car sgml-parent-document)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 '(sgml-declaration)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 ;; *** check for sgmldecl comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 (sgml-external-file nil 'sgmldecl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 (defun sgml-in-file-eval (file expr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 (let ((cb (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 (set-buffer (find-file-noselect file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 (prog1 (eval expr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 (set-buffer cb))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 ;;;; Entity references and positions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 (defstruct (sgml-eref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 (:constructor sgml-make-eref (entity start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 (:type list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 entity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 start ; type: epos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 (defun sgml-make-epos (eref pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 (cons eref pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 (defun sgml-epos-eref (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 (if (consp epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 (car epos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 (defun sgml-epos-pos (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 (if (consp epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 (cdr epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 (defun sgml-bpos-p (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 (numberp epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 (defun sgml-strict-epos-p (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 (consp epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 (defun sgml-epos (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 "Convert a buffer position POS into an epos."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 (if sgml-current-eref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 (sgml-make-epos sgml-current-eref pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 (defun sgml-epos-erliest (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 (while (consp epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 (setq epos (sgml-eref-start (sgml-epos-eref epos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 (defun sgml-epos-latest (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 (while (consp epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (setq epos (sgml-eref-end (sgml-epos-eref epos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 (defun sgml-epos-promote (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 (while (and (consp epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 (= (cdr epos) 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 (setq epos (sgml-eref-start (car epos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 (sgml-epos-latest epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 ;;;; DTD repository
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 ;;compiled-dtd: extid -> Compiled-DTD?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 ;;extid-cdtd-name: extid -> file?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 ;;up-to-date-p: (file, dependencies) -> cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 ;; Emacs Catalogues:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 ;; Syntax:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 ;; ecat ::= (cs | ecat-entry)*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 ;; cs ::= (s | comment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 ;; ecat-entry ::= (pub-entry | file-entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 ;; pub-entry ::= ("PUBLIC", minimal literal, ent-spec?, cat literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 ;; pub-entry ::= ("FILE", literal, ent-spec?, cat literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 ;; ent-spec ::= ("[", (name, literal)*, "]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 ;; Parsed ecat = (eent*)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 ;; eent = (type ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 ;; = ('public pubid cfile . ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 ;; = ('file file cfile . ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 (defun sgml-load-ecat (file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 "Return ecat for FILE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 (sgml-cache-catalog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 file 'sgml-ecat-assoc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 (let (new type ents from to name val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 (while (progn (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 (setq type (sgml-parse-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (setq type (intern (downcase type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 (setq ents nil from nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 ((eq type 'public)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 (setq from (sgml-canonize-pubid (sgml-check-minimum-literal))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 ((eq type 'file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 (setq from (expand-file-name (sgml-check-cat-literal)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 ((null from)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 (error "Syntax error in ECAT: %s" file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 (when (sgml-parse-char ?\[)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 (while (progn (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 (setq name (sgml-parse-name t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 (sgml-skip-cs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 (setq val (sgml-check-literal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 (push (cons name val) ents))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 (sgml-check-char ?\])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 (sgml-skip-cs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 (setq to (expand-file-name (sgml-check-cat-literal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 (push (cons type (cons from (cons to ents)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 new))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 (nreverse new))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 (defun sgml-ecat-lookup (files pubid file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 "Return (file . ents) or nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 (let ((params (sgml-dtd-parameters sgml-dtd-info)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 (loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 for f in files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 do (sgml-debug "Search ECAT %s" f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 thereis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 (loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 for (type name cfile . ents) in (sgml-load-ecat f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 thereis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 (if (and (cond ((eq type 'public) (equal name pubid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 ((eq type 'file) (equal name file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 (loop for (name . val) in ents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 for entity = (sgml-lookup-entity name params)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 always (and entity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 (equal val (sgml-entity-text entity)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 (cons cfile ents))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 ;;(let ((sgml-dtd-info (sgml-make-dtd nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 ;; (sgml-ecat-lookup sgml-ecat-files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 ;; "-//lenst//DTD My DTD//EN//"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 ;; "/home/u5/lenst/src/psgml/bar.dtd"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 ;;;; Merge compiled dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 (defun sgml-try-merge-compiled-dtd (pubid file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 (when pubid (setq pubid (sgml-canonize-pubid pubid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 (when file (setq file (expand-file-name file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 (sgml-debug "Find compiled dtd for %s %s" pubid file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 (let ((ce (or (sgml-ecat-lookup sgml-current-local-ecat pubid file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 (sgml-ecat-lookup sgml-ecat-files pubid file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 cfile dtd ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 (and ce
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 (let ((cfile (car ce))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 (ents (cdr ce)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 (sgml-debug "Found %s" cfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 (if (sgml-use-special-case)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 (sgml-try-merge-special-case pubid file cfile ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 (and (sgml-bdtd-load cfile file ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 (sgml-bdtd-merge)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 (defun sgml-use-special-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 (and (null (sgml-dtd-merged sgml-dtd-info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 (sgml-eltype-table-empty (sgml-dtd-eltypes sgml-dtd-info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 (eq 'dtd (sgml-entity-type (sgml-eref-entity sgml-current-eref)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 (defun sgml-try-merge-special-case (pubid file cfile ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 (let (cdtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 (sgml-debug "Merging special case")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 ;; Look for a compiled dtd in som other buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 (let ((cb (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 (loop for b in (buffer-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 until
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 (progn (set-buffer b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 (and sgml-buffer-parse-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 (let ((m (sgml-dtd-merged
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 (sgml-pstate-dtd sgml-buffer-parse-state))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 (and m
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 (string-equal cfile (car m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 (setq cdtd (cdr m)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 (set-buffer cb))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 ;; Load a new compiled dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 (unless cdtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 (and (sgml-bdtd-load cfile file ents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 (setq cdtd (sgml-bdtd-read-dtd))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 ;; Do the merger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 ((and cdtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 (sgml-check-entities (sgml-dtd-parameters sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 (sgml-dtd-parameters cdtd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 (setf (sgml-dtd-eltypes sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 (sgml-dtd-eltypes cdtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 (sgml-merge-entity-tables (sgml-dtd-entities sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 (sgml-dtd-entities cdtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 (sgml-merge-entity-tables (sgml-dtd-parameters sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 (sgml-dtd-parameters cdtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 (sgml-merge-shortmaps (sgml-dtd-shortmaps sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 (sgml-dtd-shortmaps cdtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 (setf (sgml-dtd-dependencies sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 (nconc (sgml-dtd-dependencies sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 (sgml-dtd-dependencies cdtd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 (setf (sgml-dtd-merged sgml-dtd-info) (cons cfile cdtd))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 ;;;; Pushing and poping entities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 (defun sgml-push-to-entity (entity &optional ref-start type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 "Set current buffer to a buffer containing the entity ENTITY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 ENTITY can also be a file name. Optional argument REF-START should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 the start point of the entity reference. Optional argument TYPE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 overrides the entity type in entity look up."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 (when ref-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 (setq sgml-rs-ignore-pos ref-start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 (unless (and sgml-scratch-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 (buffer-name sgml-scratch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 (setq sgml-scratch-buffer (generate-new-buffer " *entity*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 (let ((cb (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 (dd default-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 ;;*** should eref be argument ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 (eref (sgml-make-eref (if (stringp entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 (sgml-make-entity entity nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 (sgml-epos (or ref-start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 (sgml-epos (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 (set-buffer sgml-scratch-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 (when (eq sgml-scratch-buffer (default-value 'sgml-scratch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 (make-local-variable 'sgml-scratch-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 (setq sgml-scratch-buffer nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 (setq sgml-last-entity-buffer (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 (setq default-directory dd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 (make-local-variable 'sgml-current-eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 (setq sgml-current-eref eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 (set-syntax-table sgml-parser-syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 (make-local-variable 'sgml-previous-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 (setq sgml-previous-buffer cb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 (setq sgml-rs-ignore-pos ; don't interpret beginning of buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 ; as #RS if internal entity.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 (if (or (stringp entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 (stringp (sgml-entity-text entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 ((stringp entity) ; a file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 (save-excursion (insert-file-contents entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 (setq default-directory (file-name-directory entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 ((and sgml-parsing-dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 (consp (sgml-entity-text entity))) ; external id?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 (let ((file (sgml-entity-file entity type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 (sgml-debug "Push to %s = %s" (sgml-entity-text entity) file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 ((and file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 (sgml-try-merge-compiled-dtd (car (sgml-entity-text entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 (goto-char (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 (file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 ;; fifth arg not available in early v19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 (insert-file-contents file nil nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 (setq default-directory (file-name-directory file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 (push file (sgml-dtd-dependencies sgml-dtd-info)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 (push t (sgml-dtd-dependencies sgml-dtd-info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 (save-excursion (sgml-entity-insert-text entity type))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 (save-excursion (sgml-entity-insert-text entity type))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 (defun sgml-pop-entity ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 (cond ((and (boundp 'sgml-previous-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 (bufferp sgml-previous-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 (sgml-debug "Exit entity")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 (setq sgml-last-entity-buffer sgml-previous-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 (set-buffer sgml-previous-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 (defun sgml-goto-epos (epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 "Goto a position in an entity given by EPOS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 (assert epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 (cond ((sgml-bpos-p epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 (goto-char epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 (let ((eref (sgml-epos-eref epos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 (sgml-cleanup-entities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 (sgml-goto-epos (sgml-eref-end eref))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 (sgml-push-to-entity (sgml-eref-entity eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 (sgml-epos-pos (sgml-eref-start eref))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 (goto-char (sgml-epos-pos epos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 (defun sgml-pop-all-entities ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 (while (sgml-pop-entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 (defun sgml-cleanup-entities ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 (let ((cb (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 (n 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 (while (and sgml-scratch-buffer (buffer-name sgml-scratch-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 (set-buffer sgml-scratch-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 (assert (not (eq sgml-scratch-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 (default-value 'sgml-scratch-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 (incf n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 (while (> n 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 (set-buffer (prog1 sgml-previous-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 (kill-buffer (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 (decf n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 (set-buffer cb)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 (defun sgml-any-open-param/file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 "Return true if there currently is a parameter or file open."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 (and (boundp 'sgml-previous-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 sgml-previous-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 ;;;; Parse tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 (defstruct (sgml-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 (:type vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 (:constructor sgml-make-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 (eltype stag-epos stag-len parent level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 excludes includes pstate net-enabled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 conref &optional shortmap pshortmap asl)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 eltype ; element object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 ;;start ; start point in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 ;;end ; end point in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 stag-epos ; start-tag entity position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 etag-epos ; end-tag entity position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 stag-len ; length of start-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 etag-len ; length of end-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 parent ; parent tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 level ; depth of this node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 excludes ; current excluded elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 includes ; current included elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 pstate ; state in parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 next ; next sibling tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 content ; child trees
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 net-enabled ; if NET enabled (t this element,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 ; other non-nil, some parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 conref ; if conref attribute used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 shortmap ; shortmap at start of element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 pshortmap ; parents shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 asl ; attribute specification list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 ;;element-end (e):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 ;; If bpos-p (etag-epos (e)):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 ;; return etag-epos (e) + etag-len (e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 ;; If etag-len (e) = 0: return promote (etag-epos (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 ;; else: return latest (etag-epos (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 (defun sgml-tree-end (tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 "Buffer position after end of TREE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 (let ((epos (sgml-tree-etag-epos tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 (len (sgml-tree-etag-len tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 (cond ((sgml-bpos-p epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 (+ epos len))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 ((zerop len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 (sgml-epos-promote epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 (sgml-epos-latest epos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 ;;;; (text) Element view of parse tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 (defmacro sgml-alias-fields (orig dest &rest fields)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 (let ((macs nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 (while fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 (push
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 (` (defmacro (, (intern (format "%s-%s" dest (car fields)))) (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 (, (format "Return %s field of ELEMENT." (car fields)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 '(, (intern (format "%s-%s" orig (car fields))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 macs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 (setq fields (cdr fields)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 (cons 'progn macs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 (sgml-alias-fields sgml-tree sgml-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 eltype ; element object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 ;; start ; start point in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 stag-epos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 etag-epos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 stag-len ; length of start-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 etag-len ; length of end-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 parent ; parent tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 level ; depth of this node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 excludes ; current excluded elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 includes ; current included elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 pstate ; state in parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 net-enabled ; if NET enabled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 (defun sgml-element-model (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 "Declared content or content model of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 (sgml-eltype-model (sgml-tree-eltype element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 (defun sgml-element-name (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 "Return name (symbol) of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 (sgml-tree-eltype element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 (defun sgml-element-gi (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 "Return general identifier (string) of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 (sgml-eltype-name (sgml-tree-eltype element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 (defun sgml-element-appdata (element prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 "Return the application data named PROP associated with the type of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 (sgml-eltype-appdata (sgml-tree-eltype element) prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 (defmacro sgml-element-stag-optional (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 "True if start-tag of ELEMENT is omissible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 (`(sgml-eltype-stag-optional (sgml-tree-eltype (, element)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 (defun sgml-element-etag-optional (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 "True if end-tag of ELEMENT is omissible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 (sgml-eltype-etag-optional (sgml-tree-eltype element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 (define-compiler-macro sgml-element-etag-optional (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 "True if end-tag of ELEMENT is omissible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 (`(sgml-eltype-etag-optional (sgml-tree-eltype (, element)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 (defun sgml-element-attlist (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 "Return the attribute specification list of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 (sgml-eltype-attlist (sgml-tree-eltype element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 (defun sgml-element-mixed (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 "True if ELEMENT has mixed content."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 (sgml-eltype-mixed (sgml-tree-eltype element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 (define-compiler-macro sgml-element-mixed (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 (`(sgml-eltype-mixed (sgml-tree-eltype (, element)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 (defun sgml-element-start (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 "Position before start of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 (sgml-epos-promote (sgml-tree-stag-epos element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 (defun sgml-element-stag-end (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 "Position after start-tag of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 (let ((epos (sgml-tree-stag-epos element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 (len (sgml-tree-stag-len element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 (cond ((sgml-bpos-p epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 (+ epos len))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 ((zerop len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 (sgml-epos-promote epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 (sgml-epos-latest epos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 (defun sgml-element-empty (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 "True if ELEMENT is empty."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 (or (eq sgml-empty (sgml-element-model element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 (sgml-tree-conref element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 (defun sgml-element-data-p (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 "True if ELEMENT can have data characters in its content."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 (or (sgml-element-mixed element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 (eq sgml-cdata (sgml-element-model element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 (eq sgml-rcdata (sgml-element-model element))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 (defun sgml-element-context-string (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 "Return string describing context of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 (if (eq element sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 (format "in %s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 (sgml-element-gi element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 (sgml-element-context-string (sgml-tree-parent element)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 ;;;; Display and Mode-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 (defun sgml-update-display ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 (when (not (eq this-command 'keyboard-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 ;; Don't let point be inside an invisible region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 (when (and (get-text-property (point) 'invisible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 (eq (get-text-property (point) 'invisible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 (get-text-property (1- (point)) 'invisible)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 (setq sgml-last-element nil) ; May not be valid after point moved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 (if (memq this-command '(backward-char previous-line backward-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 (goto-char (or (previous-single-property-change (point) 'invisible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 (goto-char (or (next-single-property-change (point) 'invisible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 (when (and (not (input-pending-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 (or sgml-live-element-indicator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 sgml-set-face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 (let ((deactivate-mark nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 (sgml-suppress-warning t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 (oldname sgml-current-element-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 (cond ((and (memq this-command sgml-users-of-last-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 sgml-last-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 (setq sgml-current-element-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 (sgml-element-gi sgml-last-element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 (sgml-live-element-indicator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 (setq sgml-current-element-name "*error*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 (sgml-parse-to (point) (function input-pending-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 (unless (input-pending-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 (setq sgml-current-element-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 (sgml-element-gi sgml-current-tree)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 (unless (input-pending-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 (force-mode-line-update)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 (when (and sgml-set-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 (null
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 (sgml-tree-etag-epos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 (sgml-pstate-top-tree sgml-buffer-parse-state))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 (sgml-parse-until-end-of nil nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 (function input-pending-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 (error nil))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 (defun sgml-set-active-dtd-indicator (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 (set (make-local-variable 'sgml-active-dtd-indicator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 (list (format " [%s" name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 '(sgml-live-element-indicator ("/" sgml-current-element-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 "]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 (force-mode-line-update))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 ;;;; Parser state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 (defstruct (sgml-pstate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 (:constructor sgml-make-pstate (dtd top-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 (defsubst sgml-excludes ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 (sgml-tree-excludes sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 (defsubst sgml-includes ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 (sgml-tree-includes sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 (defsubst sgml-current-mixed-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 (sgml-element-mixed sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 (defun sgml-set-initial-state (dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 "Set initial state of parsing"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 (make-local-variable 'before-change-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 (setq before-change-function 'sgml-note-change-at)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 (set (make-local-variable 'after-change-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 'sgml-set-face-after-change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 (sgml-set-active-dtd-indicator (sgml-dtd-doctype dtd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 (let ((top-type ; Fake element type for the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 ; node of the parse tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 (sgml-make-eltype "#DOC") ; was "Document (no element)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 (setf (sgml-eltype-model top-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 (sgml-make-primitive-content-token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 (sgml-eltype-token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 (sgml-lookup-eltype (sgml-dtd-doctype dtd) dtd))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 (setq sgml-buffer-parse-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 (sgml-make-pstate dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 (sgml-make-tree top-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 0 0 nil 0 nil nil nil nil nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 (defun sgml-set-parse-state (tree where)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 "Set parse state from TREE, either from start of TREE if WHERE is start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 or from after TREE if WHERE is after."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 (setq sgml-current-tree tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 sgml-markup-tree tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 (let ((empty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 (sgml-element-empty tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 (cond ((and (eq where 'start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 (not empty))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 (setq sgml-current-state (sgml-element-model sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 sgml-current-shortmap (sgml-tree-shortmap sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 sgml-previous-tree nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 (setq sgml-markup-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 (if (and (not (zerop (sgml-tree-stag-len tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 (sgml-bpos-p (sgml-tree-stag-epos tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 'start-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 sgml-markup-start (sgml-element-start sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 (sgml-goto-epos (sgml-tree-stag-epos sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 (forward-char (sgml-tree-stag-len sgml-current-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 (setq sgml-current-state (sgml-tree-pstate sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 sgml-current-shortmap (sgml-tree-pshortmap sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 sgml-previous-tree sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 (sgml-goto-epos (sgml-tree-etag-epos sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 (forward-char (sgml-tree-etag-len sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 (setq sgml-markup-type (if empty 'start-tag 'end-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 sgml-markup-start (- (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 (sgml-tree-etag-len sgml-current-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 (setq sgml-current-tree (sgml-tree-parent sgml-current-tree))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 (assert sgml-current-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 (defsubst sgml-final-p (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 ;; Test if a state/model can be ended
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 (or (not (sgml-model-group-p state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 (sgml-final state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 ;(defun sgml-current-element-contains-data ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 ; "Retrun true if the current open element is either mixed or is (r)cdata."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 ; (or (eq sgml-cdata sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 ; (eq sgml-rcdata sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 ; (sgml-current-mixed-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 ;(defun sgml-current-element-content-class ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 ; "Return a string describing the type of content in the current element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 ;The type can be CDATA, RCDATA, ANY, #PCDATA or none."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 ; (cond ((eq sgml-cdata sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 ; "CDATA")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 ; ((eq sgml-rcdata sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 ; "RCDATA")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 ; ((eq sgml-any sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 ; "ANY")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 ; ((sgml-current-mixed-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 ; "#PCDATA")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 ; (t "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 (defun sgml-promoted-epos (start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 "Return an entity position for start of region START END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 If region is empty, choose return an epos as high in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 entity hierarchy as possible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 ;; This does not work if the entity is entered by a shortref that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 ;; only is active in the current element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 (let ((epos (sgml-epos start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 (when (= start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 (while (and (sgml-strict-epos-p epos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 (= 1 (sgml-epos-pos epos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 (setq epos (sgml-eref-start (sgml-epos-eref epos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 epos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 (defun sgml-open-element (eltype conref before-tag after-tag &optional asl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 (unless (sgml-eltype-defined eltype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 (setf (sgml-eltype-mixed eltype) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 (setf (sgml-eltype-etag-optional eltype) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 (when sgml-warn-about-undefined-elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 "Start-tag of undefined element %s; assume O O ANY"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 (sgml-eltype-name eltype))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 (let* ((emap (sgml-eltype-shortmap eltype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 (newmap (if emap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 (if (eq 'empty emap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 (sgml-lookup-shortref-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 (sgml-dtd-shortmaps sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 emap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 sgml-current-shortmap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 (nt (sgml-make-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 eltype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 (sgml-promoted-epos before-tag after-tag) ; stag-epos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 (- after-tag before-tag) ; stag-len
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 sgml-current-tree ; parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 (1+ (sgml-tree-level sgml-current-tree)) ; level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 (append (sgml-eltype-excludes eltype) (sgml-excludes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 (append (sgml-eltype-includes eltype) (sgml-includes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 sgml-current-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 (if (sgml-tree-net-enabled sgml-current-tree) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 conref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 newmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 sgml-current-shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 asl)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 ;; (let ((u (sgml-tree-content sgml-current-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 ;; (cond ((and u (> before-tag (sgml-element-start u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 ;; (while (and (sgml-tree-next u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 ;; (> before-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 ;; (sgml-element-start (sgml-tree-next u))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 ;; (setq u (sgml-tree-next u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 ;; (setf (sgml-tree-next u) nt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 ;; (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 ;; (setf (sgml-tree-content sgml-current-tree) nt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 ;; Install new node in tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 (cond (sgml-previous-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 (setf (sgml-tree-next sgml-previous-tree) nt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 (setf (sgml-tree-content sgml-current-tree) nt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 ;; Prune tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 ;; *** all the way up? tree-end = nil?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 (setf (sgml-tree-next sgml-current-tree) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 ;; Set new state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 (setq sgml-current-state (sgml-eltype-model eltype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 sgml-current-shortmap newmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 sgml-current-tree nt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 sgml-previous-tree nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 (assert sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 (setq sgml-markup-tree sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 (run-hook-with-args 'sgml-open-element-hook sgml-current-tree asl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 (when (sgml-element-empty sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 (sgml-close-element after-tag after-tag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 (defun sgml-fake-open-element (tree el &optional state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 (sgml-make-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 el 0 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 (append (sgml-eltype-excludes el) (sgml-tree-excludes tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 (append (sgml-eltype-includes el) (sgml-tree-includes tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 (defun sgml-close-element (before-tag after-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 (when (or (eq sgml-close-element-trap t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 (eq sgml-close-element-trap sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 (setq sgml-goal (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 (when sgml-throw-on-element-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 (throw sgml-throw-on-element-change 'end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 (setf (sgml-tree-etag-epos sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 ;;(sgml-promoted-epos before-tag after-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 (sgml-epos before-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 (setf (sgml-tree-etag-len sgml-current-tree) (- after-tag before-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 (run-hooks 'sgml-close-element-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 (setq sgml-markup-tree sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 (cond ((eq sgml-current-tree sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 (unless (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 (sgml-error "Parse ended")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 (setq sgml-previous-tree sgml-current-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 sgml-current-state (sgml-tree-pstate sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 sgml-current-shortmap (sgml-tree-pshortmap sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 sgml-current-tree (sgml-tree-parent sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 (assert sgml-current-state))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 (defun sgml-fake-close-element (tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 (sgml-tree-parent tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 (defun sgml-note-change-at (at &optional end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 ;; Inform the cache that there have been some changes after AT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 (when sgml-buffer-parse-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 (let ((u (sgml-pstate-top-tree sgml-buffer-parse-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 (when u
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 ;;(message "%d" at)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 ((and (sgml-tree-next u) ; Change clearly in next element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 (> at (sgml-element-stag-end (sgml-tree-next u))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 (setq u (sgml-tree-next u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 (t ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 (setf (sgml-tree-next u) nil) ; Forget next element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 ;; If change after this element and it is ended by an end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 ;; tag no pruning is done. If the end of the element is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 ;; implied changing the tag that implied it may change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 ;; the extent of the element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 ((and (sgml-tree-etag-epos u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 (> at (sgml-tree-end u))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 (or (> (sgml-tree-etag-len u) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 (sgml-element-empty u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 (setf (sgml-tree-etag-epos u) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 (cond;; Enter into content if change is clearly in it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 ((and (sgml-tree-content u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 (> at (sgml-element-stag-end (sgml-tree-content u))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 (setq u (sgml-tree-content u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 ;; Check if element has no start tag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 ;; then it must be pruned as a change could create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 ;; a valid start tag for the element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 ((and (zerop (sgml-tree-stag-len u))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 (> at (sgml-element-start u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 ;; restart from to with new position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 ;; this can't loop forever as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 ;; position allways gets smaller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 (setq at (sgml-element-start u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 u sgml-top-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 (setf (sgml-tree-content u) nil))))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 (defun sgml-list-implications (token type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 "Return a list of the tags implied by a token TOKEN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 TOKEN is a token, and the list elements are either tokens or `t'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 Where the latter represents end-tags."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 (let ((state sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 (tree sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 (temp nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 (imps nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 (while ; Until token accepted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 ;; Test if accepted in state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 ((or (eq state sgml-any)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 (and (sgml-model-group-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 (not (memq token (sgml-excludes)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 (or (memq token (sgml-includes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 (sgml-get-move state token))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 ;; Test if end tag implied
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 ((or (eq state sgml-empty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 (and (sgml-final-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 (not (eq tree sgml-top-tree))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 (unless (eq state sgml-empty) ; not realy implied
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 (push t imps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 (setq state (sgml-tree-pstate tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 tree (sgml-fake-close-element tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 ;; Test if start-tag can be implied
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 ((and (setq temp (sgml-required-tokens state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 (null (cdr temp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 (setq temp (car temp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 tree (sgml-fake-open-element tree temp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 (sgml-get-move state temp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 state (sgml-element-model tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 (push temp imps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 ;; No implictions and not accepted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 (sgml-log-warning "Out of context %s" type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 (setq imps nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 ;; Return the implications in correct order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 (nreverse imps)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 (defun sgml-eltypes-in-state (tree state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 "Return list of element types (eltype) valid in STATE and TREE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 (let* ((req ; Required tokens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 (if (sgml-model-group-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 (sgml-required-tokens state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 (elems ; Normally valid tokens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 (if (sgml-model-group-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 (nconc req
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 (delq sgml-pcdata-token (sgml-optional-tokens state))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 ;; Modify for exceptions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 (loop for et in (sgml-tree-includes tree) ;*** Tokens or eltypes?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 unless (memq et elems) do (push et elems))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 (loop for et in (sgml-tree-excludes tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 do (setq elems (delq et elems)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 ;; Check for omitable start-tags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 (when (and sgml-omittag-transparent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 (not (sgml-final-p state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 req
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 (null (cdr req)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 (let ((et (sgml-token-eltype (car req))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 (when (sgml-eltype-stag-optional et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 (setq elems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 (nconc elems ; *** possibility of duplicates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 (sgml-eltypes-in-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 (sgml-fake-open-element tree et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 (sgml-eltype-model et)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 elems))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 (defun sgml-current-list-of-valid-eltypes ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 "Returns a list of contextually valid element types (eltype)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 (let ((elems (sgml-eltypes-in-state sgml-current-tree sgml-current-state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 (tree sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 (state sgml-current-state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 (when sgml-omittag-transparent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 (while (and tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 (sgml-final-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 (sgml-element-etag-optional tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 (setq state (sgml-tree-pstate tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 tree (sgml-tree-parent tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 (loop for e in (sgml-eltypes-in-state tree state) do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 (when (not (memq e elems))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 (setq elems (nconc elems (list e)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 ;; *** Filter out elements that are undefined?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 (sort elems (function string-lessp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 (defun sgml-current-list-of-endable-eltypes ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 "Return a list of the element types endable in current state."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 (let* ((elems nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 (tree sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 (state sgml-current-state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 (and (sgml-final-p state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 (not (eq tree sgml-top-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 (setq elems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 (nconc elems (list (sgml-tree-eltype tree))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 sgml-omittag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 (sgml-eltype-etag-optional (sgml-tree-eltype tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 (setq state (sgml-tree-pstate tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 tree (sgml-tree-parent tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 elems))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 ;;;; Logging of warnings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 (defconst sgml-log-buffer-name "*SGML LOG*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 (defvar sgml-log-last-size 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 (defun sgml-display-log ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 (let ((buf (get-buffer sgml-log-buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 (when buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 (display-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 (setq sgml-log-last-size (save-excursion (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 (point-max))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 (defun sgml-log-warning (format &rest things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 (when sgml-throw-on-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 (apply 'message format things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 (throw sgml-throw-on-warning t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 (when (or sgml-show-warnings sgml-parsing-dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 (apply 'sgml-message format things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 (apply 'sgml-log-message format things)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 (defun sgml-log-message (format &rest things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 (let ((mess (apply 'format format things))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 (buf (get-buffer-create sgml-log-buffer-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 (cb (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 (insert mess "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 (when (get-buffer-window buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 (setq sgml-log-last-size (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 (set-buffer cb)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 (defun sgml-error (format &rest things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 (when sgml-throw-on-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 (throw sgml-throw-on-error nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 (while (and (boundp 'sgml-previous-buffer) sgml-previous-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 (when sgml-current-eref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 (sgml-log-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 "Line %s in %S "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 (count-lines (point-min) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 (sgml-entity-name (sgml-eref-entity sgml-current-eref))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 (sgml-pop-entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 (apply 'sgml-log-warning format things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 (apply 'error format things))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 (defun sgml-parse-error (format &rest things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 (apply 'sgml-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 (concat format "; at: %s")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 (append things (list (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 (min (point-max) (+ (point) 12)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 (defun sgml-message (format &rest things)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 (let ((buf (get-buffer sgml-log-buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 (when (and buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 (> (save-excursion (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 sgml-log-last-size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 (sgml-display-log)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 (apply 'message format things))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 (defun sgml-reset-log ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 (let ((buf (get-buffer sgml-log-buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 (when buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 (setq sgml-log-last-size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 (save-excursion (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 (point-max))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 (defun sgml-clear-log ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 (let ((b (get-buffer sgml-log-buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 (when b
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 (delete-windows-on b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 (kill-buffer b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 (setq sgml-log-last-size 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 (defun sgml-show-or-clear-log ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 "Show the *SGML LOG* buffer if it is not showing, or clear and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 remove it if it is showing."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 (cond ((and (get-buffer sgml-log-buffer-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 (null (get-buffer-window sgml-log-buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 (sgml-display-log))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 (sgml-clear-log))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 ;;; This has noting to do with warnings...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 (defvar sgml-lazy-time 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 (defun sgml-lazy-message (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 (unless (= sgml-lazy-time (second (current-time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 (apply 'message args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 (setq sgml-lazy-time (second (current-time)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 ;;;; Shortref maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 (defconst sgml-shortref-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 "\t" ;&#TAB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 "\n" ;&#RE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 "\001" ;&#RS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 "\001B"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 "\001\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 "\001B\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 "B\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 " " ;&#SPACE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 "BB"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 "\"" ;&#34;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 "#"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 "%"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 "'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 "("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 ")"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 "*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 "+"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 ","
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 "-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 "--"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 ":"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 ";"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 "="
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 "@"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 "["
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 "]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 "^"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 "_"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 "{"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 "|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 "}"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 "~")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 (defun sgml-shortref-index (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 (let ((pos (member string sgml-shortref-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 (len (length sgml-shortref-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 (and pos (- len (length pos))) )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 (defun sgml-make-shortmap (pairs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 "Create a shortreference map from PAIRS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 Where PAIRS is a list of (delim . ename)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 (let ((map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 (make-vector (1+ (length sgml-shortref-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 (loop for p in pairs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 for delim = (car p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 for name = (cdr p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 (setq index (sgml-shortref-index delim))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 (cond ((null index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 "Illegal short reference delimiter '%s'" delim))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 (aset map index name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 ;; Compute a suitable string for skip-chars-forward that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 ;; can be used to skip over pcdata
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 (aset map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 (eval-when-compile (length sgml-shortref-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 (if (some (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 (lambda (r) (aref map (sgml-shortref-index r))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 '("\001B\n" "B\n" " " "BB"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 "^<]/& \n\t\"#%'()*+,\\-:;=@[]\\^_{|}~"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 "^<]/&\n\t\"#%'()*+,\\-:;=@[]\\^_{|}~"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 (defun sgml-shortmap-skipstring (map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 (if (bolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 (aref map (eval-when-compile (length sgml-shortref-list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 (defconst sgml-shortref-oneassq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 (loop for d in sgml-shortref-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 for c = (aref d 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 when (and (= 1 (length d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 (/= 1 c) (/= 10 c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 collect (cons c (sgml-shortref-index d))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 (defun sgml-parse-B ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 (/= 0 (skip-chars-forward " \t")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 (defun sgml-deref-shortmap (map &optional nobol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 "Identify shortref delimiter at point and return entity name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 Also move point. Return nil, either if no shortref or undefined."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 (macrolet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 ((delim (x) (` (aref map (, (sgml-shortref-index x))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 (let ((i (if nobol 1 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 (while (numberp i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 (setq i
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 ((and (bolp) (zerop i)) ; Either "\001" "\001B"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 ; "\001\n" "\001B\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 (cond ((sgml-parse-B) ; "\001B"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 (if (eolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 (delim "\001B\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 (delim "\001B")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 ((sgml-parse-RE) (delim "\001\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 ((delim "\001"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 (t 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 ((cond ((sgml-parse-char ?\t) (setq i (delim "\t")) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 ((sgml-parse-char ? ) (setq i (delim " ")) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 (cond ((sgml-parse-B) (setq i (delim "BB"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161 (cond ((sgml-parse-char ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 (delim "B\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 (t i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 ((sgml-parse-RE) (delim "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 ((sgml-parse-chars ?- ?-) (delim "--"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 ;; The other one character delimiters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 ((setq i (assq (following-char) sgml-shortref-oneassq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 (when i (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 (aref map (cdr i))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 ;;; Table of shortref maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 (defun sgml-make-shortref-table ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 (list nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 (defun sgml-add-shortref-map (table name map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 (nconc table (list (cons name map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 (defun sgml-lookup-shortref-map (table name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 (cdr (assoc name (cdr table))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 (defun sgml-merge-shortmaps (tab1 tab2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 "Merge tables of short reference maps TAB2 into TAB1, modifying TAB1."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 (nconc tab1 (cdr tab2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 ;;;; Parse markup declarations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 (defun sgml-skip-until-dsc ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 (sgml-skip-upto ("DSO" "DSC" "LITA" "LIT" "COM"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 (not (sgml-parse-delim "DSC")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 (cond ((sgml-parse-literal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 ((sgml-parse-delim "DSO")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 (sgml-skip-until-dsc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 ((sgml-parse-comment))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 (t (forward-char 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 (defun sgml-skip-upto-mdc ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 "Move point forward until end of current markup declaration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 Assumes starts with point inside a markup declaration."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 (sgml-skip-upto ("DSO" "MDC" "LIT" "LITA" "COM"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 (not (sgml-is-delim "MDC")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 (cond ((sgml-parse-delim "DSO")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 (sgml-skip-until-dsc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 ((sgml-parse-literal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 ((sgml-parse-comment))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 (t (forward-char 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 (defun sgml-do-sgml-declaration ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 (sgml-skip-upto-mdc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 (setq sgml-markup-type 'sgml))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 (defun sgml-do-doctype ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 (sgml-dtd-info ; Has doctype already been defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 (sgml-skip-upto-mdc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 (let (sgml-markup-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 (message "Parsing doctype...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 (sgml-setup-doctype (sgml-check-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 (sgml-parse-external))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 (message "Parsing doctype...done"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 (setq sgml-markup-type 'doctype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 (defun sgml-setup-doctype (docname external)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 (let ((sgml-parsing-dtd t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 (setq sgml-no-elements 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 (setq sgml-dtd-info (sgml-make-dtd docname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 ;;(setq sgml-dtd-shortmaps nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 ((sgml-parse-delim "DSO")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 (sgml-check-dtd-subset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 (sgml-check-delim "DSC")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 (cond (external
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 (sgml-push-to-entity (sgml-make-entity docname 'dtd external))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 (unless (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 (sgml-check-dtd-subset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 (unless (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 (sgml-parse-error "DTD subset ended")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 (sgml-pop-entity)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 ;;; (loop for map in sgml-dtd-shortmaps do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 ;;; (sgml-add-shortref-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 ;;; (sgml-dtd-shortmaps sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 ;;; (car map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 ;;; (sgml-make-shortmap (cdr map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 (sgml-set-initial-state sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 (run-hooks 'sgml-doctype-parsed-hook)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 (defun sgml-do-data (type &optional marked-section)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 "Move point forward until there is an end-tag open after point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 (done nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 (eref sgml-current-eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 sgml-signal-data-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 (while (not done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 (cond (marked-section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 (skip-chars-forward (if (eq type sgml-cdata) "^]" "^&]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 (when sgml-data-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 (funcall sgml-data-function (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 start (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 (setq done (sgml-parse-delim "MS-END")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 (skip-chars-forward (if (eq type sgml-cdata) "^</" "^</&"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 (when sgml-data-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 (funcall sgml-data-function (buffer-substring-no-properties start (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 (setq done (or (sgml-is-delim "ETAGO" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 (sgml-is-enabled-net)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 (setq start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 (done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 (when (eq eref sgml-current-eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 (sgml-error "Unterminated %s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 type (if marked-section "marked section")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 (sgml-pop-entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 (setq start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 ((null sgml-data-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 ((sgml-parse-general-entity-ref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 (setq start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 (forward-char 1))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 (defun sgml-do-marked-section ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 (let ((status nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 (while (progn (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 (not (sgml-parse-char ?\[)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 (push (sgml-check-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 status))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 ((member "ignore" status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 (sgml-skip-marked-section)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 (sgml-set-markup-type 'ignored))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 ((or (member "cdata" status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 (member "rcdata" status))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 (when sgml-signal-data-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 (funcall sgml-signal-data-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 (let ((type (if (member "cdata" status) sgml-cdata sgml-rcdata)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 (sgml-do-data type t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 (sgml-set-markup-type type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 (sgml-set-markup-type 'ms-start)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 (defun sgml-skip-marked-section ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 (sgml-skip-upto ("MS-START" "MS-END"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 (when (eobp) (sgml-error "Marked section unterminated"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 (not (sgml-parse-delim "MS-END")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 (cond ((sgml-parse-delim "MS-START")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 ;;(search-forward "[")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 (sgml-skip-marked-section))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 (t (forward-char 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 (defun sgml-do-usemap ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 (let (mapname associated)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 ;;(setq sgml-markup-type 'usemap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 (unless (sgml-parse-rni "empty")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 (setq mapname (sgml-check-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 ((sgml-is-delim "MDC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 (sgml-debug "USEMAP %s" (if mapname mapname "#EMPTY"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 (cond (sgml-dtd-info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 (setq sgml-current-shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 (if mapname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 (or (sgml-lookup-shortref-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 (sgml-dtd-shortmaps sgml-dtd-info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 mapname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 (sgml-error "Undefined shortref map %s" mapname)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 ;; If in prolog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 "USEMAP without associated element type in prolog"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 ;; Should be handled by psgml-dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 (sgml-do-usemap-element mapname)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 (defconst sgml-markup-declaration-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 '(("sgml" . sgml-do-sgml-declaration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 ("doctype" . sgml-do-doctype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 ("element" . sgml-declare-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 ("entity" . sgml-declare-entity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 ("usemap" . sgml-do-usemap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 ("shortref" . sgml-declare-shortref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 ("notation" . sgml-declare-notation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 ("attlist" . sgml-declare-attlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 ("uselink" . sgml-skip-upto-mdc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 ("linktype" . sgml-skip-upto-mdc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 ("link" . sgml-skip-upto-mdc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 ("idlink" . sgml-skip-upto-mdc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 (defun sgml-parse-markup-declaration (option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 "Parse a markup declartion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 OPTION can be `prolog' if parsing the prolog or `dtd' if parsing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 dtd or `ignore' if the declaration is to be ignored."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 ((sgml-parse-delim "MDO" (nmstart "COM" "MDC"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 ((sgml-startnm-char-next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 (setq sgml-markup-type nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 (let* ((tok (sgml-parse-nametoken))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 (rut (assoc tok sgml-markup-declaration-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 (when (and (not (memq option '(prolog ignore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 (member tok '("sgml" "doctype")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 (sgml-error "%s declaration is only valid in prolog" tok))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 (when (and (not (memq option '(dtd ignore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 (member tok '("element" "entity" "attlist" "notation"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 "shortref")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 (sgml-error "%s declaration is only valid in doctype" tok))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 (cond ((eq option 'ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 (sgml-skip-upto-mdc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 (rut (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 (funcall (cdr rut)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 (t (sgml-parse-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 "Illegal markup declaration %s" tok)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 (setq sgml-markup-type 'comment)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 (sgml-skip-ps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 (sgml-check-delim "MDC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 (unless (eq option 'ignore) ; Set the markup type given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 (when sgml-markup-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 (sgml-set-markup-type sgml-markup-type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 ((sgml-parse-delim "MS-START")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 (sgml-do-marked-section))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 ;;;; Parsing attribute values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 (defun sgml-parse-attribute-specification-list (&optional eltype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 "Parse an attribute specification list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 Optional argument ELTYPE, is used to resolve omitted name=.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 Returns a list of attspec (attribute specification)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 (setq sgml-conref-flag nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 (let ((attlist (if eltype (sgml-eltype-attlist eltype)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 name val asl attdecl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 (while (setq name (progn (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 (sgml-parse-nametoken)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 (cond ((sgml-parse-delim "VI")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 (setq val (sgml-check-attribute-value-specification))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 (when eltype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 (or (setq attdecl (sgml-lookup-attdecl name attlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 "Attribute %s not declared for element %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 name (sgml-eltype-name eltype)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 ((null eltype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 (sgml-parse-error "Expecting a ="))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 ((progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 (unless sgml-current-shorttag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 "Must have attribute name when SHORTTAG NO"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 (setq attdecl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 (sgml-find-attdecl-for-value (setq val name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 eltype))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 "%s is not in any name group for element %s."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 val
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 (sgml-eltype-name eltype))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 ;; *** What happens when eltype is nil ??
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 (when attdecl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 (push (sgml-make-attspec (sgml-attdecl-name attdecl) val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 asl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 (when (sgml-default-value-type-p 'conref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 (sgml-attdecl-default-value attdecl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 (setq sgml-conref-flag t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 asl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 (defun sgml-check-attribute-value-specification ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 (or (sgml-parse-literal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 (sgml-parse-nametoken t) ; Not really a nametoken, but an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 ; undelimited literal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 (sgml-parse-error "Expecting an attribute value: literal or token")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 (defun sgml-find-attdecl-for-value (value eltype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 "Find the attribute declaration of ELTYPE that has VALUE in its name group.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 VALUE is a string. Returns nil or an attdecl."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 (let ((al (sgml-eltype-attlist eltype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 dv)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 (while (and al
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 (or (atom (setq dv (sgml-attdecl-declared-value (car al))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 (not (member value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 (sgml-declared-value-token-group dv)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 (setq al (cdr al)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 (if al (car al))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455 ;;;; Parser driver
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 ;; The parser maintains a partial parse tree during the parse. This tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 ;; can be inspected to find information, and also be used to restart the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 ;; parse. The parser also has a postition in the current content model.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 ;; (Called a state.) The parser is used for several things:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461 ;; 1) To find the state the parser would be in at a point in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462 ;; (Point in emacs sense, I.e. between chararacters).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 ;; 2) Identify the element containing a character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 ;; 3) Find end of an element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465 ;; 4) Find the next element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 ;; 5) To find the previous element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 ;; These tasks are done by a combination of parsing and traversing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469 ;; the partial parse tree. The primitive parse operation is to parse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 ;; until a goal point in the buffer has been passed. In addition to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 ;; this it is possible to "trap" closing of elements. Either for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 ;; specific element or for any element. When the trap is sprung the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473 ;; parse is ended. This is used to extend the parse tree. When the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 ;; trap is used the parser is usually called with the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475 ;; buffer as the goal point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477 (defun sgml-need-dtd ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478 "Make sure that an eventual DTD is parsed or loaded."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479 (sgml-cleanup-entities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 (when (null sgml-buffer-parse-state) ; first parse in this buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 ;;(sgml-set-initial-state) ; fall back DTD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 (add-hook 'pre-command-hook 'sgml-reset-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 (make-local-variable 'sgml-auto-fill-inhibit-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 (setq sgml-auto-fill-inhibit-function (function sgml-in-prolog-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485 (if sgml-default-dtd-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486 (sgml-load-dtd sgml-default-dtd-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 (sgml-load-doctype)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 (setq sgml-dtd-info (sgml-pstate-dtd sgml-buffer-parse-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 sgml-top-tree (sgml-pstate-top-tree sgml-buffer-parse-state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 (sgml-set-global))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 (defun sgml-load-doctype ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 ;; Case of doctype in another file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 ((or sgml-parent-document sgml-doctype)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 (let ((dtd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 (save-excursion ; get DTD from parent document
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 (set-buffer (find-file-noselect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 (if (consp sgml-parent-document)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 (car sgml-parent-document)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502 (or sgml-doctype sgml-parent-document))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 (sgml-need-dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 (sgml-pstate-dtd sgml-buffer-parse-state))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 (sgml-set-initial-state dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 (when (consp sgml-parent-document) ; modify DTD for child documents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 (sgml-modify-dtd (cdr sgml-parent-document)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 ;; The doctype declaration should be in the current buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 (save-excursion (sgml-parse-prolog)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 (defun sgml-modify-dtd (modifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3515 (setq sgml-dtd-info (sgml-pstate-dtd sgml-buffer-parse-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 sgml-top-tree (sgml-pstate-top-tree sgml-buffer-parse-state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 (sgml-set-global)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 (while (stringp (cadr modifier)) ; Loop thru the context elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 (let ((et (sgml-lookup-eltype (car modifier))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 (sgml-open-element et nil (point-min) (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 (setq modifier (cdr modifier))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 (unless (stringp (car modifier))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 (error "wrong format of sgml-parent-document"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 (let* ((doctypename (car modifier))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 (et (sgml-lookup-eltype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 (sgml-general-case (if (symbolp doctypename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530 (symbol-name doctypename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 doctypename)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 (setq sgml-current-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 (sgml-make-primitive-content-token et))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 (when (consp (cadr modifier)) ; There are "seen" elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537 (sgml-open-element et nil (point-min) (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 (loop for seenel in (cadr modifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 do (setq sgml-current-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540 (sgml-get-move sgml-current-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 (sgml-lookup-eltype seenel))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 (let ((top (sgml-pstate-top-tree sgml-buffer-parse-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 (setf (sgml-tree-includes top) (sgml-includes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 (setf (sgml-tree-excludes top) (sgml-excludes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 (setf (sgml-tree-shortmap top) sgml-current-shortmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 (setf (sgml-eltype-model (sgml-tree-eltype top))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 sgml-current-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 (defun sgml-set-global ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 (setq sgml-current-omittag sgml-omittag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553 sgml-current-shorttag sgml-shorttag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 sgml-current-localcat sgml-local-catalogs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 sgml-current-local-ecat sgml-local-ecat-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 (defun sgml-parse-prolog ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558 "Parse the document prolog to learn the DTD."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 (sgml-clear-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 (message "Parsing prolog...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 (sgml-cleanup-entities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 (sgml-set-global)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 (setq sgml-dtd-info nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 (sgml-with-parser-syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567 (while (progn (sgml-skip-ds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 (setq sgml-markup-start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 (and (sgml-parse-markup-declaration 'prolog)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570 (null sgml-dtd-info))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 (unless sgml-dtd-info ; Set up a default doctype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 (let ((docname (or sgml-default-doctype-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 (if (sgml-parse-delim "STAGO" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 (sgml-parse-name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 (when docname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 (sgml-setup-doctype docname '(nil))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 (unless sgml-dtd-info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 (error "No document type defined by prolog"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 (sgml-message "Parsing prolog...done"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 (defun sgml-parse-until-end-of (sgml-close-element-trap &optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 cont extra-cond quiet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 "Parse until the SGML-CLOSE-ELEMENT-TRAP has ended,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 or if it is t, any additional element has ended,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 or if nil, until end of buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 (cont (sgml-parse-continue (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 (t (sgml-parse-to (point-max) extra-cond quiet)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 (when (eobp) ; End of buffer, can imply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 ; end of any open element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 (while (prog1 (not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 (or (eq sgml-close-element-trap t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 (eq sgml-close-element-trap sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 (eq sgml-current-tree sgml-top-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 (sgml-implied-end-tag "buffer end" (point) (point))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 (defun sgml-parse-to (sgml-goal &optional extra-cond quiet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 "Parse until (at least) SGML-GOAL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 Optional argument EXTRA-COND should be a function. This function is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 called in the parser loop, and the loop is exited if the function returns t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 If third argument QUIT is non-nil, no \"Parsing...\" message will be displayed."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 (sgml-need-dtd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 (sgml-find-start-point (min sgml-goal (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 (assert sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605 (let ((bigparse (and (not quiet) (> (- sgml-goal (point)) 10000))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 (when bigparse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 (sgml-message "Parsing..."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 (sgml-with-parser-syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 (sgml-parser-loop extra-cond))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 (when bigparse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 (sgml-message ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 (defun sgml-parse-continue (sgml-goal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 "Parse until (at least) SGML-GOAL."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 (assert sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 (sgml-message "Parsing...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 (sgml-with-parser-syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 (sgml-parser-loop nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 (sgml-message ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 (defun sgml-reparse-buffer (shortref-fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 "Reparse the buffer and let SHORTREF-FUN take care of short references.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 SHORTREF-FUN is called with the entity as argument and `sgml-markup-start'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 pointing to start of short ref and point pointing to the end."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 (sgml-note-change-at (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 (let ((sgml-shortref-handler shortref-fun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 (sgml-parse-until-end-of nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 (defun sgml-move-current-state (token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 (setq sgml-current-state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 (or (sgml-get-move sgml-current-state token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 sgml-current-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 (defun sgml-execute-implied (imps type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 (loop for token in imps do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 (if (eq t token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 (sgml-implied-end-tag type sgml-markup-start sgml-markup-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 (sgml-move-current-state token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 (when sgml-throw-on-element-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 (throw sgml-throw-on-element-change 'start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 (sgml-open-element (sgml-token-eltype token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 nil sgml-markup-start sgml-markup-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 (unless (and sgml-current-omittag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 (sgml-element-stag-optional sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 "%s start-tag implied by %s; not minimizable"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 (sgml-eltype-name (sgml-token-eltype token))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 type)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 (defun sgml-do-move (token type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 (sgml-execute-implied (sgml-list-implications token type) type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 (unless (eq sgml-any sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 (sgml-move-current-state token)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 (defun sgml-pcdata-move ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 "Moify parser state to reflect parsed data."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 (sgml-do-move sgml-pcdata-token "data character"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 (defsubst sgml-parse-pcdata ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 (/= 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661 (if sgml-current-shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 (skip-chars-forward (sgml-shortmap-skipstring sgml-current-shortmap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 (skip-chars-forward "^<]/&"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 (defsubst sgml-do-pcdata ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 ;; Parse pcdata
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667 (sgml-pcdata-move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 ;;*** assume sgml-markup-start = point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 ;;*** should perhaps handle &#nn;?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 (sgml-parse-pcdata)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 (when sgml-data-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 (funcall sgml-data-function (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 sgml-markup-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 (sgml-set-markup-type nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 (defun sgml-parser-loop (extra-cond)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 (let (tem
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 (sgml-signal-data-function (function sgml-pcdata-move)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 (while (and (eq sgml-current-tree sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 (or (< (point) sgml-goal) sgml-current-eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 (progn (setq sgml-markup-start (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 sgml-markup-type nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 (or (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686 (sgml-parse-markup-declaration 'prolog)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687 (sgml-parse-processing-instruction)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 (while (and (or (< (point) sgml-goal) sgml-current-eref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 (not (if extra-cond (funcall extra-cond))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 (assert sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691 (setq sgml-markup-start (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 sgml-markup-type nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694 ((eobp) (sgml-pop-entity))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 ((and (or (eq sgml-current-state sgml-cdata)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696 (eq sgml-current-state sgml-rcdata)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 (if (or (sgml-parse-delim "ETAGO" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 (sgml-is-enabled-net))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 (sgml-do-end-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 (sgml-do-data sgml-current-state)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 ((and sgml-current-shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 (or (setq tem (sgml-deref-shortmap sgml-current-shortmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 (eq (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 sgml-rs-ignore-pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 ;; Restore position, to consider the delim for S+ or data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 (progn (goto-char sgml-markup-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 (setq sgml-rs-ignore-pos (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 (funcall sgml-shortref-handler tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 ((and (not (sgml-current-mixed-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 (sgml-parse-s sgml-current-shortmap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 ((or (sgml-parse-delim "ETAGO" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 (sgml-is-enabled-net))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 (sgml-do-end-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 ((sgml-parse-delim "STAGO" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 (sgml-do-start-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 ((sgml-parse-general-entity-ref))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 ((sgml-parse-markup-declaration nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 ((sgml-parse-delim "MS-END") ; end of marked section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 (sgml-set-markup-type 'ms-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 ((sgml-parse-processing-instruction))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 (sgml-do-pcdata))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 (defun sgml-handle-shortref (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 (sgml-set-markup-type 'shortref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 (sgml-do-entity-ref name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 (defun sgml-do-start-tag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 ;; Assume point after STAGO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 (when sgml-throw-on-element-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 (throw sgml-throw-on-element-change 'start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 (setq sgml-conref-flag nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 (let (temp net-enabled et asl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 (setq et (if (sgml-is-delim "TAGC") ; empty start-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 (sgml-do-empty-start-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 (sgml-lookup-eltype (sgml-check-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 (unless (sgml-parse-delim "TAGC") ; optimize common case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 (setq asl (sgml-parse-attribute-specification-list et))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 (if (sgml-parse-delim "NET")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 (prog1 (setq net-enabled t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 (or sgml-current-shorttag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 "NET enabling start-tag is not allowed with SHORTTAG NO"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746 (sgml-check-tag-close)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747 (sgml-set-markup-type 'start-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748 (cond ((and sgml-ignore-undefined-elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3749 (not (sgml-eltype-defined et)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750 (when sgml-warn-about-undefined-elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 "Start-tag of undefined element %s; ignored"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 (sgml-eltype-name et))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 (sgml-do-move (sgml-eltype-token et)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 (format "%s start-tag" (sgml-eltype-name et)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757 (sgml-open-element et sgml-conref-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 sgml-markup-start (point) asl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 (when net-enabled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 (setf (sgml-tree-net-enabled sgml-current-tree) t))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 (defun sgml-do-empty-start-tag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 "Return eltype to use if empty start tag"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 ;; Document element if no element is open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 ((eq sgml-current-tree sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 (sgml-lookup-eltype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 (sgml-dtd-doctype sgml-dtd-info)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 ;; If omittag use current open element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 (sgml-current-omittag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 (sgml-tree-eltype sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 ;; Find the eltype of the last closed element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 ;; If element has a left sibling then use that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775 (sgml-previous-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 (sgml-tree-eltype sgml-previous-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 ;; No sibling, last closed must be found in enclosing element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 (loop named outer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 for current = sgml-current-tree then (sgml-tree-parent current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 for parent = (sgml-tree-parent current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 do;; Search for a parent with a child before current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 (when (eq parent sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 (sgml-error "No previously closed element"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 (unless (eq current (sgml-tree-content parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 ;; Search content of u for element before current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 (loop for c = (sgml-tree-content parent) then (sgml-tree-next c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 do (when (eq current (sgml-tree-next c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 (return-from outer (sgml-tree-eltype c)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 (defun sgml-do-end-tag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 "Assume point after </ or at / in a NET"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 (let ((gi "Null") ; Name of element to end or "NET"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 et ; Element type of end tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 (found ; Set to true when found element to end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 (cond ((sgml-parse-delim "TAGC") ; empty end-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 (setq et (sgml-tree-eltype sgml-current-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 ((sgml-parse-delim "NET"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 (setq et (sgml-lookup-eltype (sgml-check-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 (sgml-parse-s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 (sgml-check-tag-close)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 (sgml-set-markup-type 'end-tag) ; This will create the overlay for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806 ; the end-tag before the element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 ; is closed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 (when et
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 (setq gi (sgml-eltype-name et))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 (setq found ; check if there is an open element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 ; with the right eltype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 (loop for u = sgml-current-tree then (sgml-tree-parent u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 while u
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 thereis (eq et (sgml-tree-eltype u))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 (unless found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 "End-tag %s does not end any open element; ignored"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 gi)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 (when found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 (setq found nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 (while (not found) ; Loop until correct element to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 ; end is found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 (unless (sgml-final-p sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 "%s element can't end here, need one of %s; %s end-tag out of context"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 (sgml-element-gi sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 (sgml-required-tokens sgml-current-state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 gi))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 (when (eq sgml-current-tree sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 (sgml-error "%s end-tag ended document and parse" gi))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 (setq found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 (or (eq et (sgml-tree-eltype sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 (and (null et) ; Null end-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 (eq t (sgml-tree-net-enabled sgml-current-tree)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 (unless found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 (sgml-implied-end-tag (format "%s end-tag" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 sgml-markup-start sgml-markup-start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 (sgml-close-element sgml-markup-start (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 (defun sgml-is-goal-after-start (goal tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 (and tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 ;;(not (zerop (sgml-tree-stag-len tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 (> goal (sgml-element-start tree))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 (defun sgml-find-start-point (goal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 (let ((u sgml-top-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 ((sgml-is-goal-after-start goal (sgml-tree-next u))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 (setq u (sgml-tree-next u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 ((and (sgml-tree-etag-epos u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 (if (> (sgml-tree-etag-len u) 0) ; if threre is an end-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 (>= goal (sgml-tree-end u)) ; precisely after is after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 (> goal (sgml-tree-end u)))) ; else it could possibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 ; become part of the element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 (sgml-set-parse-state u 'after)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 ((sgml-is-goal-after-start goal (sgml-tree-content u))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 (setq u (sgml-tree-content u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 (sgml-set-parse-state u 'start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 (defun sgml-check-tag-close ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 (sgml-parse-delim "TAGC")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 (if (or (sgml-is-delim "STAGO" gi)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 (sgml-is-delim "ETAGO" gi))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 (or sgml-current-shorttag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 "Unclosed tag is not allowed with SHORTTAG NO")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 (sgml-error "Invalid character in markup %c"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 (following-char))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 (defun sgml-implied-end-tag (type start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 (cond ((eq sgml-current-tree sgml-top-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 (unless (= start (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 (sgml-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 "document ended by %s" type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 ((not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 (and sgml-current-omittag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 (sgml-element-etag-optional sgml-current-tree)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 (sgml-log-warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 "%s end-tag implied by %s; not minimizable"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 (sgml-element-gi sgml-current-tree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 (sgml-close-element start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 ;;;; Parsing tasks and extending the element view of the parse tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 (defun sgml-find-context-of (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 "Find the parser context for POS, returns the parse tree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 Also sets sgml-current-tree and sgml-current-state. If POS is in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 markup, sgml-markup-type will be a symbol identifying the markup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 type. It will be nil otherwise."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 (sgml-parse-to pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 (cond ((and (> (point) pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 sgml-markup-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 ;;(setq sgml-current-state sgml-markup-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 (cond ((memq sgml-markup-type '(start-tag end-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 (setq sgml-current-tree sgml-markup-tree))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 (setq sgml-markup-type nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910 sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 (defun sgml-parse-to-here ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 "Find context of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 See documentation of sgml-find-context-of."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 (sgml-find-context-of (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 (defun sgml-find-element-of (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 "Find the element containing character at POS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 (when (eq pos (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 (error "End of buffer"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 (sgml-parse-to (1+ pos)) ; Ensures that the element is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 ; in the tree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 ;; Find p in u:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 ;; assert p >= start(u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 ;; if next(u) and p >= start(next(u)): find p in next(u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 ;; else if end(u) and p >= end(u): in parent(u) unless u is top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 ;; else if content:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 ;; if p < start(content(u)): in u
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 ;; else find p in content(u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 ;; else: in u
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 (let ((u sgml-top-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 (while ; pos >= start(u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 (cond ((and (sgml-tree-next u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 (>= pos (sgml-element-start (sgml-tree-next u))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 (setq u (sgml-tree-next u))) ; continue searching next node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 ((and (sgml-tree-etag-epos u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 (>= pos (sgml-tree-end u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 (setq u (sgml-tree-parent u)) ; must be parent node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 ((and (sgml-tree-content u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 (>= pos (sgml-element-start (sgml-tree-content u))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 (setq u (sgml-tree-content u))))) ; search content
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 u)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 (defun sgml-find-previous-element (pos &optional in-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 "Find the element before POS and return it, error if non found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 If in IN-ELEMENT is given look for previous element in IN-ELEMENT else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 look in current element. If this element has no content elements but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 end at POS, it will be returned as previous element."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 ;; Parse to point; now the previous element is in the parse tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 (sgml-parse-to pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 ;; containing element may be given or obtained from parser
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 (or in-element (setq in-element sgml-current-tree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956 ;; in-element is the containing element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 (let* ((c ; this is the content of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 ; containing element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 (sgml-tree-content in-element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 ((null c) ; If c = Nil: no previous element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 ;; But maybe the containing element ends at pos too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 (cond ((= pos (sgml-element-end in-element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 (setq c in-element))) ; Previous is parent!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 ((<= pos (sgml-element-start c)) ; Pos before first content el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 (setq c nil)) ; No, previous element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 ((null (sgml-tree-next c)) nil) ; No next, c must be the prev el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 ((>= (sgml-element-start (sgml-tree-next c)) pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 (setq c (sgml-tree-next c)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 (or c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 (error "No previous element in %s element"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 (sgml-element-gi in-element))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 (defun sgml-find-element-after (pos &optional in-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 "Find the first element starting after POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 Returns parse tree; error if no element after POS."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 (setq in-element (or in-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 (save-excursion (sgml-find-context-of pos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 ;; First try to find element after POS in IN-ELEMENT/current element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 (let ((c ; content of in-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 (sgml-element-content in-element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 (while (and c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 (> pos (sgml-element-start c)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 (setq c (sgml-element-next c)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 ;; If there is no more elements IN-ELEMENT/current element try
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 ;; to identify the element containing the character after POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 ;; If this element starts at POS, use it for element after POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 (let ((el (sgml-find-element-of pos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 (if (and el (= pos (sgml-element-start el)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 el))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 (sgml-message "") ; force display of log buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 (error "No more elements in %s element"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 (sgml-element-gi in-element)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 (defun sgml-element-content (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 "First element in content of ELEMENT, or nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 (when (null (or (sgml-tree-content element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 (sgml-tree-etag-epos element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 (save-excursion (sgml-parse-until-end-of t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 (sgml-tree-content element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 (defun sgml-element-next (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 "Next sibling of ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 (unless (sgml-tree-etag-epos element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 (save-excursion (sgml-parse-until-end-of element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 (unless (or (sgml-tree-next element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 (sgml-tree-etag-epos (sgml-tree-parent element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 (save-excursion (sgml-parse-until-end-of t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 (sgml-tree-next element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 (defun sgml-element-etag-start (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 "Last position in content of ELEMENT and start of end-tag, if any."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 (unless (sgml-tree-etag-epos element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 (sgml-parse-until-end-of element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 (assert (sgml-tree-etag-epos element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 (sgml-epos-promote (sgml-tree-etag-epos element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 (defun sgml-element-end (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 "First position after ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 (sgml-element-etag-start element) ; make end be defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 (sgml-tree-end element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 (defun sgml-read-element-name (prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 (sgml-parse-to-here)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 (cond (sgml-markup-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 (error "No elements allowed in markup"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 ((and ;;sgml-buffer-eltype-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 (not (eq sgml-current-state sgml-any)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 (let ((tab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 (mapcar (function (lambda (x) (cons (symbol-name x) nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 (sgml-current-list-of-valid-eltypes))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 (cond ((null tab)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 (error "No element valid at this point"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 (completing-read prompt tab nil t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 (and (null (cdr tab)) (caar tab)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 (read-from-minibuffer prompt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 (defun sgml-element-attribute-specification-list (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 "Return the attribute specification list for ELEMENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 This is a list of (attname value) lists."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 ;;; (if (> (sgml-element-stag-len element) 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 ;;; (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 ;;; (sgml-with-parser-syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 ;;; (sgml-goto-epos (sgml-element-stag-epos element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 ;;; (sgml-check-delim "STAGO")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 ;;; (sgml-check-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 ;;; (prog1 (sgml-parse-attribute-specification-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 ;;; (sgml-element-eltype element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 ;;; (sgml-pop-all-entities)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 (sgml-tree-asl element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062 (defun sgml-find-attribute-element ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 "Return the element to which an attribute editing command should be applied."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 (let ((el (sgml-find-element-of (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 (sgml-parse-to (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 ;; If after a start-tag of an empty element return that element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 ;; instead of current element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 (if (eq sgml-markup-type 'start-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 sgml-markup-tree ; the element of the start-tag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 el))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 (defun sgml-element-attval (element attribute)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 "Return the value of the ATTRIBUTE in ELEMENT, string or nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076 (let ((asl (sgml-element-attribute-specification-list element))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 (def (sgml-attdecl-default-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 (sgml-lookup-attdecl attribute (sgml-element-attlist element)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 (or (sgml-attspec-attval (sgml-lookup-attspec attribute asl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 (sgml-default-value-attval def))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 (defun sgml-cohere-name (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 "Convert X into a string where X can be a string, a symbol or an element."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085 (cond ((stringp x) x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 ((symbolp x) (symbol-name x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 (t (sgml-element-gi x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 (defun sgml-start-tag-of (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 "Return the start-tag for ELEMENT."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 (format "<%s>" (sgml-cohere-name element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 (defun sgml-end-tag-of (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 "Return the end-tag for ELEMENT (token or element)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 (format "</%s>" (sgml-cohere-name element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 (defun sgml-top-element ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 "Return the document element."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 (sgml-element-content (sgml-find-context-of (point-min))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 (defun sgml-off-top-p (element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 "True if ELEMENT is the pseudo element above the document element."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 (null (sgml-tree-parent element)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 (defun sgml-safe-context-of (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 (let ((sgml-throw-on-error 'parse-error))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 (catch sgml-throw-on-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 (sgml-find-context-of pos))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 (defun sgml-safe-element-at (pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 (let ((sgml-throw-on-error 'parse-error))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 (catch sgml-throw-on-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 (if (= pos (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 (sgml-find-context-of pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 (sgml-find-element-of pos)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 (defun sgml-in-prolog-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 (let ((el (sgml-safe-context-of (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 (or (null el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 (sgml-off-top-p el))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 ;;;; Provide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 (provide 'psgml-parse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 ;;; psgml-parse.el ends here