Mercurial > emacs
annotate etc/schema/xhtml.rnc @ 110531:67ff8ad45bd5
Synch SRecode to CEDET 1.0.
* lisp/cedet/cedet.el (cedet-version):
* lisp/cedet/srecode.el (srecode-version): Bump version to 1.0.
* lisp/cedet/pulse.el (pulse-momentary-highlight-overlay): If pulse-flag is
'never, disable all pulsing.
* lisp/cedet/srecode/compile.el (srecode-compile-templates): Fix directory
compare of built-in templates. Give built-ins lower piority.
Support special variable "project".
(srecode-compile-template-table): Set :project slot of new tables.
(srecode-compile-one-template-tag): Use
srecode-create-dictionaries-from-tags.
* lisp/cedet/srecode/cpp.el (srecode-cpp): New defgroup.
(srecode-cpp-namespaces): New option.
(srecode-semantic-handle-:using-namespaces)
(srecode-cpp-apply-templates): New functions.
(srecode-semantic-apply-tag-to-dict): Handle template parameters
by calling `srecode-cpp-apply-templates'.
* lisp/cedet/srecode/dictionary.el (srecode-dictionary-add-template-table):
Do not add variables in tables not for the current project.
(srecode-compound-toString): Handle cases where the default value
is another compound value.
(srecode-dictionary-lookup-name): New optional argument
NON-RECURSIVE, which inhibits visiting dictionary parents.
(srecode-dictionary-add-section-dictionary)
(srecode-dictionary-merge): New optional argument FORCE adds
values even if an identically named entry exists.
(srecode-dictionary-add-entries): New method.
(srecode-create-dictionaries-from-tags): New function.
* lisp/cedet/srecode/fields.el (srecode-fields-exit-confirmation): New option.
(srecode-field-exit-ask): Use it.
* lisp/cedet/srecode/find.el (srecode-template-get-table)
(srecode-template-get-table-for-binding)
(srecode-all-template-hash): Skip if not in current project.
(srecode-template-table-in-project-p): New method.
* lisp/cedet/srecode/getset.el (srecode-insert-getset): Force tag table
update. Don't query the class if it is empty.
* lisp/cedet/srecode/insert.el (srecode-insert-fcn): Merge template
dictionary before resolving arguments.
(srecode-insert-method-helper): Add error checking to make sure
that we only have dictionaries.
(srecode-insert-method): Check template nesting depth when using
point inserter override.
(srecode-insert-method): Install override with depth limit.
* lisp/cedet/srecode/map.el (srecode-map-update-map): Make map loading more
robust.
* lisp/cedet/srecode/mode.el (srecode-bind-insert): Call
srecode-load-tables-for-mode.
(srecode-minor-mode-templates-menu): Do not list templates that
are not in the current project.
(srecode-menu-bar): Add binding for srecode-macro-help.
* lisp/cedet/srecode/table.el (srecode-template-table): Add :project slot.
(srecode-dump): Dump it.
* lisp/cedet/srecode/texi.el (srecode-texi-insert-tag-as-doc): New function.
(semantic-insert-foreign-tag): Use it.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 21 Sep 2010 18:11:23 -0400 |
parents | 55a95acb5aa1 |
children |
rev | line source |
---|---|
86361 | 1 # XHTML |
2 | |
3 # This corresponds to the union of transitional and frameset. | |
4 | |
5 default namespace = "http://www.w3.org/1999/xhtml" | |
6 | |
7 include "xhtml-datatypes.rnc" | |
8 include "xhtml-attribs.rnc" | |
9 # include "xhtml-struct.rnc" | |
10 include "xhtml-frames.rnc" | |
11 include "xhtml-text.rnc" | |
12 include "xhtml-hypertext.rnc" | |
87296
288134f0441f
Renamed xhtml-list.rnc to xhtml-lst.rnc; all users changed.
Eli Zaretskii <eliz@gnu.org>
parents:
87294
diff
changeset
|
13 include "xhtml-lst.rnc" |
86361 | 14 include "xhtml-image.rnc" |
15 include "xhtml-ssismap.rnc" | |
16 include "xhtml-base.rnc" | |
17 include "xhtml-link.rnc" | |
18 include "xhtml-meta.rnc" | |
19 include "xhtml-param.rnc" | |
20 include "xhtml-object.rnc" | |
21 include "xhtml-bdo.rnc" | |
22 include "xhtml-pres.rnc" | |
23 include "xhtml-edit.rnc" | |
24 include "xhtml-applet.rnc" | |
87294
9e48c9dc543f
Renamed xhtml-basic-form.rnc to xhtml-bform.rnc; all users fixed..
Eli Zaretskii <eliz@gnu.org>
parents:
86361
diff
changeset
|
25 # include "xhtml-bform.rnc" |
86361 | 26 include "xhtml-form.rnc" |
87298
55a95acb5aa1
Renamed xhtml-style.rnc to xhtml-xstyle.rnc; all users changed.
Eli Zaretskii <eliz@gnu.org>
parents:
87297
diff
changeset
|
27 include "xhtml-xstyle.rnc" |
86361 | 28 include "xhtml-script.rnc" |
87294
9e48c9dc543f
Renamed xhtml-basic-form.rnc to xhtml-bform.rnc; all users fixed..
Eli Zaretskii <eliz@gnu.org>
parents:
86361
diff
changeset
|
29 # include "xhtml-btable.rnc" |
86361 | 30 include "xhtml-table.rnc" |
31 include "xhtml-csismap.rnc" | |
32 include "xhtml-events.rnc" | |
33 include "xhtml-inlstyle.rnc" | |
87297
947277b5370c
Renamed xhtml-target.rnc to xhtml-tgt.rnc; all users changed.
Eli Zaretskii <eliz@gnu.org>
parents:
87296
diff
changeset
|
34 include "xhtml-tgt.rnc" |
86361 | 35 include "xhtml-iframe.rnc" |
36 include "xhtml-nameident.rnc" | |
37 include "xhtml-legacy.rnc" |