##// END OF EJS Templates
commitctx: document the manifest writing function...
marmoute -
r45626:5a80915e default
parent child Browse files
Show More
@@ -1665,6 +1665,22 b' class manifestrevlog(object):'
1665 1665 readtree=None,
1666 1666 match=None,
1667 1667 ):
1668 """add some manifest entry in to the manifest log
1669
1670 input:
1671
1672 m: the manifest dict we want to store
1673 transaction: the open transaction
1674 p1: manifest-node of p1
1675 p2: manifest-node of p2
1676 added: file added/changed compared to parent
1677 removed: file removed compared to parent
1678
1679 tree manifest input:
1680
1681 readtree: a function to read a subtree
1682 match: a filematcher for the subpart of the tree manifest
1683 """
1668 1684 try:
1669 1685 if p1 not in self.fulltextcache:
1670 1686 raise FastdeltaUnavailable()
General Comments 0
You need to be logged in to leave comments. Login now