123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916 |
- (defconst xml-undefined-entity "?"
- "What to substitute for undefined entities")
- (defvar xml-entity-alist
- '(("lt" . "<")
- ("gt" . ">")
- ("apos" . "'")
- ("quot" . "\"")
- ("amp" . "&"))
- "The defined entities. Entities are added to this when the DTD is parsed.")
- (defvar xml-sub-parser nil
- "Dynamically set this to a non-nil value if you want to parse an XML fragment.")
- (defvar xml-validating-parser nil
- "Set to non-nil to get validity checking.")
- (defsubst xml-node-name (node)
- "Return the tag associated with NODE.
- Without namespace-aware parsing, the tag is a symbol.
- With namespace-aware parsing, the tag is a cons of a string
- representing the uri of the namespace with the local name of the
- tag. For example,
- <foo>
- would be represented by
- '(\"\" . \"foo\")."
- (car node))
- (defsubst xml-node-attributes (node)
- "Return the list of attributes of NODE.
- The list can be nil."
- (nth 1 node))
- (defsubst xml-node-children (node)
- "Return the list of children of NODE.
- This is a list of nodes, and it can be nil."
- (cddr node))
- (defun xml-get-children (node child-name)
- "Return the children of NODE whose tag is CHILD-NAME.
- CHILD-NAME should match the value returned by `xml-node-name'."
- (let ((match ()))
- (dolist (child (xml-node-children node))
- (if (and (listp child)
- (equal (xml-node-name child) child-name))
- (push child match)))
- (nreverse match)))
- (defun xml-get-attribute-or-nil (node attribute)
- "Get from NODE the value of ATTRIBUTE.
- Return nil if the attribute was not found.
- See also `xml-get-attribute'."
- (cdr (assoc attribute (xml-node-attributes node))))
- (defsubst xml-get-attribute (node attribute)
- "Get from NODE the value of ATTRIBUTE.
- An empty string is returned if the attribute was not found.
- See also `xml-get-attribute-or-nil'."
- (or (xml-get-attribute-or-nil node attribute) ""))
- (defun xml-parse-file (file &optional parse-dtd parse-ns)
- "Parse the well-formed XML file FILE.
- If FILE is already visited, use its buffer and don't kill it.
- Returns the top node with all its children.
- If PARSE-DTD is non-nil, the DTD is parsed rather than skipped.
- If PARSE-NS is non-nil, then QNAMES are expanded."
- (if (get-file-buffer file)
- (with-current-buffer (get-file-buffer file)
- (save-excursion
- (xml-parse-region (point-min)
- (point-max)
- (current-buffer)
- parse-dtd parse-ns)))
- (with-temp-buffer
- (insert-file-contents file)
- (xml-parse-region (point-min)
- (point-max)
- (current-buffer)
- parse-dtd parse-ns))))
- (defvar xml-name-re)
- (defvar xml-entity-value-re)
- (defvar xml-att-def-re)
- (let* ((start-chars (concat "[:alpha:]:_"))
- (name-chars (concat "-[:digit:]." start-chars))
-
- (whitespace "[ \t\n\r]"))
-
-
-
-
- (defvar xml-name-start-char-re (concat "[" start-chars "]"))
-
- (defvar xml-name-char-re (concat "[" name-chars "]"))
-
- (defvar xml-name-re (concat xml-name-start-char-re xml-name-char-re "*"))
-
- (defvar xml-names-re (concat xml-name-re "\\(?: " xml-name-re "\\)*"))
-
- (defvar xml-nmtoken-re (concat xml-name-char-re "+"))
-
- (defvar xml-nmtokens-re (concat xml-nmtoken-re "\\(?: " xml-name-re "\\)*"))
-
- (defvar xml-char-ref-re "\\(?:&#[0-9]+;\\|&#x[0-9a-fA-F]+;\\)")
-
- (defvar xml-entity-ref (concat "&" xml-name-re ";"))
-
- (defvar xml-pe-reference-re (concat "%" xml-name-re ";"))
-
- (defvar xml-reference-re (concat "\\(?:" xml-entity-ref "\\|" xml-char-ref-re "\\)"))
-
- (defvar xml-att-value-re (concat "\\(?:\"\\(?:[^&\"]\\|" xml-reference-re "\\)*\"\\|"
- "'\\(?:[^&']\\|" xml-reference-re "\\)*'\\)"))
-
-
-
-
-
-
-
- (defvar xml-tokenized-type-re "\\(?:ID\\|IDREF\\|IDREFS\\|ENTITY\\|ENTITIES\\|NMTOKEN\\|NMTOKENS\\)")
-
- (defvar xml-notation-type-re (concat "\\(?:NOTATION" whitespace "(" whitespace "*" xml-name-re
- "\\(?:" whitespace "*|" whitespace "*" xml-name-re "\\)*" whitespace "*)\\)"))
-
- (defvar xml-enumeration-re (concat "\\(?:(" whitespace "*" xml-nmtoken-re
- "\\(?:" whitespace "*|" whitespace "*" xml-nmtoken-re "\\)*"
- whitespace ")\\)"))
-
- (defvar xml-enumerated-type-re (concat "\\(?:" xml-notation-type-re "\\|" xml-enumeration-re "\\)"))
-
-
- (defvar xml-att-type-re (concat "\\(?:CDATA\\|" xml-tokenized-type-re "\\|" xml-notation-type-re"\\|" xml-enumerated-type-re "\\)"))
-
- (defvar xml-default-decl-re (concat "\\(?:#REQUIRED\\|#IMPLIED\\|\\(?:#FIXED" whitespace "\\)*" xml-att-value-re "\\)"))
-
- (defvar xml-att-def-re (concat "\\(?:" whitespace "*" xml-name-re
- whitespace "*" xml-att-type-re
- whitespace "*" xml-default-decl-re "\\)"))
-
-
- (defvar xml-entity-value-re (concat "\\(?:\"\\(?:[^%&\"]\\|" xml-pe-reference-re
- "\\|" xml-reference-re "\\)*\"\\|'\\(?:[^%&']\\|"
- xml-pe-reference-re "\\|" xml-reference-re "\\)*'\\)")))
- (defvar xml-syntax-table
- (let ((table (make-syntax-table)))
-
- (dotimes (c 31)
- (modify-syntax-entry c "." table))
- (dolist (c '(?\t ?\n ?\r))
- (modify-syntax-entry c " " table))
-
- (modify-syntax-entry ?\" "\"" table)
- (modify-syntax-entry ?' "\"" table)
-
-
- (modify-syntax-entry ?. "_" table)
- (modify-syntax-entry ?: "_" table)
-
- (unless (featurep 'xemacs)
- (dolist (c '(#x00B7 #x02D0 #x02D1 #x0387 #x0640 #x0E46 #x0EC6 #x3005
- #x3031 #x3032 #x3033 #x3034 #x3035 #x309D #x309E #x30FC
- #x30FD #x30FE))
- (modify-syntax-entry (decode-char 'ucs c) "w" table)))
-
- table)
- "Syntax table used by `xml-parse-region'.")
- (eval-and-compile
- (defconst xml-name-regexp "[[:alpha:]_:][[:alnum:]._:-]*"))
- (defun xml-parse-region (beg end &optional buffer parse-dtd parse-ns)
- "Parse the region from BEG to END in BUFFER.
- If BUFFER is nil, it defaults to the current buffer.
- Returns the XML list for the region, or raises an error if the region
- is not well-formed XML.
- If PARSE-DTD is non-nil, the DTD is parsed rather than skipped,
- and returned as the first element of the list.
- If PARSE-NS is non-nil, then QNAMES are expanded."
-
-
- (with-syntax-table (standard-syntax-table)
- (let ((case-fold-search nil)
- xml result dtd)
- (save-excursion
- (if buffer
- (set-buffer buffer))
- (save-restriction
- (narrow-to-region beg end)
- (goto-char (point-min))
- (while (not (eobp))
- (if (search-forward "<" nil t)
- (progn
- (forward-char -1)
- (setq result (xml-parse-tag parse-dtd parse-ns))
- (cond
- ((null result)
-
- (unless (eobp)
- (forward-char 1)))
- ((and xml (not xml-sub-parser))
-
- (error "XML: (Not Well-Formed) Only one root tag allowed"))
- ((and (listp (car result))
- parse-dtd)
- (setq dtd (car result))
- (if (cdr result)
- (add-to-list 'xml (cdr result))))
- (t
- (add-to-list 'xml result))))
- (goto-char (point-max))))
- (if parse-dtd
- (cons dtd (nreverse xml))
- (nreverse xml)))))))
- (defun xml-maybe-do-ns (name default xml-ns)
- "Perform any namespace expansion.
- NAME is the name to perform the expansion on.
- DEFAULT is the default namespace. XML-NS is a cons of namespace
- names to uris. When namespace-aware parsing is off, then XML-NS
- is nil.
- During namespace-aware parsing, any name without a namespace is
- put into the namespace identified by DEFAULT. nil is used to
- specify that the name shouldn't be given a namespace."
- (if (consp xml-ns)
- (let* ((nsp (string-match ":" name))
- (lname (if nsp (substring name (match-end 0)) name))
- (prefix (if nsp (substring name 0 (match-beginning 0)) default))
- (special (and (string-equal lname "xmlns") (not prefix)))
-
-
- (ns (or (cdr (assoc (if special "xmlns" prefix)
- xml-ns))
- "")))
- (cons ns (if special "" lname)))
- (intern name)))
- (defun xml-parse-fragment (&optional parse-dtd parse-ns)
- "Parse xml-like fragments."
- (let ((xml-sub-parser t)
- children)
- (while (not (eobp))
- (let ((bit (xml-parse-tag
- parse-dtd parse-ns)))
- (if children
- (setq children (append (list bit) children))
- (if (stringp bit)
- (setq children (list bit))
- (setq children bit)))))
- (reverse children)))
- (defun xml-parse-tag (&optional parse-dtd parse-ns)
- "Parse the tag at point.
- If PARSE-DTD is non-nil, the DTD of the document, if any, is parsed and
- returned as the first element in the list.
- If PARSE-NS is non-nil, then QNAMES are expanded.
- Returns one of:
- - a list : the matching node
- - nil : the point is not looking at a tag.
- - a pair : the first element is the DTD, the second is the node."
- (let ((xml-validating-parser (or parse-dtd xml-validating-parser))
- (xml-ns (if (consp parse-ns)
- parse-ns
- (if parse-ns
- (list
-
- (cons "" "")
-
- (cons "xml" "http://www.w3.org/XML/1998/namespace")
-
- (cons "xmlns" "http://www.w3.org/2000/xmlns/"))))))
- (cond
-
-
- ((looking-at "<\\?")
- (search-forward "?>")
- (skip-syntax-forward " ")
- (xml-parse-tag parse-dtd xml-ns))
-
- ((looking-at "<!\\[CDATA\\[")
- (let ((pos (match-end 0)))
- (unless (search-forward "]]>" nil t)
- (error "XML: (Not Well Formed) CDATA section does not end anywhere in the document"))
- (concat
- (buffer-substring-no-properties pos (match-beginning 0))
- (xml-parse-string))))
-
- ((looking-at "<!DOCTYPE")
- (let ((dtd (xml-parse-dtd parse-ns)))
- (skip-syntax-forward " ")
- (if xml-validating-parser
- (cons dtd (xml-parse-tag nil xml-ns))
- (xml-parse-tag nil xml-ns))))
-
- ((looking-at "<!--")
- (search-forward "-->")
- (skip-syntax-forward " ")
- (unless (eobp)
- (xml-parse-tag parse-dtd xml-ns)))
-
- ((looking-at "</")
- '())
-
- ((looking-at "<\\([^/>[:space:]]+\\)")
- (goto-char (match-end 1))
-
- (let* ((node-name (match-string-no-properties 1))
-
- (attrs (xml-parse-attlist xml-ns))
- children)
-
- (when (consp xml-ns)
- (dolist (attr attrs)
- (when (and (consp (car attr))
- (equal "http://www.w3.org/2000/xmlns/"
- (caar attr)))
- (push (cons (cdar attr) (cdr attr))
- xml-ns))))
- (setq children (list attrs (xml-maybe-do-ns node-name "" xml-ns)))
-
- (if (looking-at "/>")
- (progn
- (forward-char 2)
- (nreverse children))
-
- (if (eq (char-after) ?>)
- (progn
- (forward-char 1)
-
-
- (let ((end (concat "</" node-name "\\s-*>")))
- (while (not (looking-at end))
- (cond
- ((looking-at "</")
- (error "XML: (Not Well-Formed) Invalid end tag (expecting %s) at pos %d"
- node-name (point)))
- ((= (char-after) ?<)
- (let ((tag (xml-parse-tag nil xml-ns)))
- (when tag
- (push tag children))))
- (t
- (let ((expansion (xml-parse-string)))
- (setq children
- (if (stringp expansion)
- (if (stringp (car children))
-
- (setq children (append (list (concat (car children) expansion))
- (cdr children)))
- (setq children (append (list expansion) children)))
- (setq children (append expansion children))))))))
- (goto-char (match-end 0))
- (nreverse children)))
-
- (error "XML: (Well-Formed) Couldn't parse tag: %s"
- (buffer-substring-no-properties (- (point) 10) (+ (point) 1)))))))
- (t
- (unless xml-sub-parser
- (error "XML: (Well-Formed) Invalid character"))
-
-
- (xml-parse-string)))))
- (defun xml-parse-string ()
- "Parse the next whatever. Could be a string, or an element."
- (let* ((pos (point))
- (string (progn (skip-chars-forward "^<")
- (buffer-substring-no-properties pos (point)))))
-
-
-
-
- (setq pos 0)
- (while (string-match "\r\n?" string pos)
- (setq string (replace-match "\n" t t string))
- (setq pos (1+ (match-beginning 0))))
- (xml-substitute-special string)))
- (defun xml-parse-attlist (&optional xml-ns)
- "Return the attribute-list after point.
- Leave point at the first non-blank character after the tag."
- (let ((attlist ())
- end-pos name)
- (skip-syntax-forward " ")
- (while (looking-at (eval-when-compile
- (concat "\\(" xml-name-regexp "\\)\\s-*=\\s-*")))
- (setq end-pos (match-end 0))
- (setq name (xml-maybe-do-ns (match-string-no-properties 1) nil xml-ns))
- (goto-char end-pos)
-
-
-
- (if (looking-at "\"\\([^\"]*\\)\"")
- (setq end-pos (match-end 0))
- (if (looking-at "'\\([^']*\\)'")
- (setq end-pos (match-end 0))
- (error "XML: (Not Well-Formed) Attribute values must be given between quotes")))
-
- (if (assoc name attlist)
- (error "XML: (Not Well-Formed) Each attribute must be unique within an element"))
-
-
- (let ((string (match-string-no-properties 1)))
- (replace-regexp-in-string "\\s-\\{2,\\}" " " string)
- (let ((expansion (xml-substitute-special string)))
- (unless (stringp expansion)
-
-
- (error "XML: (Not Well-Formed) Entities in attributes cannot expand into elements"))
- (push (cons name expansion) attlist)))
- (goto-char end-pos)
- (skip-syntax-forward " "))
- (nreverse attlist)))
- (defun xml-skip-dtd ()
- "Skip the DTD at point.
- This follows the rule [28] in the XML specifications."
- (let ((xml-validating-parser nil))
- (xml-parse-dtd)))
- (defun xml-parse-dtd (&optional parse-ns)
- "Parse the DTD at point."
- (forward-char (eval-when-compile (length "<!DOCTYPE")))
- (skip-syntax-forward " ")
- (if (and (looking-at ">")
- xml-validating-parser)
- (error "XML: (Validity) Invalid DTD (expecting name of the document)"))
-
- (looking-at xml-name-regexp)
- (let ((dtd (list (match-string-no-properties 0) 'dtd))
- type element end-pos)
- (goto-char (match-end 0))
- (skip-syntax-forward " ")
-
- (cond ((looking-at "PUBLIC\\s-+")
- (goto-char (match-end 0))
- (unless (or (re-search-forward
- "\\=\"\\([[:space:][:alnum:]-'()+,./:=?;!*#@$_%]*\\)\""
- nil t)
- (re-search-forward
- "\\='\\([[:space:][:alnum:]-()+,./:=?;!*#@$_%]*\\)'"
- nil t))
- (error "XML: Missing Public ID"))
- (let ((pubid (match-string-no-properties 1)))
- (skip-syntax-forward " ")
- (unless (or (re-search-forward "\\='\\([^']*\\)'" nil t)
- (re-search-forward "\\=\"\\([^\"]*\\)\"" nil t))
- (error "XML: Missing System ID"))
- (push (list pubid (match-string-no-properties 1) 'public) dtd)))
- ((looking-at "SYSTEM\\s-+")
- (goto-char (match-end 0))
- (unless (or (re-search-forward "\\='\\([^']*\\)'" nil t)
- (re-search-forward "\\=\"\\([^\"]*\\)\"" nil t))
- (error "XML: Missing System ID"))
- (push (list (match-string-no-properties 1) 'system) dtd)))
- (skip-syntax-forward " ")
- (if (eq ?> (char-after))
- (forward-char)
- (if (not (eq (char-after) ?\[))
- (error "XML: Bad DTD")
- (forward-char)
-
-
- (while (not (looking-at "\\s-*\\]"))
- (skip-syntax-forward " ")
- (cond
-
- ((looking-at
- "<!ELEMENT\\s-+\\([[:alnum:].%;]+\\)\\s-+\\([^>]+\\)>")
- (setq element (match-string-no-properties 1)
- type (match-string-no-properties 2))
- (setq end-pos (match-end 0))
-
- (cond
- ((string-match "^EMPTY[ \t\n\r]*$" type)
- (setq type 'empty))
- ((string-match "^ANY[ \t\n\r]*$" type)
- (setq type 'any))
- ((string-match "^(\\(.*\\))[ \t\n\r]*$" type)
- (setq type (xml-parse-elem-type (match-string-no-properties 1 type))))
- ((string-match "^%[^;]+;[ \t\n\r]*$" type)
- nil)
- (t
- (if xml-validating-parser
- (error "XML: (Validity) Invalid element type in the DTD"))))
-
- (if (and (assoc element dtd)
- xml-validating-parser)
- (error "XML: (Validity) Element declarations must be unique in a DTD (<%s>)"
- element))
-
- (push (list element type) dtd)
- (goto-char end-pos))
-
- ((looking-at (concat "<!ATTLIST[ \t\n\r]*\\(" xml-name-re
- "\\)[ \t\n\r]*\\(" xml-att-def-re
- "\\)*[ \t\n\r]*>"))
-
- (goto-char (match-end 0)))
- ((looking-at "<!--")
- (search-forward "-->"))
- ((looking-at (concat "<!ENTITY[ \t\n\r]*\\(" xml-name-re
- "\\)[ \t\n\r]*\\(" xml-entity-value-re
- "\\)[ \t\n\r]*>"))
- (let ((name (match-string-no-properties 1))
- (value (substring (match-string-no-properties 2) 1
- (- (length (match-string-no-properties 2)) 1))))
- (goto-char (match-end 0))
- (setq xml-entity-alist
- (append xml-entity-alist
- (list (cons name
- (with-temp-buffer
- (insert value)
- (goto-char (point-min))
- (xml-parse-fragment
- xml-validating-parser
- parse-ns))))))))
- ((or (looking-at (concat "<!ENTITY[ \t\n\r]+\\(" xml-name-re
- "\\)[ \t\n\r]+SYSTEM[ \t\n\r]+"
- "\\(\"[^\"]*\"\\|'[^']*'\\)[ \t\n\r]*>"))
- (looking-at (concat "<!ENTITY[ \t\n\r]+\\(" xml-name-re
- "\\)[ \t\n\r]+PUBLIC[ \t\n\r]+"
- "\"[- \r\na-zA-Z0-9'()+,./:=?;!*#@$_%]*\""
- "\\|'[- \r\na-zA-Z0-9()+,./:=?;!*#@$_%]*'"
- "[ \t\n\r]+\\(\"[^\"]*\"\\|'[^']*'\\)"
- "[ \t\n\r]*>")))
- (let ((name (match-string-no-properties 1))
- (file (substring (match-string-no-properties 2) 1
- (- (length (match-string-no-properties 2)) 1))))
- (goto-char (match-end 0))
- (setq xml-entity-alist
- (append xml-entity-alist
- (list (cons name (with-temp-buffer
- (insert-file-contents file)
- (goto-char (point-min))
- (xml-parse-fragment
- xml-validating-parser
- parse-ns))))))))
-
- ((or (looking-at (concat "<!ENTITY[ \t\n\r]+%[ \t\n\r]+\\(" xml-name-re
- "\\)[ \t\n\r]+SYSTEM[ \t\n\r]+"
- "\\(\"[^\"]*\"\\|'[^']*'\\)[ \t\n\r]*>"))
- (looking-at (concat "<!ENTITY[ \t\n\r]+"
- "%[ \t\n\r]+"
- "\\(" xml-name-re "\\)[ \t\n\r]+"
- "PUBLIC[ \t\n\r]+"
- "\\(\"[- \r\na-zA-Z0-9'()+,./:=?;!*#@$_%]*\""
- "\\|'[- \r\na-zA-Z0-9()+,./:=?;!*#@$_%]*'\\)[ \t\n\r]+"
- "\\(\"[^\"]+\"\\|'[^']+'\\)"
- "[ \t\n\r]*>")))
- (goto-char (match-end 0)))
-
- ((looking-at (concat "%" xml-name-re ";"))
- (goto-char (match-end 0)))
- (t
- (when xml-validating-parser
- (error "XML: (Validity) Invalid DTD item"))))))
- (if (looking-at "\\s-*]>")
- (goto-char (match-end 0))))
- (nreverse dtd)))
- (defun xml-parse-elem-type (string)
- "Convert element type STRING into a Lisp structure."
- (let (elem modifier)
- (if (string-match "(\\([^)]+\\))\\([+*?]?\\)" string)
- (progn
- (setq elem (match-string-no-properties 1 string)
- modifier (match-string-no-properties 2 string))
- (if (string-match "|" elem)
- (setq elem (cons 'choice
- (mapcar 'xml-parse-elem-type
- (split-string elem "|"))))
- (if (string-match "," elem)
- (setq elem (cons 'seq
- (mapcar 'xml-parse-elem-type
- (split-string elem ",")))))))
- (if (string-match "[ \t\n\r]*\\([^+*?]+\\)\\([+*?]?\\)" string)
- (setq elem (match-string-no-properties 1 string)
- modifier (match-string-no-properties 2 string))))
- (if (and (stringp elem) (string= elem "#PCDATA"))
- (setq elem 'pcdata))
- (cond
- ((string= modifier "+")
- (list '+ elem))
- ((string= modifier "*")
- (list '* elem))
- ((string= modifier "?")
- (list '\? elem))
- (t
- elem))))
- (defun xml-substitute-special (string)
- "Return STRING, after substituting entity references."
-
-
-
- (let ((point 0)
- children end-point)
- (while (string-match "&\\([^;]*\\);" string point)
- (setq end-point (match-end 0))
- (let* ((this-part (match-string-no-properties 1 string))
- (prev-part (substring string point (match-beginning 0)))
- (entity (assoc this-part xml-entity-alist))
- (expansion
- (cond ((string-match "#\\([0-9]+\\)" this-part)
- (let ((c (decode-char
- 'ucs
- (string-to-number (match-string-no-properties 1 this-part)))))
- (if c (string c))))
- ((string-match "#x\\([[:xdigit:]]+\\)" this-part)
- (let ((c (decode-char
- 'ucs
- (string-to-number (match-string-no-properties 1 this-part) 16))))
- (if c (string c))))
- (entity
- (cdr entity))
- ((eq (length this-part) 0)
- (error "XML: (Not Well-Formed) No entity given"))
- (t
- (if xml-validating-parser
- (error "XML: (Validity) Undefined entity `%s'"
- this-part)
- xml-undefined-entity)))))
- (cond ((null children)
-
- (setq children
- (concat prev-part expansion)))
- ((stringp children)
- (if (stringp expansion)
- (setq children (concat children prev-part expansion))
- (setq children (list expansion (concat prev-part children)))))
- ((and (stringp expansion)
- (stringp (car children)))
- (setcar children (concat prev-part expansion (car children))))
- ((stringp expansion)
- (setq children (append (concat prev-part expansion)
- children)))
- ((stringp (car children))
- (setcar children (concat (car children) prev-part))
- (setq children (append expansion children)))
- (t
- (setq children (list expansion
- prev-part
- children))))
- (setq point end-point)))
- (cond ((stringp children)
- (concat children (substring string point)))
- ((stringp (car (last children)))
- (concat (car (last children)) (substring string point)))
- ((null children)
- string)
- (t
- (concat (mapconcat 'identity
- (nreverse children)
- "")
- (substring string point))))))
- (defun xml-substitute-numeric-entities (string)
- "Substitute SGML numeric entities by their respective utf characters.
- This function replaces numeric entities in the input STRING and
- returns the modified string. For example \"*\" gets replaced
- by \"*\"."
- (if (and string (stringp string))
- (let ((start 0))
- (while (string-match "&#\\([0-9]+\\);" string start)
- (condition-case nil
- (setq string (replace-match
- (string (read (substring string
- (match-beginning 1)
- (match-end 1))))
- nil nil string))
- (error nil))
- (setq start (1+ (match-beginning 0))))
- string)
- nil))
- (defun xml-debug-print (xml &optional indent-string)
- "Outputs the XML in the current buffer.
- XML can be a tree or a list of nodes.
- The first line is indented with the optional INDENT-STRING."
- (setq indent-string (or indent-string ""))
- (dolist (node xml)
- (xml-debug-print-internal node indent-string)))
- (defalias 'xml-print 'xml-debug-print)
- (defun xml-escape-string (string)
- "Return the string with entity substitutions made from
- xml-entity-alist."
- (mapconcat (lambda (byte)
- (let ((char (char-to-string byte)))
- (if (rassoc char xml-entity-alist)
- (concat "&" (car (rassoc char xml-entity-alist)) ";")
- char)))
-
-
- string ""))
- (defun xml-debug-print-internal (xml indent-string)
- "Outputs the XML tree in the current buffer.
- The first line is indented with INDENT-STRING."
- (let ((tree xml)
- attlist)
- (insert indent-string ?< (symbol-name (xml-node-name tree)))
-
- (setq attlist (xml-node-attributes tree))
- (while attlist
- (insert ?\ (symbol-name (caar attlist)) "=\""
- (xml-escape-string (cdar attlist)) ?\")
- (setq attlist (cdr attlist)))
- (setq tree (xml-node-children tree))
- (if (null tree)
- (insert ?/ ?>)
- (insert ?>)
- ;; output the children
- (dolist (node tree)
- (cond
- ((listp node)
- (insert ?\n)
- (xml-debug-print-internal node (concat indent-string " ")))
- ((stringp node)
- (insert (xml-escape-string node)))
- (t
- (error "Invalid XML tree"))))
- (when (not (and (null (cdr tree))
- (stringp (car tree))))
- (insert ?\n indent-string))
- (insert ?< ?/ (symbol-name (xml-node-name xml)) ?>))))
- (provide 'xml)
- ;;; xml.el ends here
|