# # # patch "branch.psp" # from [c05c53c44ff33261ee2a8ac4843099a12255299c] # to [08a0e167ebb6416ca636a59ae0bb4ac020b148af] # # patch "monotone.py" # from [b4f6cf2091756a3992836759df138b9a183fdbba] # to [bdf8d159c331916c691858713488beacd50e9cc2] # ============================================================ --- branch.psp c05c53c44ff33261ee2a8ac4843099a12255299c +++ branch.psp 08a0e167ebb6416ca636a59ae0bb4ac020b148af @@ -33,7 +33,7 @@ if page < 1: page = 1 -display = 10 +display = 25 offset = page * display branch = form['branch'] ============================================================ --- monotone.py b4f6cf2091756a3992836759df138b9a183fdbba +++ monotone.py bdf8d159c331916c691858713488beacd50e9cc2 @@ -229,6 +229,12 @@ raise Exception("Unable to get parents of %s: %s" % (id, result)) else: return filter(None, result.split('\n')) + def children(self, id): + error, result = self.automate.run('children', [id]) + if error != 0: + raise Exception("Unable to get children of %s: %s" % (id, result)) + else: + return filter(None, result.split('\n')) def manifest(self, id): error, result = self.automate.run('get_manifest', [id]) if error != 0: