summaryrefslogtreecommitdiffstats
path: root/docs/manifest-format.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/manifest-format.txt')
-rw-r--r--docs/manifest-format.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt
index 53789651..9f4585b8 100644
--- a/docs/manifest-format.txt
+++ b/docs/manifest-format.txt
@@ -63,6 +63,9 @@ following DTD:
63 <!ELEMENT repo-hooks (EMPTY)> 63 <!ELEMENT repo-hooks (EMPTY)>
64 <!ATTLIST repo-hooks in-project CDATA #REQUIRED> 64 <!ATTLIST repo-hooks in-project CDATA #REQUIRED>
65 <!ATTLIST repo-hooks enabled-list CDATA #REQUIRED> 65 <!ATTLIST repo-hooks enabled-list CDATA #REQUIRED>
66
67 <!ELEMENT include (EMPTY)>
68 <!ATTLIST include name CDATA #REQUIRED>
66 ]> 69 ]>
67 70
68A description of the elements and their attributes follows. 71A description of the elements and their attributes follows.
@@ -192,6 +195,16 @@ This element is mostly useful in the local_manifest.xml, where
192the user can remove a project, and possibly replace it with their 195the user can remove a project, and possibly replace it with their
193own definition. 196own definition.
194 197
198Element include
199---------------
200
201This element provides the capability of including another manifest
202file into the originating manifest. Normal rules apply for the
203target manifest to include- it must be a usable manifest on it's own.
204
205Attribute `name`; the manifest to include, specified relative to
206the manifest repositories root.
207
195 208
196Local Manifest 209Local Manifest
197============== 210==============