Re: RB- Bug: Expand to header in diff viewer page is not coming for perl file

2013-08-23 Thread satish singh
Hi Christian, Thanks for helping me, the issue is resolved now. I didn't got file "reviewboard/diffviewer/filetypes.py", but in "diffviewer/diffutils.py" I did added support for .thpl file and it looks to work now. > '.thpl': [ > re.compile(r'^\s*sub [A-Za-z0-9_]+'), > ], '.th

Re: error when adding svn repository callback_ssl_client_cert_prompt required

2013-08-23 Thread Michaela Newell
Hi David, Thanks. I was not the same person who got the certificate it seems whoever got the certificate is the only user that can also add the repo. Many Thanks, Michaela On Thursday, 22 August 2013 23:10:46 UTC+1, David Trowbridge wrote: > > One thing to double-check is that the certificate f

Re: RBTools 0.5.2 is released!

2013-08-23 Thread Stephen Gallagher
On 08/22/2013 05:02 PM, Matthew Woehlke wrote: > Ah, well, I was wanting to rewrite the whole thing in Python anyway :-). > (Trying to do that and skirt around where RBTools wants a deprecated > optparse... now that's interesting...) > optparse is deprecated, not removed. It's not going to see an

Error migrating and upgrading from 1.6.6 to 1.7.13

2013-08-23 Thread Alfred von Campe
I'm trying to upgrade a REviewBoard instance from 1.6.6 to 1.7.13. I've created a dump of the existing database and am running the following script on the new server: #!/bin/sh RB_SITE="/var/www/html/rb" RB_USER="admin" RB_EMAIL="" RB_DOMAIN="" RB_PASSWORD="" # Delete and create e

Re: RBTools 0.5.2 is released!

2013-08-23 Thread Christian Hammond
On Fri, Aug 23, 2013 at 4:43 AM, Stephen Gallagher < step...@gallagherhome.com> wrote: > On 08/22/2013 05:02 PM, Matthew Woehlke wrote: > > Ah, well, I was wanting to rewrite the whole thing in Python anyway :-). > > (Trying to do that and skirt around where RBTools wants a deprecated > > optparse

Re: RBTools 0.5.2 is released!

2013-08-23 Thread Stephen Gallagher
On 08/23/2013 03:32 PM, Christian Hammond wrote: > On Fri, Aug 23, 2013 at 4:43 AM, Stephen Gallagher > mailto:step...@gallagherhome.com>> wrote: > > On 08/22/2013 05:02 PM, Matthew Woehlke wrote: > > Ah, well, I was wanting to rewrite the whole thing in Python > anyway :-). > > (T

Re: Error migrating and upgrading from 1.6.6 to 1.7.13

2013-08-23 Thread David Trowbridge
Alfred, What's happening is that rb-site install is creating a bunch of tables, and then you're importing in the database dump but it's ending up with a mix of old and new. I'd recommend installing 1.6.6 on the new server, importing the database dump, and then upgrading in-place. -David On Fri

Re: RBTools 0.5.2 is released!

2013-08-23 Thread Christian Hammond
On Friday, August 23, 2013, Stephen Gallagher wrote: > On 08/23/2013 03:32 PM, Christian Hammond wrote: > > On Fri, Aug 23, 2013 at 4:43 AM, Stephen Gallagher > > step...@gallagherhome.com >> wrote: > > > > On 08/22/2013 05:02 PM, Matthew Woehlke wrote: > > > Ah, well, I was wanting to r

Re: Error migrating and upgrading from 1.6.6 to 1.7.13

2013-08-23 Thread Alfred von Campe
On Aug 23, 2013, at 16:14, David Trowbridge wrote: > What's happening is that rb-site install is creating a bunch of tables, and > then you're importing in the database dump but it's ending up with a mix of > old and new. > > I'd recommend installing 1.6.6 on the new server, importing the data

Re: Error migrating and upgrading from 1.6.6 to 1.7.13

2013-08-23 Thread David Trowbridge
Let's try this--after creating the new site, but before loading the database dump, delete the new database that rb-site created. -David On Fri, Aug 23, 2013 at 1:26 PM, Alfred von Campe wrote: > On Aug 23, 2013, at 16:14, David Trowbridge wrote: > > What's happening is that rb-site install is

Re: Error migrating and upgrading from 1.6.6 to 1.7.13

2013-08-23 Thread Christian Hammond
It's probably safe enough to install a new 1.7.x site, nuke the database, copy the old one over, and do an upgrade, without reinstalling 1.6.x. The major changes are in the database, and the in-DB versioning should work fine from a 1.7.x install. One important thing is to copy over the SECRET_KEY

Re: Error migrating and upgrading from 1.6.6 to 1.7.13

2013-08-23 Thread Alfred von Campe
On Aug 23, 2013, at 16:29, David Trowbridge wrote: > Let's try this--after creating the new site, but before loading the database > dump, delete the new database that rb-site created. Sigh, I started playing with installing ReviewBoard 1.6 with easy install, and seems to have broken rb-site:

Re: RBTools 0.5.2 is released!

2013-08-23 Thread Matthew Woehlke
On 2013-08-23 07:43, Stephen Gallagher wrote: On 08/22/2013 05:02 PM, Matthew Woehlke wrote: Ah, well, I was wanting to rewrite the whole thing in Python anyway :-). (Trying to do that and skirt around where RBTools wants a deprecated optparse... now that's interesting...) optparse is deprecat