Mercurial > emacs
annotate etc/schema/xhtml-hypertext.rnc @ 107698:89eccb374dec
Update Semantic test copyrights, delete some test files (Bug#4656).
* cedet/tests/test.cpp:
* cedet/tests/test.py:
* cedet/tests/teststruct.cpp:
* cedet/tests/testtemplates.cpp:
* cedet/tests/testusing.cpp:
* cedet/tests/scopetest.cpp:
* cedet/tests/scopetest.java: Files deleted.
* cedet/tests/test.make:
* cedet/tests/test.c:
* cedet/tests/testjavacomp.java:
* cedet/tests/testspp.c:
* cedet/tests/testsppreplace.c:
* cedet/tests/testsppreplaced.c:
* cedet/tests/testsubclass.cpp:
* cedet/tests/testsubclass.hh:
* cedet/tests/testtypedefs.cpp:
* cedet/tests/testvarnames.c:
* cedet/tests/test.el:
* cedet/tests/testdoublens.cpp:
* cedet/tests/testdoublens.hpp: Add copyright header.
* cedet/semantic-tests.el (semanticdb-test-gnu-global): Remove
reference to deleted files.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 29 Mar 2010 17:26:49 -0400 |
parents | 38f93f3d00a2 |
children |
rev | line source |
---|---|
86361 | 1 # Hypertext Module |
2 | |
3 # Depends on text module. | |
4 | |
5 a = element a { a.attlist, Inline.model } | |
6 a.attlist = | |
7 Common.attrib, | |
8 attribute href { URI.datatype }?, | |
9 attribute charset { Charset.datatype }?, | |
10 attribute type { ContentType.datatype }?, | |
11 attribute hreflang { LanguageCode.datatype }?, | |
12 attribute rel { LinkTypes.datatype }?, | |
13 attribute rev { LinkTypes.datatype }?, | |
14 attribute accesskey { Character.datatype }?, | |
15 attribute tabindex { Number.datatype }? | |
16 Inline.class |= a |