Re: Review Board 2.0.2 is released

2014-06-13 Thread markdbeyer
Love the email enhancement but I don't see how to turn it on.. Is there a button on the review or is it a global setting or what ? Thanks! On Thursday, June 12, 2014 6:50:16 PM UTC-7, Christian Hammond wrote: Hey everyone, We just put out Review Board 2.0.2, which fixes a number of bugs

Re: After installation of reviewboard, I am not able to see the site instead I can see only the directory structure

2014-05-22 Thread markdbeyer
Manoj, did you restart httpd and memcached ? I didn't see it in your log. Mark Beyer On Thursday, May 22, 2014 2:34:23 AM UTC-7, Manoj Kumar wrote: Following are the steps that I have performed while setting up the site.But I am unable to access the site. * Welcome to the Review Board

Re: I am only see the directory listed on my site.

2014-04-08 Thread markdbeyer
easy_install -U ReviewBoard I believe that's the recommended method. On Tuesday, April 8, 2014 3:57:27 PM UTC-7, Alex Winter wrote: Bump! -- Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/ --- Sign up for Review Board hosting at RBCommons: https://rbcommons.com/ ---

Re: Cannot link github account

2014-04-07 Thread markdbeyer
Doesn't git authenticate with ssh keys ? After a reinstall I would think they might have changed... On Monday, April 7, 2014 7:57:08 AM UTC-7, Gytis wrote: Have been using Reviewboard 1.7.21 for 3 months wih github. All was ok. But had to recover after postgresql migration gone bad. Now

Re: I am only see the directory listed on my site.

2014-04-01 Thread markdbeyer
I had dueling Python versions installed on CentOS, 2.6 and 2.7. I spent a while trying to get pysvn to work. It turned out to be easier to remove python 2.7 and start over. $.02 On Monday, March 31, 2014 11:00:25 AM UTC-7, Christian Hammond wrote: You just have to reinstall the Review

Re: Ideas needed regarding to RB bug tracker integration

2014-02-11 Thread markdbeyer
I have integrated RB with our bug tracker, a heavily customized version of GNATS. I modified the RBBugTracker extension published by a student, I believe, a few years back. That extension was built for google code, though the extension has a plug-in architecture so I added one for GNATS. It

Re: Required vs Optional Reviewers

2014-02-04 Thread markdbeyer
To mimic your email practice, about creating review groups containing all reviewers and then specifically calling out required reviewers in target-people ? You could enforce that policy via an external API or an extension. We don't use the above policy exactly, but we do have a script that

Re: post-review only update testing-done field for existing request

2014-01-23 Thread markdbeyer
How about from rbtools.api.client import RBClient server_url = https://server root # choose the review request Id # RRId=some review request number # choose the field to update RRDField=changedescription # the value to set RRDValue=This is a change description # connect to the server

Re: post-review only update testing-done field for existing request

2014-01-23 Thread markdbeyer
Yep, much better not to use eval(). thanks. On Thursday, January 23, 2014 1:40:26 PM UTC-8, Christian Hammond wrote: For the update call, instead of using eval, just do: fields = { RRDField: RRDValue, } draft.update(fields) or: draft.update(**{

rbtools: Could not load SCM Client ?

2014-01-23 Thread markdbeyer
One of my users is getting the error message below when posting a review. The post succeeds. rbt post --debug 123456 ERROR:root:Could not load SCM Client svn: No module named etree ERROR:root:Could not load SCM Client git: No module named etree ERROR:root:Could not load SCM Client mercurial: No

Re: rbtools: Could not load SCM Client ?

2014-01-23 Thread markdbeyer
oh it's rb tools v0.5.5 On Thursday, January 23, 2014 3:14:58 PM UTC-8, markd...@gmail.com wrote: One of my users is getting the error message below when posting a review. The post succeeds. rbt post --debug 123456 ERROR:root:Could not load SCM Client svn: No module named etree

Re: rbtools: Could not load SCM Client ?

2014-01-23 Thread markdbeyer
ah right, and we were using Perforce. Still I can fix the Python version easy enough. Thanks, Christian ! On Thursday, January 23, 2014 3:17:48 PM UTC-8, Christian Hammond wrote: That should definitely be an error. That means Subversion (and Git and Mercurial) should be broken. I gather

Re: Review Board 1.7.21 is released

2014-01-16 Thread markdbeyer
Bueno! But I did get this message on rb-site upgrade. I don't recall doing anything tricky with this server nor do I recall a message about evolutions on previous upgrades. FWIW the server seems to be working fine, for now. -- rb-site upgrade

Re: Review Board 1.7.21 is released

2014-01-16 Thread markdbeyer
Bueno! But I did get this message on rb-site upgrade. I don't recall doing anything tricky with this server nor do I recall a message about evolutions on previous upgrades. FWIW the server seems to be working fine, for now. -- rb-site upgrade /var/www/site root/

Re: RBTools 0.5.4 is released

2014-01-16 Thread markdbeyer
Nice, thanks. But issue 3184 is still a problem. Prevents use of rbt post with perforce repos. I don't know of a workaround. Mark On Tuesday, January 14, 2014 4:08:44 PM UTC-8, Christian Hammond wrote: Hi everyone, We just put out RBTools 0.5.4. It has some bug fixes for rbt patch,

Re: RBTools 0.5.4 is released

2014-01-16 Thread markdbeyer
Actually rbt post does work now. My error. But rbt status still fails with the revision_range problem. -- Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/ --- Sign up for Review Board hosting at RBCommons: https://rbcommons.com/ --- Happy user? Let us know at

Re: RBTools 0.5.4 is released

2014-01-16 Thread markdbeyer
Not a problem. Thanks, Chris! On Thursday, January 16, 2014 12:55:23 PM UTC-8, Christian Hammond wrote: Sorry Mark. I'll get that in today for the next release. If you don't mind building your own RBTools package, you'll see a fix by tonight. Christian -- Christian Hammond -

Re: Email notifications not sent when review comments are added.

2014-01-13 Thread markdbeyer
Anything unusual in the sendmail log, e.g. /var/log/maillog ? On Sunday, January 12, 2014 7:47:51 PM UTC-8, shravanthi s wrote: Hi, Some of our users are complaining that they are not getting any mail notifications when review comments are added to an ongoing review. However these users

Re: LDAP auth requires anonymous bind

2014-01-07 Thread markdbeyer
Yes it certainly is. Thanks, Sam! On Tuesday, January 7, 2014 4:15:25 PM UTC-8, Stephen Gallagher wrote: On 01/07/2014 06:35 PM, markd...@gmail.com javascript: wrote: Hi Sam. Thanks for looking at the LDAP config. I've never quite understood it fully. If you don't mind I'd like to

Re: How to add ssh key to gitlab ?

2013-12-20 Thread markdbeyer
Hi Walt. Yes, the service account worked once I installed the keys. For some odd reason you can't just cut-and-paste the SSH key from RB to gitlab. You have to past into an editor, remove the newlines and paste into git. ugh. Not sure if it's a browser issue (I have FF/mac). Then, just FYI, I

Re: How to add ssh key to gitlab ?

2013-12-20 Thread markdbeyer
Oh, by they way I did NOT have to use a local clone. Cheers! Mark On Friday, December 20, 2013 11:05:02 AM UTC-8, markd...@gmail.com wrote: Hi Walt. Yes, the service account worked once I installed the keys. For some odd reason you can't just cut-and-paste the SSH key from RB to gitlab.

Re: How to add ssh key to gitlab ?

2013-12-20 Thread markdbeyer
Excellent, we look forward to it. Thanks, Christian! On Friday, December 20, 2013 1:51:48 PM UTC-8, Christian Hammond wrote: FYI, I'm going to look into formal support for GitLab for the upcoming 1.7.21 release. Christian -- Christian Hammond - chi...@chipx86.com javascript: Review

How to add ssh key to gitlab ?

2013-12-19 Thread markdbeyer
Hi, all. When adding a git repo to RB, how do you add the RB ssh key to the gitlab server ? I'm not sure which gitlab account to use. If you don't specify an user/password to the git repo, does RB authenticate to gitlab as user git ? Thanks Mark -- Get the Review Board Power Pack at

Re: Help!! No module named django.core.handlers.wsgi

2013-12-05 Thread markdbeyer
I just had this problem and it turned out to be that I had a mod_wsgi compiled with python 2.6 but the RB installation was on a system using python 2.7. The solution was to manually compile and install mod_wsgi with python 2.7. When you start the httpd server it should say which version

Display git commit hash ID ?

2013-11-20 Thread markdbeyer
Hi, all. For git repositories is there a way to display the commit hash ID in the UI ? I know it shows up when you display the diff but I have a user who'd like to see it somewhere near the Repository field. Maybe that's doable as a simple UI extension ? Thought I'd ask before embarking on

Re: Display git commit hash ID ?

2013-11-20 Thread markdbeyer
Thanks, Christian ! On Wednesday, November 20, 2013 3:39:44 PM UTC-8, Christian Hammond wrote: Hey Mark, In theory, an extension can provide this, but there aren't any official hooks for doing so yet. That's something that'd be worth having, though. It should be possible to add a column

Re: Display git commit hash ID ?

2013-11-20 Thread markdbeyer
Yes sharing is the way to go :-) Working on that.. Mark On Wednesday, November 20, 2013 4:01:12 PM UTC-8, Matthew Woehlke wrote: On 2013-11-20 18:26, markd...@gmail.com javascript: wrote: For git repositories is there a way to display the commit hash ID in the UI ? I know it shows up

Re: What's coming for 2.0 (Was: Re: Publish changes without e-mail notification)

2013-10-18 Thread markdbeyer
Sounds cool! Would you expect the revised extension framework to be backwards compatible with 1.7 extensions ? thanks Mark On Thursday, October 17, 2013 1:19:56 PM UTC-7, Christian Hammond wrote: On Thu, Oct 17, 2013 at 12:43 PM, Matthew Woehlke mwoehlk...@gmail.comjavascript: wrote: