comparison hgsubversion/layouts/single.py @ 1026:66395f232b7c

layouts: pull tag location list management into layout module We keep a list of locations within subversion where we look for tags that persists across runs. This pulls the logic for constructiong that list from config on first clone, and for mainting the list afterwards out of svnmeta and into layouts.
author David Schleimer <dschleimer@fb.com>
date Tue, 21 May 2013 16:29:18 -0700
parents 0ed7cf23e801
children 16045f6f3fef
comparison
equal deleted inserted replaced
1025:2bf860f327e2 1026:66395f232b7c
11 def remotename(self, branch): 11 def remotename(self, branch):
12 return '' 12 return ''
13 13
14 def remotepath(self, branch, subdir='/'): 14 def remotepath(self, branch, subdir='/'):
15 return subdir or '/' 15 return subdir or '/'
16
17 def taglocations(self, meta_data_dir):
18 return []