aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-11-23 19:15:06 +0000
committerStefan Monnier2007-11-23 19:15:06 +0000
commit9e65d8e57370a0b29e01348171d5c6b12e12a04f (patch)
tree64100ec176c9e44ddcac5a54f9525ca4f1139799
parent43b997800269937e4bae25693b7b588f06c4456e (diff)
downloademacs-9e65d8e57370a0b29e01348171d5c6b12e12a04f.tar.gz
emacs-9e65d8e57370a0b29e01348171d5c6b12e12a04f.zip
Remove.
-rw-r--r--lisp/nxml/rng-auto.el244
1 files changed, 0 insertions, 244 deletions
diff --git a/lisp/nxml/rng-auto.el b/lisp/nxml/rng-auto.el
deleted file mode 100644
index a0f95fc51a6..00000000000
--- a/lisp/nxml/rng-auto.el
+++ /dev/null
@@ -1,244 +0,0 @@
1;;; rng-auto.el --- automatically extracted autoloads for RELAX NG
2
3;; Copyright (C) 2003 Free Software Foundation, Inc.
4
5;; Author: James Clark
6;; Keywords: XML, RelaxNG
7
8;; This program is free software; you can redistribute it and/or
9;; modify it under the terms of the GNU General Public License as
10;; published by the Free Software Foundation; either version 2 of
11;; the License, or (at your option) any later version.
12
13;; This program is distributed in the hope that it will be
14;; useful, but WITHOUT ANY WARRANTY; without even the implied
15;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16;; PURPOSE. See the GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public
19;; License along with this program; if not, write to the Free
20;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21;; MA 02111-1307 USA
22
23(setq nxml-version "20041004")
24
25(when (featurep 'mucs)
26 (error "nxml-mode is not compatible with Mule-UCS"))
27
28(let* ((dir (file-name-directory load-file-name))
29 (schema-dir (file-name-as-directory
30 (expand-file-name "schemas" data-directory))))
31 (unless (member dir load-path)
32 (setq load-path (cons dir load-path)))
33 (setq rng-schema-locating-files-default
34 (list "schemas.xml"
35 (abbreviate-file-name
36 (expand-file-name "schemas.xml" schema-dir))))
37 (setq rng-schema-locating-file-schema-file
38 (expand-file-name "locate.rnc" schema-dir)))
39
40;; Users shouldn't edit this.
41;; Instead they should customize `rng-preferred-prefix-alist'.
42
43(setq rng-preferred-prefix-alist-default
44 ;; For XHTML and RELAX NG, prefer no prefix
45 '(("http://www.w3.org/1999/XSL/Transform" . "xsl")
46 ("http://www.w3.org/1999/02/22-rdf-syntax-ns#" . "rdf")))
47
48(add-hook 'nxml-mode-hook 'rng-nxml-mode-init)
49(add-hook 'nxml-mode-hook 'nxml-enable-unicode-char-name-sets)
50
51(setq rng-schema-loader-alist '(("rnc" . rng-c-load-schema)))
52
53(require 'nxml-enc)
54;; Install our own `set-auto-coding-function'.
55(nxml-start-auto-coding)
56
57
58;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml-glyph.el"
59;;;;;; (16278 18099))
60;;; Generated autoloads from nxml-glyph.el
61
62(autoload (quote nxml-glyph-display-string) "nxml-glyph" "\
63Return a string that can display a glyph for Unicode code-point N.
64FACE gives the face that will be used for displaying the string.
65Return nil if the face cannot display a glyph for N." nil nil)
66
67;;;***
68
69;;;### (autoloads (nxml-mode) "nxml-mode" "nxml-mode.el" (16702 54517))
70;;; Generated autoloads from nxml-mode.el
71
72(autoload (quote nxml-mode) "nxml-mode" "\
73Major mode for editing XML.
74
75Syntax highlighting is performed unless the variable
76`nxml-syntax-highlight-flag' is nil.
77
78\\[nxml-finish-element] finishes the current element by inserting an end-tag.
79C-c C-i closes a start-tag with `>' and then inserts a balancing end-tag
80leaving point between the start-tag and end-tag.
81\\[nxml-balanced-close-start-tag-block] is similar but for block rather than inline elements:
82the start-tag, point, and end-tag are all left on separate lines.
83If `nxml-slash-auto-complete-flag' is non-nil, then inserting a `</'
84automatically inserts the rest of the end-tag.
85
86\\[nxml-complete] performs completion on the symbol preceding point.
87
88\\[nxml-dynamic-markup-word] uses the contents of the current buffer
89to choose a tag to put around the word preceding point.
90
91Validation is provided by the related minor-mode `rng-validate-mode'.
92This also makes completion schema- and context- sensitive. Element
93names, attribute names, attribute values and namespace URIs can all be
94completed. By default, `rng-validate-mode' is automatically enabled by
95`rng-nxml-mode-init' which is normally added to `nxml-mode-hook'. You
96can toggle it using \\[rng-validate-mode].
97
98\\[indent-for-tab-command] indents the current line appropriately.
99This can be customized using the variable `nxml-child-indent'
100and the variable `nxml-attribute-indent'.
101
102\\[nxml-insert-named-char] inserts a character reference using
103the character's name (by default, the Unicode name). \\[universal-argument] \\[nxml-insert-named-char]
104inserts the character directly.
105
106The Emacs commands that normally operate on balanced expressions will
107operate on XML markup items. Thus \\[forward-sexp] will move forward
108across one markup item; \\[backward-sexp] will move backward across
109one markup item; \\[kill-sexp] will kill the following markup item;
110\\[mark-sexp] will mark the following markup item. By default, each
111tag each treated as a single markup item; to make the complete element
112be treated as a single markup item, set the variable
113`nxml-sexp-element-flag' to t. For more details, see the function
114`nxml-forward-balanced-item'.
115
116\\[nxml-backward-up-element] and \\[nxml-down-element] move up and
117down the element structure.
118
119Many aspects this mode can be customized using
120\\[customize-group] nxml RET." t nil)
121
122;;;***
123
124;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm"
125;;;;;; "nxml-uchnm.el" (16270 38352))
126;;; Generated autoloads from nxml-uchnm.el
127
128(autoload (quote nxml-enable-unicode-char-name-sets) "nxml-uchnm" "\
129Enable the use of Unicode standard names for characters.
130The Unicode blocks for which names are enabled is controlled by
131the variable `nxml-enabled-unicode-blocks'." t nil)
132
133;;;***
134
135;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "rng-cmpct.el"
136;;;;;; (16280 36493))
137;;; Generated autoloads from rng-cmpct.el
138
139(autoload (quote rng-c-load-schema) "rng-cmpct" "\
140Load a schema in RELAX NG compact syntax from FILENAME.
141Return a pattern." nil nil)
142
143;;;***
144
145;;;### (autoloads (rng-write-version rng-format-manual rng-byte-compile-load
146;;;;;; rng-update-autoloads) "rng-maint" "rng-maint.el" (16279 23645))
147;;; Generated autoloads from rng-maint.el
148
149(autoload (quote rng-update-autoloads) "rng-maint" "\
150Update the autoloads in rng-auto.el." t nil)
151
152(autoload (quote rng-byte-compile-load) "rng-maint" "\
153Byte-compile and load all of the RELAX NG library in an appropriate order." t nil)
154
155(autoload (quote rng-format-manual) "rng-maint" "\
156Create manual.texi from manual.xml." t nil)
157
158(autoload (quote rng-write-version) "rng-maint" nil nil nil)
159
160;;;***
161
162;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "rng-nxml.el" (16294
163;;;;;; 8571))
164;;; Generated autoloads from rng-nxml.el
165
166(autoload (quote rng-nxml-mode-init) "rng-nxml" "\
167Initialize `nxml-mode' to take advantage of `rng-validate-mode'.
168This is typically called from `nxml-mode-hook'.
169Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil." t nil)
170
171;;;***
172
173;;;### (autoloads (rng-validate-mode) "rng-valid" "rng-valid.el"
174;;;;;; (16664 9855))
175;;; Generated autoloads from rng-valid.el
176
177(autoload (quote rng-validate-mode) "rng-valid" "\
178Minor mode performing continual validation against a RELAX NG schema.
179
180Checks whether the buffer is a well-formed XML 1.0 document,
181conforming to the XML Namespaces Recommendation and valid against a
182RELAX NG schema. The mode-line indicates whether it is or not. Any
183parts of the buffer that cause it not to be are considered errors and
184are highlighted with `rng-error-face'. A description of each error is
185available as a tooltip. \\[rng-next-error] goes to the next error
186after point. Clicking mouse-1 on the word `Invalid' in the mode-line
187goes to the first error in the buffer. If the buffer changes, then it
188will be automatically rechecked when Emacs becomes idle; the
189rechecking will be paused whenever there is input pending..
190
191By default, uses a vacuous schema that allows any well-formed XML
192document. A schema can be specified explictly using
193\\[rng-set-schema-file-and-validate], or implicitly based on the buffer's
194file name or on the root element name. In each case the schema must
195be a RELAX NG schema using the compact schema (such schemas
196conventionally have a suffix of `.rnc'). The variable
197`rng-schema-locating-files' specifies files containing rules
198to use for finding the schema." t nil)
199
200;;;***
201
202;;;### (autoloads (rng-xsd-compile) "rng-xsd" "rng-xsd.el" (16216
203;;;;;; 26672))
204;;; Generated autoloads from rng-xsd.el
205
206(put (quote http://www\.w3\.org/2001/XMLSchema-datatypes) (quote rng-dt-compile) (quote rng-xsd-compile))
207
208(autoload (quote rng-xsd-compile) "rng-xsd" "\
209Provides W3C XML Schema as a RELAX NG datatypes library. NAME is a
210symbol giving the local name of the datatype. PARAMS is a list of
211pairs (PARAM-NAME . PARAM-VALUE) where PARAM-NAME is a symbol giving
212the name of the parameter and PARAM-VALUE is a string giving its
213value. If NAME or PARAMS are invalid, it calls rng-dt-error passing
214it arguments in the same style as format; the value from rng-dt-error
215will be returned. Otherwise, it returns a list. The first member of
216the list is t if any string is a legal value for the datatype and nil
217otherwise. The second argument is a symbol; this symbol will be
218called as a function passing it a string followed by the remaining
219members of the list. The function must return an object representing
220the value of the datatype that was represented by the string, or nil
221if the string is not a representation of any value. The object
222returned can be any convenient non-nil value, provided that, if two
223strings represent the same value, the returned objects must be equal." nil nil)
224
225;;;***
226
227;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok"
228;;;;;; "xmltok.el" (16664 8418))
229;;; Generated autoloads from xmltok.el
230
231(autoload (quote xmltok-get-declared-encoding-position) "xmltok" "\
232Return the position of the encoding in the XML declaration at point.
233If there is a well-formed XML declaration starting at point and it
234contains an encoding declaration, then return (START . END)
235where START and END are the positions of the start and the end
236of the encoding name; if there is no encoding declaration return
237the position where and encoding declaration could be inserted.
238If there is XML that is not well-formed that looks like an XML declaration,
239return nil. Otherwise, return t.
240If LIMIT is non-nil, then do not consider characters beyond LIMIT." nil nil)
241
242;;;***
243
244;;; rng-auto.el ends here