Hi everyone,
It's been a while since we've talked about the future of Review Board, and
we felt it was time. We have some important topics to discuss.
*We Need Your Help*
We love working on this product. We began developing it in 2006, back
before GitHub and Pull Requests existed. Back when cod
Hello,
Using Python API Client, it's easy to get the data through a File Diff
Resource's get_diff_data function.
root = client.get_root()
files = root.get_files(review_requst_id=review_request_id, diff_revision=2)
diff_data = files[0].get_diff_data()
However, this is always from the perspective
Review Board can't give you a unified diff for the interdiff because
internally it never actually exists in that format.
You could assemble a diff yourself by downloading the "new" version of each
filediff from both diff revisions, and then running the `diff` command on
that content. There's an en