|
Revision 3148, 1.0 kB
(checked in by rcrichton, 1 year ago)
|
--
|
- Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- |
|---|
| 4 |
Top level configuration element. |
|---|
| 5 |
--> |
|---|
| 6 |
<!ELEMENT module ( |
|---|
| 7 |
(id), |
|---|
| 8 |
(name), |
|---|
| 9 |
(version), |
|---|
| 10 |
(package), |
|---|
| 11 |
(author), |
|---|
| 12 |
(description), |
|---|
| 13 |
(activator), |
|---|
| 14 |
(updateURL?), |
|---|
| 15 |
(require_version?), |
|---|
| 16 |
(require_database_version?), |
|---|
| 17 |
(require_modules?), |
|---|
| 18 |
(library*), |
|---|
| 19 |
(extension*), |
|---|
| 20 |
(advice*), |
|---|
| 21 |
(privilege*), |
|---|
| 22 |
(globalProperty*), |
|---|
| 23 |
(dwr?), |
|---|
| 24 |
(servlet*), |
|---|
| 25 |
(messages*), |
|---|
| 26 |
(mappingFiles*) |
|---|
| 27 |
)> |
|---|
| 28 |
<!ATTLIST module configVersion CDATA #FIXED "1.0"> |
|---|
| 29 |
|
|---|
| 30 |
<!ELEMENT library EMPTY> |
|---|
| 31 |
<!ATTLIST library |
|---|
| 32 |
id CDATA #REQUIRED |
|---|
| 33 |
path CDATA #REQUIRED |
|---|
| 34 |
type (resources|library) #REQUIRED |
|---|
| 35 |
> |
|---|
| 36 |
|
|---|
| 37 |
<!ELEMENT extension (point, class)> |
|---|
| 38 |
|
|---|
| 39 |
<!ELEMENT advice (point, class)> |
|---|
| 40 |
|
|---|
| 41 |
<!ELEMENT privilege (name, description)> |
|---|
| 42 |
|
|---|
| 43 |
<!ELEMENT globalProperty (property, defaultValue?, description)> |
|---|
| 44 |
|
|---|
| 45 |
<!ELEMENT dwr (allow, signatures?)> |
|---|
| 46 |
|
|---|
| 47 |
<!ELEMENT servlet (servlet-name, servlet-class)> |
|---|
| 48 |
|
|---|
| 49 |
<!ELEMENT messages (lang, file)> |
|---|
| 50 |
|
|---|
| 51 |
<!ELEMENT require_modules (require_module*)> |
|---|