Re: Update to RBTools 0.7.4, scripts to interface with reviewboard now error.

2015-07-07 Thread Jens Stobernack
Hi Christian, I have raised Bug #*3913 *. Regards, Jens. On Monday, July 6, 2015 at 5:36:20 PM UTC-4, Christian Hammond wrote: > > Hi Jens, > > It's possible that something regressed here. Would you mind filing a new > bug that we c

Re: RBTools: rbt post --diff-filename broken in 0.6.3 and 0.7.x

2015-07-07 Thread Steve
Hi Chris, Issue 3864 is preventing us from upgrading to 0.7.x. The issue prevents us from creating reviews for change lists already submitted. https://code.google.com/p/reviewboard/issues/detail?id=3864&q=seide&colspec=ID%20Type%20Status%20Priority%20Component%20Owner%20Summary%20Milestone Al

Re: It suddenly comes to "Data directory changes"

2015-07-07 Thread Christian Hammond
Hi, Do you have SELinux enabled? That might be causing the problems. Also, just in general, it'd be worth looking into moving away from fastcgi and toward wsgi. Fastcgi isn't going to be supported for too much longer, as the whole Python world has standardized on wsgi over the past few years.

LESS build error when compiling extension egg for reviewboard 2.0.15

2015-07-07 Thread Xy Sui
Hi, I'm trying to reuse some css style from reviewboard (version 2.0.15) in my extension. My extension less file is like: 1 @import (reference) "@{STATIC_ROOT}/rb/css/reviews.less"; 2 #acceptance-summary-table { 3 #issue-summary-table; 4 thead th { 5 background:url("@{STATIC_

How to set proxy for SVN repo

2015-07-07 Thread Qi Luo
I'm on RB 2.0.15, Ubuntu 14.04 I'm trying to add a SVN repo, unfortunately I need to set up a http proxy for accessing that svn repo. I've found nowhere to configure the proxy for review board. I've tried to add a global http proxy at /etc/environment, and also added proxy at /etc/subversion/se

Re: LESS build error when compiling extension egg for reviewboard 2.0.15

2015-07-07 Thread Christian Hammond
Hi, We recently fixed this problem. You'll need to upgrade to the latest version of Review Board. You should then be set to do the kinds of includes you want from .less files. Christian  -- Christian Hammond - christ...@beanbaginc.com Review Board - https://www.reviewboard.org Beanbag, I

Re: How to set proxy for SVN repo

2015-07-07 Thread Christian Hammond
Hi, Depending on your setup, you'll either need a SetEnv in your Apache config file, or you'll need to set the environment in your reviewboard.wsgi file (in $sitedir/htdocs/). You'll then need to restart the web server. See if that solves the problem. If not, we can look deeper into the setup.