Show More
@@ -295,11 +295,6 b' def _showfilesbystat(context, mapping, n' | |||||
295 | files = stat[index] |
|
295 | files = stat[index] | |
296 | return templateutil.compatfileslist(context, mapping, name, files) |
|
296 | return templateutil.compatfileslist(context, mapping, name, files) | |
297 |
|
297 | |||
298 | @templatekeyword('file_adds', requires={'ctx', 'revcache'}) |
|
|||
299 | def showfileadds(context, mapping): |
|
|||
300 | """List of strings. Files added by this changeset.""" |
|
|||
301 | return _showfilesbystat(context, mapping, 'file_add', 1) |
|
|||
302 |
|
||||
303 | @templatekeyword('file_copies', |
|
298 | @templatekeyword('file_copies', | |
304 | requires={'repo', 'ctx', 'cache', 'revcache'}) |
|
299 | requires={'repo', 'ctx', 'cache', 'revcache'}) | |
305 | def showfilecopies(context, mapping): |
|
300 | def showfilecopies(context, mapping): | |
@@ -334,6 +329,11 b' def showfilecopiesswitch(context, mappin' | |||||
334 | return templateutil.compatfilecopiesdict(context, mapping, 'file_copy', |
|
329 | return templateutil.compatfilecopiesdict(context, mapping, 'file_copy', | |
335 | copies) |
|
330 | copies) | |
336 |
|
331 | |||
|
332 | @templatekeyword('file_adds', requires={'ctx', 'revcache'}) | |||
|
333 | def showfileadds(context, mapping): | |||
|
334 | """List of strings. Files added by this changeset.""" | |||
|
335 | return _showfilesbystat(context, mapping, 'file_add', 1) | |||
|
336 | ||||
337 | @templatekeyword('file_dels', requires={'ctx', 'revcache'}) |
|
337 | @templatekeyword('file_dels', requires={'ctx', 'revcache'}) | |
338 | def showfiledels(context, mapping): |
|
338 | def showfiledels(context, mapping): | |
339 | """List of strings. Files removed by this changeset.""" |
|
339 | """List of strings. Files removed by this changeset.""" |
General Comments 0
You need to be logged in to leave comments.
Login now