review-board

Automating Review Requests with ReviewBoard and Mercurial using Python hooks

对着背影说爱祢 提交于 2020-01-22 10:07:42
问题 Here is my problem: I got a remote mercurial repository where the hook is gonna be setup either incoming or changegroup, and I got a ReviewBoard setup on a different server. The idea is to automate review request tickets generation upon push from devs into the remote repository. Of course, I would need a hook that invoke post-review that also uses submit-as user which extracted using the mercurial api (ctx.user()), or else all the review requests tickets would be in the name of the user that

Automating Review Requests with ReviewBoard and Mercurial using Python hooks

∥☆過路亽.° 提交于 2020-01-22 10:07:06
问题 Here is my problem: I got a remote mercurial repository where the hook is gonna be setup either incoming or changegroup, and I got a ReviewBoard setup on a different server. The idea is to automate review request tickets generation upon push from devs into the remote repository. Of course, I would need a hook that invoke post-review that also uses submit-as user which extracted using the mercurial api (ctx.user()), or else all the review requests tickets would be in the name of the user that

rbt setup-repo returns with error

独自空忆成欢 提交于 2020-01-04 21:38:11
问题 I am using git as my code repository. While trying to setup the review board server form git cmd line rbt returns with the below error: ERROR: Could not load SCM Client "git": [Error 2] The system cannot find the file specified ERROR: The current directory does not contain a checkout from a supported source code repository. I have some files modified on the client. I am new to git, so I am not sure if its to do with some error in git installation or not. Although my git commands are all

review board diff not uploading

故事扮演 提交于 2019-12-30 05:23:08
问题 i am currently attempting to do a diff using review board but keep getting an ambiguous error message: Error uploading diff Your review request still exists, but the diff is not attached. The debug messages do not give much away either, no errors whatsoever.... >>> RBTools 0.4.1 >>> Home = /home/tom >>> HTTP GETting api/ >>> HTTP GETting http://127.0.0.1/api/info/ >>> Using the new web API Index: /trunk/0.1/scripts/configure-apache.sh ==========================================================

Mercurial ReviewBoard and post-review

感情迁移 提交于 2019-12-24 10:02:21
问题 so here is the story so far, I have installed review board on linux environment, I have configured everything, installed post-review and it works... What does not work is the repository. Our repository was migrated at some point from SVN to mercurial, then there were lot of crude file management made like moving files around without hg move. So what I wanted was to run a script that would gather and post reviews for every cset containing more than two parents (every cset that was merged to

Apache multiple virtual hosts on the same same ip(diffrent url's)

随声附和 提交于 2019-12-24 01:01:35
问题 I have 2 virtual hosts(bugzilla and board review) on an apache server sitting inside an ubuntu machine. I have one external ip address I can use(with one port enabled) so I can't assign different host names or different ports for the virtual hosts.(correct me if I'm wrong) I want the user to be able to write the following: http://ip-address:port/bugzilla and for the requests to go to bugzilla and for requests from http://ip-address:port/review to go to the review board. I tried reverse

Git hooks - propagating from remote repository?

梦想与她 提交于 2019-12-22 04:17:12
问题 I'm currently looking to convert an existing SVN repository to git, and then to use Reviewboard for reviews before allowing pushes. I've only recently started using git and am far from an expert on it, however what I would like to do is have a pre-push hook which runs "post-review" to submit the changes to ReviewBoard. I have a hook working that will do this, however it looks like this is not propagated automatically to clones of the repository. Reading around it sounds like this isn't done

Automatic commit of an approved diff in Review Board

五迷三道 提交于 2019-12-13 13:31:24
问题 When I approve a review request in Review Board, can it be configured in such a fashion that it commits the diff file to the SVN automatically? 回答1: To the best of my knowledge, this is not possible in the current release of Review Board. The repository may have been committed to since the time of the review posting, and this means applying of the diff might fail. Since reviews usually take some time, I suppose this feature would not be feasible in general use, barring marginal cases of

post a diff between svn branch and a tag on review board

北城以北 提交于 2019-12-12 12:37:52
问题 I want to post an SVN diff to the review board; the diff is generated between the branch HEAD and the base tag. I used this command to generate the diff file : svn diff https:/path/to/branch/head https:/path/to/tag note that i tried to use rbt diff revision1:revision2 command to generate the diff. I have a problem that review board only accepts revision range within the branch commits only (not accepting revision from tags). i tried to diff using the svn diff command then upload the file

Automating SVN pre-commit to Review Board and then Commit to SVN after approval [closed]

喜欢而已 提交于 2019-12-09 22:40:22
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . My objective is to use SVN pre-commit hook to post a review request directly to reviewboard instead of committing it to repository. As second step I want that on approval of a diff it should automatically go to repository. is that possible to do ? If yes then some pointers will be