diff options
Diffstat (limited to 'docs/manifest-format.txt')
-rw-r--r-- | docs/manifest-format.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt index 409524bb..2b49d466 100644 --- a/docs/manifest-format.txt +++ b/docs/manifest-format.txt | |||
@@ -23,9 +23,10 @@ following DTD: | |||
23 | <!ELEMENT manifest (remote*, default?, project*)> | 23 | <!ELEMENT manifest (remote*, default?, project*)> |
24 | 24 | ||
25 | <!ELEMENT remote (EMPTY)> | 25 | <!ELEMENT remote (EMPTY)> |
26 | <!ATTLIST remote name ID #REQUIRED> | 26 | <!ATTLIST remote name ID #REQUIRED> |
27 | <!ATTLIST remote fetch CDATA #REQUIRED> | 27 | <!ATTLIST remote fetch CDATA #REQUIRED> |
28 | <!ATTLIST remote review CDATA #IMPLIED> | 28 | <!ATTLIST remote review CDATA #IMPLIED> |
29 | <!ATTLIST remote project-name CDATA #IMPLIED> | ||
29 | 30 | ||
30 | <!ELEMENT default (EMPTY)> | 31 | <!ELEMENT default (EMPTY)> |
31 | <!ATTLIST default remote IDREF #IMPLIED> | 32 | <!ATTLIST default remote IDREF #IMPLIED> |
@@ -67,6 +68,12 @@ Attribute `review`: Hostname of the Gerrit server where reviews | |||
67 | are uploaded to by `repo upload`. This attribute is optional; | 68 | are uploaded to by `repo upload`. This attribute is optional; |
68 | if not specified then `repo upload` will not function. | 69 | if not specified then `repo upload` will not function. |
69 | 70 | ||
71 | Attribute `project-name`: Specifies the name of this project used | ||
72 | by the review server given in the review attribute of this element. | ||
73 | Only permitted when the remote element is nested inside of a project | ||
74 | element (see below). If not given, defaults to the name supplied | ||
75 | in the project's name attribute. | ||
76 | |||
70 | 77 | ||
71 | Element default | 78 | Element default |
72 | --------------- | 79 | --------------- |