Issue 2690 in reviewboard: Review board strips author's commit message and signaature from git formatted patch

2012-08-01 Thread reviewboard

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

New issue 2690 by rohityad...@gmail.com: Review board strips author's  
commit message and signaature from git formatted patch

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

* 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?
1.6.9, as hosted on https://reviews.apache.org/dashboard/

What's the URL of the page containing the problem?
Every review request where you upload a git formatted patch

What steps will reproduce the problem?
1. git commit -a 0m commit message
2. git format-patch -o patches HEAD~1
3. New Review request - Upload the 0001-my-awesome-fix.patch
4. View diff or Download diff has only the diff (unified format), and  
contains no commit message or author info.


What is the expected output? What do you see instead?
I would love to see the diff as it shows now, but when downloading I should  
get the original patch submitted by a contributor.


What operating system are you using? What browser?
Does n't matter.

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 2690 in reviewboard: Review board strips author's commit message and signaature from git formatted patch

2012-08-01 Thread reviewboard


Comment #1 on issue 2690 by srivatsa...@gmail.com: Review board strips  
author's commit message and signaature from git formatted patch

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

git am contains all the necessary information to apply a patch. Perhaps the  
raw patch download should be enabled.


--
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 2686 in reviewboard: 1.6.10 breaks svn+ssh for Subversion

2012-08-01 Thread reviewboard


Comment #24 on issue 2686 by cea...@gmail.com: 1.6.10 breaks svn+ssh for  
Subversion

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

It looks like ReviewBoard 1.6.11 has resolved the issue for me. :) Thanks  
so much for working with me on this!


--
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 929 in reviewboard: reviewboard should not alter the diff file

2012-08-01 Thread reviewboard


Comment #15 on issue 929 by trowb...@gmail.com: reviewboard should not  
alter the diff file

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

Issue 2690 has been merged into this issue.

--
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 2690 in reviewboard: Review board strips author's commit message and signaature from git formatted patch

2012-08-01 Thread reviewboard

Updates:
Status: Duplicate
Mergedinto: 929

Comment #2 on issue 2690 by trowb...@gmail.com: Review board strips  
author's commit message and signaature from git formatted patch

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

(No comment was entered for 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 2691 in reviewboard: post-review fails and reviewboard is not acccessible. SSL error shown.

2012-08-01 Thread reviewboard

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

New issue 2691 by shobhi...@gmail.com: post-review fails and reviewboard is  
not acccessible. SSL error shown.

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

* 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?
1.6.6

What's the URL of the page containing the problem?
https://reviewboard.gemstone.com/dashboard

What steps will reproduce the problem?
1. Don't know. Happens randomly.

What is the expected output? What do you see instead?
 post-review -r 325
Traceback (most recent call last):
  File /usr/local/bin/post-review, line 9, in module
load_entry_point('RBTools==0.4.1', 'console_scripts', 'post-review')()
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.4.1-py2.7.egg/rbtools/postreview.py,  
line 1222, in main

if not server.check_api_version():
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.4.1-py2.7.egg/rbtools/postreview.py,  
line 227, in check_api_version

rsp = self.api_get(root_resource['links']['info']['href'])
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.4.1-py2.7.egg/rbtools/postreview.py,  
line 669, in api_get

return self.process_json(self.http_get(path))
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.4.1-py2.7.egg/rbtools/postreview.py,  
line 639, in http_get

rsp = urllib2.urlopen(url).read()
  File /usr/lib/python2.7/urllib2.py, line 126, in urlopen
return _opener.open(url, data, timeout)
  File /usr/lib/python2.7/urllib2.py, line 391, in open
response = self._open(req, data)
  File /usr/lib/python2.7/urllib2.py, line 409, in _open
'_open', req)
  File /usr/lib/python2.7/urllib2.py, line 369, in _call_chain
result = func(*args)
  File /usr/lib/python2.7/urllib2.py, line 1193, in https_open
return self.do_open(httplib.HTTPSConnection, req)
  File /usr/lib/python2.7/urllib2.py, line 1160, in do_open
raise URLError(err)
urllib2.URLError: urlopen error [Errno 1] _ssl.c:499: error:0407006A:rsa  
routines:RSA_padding_check_PKCS1_type_1:block type is not 01



What operating system are you using? What browser?
ubuntu 11.04

Please provide any additional information below.

reviewboard server is accessible by some other machine and seems to be  
running fine.


I access reviewboard from Google Chrome browser Version 19.0.1084.56
from a VMware virtual machine running on Mac using VMware Fusion.

--
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 929 in reviewboard: reviewboard should not alter the diff file

2012-08-01 Thread reviewboard


Comment #16 on issue 929 by srivatsa...@gmail.com: reviewboard should not  
alter the diff file

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

It is not clear whether this issue has been closed or not. Comment #11  
gives me the impression this has been fixed? Could you please let us know  
the version of RB that has the fix. We're desperately trying to get this to  
work at reviews.apache.org.


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