# # # patch "AUTHORS" # from [1ae4282c01b1edde4b46ea9a06ff7816b424856a] # to [80d8f3f75c9b517ec462233e155f7dfb93379f67] # # patch "monotone.py" # from [e583cea17f5d03ba47cda2ef3937b464efe0a83b] # to [ecadcd66e3ff78777cbc679554d8198c67aee5d6] # ============================================================ --- AUTHORS 1ae4282c01b1edde4b46ea9a06ff7816b424856a +++ AUTHORS 80d8f3f75c9b517ec462233e155f7dfb93379f67 @@ -1,2 +1,8 @@ +Authors: Grahame Bowland +Contributors: +Matt Johnston +Nathaniel Smith +Bruce Stephens + ============================================================ --- monotone.py e583cea17f5d03ba47cda2ef3937b464efe0a83b +++ monotone.py ecadcd66e3ff78777cbc679554d8198c67aee5d6 @@ -149,6 +149,7 @@ rv['cached'] = True return rv contents = "digraph ancestry {" + contents += "edge [dir=back];\n" revisions = sets.Set() for attrs in self.ancestry(id, limit): if not attrs.has_key("Revision") or not attrs.has_key("Ancestor"): @@ -158,7 +159,7 @@ for ancestor in attrs['Ancestor']: if len(ancestor) == 0: continue revisions.add(ancestor) - contents += '"%s"->"%s"\n' % (ancestor, revision) + contents += '"%s"->"%s"\n' % (revision, ancestor) for revision in revisions: opts = 'fontsize=8,shape=box,href="revision.psp?id=%s"' % (urllib.quote(revision)) if revision == id: opts += ",color=blue"