summaryrefslogtreecommitdiffstats
path: root/manifest.py
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-07-03 15:29:02 -0700
committerShawn O. Pearce <sop@google.com>2009-07-03 20:03:38 -0700
commitcc6c79643e1cafad565424caabe581e7b548bf6f (patch)
tree29fe305852e0488f54548e1d2a9d3e39f8d39f85 /manifest.py
parent2095179beec754d2d5bfe175215e736b7ff838e9 (diff)
downloadgit-repo-cc6c79643e1cafad565424caabe581e7b548bf6f.tar.gz
Make refs/remotes/m management the manifest object's responsibility
I plan to have the new submodule manifest format use a different layout for the m refs than the XML manifest format has used in the past. Thus we need to move the behavior management into the manifest object, and out of the project, so we can change it. Signed-off-by: Shawn O. Pearce <sop@google.com>
Diffstat (limited to 'manifest.py')
-rw-r--r--manifest.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifest.py b/manifest.py
index bf801dfa..0762098b 100644
--- a/manifest.py
+++ b/manifest.py
@@ -35,3 +35,10 @@ class Manifest(object):
35 @property 35 @property
36 def IsMirror(self): 36 def IsMirror(self):
37 return self.manifestProject.config.GetBoolean('repo.mirror') 37 return self.manifestProject.config.GetBoolean('repo.mirror')
38
39 @property
40 def projects(self):
41 return {}
42
43 def SetMRefs(self, project):
44 pass