Re: ReviewBoard is taking a nap on localhost

2013-12-11 Thread Áron Paulik
I'm installing from a modified source. But I think I had better start over and watch out for every step... -- 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: how to install plugins on review board

2013-12-11 Thread abc123
Hi I am trying to write a simple extension which will add an entry abc to the navigation bar on review board. extension.py file: from django.conf import settings from django.conf.urls.defaults import patterns, include from reviewboard.extensions.base import Extension from

Re: how to install plugins on review board

2013-12-11 Thread Raja
If Its installed successfully, you can go to the Administration menu and click on the Extensions menu in the top-navigation. If the extension install was successful, you should be able to see your extension in that list. Enable it to activate the extension. Regards Raja On Wed, Dec 11, 2013

Which recommended Apache MPM to use with Reviewboard + extensions

2013-12-11 Thread Vincent G.
Hi, I would like to know which Apache MPM is recommended to use with Reviewboard ? MPM Fork or MPM Worker ? Because i have some issues when i use Apache MPM worker with Reviewboard Extensions (read my other topic Djblets _isexpired() issues) in case of *wsgi.multithread = True*

Re: Review Board 1.7.20 is out

2013-12-11 Thread victoria
Hi, Review Board 1.7.20 is already available in Bitnami as well. http://bitnami.com/stack/reviewboard Best regards, Victoria. On Tue, Dec 10, 2013 at 10:19 AM, Christian Hammond chip...@chipx86.comwrote: Hey everyone, We have a small bug fix release out. 1.7.20 fixes issues with JSON

Re: ReviewBoard is taking a nap on localhost

2013-12-11 Thread Christian Hammond
If you're going to install from source, I recommend building an egg, just as we do, and installing from that. You can build it with: ./setup.py bdist_egg release You will need nodejs, uglifyjs, and lessc installed. There will be more requirements in future releases. Christian -- Christian

Re: Which recommended Apache MPM to use with Reviewboard + extensions

2013-12-11 Thread Christian Hammond
Hi Vincent, We've been using prefork without any problems for years. That seems to be the common setup. I saw your other e-mail but haven't had time to dive into it yet. Pretty swamped this week. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org

Post-review: How to specify the reviewboard repository in post-review comm

2013-12-11 Thread Mike Forsberg
I'm having trouble specifying the review board repository to which my changes are based. Using post-review, I can make diff by the command post-review -n ~/blah.diff and post it using the GUI. However, I think post-review is having trouble identifying the reviewboard repository. Like I

Re: Post-review: How to specify the reviewboard repository in post-review comm

2013-12-11 Thread Mike Forsberg
Thank you Christian... will let you know if that works. On Wed, Dec 11, 2013 at 3:18 PM, Christian Hammond chip...@chipx86.comwrote: Hi Mike, The recommended setup is to have a .reviewboardrc file in the repository with: REPOSITORY = repository name Where repository name is the name

Re: how to install plugins on review board

2013-12-11 Thread abc123
Hi, Thanks for the reply. when i click on enable it gives me an error like object does not exist. Can you please help. On Wednesday, 11 December 2013 16:46:21 UTC+5:30, Raja wrote: If Its installed successfully, you can go to the Administration menu and click on the Extensions menu in the

Re: how to install plugins on review board

2013-12-11 Thread Raja
First off, I think for the task that you are trying to achieve(adding a menu to navigation bar), there are elements in the Extension class that are not required. Please look at http://www.reviewboard.org/docs/manual/dev/extending/extensions/hooks/#navigationbarhook for adding an entry to the

Re: embed the configuration file in your global Apache configuration file

2013-12-11 Thread David Trowbridge
All that means is to copy the content of the apache-wsgi.conf file into the apache config file. -David On Wed, Dec 11, 2013 at 9:55 PM, Alokkumar Thakur alok299...@gmail.comwrote: Dear all I need a help from all kindly reply for bellow problem. If you have a sites-available directory in

Re: embed the configuration file in your global Apache configuration file

2013-12-11 Thread Alokkumar Thakur
we have to add/copy the apache-wsgi.conf into /etc/httpd/conf/httpd.conf , i need how to copy/add into httpd.conf where and what changes i have to do ? On Thursday, 12 December 2013 11:31:42 UTC+5:30, David Trowbridge wrote: All that means is to copy the content of the apache-wsgi.conf file

Re: embed the configuration file in your global Apache configuration file

2013-12-11 Thread David Trowbridge
It's just editing the text files. See http://httpd.apache.org/docs/2.2/configuring.html for more information on manipulating apache configurations. -David On Wed, Dec 11, 2013 at 10:13 PM, Alokkumar Thakur alok299...@gmail.comwrote: we have to add/copy the apache-wsgi.conf into

Re: embed the configuration file in your global Apache configuration file

2013-12-11 Thread Alokkumar Thakur
i know how to do in html/directory link but here it is like reviews.example.com and i cant find any where what change i have to do so if u know then give instruction what changes i have to do . On Thursday, 12 December 2013 11:46:06 UTC+5:30, David Trowbridge wrote: It's just editing the text

Re: embed the configuration file in your global Apache configuration file

2013-12-11 Thread David Trowbridge
It sounds like you need to do a lot of reading up on how to install and configure the apache web server. We can't give you specific instructions because there are a huge number of variations in environment/software/configuration/etc. -David On Wed, Dec 11, 2013 at 10:28 PM, Alokkumar Thakur

Re: how to install plugins on review board

2013-12-11 Thread Raja
You dont need the self.settings.load() and the self.url. Also, no need to instantiate the extension using j = Notification(), This is done for you automatically by the extension loader. I would create a basic extension with the code in

Re: Issue 3018 in reviewboard: post-review can't find source code repository when using TortoiseSVN

2013-12-11 Thread reviewboard
Comment #4 on issue 3018 by kova...@gmail.com: post-review can't find source code repository when using TortoiseSVN http://code.google.com/p/reviewboard/issues/detail?id=3018 I have the same issue with RBTools 0.4.2, 0.4.3, and 0.5.2, Python 2.6 and 2.7 I'm tried old new svn's versions

Re: Issue 3018 in reviewboard: post-review can't find source code repository when using TortoiseSVN

2013-12-11 Thread reviewboard
Comment #5 on issue 3018 by kova...@gmail.com: post-review can't find source code repository when using TortoiseSVN http://code.google.com/p/reviewboard/issues/detail?id=3018 J'm tried different version of RBTools (0.4.2, 0.4.3, 0.5.2) and Python (2.6, 2.7) Also I'm tried to use old and

Re: Issue 3068 in reviewboard: Click admin Review board Activity buttons when box is minimized send a crash email.

2013-12-11 Thread reviewboard
Updates: Status: PendingReview Owner: trowb...@gmail.com Comment #1 on issue 3068 by trowb...@gmail.com: Click admin Review board Activity buttons when box is minimized send a crash email. http://code.google.com/p/reviewboard/issues/detail?id=3068 (No comment was entered

Re: Issue 3122 in reviewboard: Set depends_on field using post-review

2013-12-11 Thread reviewboard
Updates: Status: Duplicate Mergedinto: 3074 Comment #2 on issue 3122 by trowb...@gmail.com: Set depends_on field using post-review http://code.google.com/p/reviewboard/issues/detail?id=3122 (No comment was entered for this change.) -- You received this message because this

Re: Issue 3074 in reviewboard: rbt post should allow for setting Depends On field

2013-12-11 Thread reviewboard
Comment #1 on issue 3074 by trowb...@gmail.com: rbt post should allow for setting Depends On field http://code.google.com/p/reviewboard/issues/detail?id=3074 Issue 3122 has been merged into this issue. -- You received this message because this project is configured to send all issue

Re: Issue 3074 in reviewboard: rbt post / post-review should allow for setting Depends On field

2013-12-11 Thread reviewboard
Updates: Summary: rbt post / post-review should allow for setting Depends On field Owner: ste...@smacleod.ca Comment #2 on issue 3074 by trowb...@gmail.com: rbt post / post-review should allow for setting Depends On field

Re: Issue 3064 in reviewboard: Installing djblets using pip and Django 1.5 fails

2013-12-11 Thread reviewboard
Updates: Status: Fixed Comment #4 on issue 3064 by trowb...@gmail.com: Installing djblets using pip and Django 1.5 fails http://code.google.com/p/reviewboard/issues/detail?id=3064 OK, after reading a little bit more closely, the issue is actually that django-pipeline was not

Re: Issue 3068 in reviewboard: Click admin Review board Activity buttons when box is minimized send a crash email.

2013-12-11 Thread reviewboard
Updates: Status: Fixed Comment #2 on issue 3068 by trowb...@gmail.com: Click admin Review board Activity buttons when box is minimized send a crash email. http://code.google.com/p/reviewboard/issues/detail?id=3068 Fixed in release-1.7.x (ca69dfd). Thanks! -- You received this

Re: Issue 3084 in reviewboard: Import Error of django.core.handlers.wsgi

2013-12-11 Thread reviewboard
Updates: Status: Incomplete Comment #3 on issue 3084 by trowb...@gmail.com: Import Error of django.core.handlers.wsgi http://code.google.com/p/reviewboard/issues/detail?id=3084 (No comment was entered for this change.) -- You received this message because this project is configured

Re: Issue 3138 in reviewboard: Implied reviewers don't get review notification email when it is created initially

2013-12-11 Thread reviewboard
Updates: Status: ThirdParty Comment #10 on issue 3138 by trowb...@gmail.com: Implied reviewers don't get review notification email when it is created initially http://code.google.com/p/reviewboard/issues/detail?id=3138 After some discussion with eyuwang, it sounds like the groups in

Re: Issue 3115 in reviewboard: git diff must implicitly use --full-index when generating diffs

2013-12-11 Thread reviewboard
Updates: Status: Incomplete Comment #3 on issue 3115 by trowb...@gmail.com: git diff must implicitly use --full-index when generating diffs http://code.google.com/p/reviewboard/issues/detail?id=3115 (No comment was entered for this change.) -- You received this message because this

Re: Issue 3018 in reviewboard: post-review can't find source code repository when using TortoiseSVN

2013-12-11 Thread reviewboard
Comment #7 on issue 3018 by kova...@gmail.com: post-review can't find source code repository when using TortoiseSVN http://code.google.com/p/reviewboard/issues/detail?id=3018 I'm tried (windows 7): TortoiseSVN 1.7.13, Build 24257 - 64 Bit, RapidSVN 0.9.6 BTW the same script successfully

Re: Issue 3156 in reviewboard: New Review page is blank

2013-12-11 Thread reviewboard
Comment #23 on issue 3156 by tjbut...@gmail.com: New Review page is blank http://code.google.com/p/reviewboard/issues/detail?id=3156 On the possibility that I had an installation problem, I attempted a clean re-install. I fetched the git bundles from 4 hours ago, erased my site setup, and

Re: Issue 3107 in reviewboard: Negative count of requests

2013-12-11 Thread reviewboard
Updates: Status: New Comment #3 on issue 3107 by trowb...@gmail.com: Negative count of requests http://code.google.com/p/reviewboard/issues/detail?id=3107 (No comment was entered for this change.) -- You received this message because this project is configured to send all issue

Re: Issue 3109 in reviewboard: permissions to submit review request

2013-12-11 Thread reviewboard
Updates: Status: Incomplete Comment #2 on issue 3109 by trowb...@gmail.com: permissions to submit review request http://code.google.com/p/reviewboard/issues/detail?id=3109 (No comment was entered for this change.) -- You received this message because this project is configured to