Enable search in RB 1.0.5.

2010-01-09 Thread Kunjal
Hello, We want to enable search in RB. We are having issues. I've finally built java6,ANT,jcc,and pylucerne and I can see that I can enable the search function with /opt/lampp/htdocs/reviewboard/ search-index where index files will reside: I get the following errors when doing a full index: #[r

Re: UnicodeDecodeError when posting review.

2010-01-09 Thread Christian Hammond
Hi, Do you know what URL they were on? Is this when posting a review, or a review request? If done from post-review, can you run with --debug and show what request was causing that? Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - ht

UnicodeDecodeError when posting review.

2010-01-09 Thread Kunjal
Hello Chris, With your great help we could release RB 1.0.5 to 300 + developers and it is working quite well. Suddenly from yesterday, some of the users (3 of them) are seeing below errors when they post the review. Do you know what can cause such errors? Traceback (most recent call last): F

Re: Want to use ReviewBoard's side-by-side diffviewer. Need documentation/help

2010-01-09 Thread Anirudh Sanjeev
Hi, Thank you for the detailed and informative reply. I had a closer look at the Review Board diff algorithm and was rather overwhelmed. Re-using the code for my simple purpose would be overkill. But there still isn't any tool to work on the unified diff format in python. I found some respite wit

Re: Want to use ReviewBoard's side-by-side diffviewer. Need documentation/help

2010-01-09 Thread Christian Hammond
Hi, Yeah, the diff viewer in Review Board is certainly larger than other differs such as difflib, but that's because it isn't just another difflib. It has: * Database storage of the diffs it operates on * A complete implementation of the Myers diff algorithm + optimizations. Python's difflib uses

Re: Want to use ReviewBoard's side-by-side diffviewer. Need documentation/help

2010-01-09 Thread Anirudh Sanjeev
Hi! Excerpts from Christian Hammond's message of Sun Jan 10 03:18:17 +0530 2010: > There are no plans to take the diff viewer and fully separate it out as an > independent, reusable component, as it's a lot of work and increases our > maintenance burden. I see your rationale behind this. However

Re: Want to use ReviewBoard's side-by-side diffviewer. Need documentation/help

2010-01-09 Thread Christian Hammond
Hi, Review Board's diff viewer is modular (well, in theory, but we've only used it in Review Board). It should be usable in another project, though it requires other pieces of the Review Board codebase (like the SCMTools, admin settings, and accounts code). If you required Review Board as a depend

Want to use ReviewBoard's side-by-side diffviewer. Need documentation/help

2010-01-09 Thread Anirudh
Hi, I'm writing an open-source project in django. It's like pastebin for patches where each patch gets it's own review thread. Think reviewboard, but where each patch gets it's own url for review, and it is project-agnostic. A user can upload/paste a patch and get a link. This is primarily being d