The Future of Review Board

2024-10-09 Thread Christian Hammond
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

Is There a Way to Get Diff Data Using the API for InterDiffs?

2024-10-09 Thread Matthew Oldfield
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

Re: Is There a Way to Get Diff Data Using the API for InterDiffs?

2024-10-09 Thread David Trowbridge
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