Apache hangs when searching

2009-04-07 Thread Vesterbaek
Hi, My setup: ubuntu 8.10 Reviewboard 1.0 beta2 apache2 pylucene 2.4.1 (downloaded source from apache and built) python 2.5.2 Problem: When executing a search in the web interface of reviewboard, apache hangs/deadlocks, using 100% cpu. Issue 770 seems to be about the same problem (http://code.go

Re: Clearcase

2009-04-07 Thread Lars Olsson
hi, my current status: post-review: - some smaller patches to post-review tool regading filename handling so it finds the files. - configuration of view and server name - removed "import cleartool" from clearcase.py - In Reviewboard UI, added a new tool for ClearCase using classes in clearcase.p

Re: Unable to get any images and .css files are not loaded

2009-04-07 Thread Chuck
On Apr 6, 5:25 pm, kmw wrote: ... > Figured it out: my url.rewrite rules were wrong, try this in the > lighttpd.conf, it should work > >     alias.url = ( >         "/media" => "/opt/reviewboard/var/www/localhost/htdocs/media", >         "/errordocs" => "/opt/reviewboard/var/www/localhost/htdocs/

django.core.exceptions.ImproperlyConfigured: MySQLdb-1.2.1p2 or newer is required; you have 1.2.1

2009-04-07 Thread Mohamed Mansour
Hello, I am getting errors while running the tool: rb-site install /var/www/reviews.example.com I have created the database, but have the following issues, any help is appreciated: * Installing the site... Building site directories ... OK Building site configuration files ... OK Creating databa

Re: django.core.exceptions.ImproperlyConfigured: MySQLdb-1.2.1p2 or newer is required; you have 1.2.1

2009-04-07 Thread Mohamed Mansour
Sorry, I forgot to say that I am using Red Hat Enterprise 5, on a new server. + On Apr 7, 1:35 pm, Mohamed Mansour wrote: > Hello, I am getting errors while running the tool: > rb-site install /var/www/reviews.example.com > > I have created the database, but have the following issues, any help >

post-review deployment

2009-04-07 Thread Vesterbaek
Hi, I would like to package the post-review tool (+ whatever dependencies there may be) into a zip that I can easily distribute to other developers running either linux or windows. It should be possible to simply download and unzip the file and directly call the post-review script. All developer

Re: post-review deployment

2009-04-07 Thread Christian Hammond
Go into rbtools and try running: python setup.py bdist_msi See if that works. It should generate a Windows installer for RBTools that you can hand out. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.review-board.org VMware, Inc. - http://www.vmware.com On Tue,

Re: django.core.exceptions.ImproperlyConfigured: MySQLdb-1.2.1p2 or newer is required; you have 1.2.1

2009-04-07 Thread Mohamed Mansour
I had to install new drivers for python. Thanks! On Apr 7, 1:36 pm, Mohamed Mansour wrote: > Sorry, I forgot to say that I am using Red Hat Enterprise 5, on a new > server. + > > On Apr 7, 1:35 pm, Mohamed Mansour wrote: > > > > > Hello, I am getting errors while running the tool: > > rb-site i

Re: Clearcase

2009-04-07 Thread Christian Hammond
To add support for diffing against any version, you need to implement the ClearCaseTool's get_file function to take into account the specified revision. If you can return the right revision from that, you should be good. That might have to do with why you're seeing the "old" version in both. You *

getting the max request id via the API

2009-04-07 Thread Kimon
I've been using the API to generate statistics. What I want to do is traverse through all the reviews (no matter what state) and generate my statistics. I can pretty much do this with api/json/reviewrequests// except for determining what the max id is. I wrote a function to do it using the follow

Fresh review board never lets me register or do anything...

2009-04-07 Thread riteshn
Hi This is our first time using the product as we review it if suits our needs. We plan to use it with Bazaar. I got the reviewboard and all the dependencies installed. Copying the modpython conf file to apache sites-available directory and when I go to the browser it shows up too. It is always

Re: Fresh review board never lets me register or do anything...

2009-04-07 Thread Christian Hammond
There's a bug that will be fixed in the next beta where registration is turned off by default yet appears on in the settings. You'll need to log in as the admin user you created during install, go into the admin UI -> General Settings, make sure registration is enabled, and hit Save. It should then

Re: getting the max request id via the API

2009-04-07 Thread Christian Hammond
The date range handler would be good, but I'd rather not have the maxid. However, there's another way we can do that. Update the handler for api/json/reviewrequests/all/ and let it take optional start and end ranges that work like Python's lists. I'd have to think how I want this API to look, but

Re: getting the max request id via the API

2009-04-07 Thread Kimon
Is there a similar call that's already in the codebase I can use as an example? On Apr 7, 7:38 pm, Christian Hammond wrote: > The date range handler would be good, but I'd rather not have the maxid. > However, there's another way we can do that. > > Update the handler for api/json/reviewrequests