review-board

ReviewBoard installation on ubuntu 12.04

喜欢而已 提交于 2019-12-07 17:58:52
问题 I'm trying to install ReviewBoard on ubuntu 12.04 using easy_install. http://www.reviewboard.org/docs/manual/1.7/admin/installation/linux/ I tried above instruction step by step, but stucked in easy_install ReviewBoard Error message is this: Traceback (most recent call last): File "/usr/local/bin/easy_install", line 9, in <module> load_entry_point('distribute', 'console_scripts', 'easy_install')() File "/usr/local/lib/python2.7/dist-packages/setuptools-0.8-py2.7.egg/pkg_resources.py", line

ReviewBoard installation on ubuntu 12.04

时光毁灭记忆、已成空白 提交于 2019-12-05 18:22:06
I'm trying to install ReviewBoard on ubuntu 12.04 using easy_install. http://www.reviewboard.org/docs/manual/1.7/admin/installation/linux/ I tried above instruction step by step, but stucked in easy_install ReviewBoard Error message is this: Traceback (most recent call last): File "/usr/local/bin/easy_install", line 9, in <module> load_entry_point('distribute', 'console_scripts', 'easy_install')() File "/usr/local/lib/python2.7/dist-packages/setuptools-0.8-py2.7.egg/pkg_resources.py", line 378, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/usr/local/lib

Git hooks - propagating from remote repository?

∥☆過路亽.° 提交于 2019-12-05 04:39:58
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 to prevent forcing executable code on a user, however this is an internal-only repository and we want to

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

此生再无相见时 提交于 2019-12-04 17:10:39
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 appreciated. There are lots of places where configuring post-commit is explained but I could not find anything on Google. EDIT: Trying to elaborate the problem So recently we have done setup for review board. We did its integration with SVN using review boards post-review hook. As soon as user commits with "publish

Automating Review Requests with ReviewBoard and Mercurial using Python hooks

萝らか妹 提交于 2019-12-03 05:09:21
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 connects the remote repository to the reviewboard server. My main dilemma is actually getting the start

Installing mysql-libs on server with MySQL-Server5.5

耗尽温柔 提交于 2019-12-01 06:49:47
I'm trying to install ReviewBoard on my server, but I keep on getting the following errors. file /usr/share/mysql/greek/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 file /usr/share/mysql/hungarian/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 file /usr/share/mysql/italian/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 The OS is Centos 6. Could

Installing mysql-libs on server with MySQL-Server5.5

空扰寡人 提交于 2019-12-01 05:33:57
问题 I'm trying to install ReviewBoard on my server, but I keep on getting the following errors. file /usr/share/mysql/greek/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 file /usr/share/mysql/hungarian/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 file /usr/share/mysql/italian/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4

review board diff not uploading

淺唱寂寞╮ 提交于 2019-11-30 16:36:26
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 =================================================================== --- /trunk/0.1/scripts/configure-apache.sh (revision 143) +++ /trunk/0.1/scripts/configure

Creating a git diff from nothing

自古美人都是妖i 提交于 2019-11-30 12:51:52
问题 I am trying to create a patch file to be used via reviewboard. It will be the initial patch. diff -ruN --exclude=.git empty_dir working_dir > mypatch_00.patch works but I am getting a "The selected file does not appear to be a diff." error. Is there any way to get it working using git-diff or diff? Thank you 回答1: If you want to get diff for your initial commit (maybe I misunderstood your question), you can display it using git show COMMIT Alternatively to get it as file: git format-patch -1