Re: How to install old version of RB server

2012-09-10 Thread Stephen Gallagher
On Fri, 2012-09-07 at 14:06 -0700, Christian Hammond wrote:
 Hi,
 
 The problem you're hitting is that prior to a more recent-ish 1.6
 release, we weren't hard-coding specific versions of the packages we
 needed. We were saying XYZ or newer. Unfortunately, those packages
 are no longer backwards-compatible.
 
 If you really badly want 1.5.5, you'll need to get the correct
 versions of Django (1.1.3) and Djblets (0.6.7). There may be other
 specific packages you need, too.


One option would be to use the RHEL5/EPEL5 packages I provide in
http://fedoraproject.org/wiki/EPEL

RHEL5 is stuck on Django 1.1.x, so I can't upgrade ReviewBoard past
1.5.x on that stream. So that might be your easiest move.


-- 
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: LDAP login failing

2012-09-10 Thread Steven Blundy
I should mention that we're running 1.6.11 on Windows Server Datacenter 
32bit with MySQL and Apache.

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

Review Request History

2012-09-10 Thread Stefan Bohne
Hello,

we have been using ReviewBoard for a few weeks so far and it has been quite 
useful to us. But an issue has just come up.

Someone closed one of my review requests and dropped one issue. Is there a 
way to track what happened to a review request, ie. who changed what and 
when? Is the information of who closed a review request visible somewhere?

Thanks,
Stefan

-- 
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: How to move old reivewboard's data to new reviewboard environment?

2012-09-10 Thread rapid7bob
I've inherited the admin/config-management of an under-managed review board 
system and find that a simple conversion is not straight-forward if there 
is a fair amount of reviews in the system already -- ours is about 4.5GB. 
 We're running rb-1.5.1, but planning to upgrade after the db conversion.

I was able to remove the entries 'whose model is 
contenttypes.contenttype' using a simple sed command that others may find 
useful (standard disclaimer regarding no warranty or liability assumed):

  sed s/{pk: [0-9][0-9]*, model: contenttypes\.contenttype, fields: 
{model: [a-z][a-z]*, name: [a-z ][a-z ]*, app_label: 
[a-z_][a-z_]*}},//g

I'm getting a curious error with the rb-site manage path loaddata command 
and I've isolated it to a particular sqlite record that's about 300K in 
length (uuencoded diff, of course).  The error stack is 

Problem installing fixture '/backup/rbdump-0906-master.json': Traceback 
(most recent call last):
  File 
/usr/lib/python2.5/site-packages/django/core/management/commands/loaddata.py, 
line 165, in handle
for obj in objects:
  File /usr/lib/python2.5/site-packages/django/core/serializers/json.py, 
line 38, in Deserializer
for obj in PythonDeserializer(simplejson.load(stream), **options):
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/__init__.py, 
line 298, in load
parse_constant=parse_constant, **kw)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/__init__.py, 
line 338, in loads
return _default_decoder.decode(s)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/decoder.py, line 
326, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/decoder.py, line 
342, in raw_decode
obj, end = self.scan_once(s, idx)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/scanner.py, line 
38, in _scan_once
return parse_array((string, idx + 1), _scan_once)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/decoder.py, line 
226, in JSONArray
value, end = scan_once(s, end)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/scanner.py, line 
36, in _scan_once
return parse_object((string, idx + 1), encoding, strict, _scan_once, 
object_hook)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/decoder.py, line 
176, in JSONObject
value, end = scan_once(s, end)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/scanner.py, line 
36, in _scan_once
return parse_object((string, idx + 1), encoding, strict, _scan_once, 
object_hook)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/decoder.py, line 
176, in JSONObject
value, end = scan_once(s, end)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/scanner.py, line 
34, in _scan_once
return parse_string(string, idx + 1, encoding, strict)
  File 
/usr/lib/python2.5/site-packages/django/utils/simplejson/decoder.py, line 
105, in py_scanstring
errmsg(Invalid \\escape: %r % (esc,), s, end))
ValueError: Invalid \escape: 'U': line 1 column -2147483586 (char 
-2147483586)

Has anybody else tried to migrate/convert a large sqlite configuration?

On Thursday, November 17, 2011 12:14:36 AM UTC-8, Ian wrote:

 Oh, and if the path to the site is different on the new server, you'll 
 need to do a findreplace in the dump file.

 On Wed, Nov 16, 2011 at 11:18 PM, Mail Team emai...@gmail.comjavascript:
  wrote:

 I *just* finished doing this on my server, not super intuitive but once 
 you get the process it works pretty well.  You need to still have your old 
 server running for this to work.

 1. On the old server, dump your site data.
 sudo rb-site manage /path/to/site dumpdata  /path/to/backup/rbdump.json

 2. Open the dump file in a text editor and find all the entries 
 whose model is contenttypes.contenttype or scmtools.tool, and delete 
 those entries.

 3. On the new server, create a new site following the directions on the 
 ReviewBoard site.  Note that you don't have to use the same database type 
 as your old server (my old server used MySQL, my new server uses 
 PostgreSQL).

 4. On the new server, load the old site data.
 sudo rb-site manage /path/to/site loaddata /path/to/backup/rbdump.json

 5. (Optional) For good measure, reboot your new server.

 On Wed, Nov 16, 2011 at 7:28 PM, RAY ervin.z...@gmail.com 
 javascript:wrote:

 I had a reviewboard using in a server in past, but now the server has
 been replaced by new computer. I have install a new reviewboard
 environment on this new computer, and then I need move all original
 data from old environment to new one. How to  move it?
 Could I backup database from old reviewboard and recover it on new?



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

Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #1 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

The error on the error logs is

Error uploading new diff: URL 'http://svn.grid/branches/s-1.3.0' refers to  
a directory

Can't get text contents of a directory
Traceback (most recent call last):
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/webapi/resources.py,  
line 1625, in create

request.FILES.get('parent_diff_path'))
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/reviews/forms.py,  
line 296, in create

history)
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/diffviewer/forms.py,  
line 85, in create

diff_file, basedir, check_existance=(not parent_diff_file)))
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/diffviewer/forms.py,  
line 176, in _process_files

not self.repository.get_file_exists(filename, revision))):
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/scmtools/models.py,  
line 169, in get_file_exists

return self.get_scmtool().file_exists(path, revision)
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/scmtools/core.py,  
line 72, in file_exists

self.get_file(path, revision)
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.7beta1-py2.6.egg/reviewboard/scmtools/svn.py,  
line 154, in get_file

raise SCMError(e)
SCMError: URL 'http://svn.grid/branches/s-1.3.0' refers to a directory
Can't get text contents of a directory

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #2 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

Also for the previous version, error is quite similar

Error uploading new diff: URL 'http://svn.grid/branches/s-1.3.0' refers to  
a directory

Can't get text contents of a directory
Traceback (most recent call last):
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/webapi/resources.py,  
line 1509, in create

request.FILES.get('parent_diff_path'))
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/reviews/forms.py,  
line 296, in create

history)
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/diffviewer/forms.py,  
line 84, in create

diff_file, basedir, check_existance=(not parent_diff_file)))
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/diffviewer/forms.py,  
line 170, in _process_files

not self.repository.get_file_exists(filename, revision))):
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/scmtools/models.py,  
line 169, in get_file_exists

return self.get_scmtool().file_exists(path, revision)
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/scmtools/core.py,  
line 72, in file_exists

self.get_file(path, revision)
   
File /usr/local/lib/python2.6/dist-packages/ReviewBoard-1.6.11-py2.6.egg/reviewboard/scmtools/svn.py,  
line 154, in get_file

raise SCMError(e)
SCMError: URL 'http://svn.grid/branches/s-1.3.0' refers to a directory
Can't get text contents of a directory

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #3 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

this is the error I've got from command line by using post review



Review request created
Uploading diff, size: 16150
HTTP POSTing to http://reviews.grid/api/review-requests/21/diffs/:  
{'basedir': '/branches/s-1.3.0'}

Got API Error 105 (HTTP code 400): One or more fields had errors
Error data: {u'fields': {u'path':  
[uURL 'http://svn.grid/branches/s-1.3.0' refers to a directory\nCan't  
get text contents of a directory]}, u'stat': u'fail', u'err': {u'msg':  
u'One or more fields had errors', u'code': 105}}


Error uploading diff

The generated diff file was empty. This usually means no files were
modified in this change.


--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Issue 2730 in reviewboard: Can't login by my windows account name and password

2012-09-10 Thread reviewboard

Status: New
Owner: 
Labels: Type-Defect Priority-Medium

New issue 2730 by cazyokoy...@gmail.com: Can't login by my windows account  
name and password

http://code.google.com/p/reviewboard/issues/detail?id=2730

* NOTE: Do not post confidential information in this bug report. *
*   If you need immediate support, please contact*
*   reviewbo...@googlegroups.com *

What version are you running?


What's the URL of the page containing the problem?


What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What operating system are you using? What browser?


Please provide any additional information below.


--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2730 in reviewboard: Can't login by my windows account name and password

2012-09-10 Thread reviewboard

Updates:
Status: Invalid

Comment #1 on issue 2730 by chip...@gmail.com: Can't login by my windows  
account name and password

http://code.google.com/p/reviewboard/issues/detail?id=2730

You'll have to talk to your administrator. This varies by installation.  
This ticket doesn't contain enough information for us to even begin to  
diagnose.


--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard

Updates:
Status: NeedInfo

Comment #4 on issue 2729 by trowb...@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

Does it work if you remove the property changes part of the diff?

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #5 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

Nop it doesn't work,
I've noticed now, that I can only use post-review if I indicate a specific  
filename, otherwise it just doesn't work returning the errors above


Please help

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #7 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

sure, but it doesn't matter because the one that are generated it by  
post-review doesn't work either


here's the one I created, but as I said, it really doesn't matter. it fails  
anyway



Index: /branches/s-1.3.0
===
--- /branches/s-1.3.0   (revision 3205)
+++ /branches/s-1.3.0   (working copy)

___
Added: reviewboard:url
## -0,0 +1 ##
+http://reviews.grid
\ No newline at end of property
Index: /branches/s-1.3.0/application/configs/application.ini
===
--- /branches/s-1.3.0/application/configs/application.ini   (revision  
3205)
+++ /branches/s-1.3.0/application/configs/application.ini   (working  
copy)

@@ -84,8 +84,8 @@
 ;note: master, need to user masterDbName as connection name.
 resources.db.grid.dsn
= mysql://grid:grid@127.0.0.1:4040/grid_dev


-global.cron.url.prefix   
= kenneth.gridproc
-global.cron_queue.url.prefix 
= kenneth.grid
+global.cron.url.prefix   
= marc.gridproc

+global.cron_queue.url.prefix= marc.grid
 cron_manager.url 
= kenneth.cronmanager


 [qa : development]


--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #8 on issue 2729 by trowb...@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

It does matter because I think this is probably a duplicate of 2359, but  
I'd like to get some verification. You didn't remove the property change  
part of the diff (the change to /branches/s/1.3.0)


--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #9 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

. ok...
could you please point me on what you want me to delete from there?

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #10 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

I have tried that patch as well and didn't work

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #11 on issue 2729 by trowb...@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

Everything from the first line up to (but not including) Index:  
/branches/s-1.3.0/app...


--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2729 in reviewboard: Can't create new review request

2012-09-10 Thread reviewboard


Comment #12 on issue 2729 by marcelo@gmail.com: Can't create new review  
request

http://code.google.com/p/reviewboard/issues/detail?id=2729

you are right!!! it worked! how can i fix it automatically?

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2719 in reviewboard: Unpublished review replies are seen by other users

2012-09-10 Thread reviewboard

Updates:
Status: Fixed

Comment #2 on issue 2719 by trowb...@gmail.com: Unpublished review replies  
are seen by other users

http://code.google.com/p/reviewboard/issues/detail?id=2719

Fixed in release-1.6.x (861bc59).

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



Re: Issue 2710 in reviewboard: Can see and edit other users' comments before they're published

2012-09-10 Thread reviewboard

Updates:
Status: Fixed

Comment #5 on issue 2710 by trowb...@gmail.com: Can see and edit other  
users' comments before they're published

http://code.google.com/p/reviewboard/issues/detail?id=2710

Fixed in release-1.6.x (861bc59).

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.