Re: Issue 1986 in reviewboard: CVS repository(pserver) addition fails

2014-03-01 Thread reviewboard


Comment #21 on issue 1986 by rich...@163.com: CVS repository(pserver)  
addition fails

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

I found the root cause that is selinux is not disabled. after disabling the  
selinux by setenforce 0 and modify SELINUX from enforcing to disabled under  
/etc/sysconfig/selinux folder, Review Board works well.

Thanks

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3272 in reviewboard: exception running devserver: TypeError: __init__() got an unexpected keyword argument 'detailed_label_html'

2014-03-01 Thread reviewboard


Comment #4 on issue 3272 by mrcote: exception running devserver: TypeError:  
__init__() got an unexpected keyword argument 'detailed_label_html'

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

Nope, that directory doesn't exist.

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3272 in reviewboard: exception running devserver: TypeError: __init__() got an unexpected keyword argument 'detailed_label_html'

2014-03-01 Thread reviewboard


Comment #5 on issue 3272 by chip...@gmail.com: exception running devserver:  
TypeError: __init__() got an unexpected keyword  
argument 'detailed_label_html'

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

How about djblets/htdocs/static/?

Also, make sure you re-run `setup.py develop` in djblets if you haven't.

I hit this a couple weeks ago and it was due to an older build of the  
static files.


--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Issue 3273 in reviewboard: rbt post with git-svn and --parent diffs traces back

2014-03-01 Thread reviewboard

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

New issue 3273 by walt.jav...@gmail.com: rbt post with git-svn and --parent  
diffs traces back

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


What version are you running?

RBTools 0.6 alpha 0 (dev)
Review Board 1.7.21

What's the command line that can reproduce the problem?

// from within a git svn repo

rbt post --parent sha


What steps will reproduce the problem?
1. git svn init args  git svn rebase
2. hack, hack, hack and git commit multiple commits (but not git svn  
dcommit)
3. rbt post --debug --parent HEAD^ (attempt to post only the most recent  
commit for review, and the rest of the commits collapsed into a parent diff)


What is the expected output?

I would expect either:

1) an error message specifying that the invocation of rbt post isn't valid  
with git svn

2) a review request to be sucessfully posted

What do you see instead?

$ rbt post --debug --revision-range f27b632:260cdd7 --parent 74aee14
DEBUG:root:Checking for a Subversion repository...
DEBUG:root:Running: svn info --non-interactive
DEBUG:root:Command exited with rc 1: ['svn', 'info', '--non-interactive']
svn: E155007: '/home/wjavins/git/stuff/' is not a working copy
---
DEBUG:root:Checking for a Git repository...
DEBUG:root:Running: git rev-parse --git-dir
DEBUG:root:Running: git config core.bare
DEBUG:root:Running: git rev-parse --show-toplevel
DEBUG:root:Running: git symbolic-ref -q HEAD
DEBUG:root:Command exited with rc 1: ['git', 'symbolic-ref', '-q', 'HEAD']
---
DEBUG:root:Running: git svn info
DEBUG:root:repository info: Path: https://svn.mycorp.com/repo, Base path:  
/stuff/head, Supports changesets: False

DEBUG:root:Running: git config --get reviewboard.url
DEBUG:root:Command exited with rc 1:  
['git', 'config', '--get', 'reviewboard.url']

---
DEBUG:root:Running: svn propget reviewboard:url https://svn.mycorp.com/repo
Password for 'wjavins':
DEBUG:root:Making HTTP GET request to http://reviewboard.mycorp.com/api/
DEBUG:root:Making HTTP GET request to  
http://reviewboard.mycorp.com/api/info/

DEBUG:root:Running: git rev-parse f27b632 260cdd7
DEBUG:root:Running: git rev-parse f27b632 260cdd7
DEBUG:root:Running: git branch -r --contains  
f27b63261022d89a014155ccd7e3523beb49f330
DEBUG:root:Running: git merge-base f27b63261022d89a014155ccd7e3523beb49f330  
74aee14
DEBUG:root:Running: git diff --no-color --no-prefix --no-ext-diff -r -u  
f27b63261022d89a014155ccd7e3523beb49f330..260cdd79b8965318c57155044105959af30ebc61
DEBUG:root:Running: git svn find-rev  
f27b63261022d89a014155ccd7e3523beb49f330

Traceback (most recent call last):
  File /usr/local/bin//rbt, line 9, in module
load_entry_point('RBTools==0.5.7', 'console_scripts', 'rbt')()
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/commands/main.py,  
line 127, in main

command.run_from_argv([RB_MAIN] + args)
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/commands/__init__.py,  
line 158, in run_from_argv

exit_code = self.main(*args) or 0
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/commands/post.py,  
line 626, in main

files=args)
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/utils/diffs.py,  
line 13, in get_diff

repository_info)
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/clients/git.py,  
line 483, in diff_between_revisions

return self._diff([revision_range])
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/clients/git.py,  
line 450, in _diff

diff_lines = self.make_diff(revisions['base'], revisions['tip'])
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/clients/git.py,  
line 497, in make_diff

return self.make_svn_diff(ancestor, diff_lines)
   
File /usr/local/lib/python2.7/dist-packages/RBTools-0.5.7-py2.7.egg/rbtools/clients/git.py,  
line 524, in make_svn_diff

if not rev and self.merge_base:
AttributeError: 'GitClient' object has no attribute 'merge_base'


What operating system are you using?

Ubuntu 12.04.3 LTS, Precise Pangolin

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.