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 http://ww

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 reviewboard.extension

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, 201

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* wsgi.multiproces

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 wrote: > Hey everyone, > > We have a small bug fix release out. 1.7.20 fixes issues with JSON fields > in the admi

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 Bea

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 sa

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

2013-12-11 Thread Christian Hammond
Hi Mike, The recommended setup is to have a .reviewboardrc file in the repository with: REPOSITORY = "" Where "" is the name assigned to that repository on Review Board. That way, it doesn't have to match the repository path, which it sounds like may have changed, and can instead do a direc

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 wrote: > Hi Mike, > > The recommended setup is to have a .reviewboardrc file in the repository > with: > > REPOSITORY = "" > > Where "" is the name assigned to that repository on > Revi

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 th

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 naviga

embed the configuration file in your global Apache configuration file

2013-12-11 Thread Alokkumar Thakur
Dear all I need a help from all kindly reply for bellow problem. If you have a sites-available directory in your Apache configuration directory (for example, /etc/apache2/sites-available, then you should rename your configuration file to match your site (e.g., reviews.example.com.conf) and

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 wrote: > Dear all > > I need a help from all kindly reply for bellow problem. > > If you have a sites-available directory in your Apache confi

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 fil

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 wrote: > we have to add/copy the apache-wsgi.conf into /etc/httpd/conf/httpd.conf > , i

Re: how to install plugins on review board

2013-12-11 Thread abc123
Hi , i have removed the is_configurable and admin urls part: below is the my code: from django.conf import settings from django.conf.urls.defaults import patterns, include from reviewboard.extensions.base import Extension from reviewboard.extensions.hooks import NavigationBarHook class Notificat

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 tex

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 wrot

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 http://www.reviewboard.org/docs/manual/dev/extending/extension