equal
deleted
inserted
replaced
1047 |
1047 |
1048 followingmeta = [] |
1048 followingmeta = [] |
1049 followingdata = [] |
1049 followingdata = [] |
1050 |
1050 |
1051 if b'revision' in fields: |
1051 if b'revision' in fields: |
1052 revisiondata = cl.rawdata(node) |
1052 revisiondata = cl.revision(node) |
1053 followingmeta.append((b'revision', len(revisiondata))) |
1053 followingmeta.append((b'revision', len(revisiondata))) |
1054 followingdata.append(revisiondata) |
1054 followingdata.append(revisiondata) |
1055 |
1055 |
1056 # TODO make it possible for extensions to wrap a function or register |
1056 # TODO make it possible for extensions to wrap a function or register |
1057 # a handler to service custom fields. |
1057 # a handler to service custom fields. |