You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2016/04/12 21:32:36 UTC

allura git commit: [#7949] add onlyChangedFiles param to paged_diffs in ForgeSVN

Repository: allura
Updated Branches:
  refs/heads/master 12296f70d -> 958578049


[#7949] add onlyChangedFiles param to paged_diffs in ForgeSVN


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/95857804
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/95857804
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/95857804

Branch: refs/heads/master
Commit: 9585780494c181c2e5e46f1ec8622ad3bd600a7f
Parents: 12296f7
Author: Dave Brondsema <da...@brondsema.net>
Authored: Tue Apr 12 15:32:33 2016 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Tue Apr 12 15:32:33 2016 -0400

----------------------------------------------------------------------
 ForgeSVN/forgesvn/model/svn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/95857804/ForgeSVN/forgesvn/model/svn.py
----------------------------------------------------------------------
diff --git a/ForgeSVN/forgesvn/model/svn.py b/ForgeSVN/forgesvn/model/svn.py
index 8db0943..4759efc 100644
--- a/ForgeSVN/forgesvn/model/svn.py
+++ b/ForgeSVN/forgesvn/model/svn.py
@@ -780,7 +780,7 @@ class SVNImplementation(M.RepositoryImplementation):
     def tags(self):
         return []
 
-    def paged_diffs(self, commit_id, start=0, end=None):
+    def paged_diffs(self, commit_id, start=0, end=None, onlyChangedFiles=False):
         result = {'added': [], 'removed': [], 'changed': [], 'copied': [], 'renamed': [], 'total': 0}
         rev = self._revision(commit_id)
         try: