Re: Installing PyLucene on Windows

2009-10-20 Thread Christian Hammond
I've seen Haystack but haven't looked into it very much. I'll take a look at
these and see what we want to do from here on out. Maybe for 1.2.

Thanks,

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Oct 20, 2009 at 3:58 PM, Chris Clark  wrote:

>
> Christian Hammond wrote:
> > At the time we wrote search, this functionality didn't exist. However,
> > it's still too limited for our needs.
> > .
> > I'm hoping to find a better solution in the long term, but I don't
> > believe that the native database full text search is it. Now, maybe if
> > we developed a custom solution that provided tables for storing the
> > pre-processed search indexes and then searched from that using full
> > text search. If we go this route, what I'd like to do is split off the
> > search functionality into its own django app in our tree
> > (reviewboard.search) and add a backends directory with different
> > search backends (fulltextdb.py, pylucene.py). We'd then need a nice
> > API that wraps the backends. I'd be all for a solution like this.
>
> Have you seen Haystack? http://haystacksearch.org/ - specific to Django
> (models) with a few different search backends implemented.
>
> The closest/similar thing is http://swapoff.org/pyndexter which is not
> Django specific (but has not been updated in a while).
>
> Chris
>
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Database Migration from RB-Beta to RB-1.0.3

2009-10-20 Thread Christian Hammond
Hi,

We use a database schema migration tool called django-evolution, which
rb-site invokes on upgrades. You should be able to move your existing
database and site installation over to the new server, install the new
Review Board 1.0.4, and run rb-site upgrade on the site directory.

Of course, make sure you have a backup in case anything goes wrong.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Oct 20, 2009 at 4:14 PM, Kunjal  wrote:

>
> Hello,
>
> We have existing RB-Beta setup on linux machine.
> We have MySql database with lots of review data. (20,000 +)
> Now, as more and more team are comply with ReviewBoard usage, we want
> to move foraward with RB 1.0.3.
>
> We have purchased new server to install latest version. My issue is
> how the existing database from RB-Beta verison will migrate to
> RB-1.0.3?
>
> Do you provide any tool utility to export database tables in such a
> way that if you have introduce any new tables as part of latest 1.0.3
> release, our data still remains ok?
>
> Thanks
> Kunjal
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Database Migration from RB-Beta to RB-1.0.3

2009-10-20 Thread Kunjal

Hello,

We have existing RB-Beta setup on linux machine.
We have MySql database with lots of review data. (20,000 +)
Now, as more and more team are comply with ReviewBoard usage, we want
to move foraward with RB 1.0.3.

We have purchased new server to install latest version. My issue is
how the existing database from RB-Beta verison will migrate to
RB-1.0.3?

Do you provide any tool utility to export database tables in such a
way that if you have introduce any new tables as part of latest 1.0.3
release, our data still remains ok?

Thanks
Kunjal

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Installing PyLucene on Windows

2009-10-20 Thread Chris Clark

Christian Hammond wrote:
> At the time we wrote search, this functionality didn't exist. However, 
> it's still too limited for our needs.
> .
> I'm hoping to find a better solution in the long term, but I don't 
> believe that the native database full text search is it. Now, maybe if 
> we developed a custom solution that provided tables for storing the 
> pre-processed search indexes and then searched from that using full 
> text search. If we go this route, what I'd like to do is split off the 
> search functionality into its own django app in our tree 
> (reviewboard.search) and add a backends directory with different 
> search backends (fulltextdb.py, pylucene.py). We'd then need a nice 
> API that wraps the backends. I'd be all for a solution like this.

Have you seen Haystack? http://haystacksearch.org/ - specific to Django 
(models) with a few different search backends implemented.

The closest/similar thing is http://swapoff.org/pyndexter which is not 
Django specific (but has not been updated in a while).

Chris


--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Installing PyLucene on Windows

2009-10-20 Thread Christian Hammond
Hi Nathan,

At the time we wrote search, this functionality didn't exist. However, it's
still too limited for our needs.

First of all, not all databases that we support are supported by the full
text search, meaning that some users would be left out.

It makes development harder, since we develop and run nightly tests against
sqlite, and doing any development/testing with search would mean we'd have
to change our development/test infrastructure to use a database backend that
supports it.

Also, our search supports a number of search prefixes (file:, author:, etc),
which we can't fully implement with the full text seach. The reason for this
is that some of these are actually using pre-processed data that doesn't
exist in the database as something easily indexable. We want all results to
be tied to a particular review request. This is difficult in the cases of,
say, file searching and bug number search.

By default, we search a blob consisting of the summary, description, testing
done, bugs (in a normalized form), submitter name (joined with the full
name), and a normalized list of files. If we use full text search, we need
to now parse the search string, do possibly expensive searches based on all
those prefixes that we find in the string, and do a union of all those
results with anything from that blob (which requires searching all those
fields individually). This gets pretty hairy, fast.

What we really want to do is pre-process all the results into a search index
and search from that. PyLucene gives us this. Yes, it's a pain to install,
and I hate it as much as anyone else who has tried to install it, but it
does give us the functionality we need.

I'm hoping to find a better solution in the long term, but I don't believe
that the native database full text search is it. Now, maybe if we developed
a custom solution that provided tables for storing the pre-processed search
indexes and then searched from that using full text search. If we go this
route, what I'd like to do is split off the search functionality into its
own django app in our tree (reviewboard.search) and add a backends directory
with different search backends (fulltextdb.py, pylucene.py). We'd then need
a nice API that wraps the backends. I'd be all for a solution like this.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Oct 20, 2009 at 1:07 PM, Nathan Auch [Sybase] wrote:

>
> Hi Christian,
>
> Out of curiosity, have you already tried using Django's interface to
> database-based full text search?
>
> http://docs.djangoproject.com/en/dev/ref/models/querysets/#search
>
> I ask because we are running (a slightly modified) Review Board on top
> of a Sybase SQL Anywhere database. This thread reminded me that I had
> wanted to modify the search to use SQL Anywhere's full text indexes. Is
> there was any specific reason you opted against this approach?
>
> Thanks!
>
> Nathan Auch
> Sybase iAnywhere
>
> Christian Hammond wrote:
> > No, but good luck with it :)
> >
> > I really would like to find a good replacement for PyLucene. It's a
> > royal pain to install.
> >
> > Christian
> >
> > --
> > Christian Hammond - chip...@chipx86.com 
> > Review Board - http://www.review-board.org
> > VMware, Inc. - http://www.vmware.com
> >
> >
> > On Wed, Oct 14, 2009 at 5:35 AM, Thilo-Alexander Ginkel
> > mailto:th...@ginkel.com>> wrote:
> >
> >
> > Hello everyone,
> >
> > I was thinking about adding search support to our Review Board
> > installation, which would require the installation of PyLucene. Has
> > somebody succeeded in getting this working on a Windows-based
> > platform?
> >
> > Thanks,
> > Thilo
> >
> > To unsubscribe from this group, send email to
> > 
> > reviewboard+unsubscr...@googlegroups.com
> > 
> >  >
> > For more options, visit this group at
> > http://groups.google.com/group/reviewboard?hl=en
> > -~--~~~~--~~--~--~---
> >
> >
> >
> > > To unsubscribe from this group, send email to
> > reviewboard+unsubscr...@googlegroups.com
> > For more options, visit this group at
> > http://groups.google.com/group/reviewboard?hl=en
> > -~--~~~~--~~--~--~---
> >
>
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, v

Re: Installing PyLucene on Windows

2009-10-20 Thread Nathan Auch [Sybase]

Hi Christian,

Out of curiosity, have you already tried using Django's interface to 
database-based full text search?

http://docs.djangoproject.com/en/dev/ref/models/querysets/#search

I ask because we are running (a slightly modified) Review Board on top 
of a Sybase SQL Anywhere database. This thread reminded me that I had 
wanted to modify the search to use SQL Anywhere's full text indexes. Is 
there was any specific reason you opted against this approach?

Thanks!

Nathan Auch
Sybase iAnywhere

Christian Hammond wrote:
> No, but good luck with it :)
>
> I really would like to find a good replacement for PyLucene. It's a 
> royal pain to install.
>
> Christian
>
> -- 
> Christian Hammond - chip...@chipx86.com 
> Review Board - http://www.review-board.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Wed, Oct 14, 2009 at 5:35 AM, Thilo-Alexander Ginkel 
> mailto:th...@ginkel.com>> wrote:
>
>
> Hello everyone,
>
> I was thinking about adding search support to our Review Board
> installation, which would require the installation of PyLucene. Has
> somebody succeeded in getting this working on a Windows-based
> platform?
>
> Thanks,
> Thilo
>
> To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> 
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>


--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Can't enable search though PyLucene is installed

2009-10-20 Thread Christian Hammond

Switching Python paths will certainly break things if you're switching
to a different version of Python. If you're using mod_python with 2.6
and using the 2.5 search path, you'll experience a number of issues.
Instead, you should reinstall PyLucene with 2.6.

Did you see anything in your browser's JavaScript debug log? And which
browser are you using?

Christian


On Tuesday, October 20, 2009, David Resnick  wrote:
> I got an ImportError when I tried doing imp.find_module("lucene").
> I saw that lucene is installed in python2.5 and the default python used was 
> 2.6. So I changed the default python to 2.5 and now the import does work.
>
> But after restarting Apache the checkbox is still disabled. How does 
> mod_python choose the installation of python to use?
> -David
> On Tue, Oct 20, 2009 at 11:55 AM, Christian Hammond  
> wrote:
> Also, can you manually run Python and type:
>
>     import imp
>     imp.find_module("lucene")
>
> If that throws an exception (an ImportError), then PyLucene isn't set up 
> properly. If it simply returns without any message, then it's installed fine 
> and Review Board is seeing it, so something else is going wrong.
>
>
> Christian
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Oct 20, 2009 at 2:08 AM, David Resnick  wrote:
>
>
> Yes.
> -David
>
> On Tue, Oct 20, 2009 at 10:46 AM, Christian Hammond  
> wrote:
>
> Did you restart the web server after installing PyLucene?
>
> Christian
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Oct 20, 2009 at 1:39 AM, David Resnick  wrote:
>
>
> I've installed PyLucene on an Ubuntu server and would like to enable search 
> in Review Board but the check box is disabled.
> Any ideas?
> Thanks,David
>
>  To unsubscribe from this group, send email to
>
>  reviewboard+unsubscr...@googlegroups.com
>
>  For more options, visit this group at
>
>  http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>
>
>
>  To unsubscribe from this group, send email to
>
>  reviewboard+unsubscr...@googlegroups.com
>
>  For more options, visit this group at
>
>  http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>
>
>
>
>  To unsubscribe from this group, send email to
>
>  reviewboard+unsubscr...@googlegroups.com
>
>  For more options, visit this group at
>
>  http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>
>
>
>  To unsubscribe from this group, send email to
>
>  reviewboard+unsubscr...@googlegroups.com
>
>  For more options, visit this group at
>
>  http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>
>
>
> >
>  To unsubscribe from this group, send email to
>
>  reviewboard+unsubscr...@googlegroups.com
>
>  For more options, visit this group at
>
>  http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

-- 
-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Can't enable search though PyLucene is installed

2009-10-20 Thread David Resnick
I got an ImportError when I tried doing imp.find_module("lucene").
I saw that lucene is installed in python2.5 and the default python used was
2.6. So I changed the default python to 2.5 and now the import does work.

But after restarting Apache the checkbox is still disabled. How does
mod_python choose the installation of python to use?

-David

On Tue, Oct 20, 2009 at 11:55 AM, Christian Hammond wrote:

> Also, can you manually run Python and type:
>
> import imp
> imp.find_module("lucene")
>
> If that throws an exception (an ImportError), then PyLucene isn't set up
> properly. If it simply returns without any message, then it's installed fine
> and Review Board is seeing it, so something else is going wrong.
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Oct 20, 2009 at 2:08 AM, David Resnick  wrote:
>
>> Yes.
>> -David
>>
>> On Tue, Oct 20, 2009 at 10:46 AM, Christian Hammond 
>> wrote:
>>
>>> Did you restart the web server after installing PyLucene?
>>>
>>> Christian
>>>
>>> --
>>> Christian Hammond - chip...@chipx86.com
>>> Review Board - http://www.reviewboard.org
>>> VMware, Inc. - http://www.vmware.com
>>>
>>>
>>> On Tue, Oct 20, 2009 at 1:39 AM, David Resnick wrote:
>>>
 I've installed PyLucene on an Ubuntu server and would like to enable
 search in Review Board but the check box is disabled.
 Any ideas?

 Thanks,
 David


 To unsubscribe from this group, send email to
 reviewboard+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/reviewboard?hl=en
 -~--~~~~--~~--~--~---


>>>
>>>
>>> To unsubscribe from this group, send email to
>>> reviewboard+unsubscr...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/reviewboard?hl=en
>>> -~--~~~~--~~--~--~---
>>>
>>>
>>
>>
>> To unsubscribe from this group, send email to
>> reviewboard+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/reviewboard?hl=en
>> -~--~~~~--~~--~--~---
>>
>>
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Can't enable search though PyLucene is installed

2009-10-20 Thread Christian Hammond
The code shouldn't disable that without also providing a visible reason why
it's disabled below the checkbox.

Which browser are you using? Can you check the JavaScript console to see if
there are any errors?

Also, can you manually run Python and type:

import imp
imp.find_module("lucene")

If that throws an exception (an ImportError), then PyLucene isn't set up
properly. If it simply returns without any message, then it's installed fine
and Review Board is seeing it, so something else is going wrong.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Oct 20, 2009 at 2:08 AM, David Resnick  wrote:

> Yes.
> -David
>
> On Tue, Oct 20, 2009 at 10:46 AM, Christian Hammond 
> wrote:
>
>> Did you restart the web server after installing PyLucene?
>>
>> Christian
>>
>> --
>> Christian Hammond - chip...@chipx86.com
>> Review Board - http://www.reviewboard.org
>> VMware, Inc. - http://www.vmware.com
>>
>>
>> On Tue, Oct 20, 2009 at 1:39 AM, David Resnick wrote:
>>
>>> I've installed PyLucene on an Ubuntu server and would like to enable
>>> search in Review Board but the check box is disabled.
>>> Any ideas?
>>>
>>> Thanks,
>>> David
>>>
>>>
>>> To unsubscribe from this group, send email to
>>> reviewboard+unsubscr...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/reviewboard?hl=en
>>> -~--~~~~--~~--~--~---
>>>
>>>
>>
>>
>> To unsubscribe from this group, send email to
>> reviewboard+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/reviewboard?hl=en
>> -~--~~~~--~~--~--~---
>>
>>
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Can't enable search though PyLucene is installed

2009-10-20 Thread David Resnick
Yes.
-David

On Tue, Oct 20, 2009 at 10:46 AM, Christian Hammond wrote:

> Did you restart the web server after installing PyLucene?
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Tue, Oct 20, 2009 at 1:39 AM, David Resnick  wrote:
>
>> I've installed PyLucene on an Ubuntu server and would like to enable
>> search in Review Board but the check box is disabled.
>> Any ideas?
>>
>> Thanks,
>> David
>>
>>
>> To unsubscribe from this group, send email to
>> reviewboard+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/reviewboard?hl=en
>> -~--~~~~--~~--~--~---
>>
>>
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: Can't enable search though PyLucene is installed

2009-10-20 Thread Christian Hammond
Did you restart the web server after installing PyLucene?

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Tue, Oct 20, 2009 at 1:39 AM, David Resnick  wrote:

> I've installed PyLucene on an Ubuntu server and would like to enable search
> in Review Board but the check box is disabled.
> Any ideas?
>
> Thanks,
> David
>
> > To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> -~--~~~~--~~--~--~---
>
>

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Can't enable search though PyLucene is installed

2009-10-20 Thread David Resnick
I've installed PyLucene on an Ubuntu server and would like to enable search
in Review Board but the check box is disabled.
Any ideas?

Thanks,
David

--~--~-~--~~~---~--~~
Want to help the Review Board project? Donate today at
http://www.reviewboard.org/donate/
Happy user? Let us know at
http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---