Re: How to create an initial code review (post-commit)

2015-06-26 Thread Carel Combrink
If I ssh to the RB server and do the following (some steps I found on this 
list):
$ sudo -s
$ sudo -u www-data -s
$ DEBUG_RBSSH=1 rbssh svn.server.ip

I get the following error:
Traceback (most recent call last):
  File /usr/local/bin/rbssh, line 9, in module
load_entry_point('ReviewBoard==2.0.17', 'console_scripts', 'rbssh')()
  File 
/usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/cmdline/rbssh.py
, line 271, in main
filemode='w')
  File /usr/lib/python2.7/logging/__init__.py, line 1532, in basicConfig
hdlr = FileHandler(filename, mode)
  File /usr/lib/python2.7/logging/__init__.py, line 903, in __init__
StreamHandler.__init__(self, self._open())
  File /usr/lib/python2.7/logging/__init__.py, line 928, in _open
stream = open(self.baseFilename, self.mode)
IOError: [Errno 13] Permission denied: u'/home/myserver/rbssh-1281.log'

Without debug I get:
Traceback (most recent call last):
  File /usr/local/bin/rbssh, line 9, in module
load_entry_point('ReviewBoard==2.0.17', 'console_scripts', 'rbssh')()
  File 
/usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/cmdline/rbssh.py,
 
line 294, in main
client = SSHClient(namespace=options.local_site_name)
  File 
/usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/ssh/client.py,
 
line 62, in __init__
self._load_storage()
  File 
/usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/ssh/client.py,
 
line 76, in _load_storage
self.DEFAULT_STORAGE)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.11-py2.7.egg/django/conf/__init__.py,
 
line 54, in __getattr__
self._setup(name)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.11-py2.7.egg/django/conf/__init__.py,
 
line 47, in _setup
% (desc, ENVIRONMENT_VARIABLE))
django.core.exceptions.ImproperlyConfigured: Requested setting 
RBSSH_STORAGE_BACKEND, but settings are not configured. You must either 
define the environment variable DJANGO_SETTINGS_MODULE or call 
settings.configure() before accessing settings.

But normal SSH works without any problems and logs in with the correct user 
without asking for a password.
ssh svn.server.ip

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to create an initial code review (post-commit)

2015-06-26 Thread Christian Hammond
Hi Carel,

For the manual invocation of rbssh with DEBUG_RBSSH=1, it sounds like you may 
be running this in a directory that www-data can't write in. Can you try:

    cd /tmp
    DEBUG_RBSSH=1 rbssh ip

See if that gives the same error as without debug. I think you may be hitting a 
bug that I'm looking into.

Normal ssh doesn't come into play at all, as we use a different SSH library for 
communicating that offers us some flexibility in how keys are stored/accessed.

Regarding your original intent to post your entire repository for review, you 
will in on way or another need to generate a diff. Note that realistically, 
unless your repository is very small, nobody will be able to give it a thorough 
review, no matter the code review tool. People are best able to review code 
when they can focus on smaller, logical changes that work toward one goal. 
Otherwise, they tend to glance over and miss a lot of things. The larger the 
change, the less they pay attention to details, and the more they miss.

Christian 

--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Carel Combrink carel.combr...@gmail.com
Reply: reviewboard@googlegroups.com reviewboard@googlegroups.com
Date: June 25, 2015 at 11:20:14 PM
To: reviewboard@googlegroups.com reviewboard@googlegroups.com
Subject:  Re: How to create an initial code review (post-commit)

 If I ssh to the RB server and do the following (some steps I found on this
 list):
 $ sudo -s
 $ sudo -u www-data -s
 $ DEBUG_RBSSH=1 rbssh svn.server.ip
  
 I get the following error:
 Traceback (most recent call last):
 File /usr/local/bin/rbssh, line 9, in module
 load_entry_point('ReviewBoard==2.0.17', 'console_scripts', 'rbssh')()
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/cmdline/rbssh.py
 , line 271, in main
 filemode='w')
 File /usr/lib/python2.7/logging/__init__.py, line 1532, in basicConfig
 hdlr = FileHandler(filename, mode)
 File /usr/lib/python2.7/logging/__init__.py, line 903, in __init__
 StreamHandler.__init__(self, self._open())
 File /usr/lib/python2.7/logging/__init__.py, line 928, in _open
 stream = open(self.baseFilename, self.mode)
 IOError: [Errno 13] Permission denied: u'/home/myserver/rbssh-1281.log'
  
 Without debug I get:
 Traceback (most recent call last):
 File /usr/local/bin/rbssh, line 9, in module
 load_entry_point('ReviewBoard==2.0.17', 'console_scripts', 'rbssh')()
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/cmdline/rbssh.py,
 line 294, in main
 client = SSHClient(namespace=options.local_site_name)
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/ssh/client.py,
 line 62, in __init__
 self._load_storage()
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/ssh/client.py,
 line 76, in _load_storage
 self.DEFAULT_STORAGE)
 File
 /usr/local/lib/python2.7/dist-packages/Django-1.6.11-py2.7.egg/django/conf/__init__.py,
 line 54, in __getattr__
 self._setup(name)
 File
 /usr/local/lib/python2.7/dist-packages/Django-1.6.11-py2.7.egg/django/conf/__init__.py,
 line 47, in _setup
 % (desc, ENVIRONMENT_VARIABLE))
 django.core.exceptions.ImproperlyConfigured: Requested setting
 RBSSH_STORAGE_BACKEND, but settings are not configured. You must either
 define the environment variable DJANGO_SETTINGS_MODULE or call
 settings.configure() before accessing settings.
  
 But normal SSH works without any problems and logs in with the correct user
 without asking for a password.
 ssh svn.server.ip
  
 --
 Supercharge your Review Board with Power Pack: 
 https://www.reviewboard.org/powerpack/
 Want us to host Review Board for you? Check out RBCommons: 
 https://rbcommons.com/
 Happy user? Let us know! https://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google Groups 
 reviewboard
 group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to reviewboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.
  

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Issue 3862 in reviewboard: Loading Patch hangs due to french local

2015-06-26 Thread reviewboard


Comment #5 on issue 3862 by msu...@aurea.com: Loading Patch hangs due to  
french local

https://code.google.com/p/reviewboard/issues/detail?id=3862

It looks like the patch file was encoded using ISO 8859-1. Looking at the
repo,  many of the files are encoded that way instead of utf-8. There is
actually a mix of encodings in the repo.

--
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/d/optout.


Re: How to create an initial code review (post-commit)

2015-06-26 Thread Christian Hammond
Oh also, try:

    cd /tmp
    DEBUG_RBSSH=1 DJANGO_SETTINGS_MODULE=reviewboard.settings rbssh ip

Christian 

--  
Christian Hammond - christ...@beanbaginc.com  
Review Board - https://www.reviewboard.org  
Beanbag, Inc. - https://www.beanbaginc.com

-Original Message-
From: Christian Hammond christ...@beanbaginc.com
Reply: Christian Hammond christ...@beanbaginc.com
Date: June 25, 2015 at 11:30:00 PM
To: reviewboard@googlegroups.com reviewboard@googlegroups.com, Carel 
Combrink carel.combr...@gmail.com
Subject:  Re: How to create an initial code review (post-commit)

 Hi Carel,
  
 For the manual invocation of rbssh with DEBUG_RBSSH=1, it sounds like you may 
 be running
 this in a directory that www-data can't write in. Can you try:
  
 cd /tmp
 DEBUG_RBSSH=1 rbssh ip
  
 See if that gives the same error as without debug. I think you may be hitting 
 a bug that I'm
 looking into.
  
 Normal ssh doesn't come into play at all, as we use a different SSH library 
 for communicating
 that offers us some flexibility in how keys are stored/accessed.
  
 Regarding your original intent to post your entire repository for review, you 
 will in
 on way or another need to generate a diff. Note that realistically, unless 
 your repository
 is very small, nobody will be able to give it a thorough review, no matter 
 the code review
 tool. People are best able to review code when they can focus on smaller, 
 logical changes
 that work toward one goal. Otherwise, they tend to glance over and miss a lot 
 of things.
 The larger the change, the less they pay attention to details, and the more 
 they miss.
  
 Christian
  
 --
 Christian Hammond - christ...@beanbaginc.com
 Review Board - https://www.reviewboard.org
 Beanbag, Inc. - https://www.beanbaginc.com
  
 -Original Message-
 From: Carel Combrink carel.combr...@gmail.com
 Reply: reviewboard@googlegroups.com reviewboard@googlegroups.com
 Date: June 25, 2015 at 11:20:14 PM
 To: reviewboard@googlegroups.com reviewboard@googlegroups.com
 Subject: Re: How to create an initial code review (post-commit)
  
 If I ssh to the RB server and do the following (some steps I found on this
 list):
 $ sudo -s
 $ sudo -u www-data -s
 $ DEBUG_RBSSH=1 rbssh svn.server.ip

 I get the following error:
 Traceback (most recent call last):
 File /usr/local/bin/rbssh, line 9, in module
 load_entry_point('ReviewBoard==2.0.17', 'console_scripts', 'rbssh')()
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/cmdline/rbssh.py
 , line 271, in main
 filemode='w')
 File /usr/lib/python2.7/logging/__init__.py, line 1532, in basicConfig
 hdlr = FileHandler(filename, mode)
 File /usr/lib/python2.7/logging/__init__.py, line 903, in __init__
 StreamHandler.__init__(self, self._open())
 File /usr/lib/python2.7/logging/__init__.py, line 928, in _open
 stream = open(self.baseFilename, self.mode)
 IOError: [Errno 13] Permission denied: u'/home/myserver/rbssh-1281.log'

 Without debug I get:
 Traceback (most recent call last):
 File /usr/local/bin/rbssh, line 9, in module
 load_entry_point('ReviewBoard==2.0.17', 'console_scripts', 'rbssh')()
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/cmdline/rbssh.py,
 line 294, in main
 client = SSHClient(namespace=options.local_site_name)
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/ssh/client.py,
 line 62, in __init__
 self._load_storage()
 File
 /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.17-py2.7.egg/reviewboard/ssh/client.py,
 line 76, in _load_storage
 self.DEFAULT_STORAGE)
 File
 /usr/local/lib/python2.7/dist-packages/Django-1.6.11-py2.7.egg/django/conf/__init__.py,
 line 54, in __getattr__
 self._setup(name)
 File
 /usr/local/lib/python2.7/dist-packages/Django-1.6.11-py2.7.egg/django/conf/__init__.py,
 line 47, in _setup
 % (desc, ENVIRONMENT_VARIABLE))
 django.core.exceptions.ImproperlyConfigured: Requested setting
 RBSSH_STORAGE_BACKEND, but settings are not configured. You must either
 define the environment variable DJANGO_SETTINGS_MODULE or call
 settings.configure() before accessing settings.

 But normal SSH works without any problems and logs in with the correct user
 without asking for a password.
 ssh svn.server.ip

 --
 Supercharge your Review Board with Power Pack: 
 https://www.reviewboard.org/powerpack/
 Want us to host Review Board for you? Check out RBCommons: 
 https://rbcommons.com/
 Happy user? Let us know! https://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google Groups 
 reviewboard
 group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to reviewboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

  
  

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 

Re: Issue 3898 in reviewboard: Enable Markdown checkbox isn't reset when RBTools uploads a new plaintext change description

2015-06-26 Thread reviewboard

Updates:
Status: Fixed

Comment #2 on issue 3898 by chip...@gmail.com: Enable Markdown checkbox  
isn't reset when RBTools uploads a new plaintext change description

https://code.google.com/p/reviewboard/issues/detail?id=3898

Fixed on release-2.0.x (d2de929). This will make it into 2.0.18.

--
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/d/optout.


Re: How to create an initial code review (post-commit)

2015-06-26 Thread Carel Combrink


 cd /tmp 
 DEBUG_RBSSH=1 DJANGO_SETTINGS_MODULE=reviewboard.settings rbssh ip 


From the above I get the following output:
$ DEBUG_RBSSH=1 DJANGO_SETTINGS_MODULE=reviewboard.settings rbssh 
svn.server.ip
Unable to import settings_local.py: No module named settings_local

Please see https://www.reviewboard.org/docs/manual/dev/admin/
for help setting up Review Board.

Regarding the full/initial review:
The repository that I am testing with is rather small, about 4 files with 
rather low number of LOC. 
I do agree that for larger codebase projects it can be an issue to create 
such a review but unfortunately we are only now integrating tool based code 
reviews into our development process.

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Issue 3905 in reviewboard: ValueError: Unable to parse connection string: localhost

2015-06-26 Thread reviewboard

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

New issue 3905 by narayan@gmail.com: ValueError: Unable to parse  
connection string: localhost

https://code.google.com/p/reviewboard/issues/detail?id=3905

Hello,

I tried changing Cache settings in ReviewBoard admin panel and after that  
server crashed. Please help


Traceback (most recent call last):

  File C:\Reviewboard-2.0.15-0\apps\django\django\core\handlers\base.py,  
line 88, in get_response

response = middleware_method(request)

   
File C:\Reviewboard-2.0.15-0\apps\reviewboard\Lib\site-packages\ReviewBoard-2.0.15-py2.7.egg\reviewboard\admin\middleware.py,  
line 36, in process_request

initialize()

   
File C:\Reviewboard-2.0.15-0\apps\reviewboard\Lib\site-packages\ReviewBoard-2.0.15-py2.7.egg\reviewboard\__init__.py,  
line 103, in initialize

load_site_config()

   
File C:\Reviewboard-2.0.15-0\apps\reviewboard\Lib\site-packages\ReviewBoard-2.0.15-py2.7.egg\reviewboard\admin\siteconfig.py,  
line 245, in load_site_config

apply_django_settings(siteconfig, settings_map)

   
File C:\Reviewboard-2.0.15-0\python\lib\site-packages\djblets-0.8.16-py2.7.egg\djblets\siteconfig\django_settings.py,  
line 227, in apply_django_settings

setter(settings, setting_key, value)

   
File C:\Reviewboard-2.0.15-0\python\lib\site-packages\djblets-0.8.16-py2.7.egg\djblets\siteconfig\django_settings.py,  
line 53, in _set_cache_backend

cache.reset_backend()

   
File C:\Reviewboard-2.0.15-0\python\lib\site-packages\djblets-0.8.16-py2.7.egg\djblets\cache\forwarding_backend.py,  
line 51, in reset_backend

self._backend.close()

   
File C:\Reviewboard-2.0.15-0\apps\django\django\core\cache\backends\memcached.py,  
line 100, in close

self._cache.disconnect_all()

   
File C:\Reviewboard-2.0.15-0\apps\django\django\core\cache\backends\memcached.py,  
line 163, in _cache
self._client = self._lib.Client(self._servers,  
pickleProtocol=pickle.HIGHEST_PROTOCOL)


  File build\bdist.win32\egg\memcache.py, line 165, in __init__
self.set_servers(servers)

  File build\bdist.win32\egg\memcache.py, line 196, in set_servers
self.servers = [_Host(s, self.debug) for s in servers]

  File build\bdist.win32\egg\memcache.py, line 965, in __init__
raise ValueError('Unable to parse connection string: %s' % host)

ValueError: Unable to parse connection string: localhost


WSGIRequest
path:/reviewboard/,
GET:QueryDict: {},
POST:QueryDict: {},
COOKIES:{'csrftoken': '6ALkBbkXhwGPxSXCgOl7yqGzX19Kcv4m',
 'rbsessionid': '99kw8atenk3pb9kkrob7q0ajdmaq4wa1'},
META:{'COMSPEC': 'C:\\Windows\\system32\\cmd.exe',
 'CONTEXT_DOCUMENT_ROOT': 'C:/Reviewboard-2.0.15-0/apache2/htdocs',
 'CONTEXT_PREFIX': '',
 'DOCUMENT_ROOT': 'C:/Reviewboard-2.0.15-0/apache2/htdocs',
 'GATEWAY_INTERFACE': 'CGI/1.1',
 'HTTP_ACCEPT': 
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
 'HTTP_ACCEPT_ENCODING': 'gzip, deflate',
 'HTTP_ACCEPT_LANGUAGE': 'en-US,en;q=0.5',
 'HTTP_CACHE_CONTROL': 'max-age=0',
 'HTTP_CONNECTION': 'keep-alive',
 'HTTP_COOKIE': 'rbsessionid=99kw8atenk3pb9kkrob7q0ajdmaq4wa1;  
csrftoken=6ALkBbkXhwGPxSXCgOl7yqGzX19Kcv4m',

 'HTTP_HOST': '192.168.2.179',
 'HTTP_REFERER': 'http://192.168.2.179/',
 'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:39.0)  
Gecko/20100101 Firefox/39.0',

 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC',
 'PATH_INFO': u'/reviewboard/',
 'PATH_TRANSLATED': 
'C:\\Reviewboard-2.0.15-0\\apps\\reviewboard\\rb-sites\\reviewboard\\htdocs\\reviewboard.wsgi\\reviewboard\\',
 'QUERY_STRING': '',
 'REMOTE_ADDR': '172.16.0.160',
 'REMOTE_PORT': '56091',
 'REQUEST_METHOD': 'GET',
 'REQUEST_SCHEME': 'http',
 'REQUEST_URI': '/reviewboard/',
 'SCRIPT_FILENAME': 
'C:/Reviewboard-2.0.15-0/apps/reviewboard/rb-sites/reviewboard/htdocs/reviewboard.wsgi',
 'SCRIPT_NAME': u'',
 'SERVER_ADDR': '192.168.2.179',
 'SERVER_ADMIN': 'ad...@example.com',
 'SERVER_NAME': '192.168.2.179',
 'SERVER_PORT': '80',
 'SERVER_PROTOCOL': 'HTTP/1.1',
 'SERVER_SIGNATURE': '',
 'SERVER_SOFTWARE': 'Apache',
 'SystemRoot': 'C:\\Windows',
 'WINDIR': 'C:\\Windows',
 'mod_wsgi.application_group': 'localhost|',
 'mod_wsgi.callable_object': 'application',
 'mod_wsgi.enable_sendfile': '0',
 'mod_wsgi.handler_script': '',
 'mod_wsgi.input_chunked': '0',
 'mod_wsgi.process_group': '',
 'mod_wsgi.request_handler': 'wsgi-script',
 'mod_wsgi.script_reloading': '1',
 'mod_wsgi.version': (3, 5),
 'wsgi.errors': mod_wsgi.Log object at 0x0423FE80,
 'wsgi.file_wrapper': built-in method file_wrapper of mod_wsgi.Adapter  
object at 0x01543A88,

 'wsgi.input': mod_wsgi.Input object at 0x042375E8,
 'wsgi.multiprocess': False,
 'wsgi.multithread': True,
 'wsgi.run_once': False,
 'wsgi.url_scheme': 'http',
 'wsgi.version': (1, 0)}

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

You may adjust your notification preferences at:

Re: ReviewBoard SVN add repository server certificate issuer is not trusted

2015-06-26 Thread Anand Jayaram
Ah finally something that works. Thank you Lucas, you are a savior

On Tuesday, April 14, 2015 at 3:13:11 AM UTC+5:30, Lucas Araujo Manfrim 
wrote:

 Hello my friends,

 I spent a lot of time with this stupid problem in ReviewBoard today, and 
 finally got it doing the following:

 What worked for me was 

1. command svn list https repository URL
2. access the folder /home/user/.subversion/auth/svn.ssl.server/
3. copy the certificate (the file with lots of numbers and letters) to 
/var/www/reviewboard/data/.subversion/auth/svn.ssl.server/
4. change the owner of the file to www-data 
5. restart the apache http server. 

A lot of time lost with an action that should be documented at the 
reviewboard's site. If you are running reviewboard as root (my case), step 
4 is not necessary.

 I really hope this helps you guys.


-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Issue 3906 in reviewboard: Spellchecker does not work in comments field

2015-06-26 Thread reviewboard

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

New issue 3906 by den.a.la...@gmail.com: Spellchecker does not work in  
comments field

https://code.google.com/p/reviewboard/issues/detail?id=3906

Review Board version 2.0.15 (also same issue with the demo on the official  
site - v. 2.5 beta 2)


Spell checker does not work in the comments field. For example, when  
writing a new review in the diff view spell checker does not mark down word  
mistakes.


Maс OS X 10.10.3, Opera 30.0 and Chrome 43.0.2357.130 (64-bit)


Attachments:
	2015-06-26 17-39-15 Diff viewer demo | Diff Viewer | Review Board.png  381  
KB


--
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/d/optout.


Re: Issue 3906 in reviewboard: Spellchecker does not work in comments field

2015-06-26 Thread reviewboard

Updates:
Status: WontFix

Comment #1 on issue 3906 by trowb...@gmail.com: Spellchecker does not work  
in comments field

https://code.google.com/p/reviewboard/issues/detail?id=3906

Unfortunately, browsers make it impossible to combine a rich text field and  
spellchecking. If you want spellchecking, you'll have to uncheck Enable  
Markdown, which will convert the field to plain text.


--
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/d/optout.


Re: Issue 3570 in reviewboard: RB 2.0.7 shows 'error 500' when displaying the list of recent commits in SVN

2015-06-26 Thread reviewboard

Updates:
Status: Fixed

Comment #1 on issue 3570 by trowb...@gmail.com: RB 2.0.7 shows 'error 500'  
when displaying the list of recent commits in SVN

https://code.google.com/p/reviewboard/issues/detail?id=3570

This is fixed in git and will ship in 2.0.18. 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/d/optout.


Re: Issue 3888 in reviewboard: Can't add SVN repositories with untrusted certificate

2015-06-26 Thread reviewboard

Updates:
Status: PendingReview
Owner: chip...@gmail.com
Labels: Milestone-Release2.0.x Project-ReviewBoard SCM-Subversion

Comment #1 on issue 3888 by chip...@gmail.com: Can't add SVN repositories  
with untrusted certificate

https://code.google.com/p/reviewboard/issues/detail?id=3888

(No comment was entered for this change.)

--
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/d/optout.


Re: Issue 3888 in reviewboard: Can't add SVN repositories with untrusted certificate

2015-06-26 Thread reviewboard

Updates:
Status: Fixed

Comment #2 on issue 3888 by chip...@gmail.com: Can't add SVN repositories  
with untrusted certificate

https://code.google.com/p/reviewboard/issues/detail?id=3888

Fixed on release-2.0.x. (1f379ac). This will be in 2.0.18.

--
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/d/optout.


Unable to upgrade reviewboard site

2015-06-26 Thread Noopur Sankhere


Hi,


I am installing reviewboard for the first time and have completed all the 
steps. When I hit the url of my site I get following message on browser:
Review Board version mismatch

The version of Review Board running does not match the version the site was 
last upgraded to. You are running *1.7.28* and the site was last upgraded 
to *1.7.27*.

Please upgrade your site to fix this by running:

$ rb-site upgrade /path/to/site 

I have executed this command several times and then restarted my web server 
and memcached, still getting upper message to upgrade the site again and again. 
Following are the error logs it is showing in /var/log/httpd/error_log



[Fri Jun 26 14:43:01.199233 2015] [:error] [pid 8962] Traceback (most recent 
call last):
[Fri Jun 26 14:43:01.199244 2015] [:error] [pid 8962]   File 
/usr/lib/python2.7/site-packages/ReviewBoard-1.7.28-py2.7.egg/reviewboard/accounts/backends.py,
 line 697, in get_registered_auth_backends
[Fri Jun 26 14:43:01.199285 2015] [:error] [pid 8962] yield entry.name, 
entry.load()
[Fri Jun 26 14:43:01.199294 2015] [:error] [pid 8962]   File 
build/bdist.linux-i686/egg/pkg_resources.py, line 1953, in load
[Fri Jun 26 14:43:01.199303 2015] [:error] [pid 8962] if require: 
self.require(env, installer)
[Fri Jun 26 14:43:01.199311 2015] [:error] [pid 8962]   File 
build/bdist.linux-i686/egg/pkg_resources.py, line 1966, in require
[Fri Jun 26 14:43:01.199320 2015] [:error] [pid 8962] 
working_set.resolve(self.dist.requires(self.extras),env,installer))
[Fri Jun 26 14:43:01.199328 2015] [:error] [pid 8962]   File 
build/bdist.linux-i686/egg/pkg_resources.py, line 565, in resolve
[Fri Jun 26 14:43:01.199336 2015] [:error] [pid 8962] raise 
DistributionNotFound(req)  # XXX put more info here
[Fri Jun 26 14:43:01.199345 2015] [:error] [pid 8962] DistributionNotFound: 
mimeparse=0.1.3


I have already installed mimeparse 0.1.4. And I am unable to understand other 
errors.


Please suggest what could be the problem? 


-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Unable to upgrade reviewboard site

2015-06-26 Thread Stephen Gallagher
On Fri, Jun 26, 2015 at 7:07 AM Noopur Sankhere noopur.sankher...@gmail.com
wrote:

 Btw I am Installing Reviewboard in *Fedora 19* and used* yum install *command
 for all the installation.



Fedora 19 reached end-of-life on January 6th, 2015. It is highly
recommended that you move to a supported platform.



 On Friday, 26 June 2015 16:33:22 UTC+5:30, Noopur Sankhere wrote:

 Hi,


 I am installing reviewboard for the first time and have completed all the
 steps. When I hit the url of my site I get following message on browser:
 Review Board version mismatch

 The version of Review Board running does not match the version the site
 was last upgraded to. You are running *1.7.28* and the site was last
 upgraded to *1.7.27*.

 Please upgrade your site to fix this by running:

 $ rb-site upgrade /path/to/site

 I have executed this command several times and then restarted my web 
 server and memcached, still getting upper message to upgrade the site again 
 and again. Following are the error logs it is showing in 
 /var/log/httpd/error_log



 [Fri Jun 26 14:43:01.199233 2015] [:error] [pid 8962] Traceback (most recent 
 call last):
 [Fri Jun 26 14:43:01.199244 2015] [:error] [pid 8962]   File 
 /usr/lib/python2.7/site-packages/ReviewBoard-1.7.28-py2.7.egg/reviewboard/accounts/backends.py,
  line 697, in get_registered_auth_backends
 [Fri Jun 26 14:43:01.199285 2015] [:error] [pid 8962] yield entry.name, 
 entry.load()
 [Fri Jun 26 14:43:01.199294 2015] [:error] [pid 8962]   File 
 build/bdist.linux-i686/egg/pkg_resources.py, line 1953, in load
 [Fri Jun 26 14:43:01.199303 2015] [:error] [pid 8962] if require: 
 self.require(env, installer)
 [Fri Jun 26 14:43:01.199311 2015] [:error] [pid 8962]   File 
 build/bdist.linux-i686/egg/pkg_resources.py, line 1966, in require
 [Fri Jun 26 14:43:01.199320 2015] [:error] [pid 8962] 
 working_set.resolve(self.dist.requires(self.extras),env,installer))
 [Fri Jun 26 14:43:01.199328 2015] [:error] [pid 8962]   File 
 build/bdist.linux-i686/egg/pkg_resources.py, line 565, in resolve
 [Fri Jun 26 14:43:01.199336 2015] [:error] [pid 8962] raise 
 DistributionNotFound(req)  # XXX put more info here
 [Fri Jun 26 14:43:01.199345 2015] [:error] [pid 8962] DistributionNotFound: 
 mimeparse=0.1.3


 I have already installed mimeparse 0.1.4. And I am unable to understand 
 other errors.




You installed the python-mimeparse package from Fedora and that didn't
work? Odd.

Unfortunately, I can't help you here as with F19 after EOL, no new updates
can be made for it. I strongly recommend that you move to either Fedora 21
or RHEL/CentOS 7 (which also gets you Review Board 2.x)



 Please suggest what could be the problem?


  --
 Supercharge your Review Board with Power Pack:
 https://www.reviewboard.org/powerpack/
 Want us to host Review Board for you? Check out RBCommons:
 https://rbcommons.com/
 Happy user? Let us know! https://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google Groups
 reviewboard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to reviewboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Unable to upgrade reviewboard site

2015-06-26 Thread Noopur Sankhere
Btw I am Installing Reviewboard in *Fedora 19* and used* yum install *command 
for all the installation.

On Friday, 26 June 2015 16:33:22 UTC+5:30, Noopur Sankhere wrote:

 Hi,


 I am installing reviewboard for the first time and have completed all the 
 steps. When I hit the url of my site I get following message on browser:
 Review Board version mismatch

 The version of Review Board running does not match the version the site 
 was last upgraded to. You are running *1.7.28* and the site was last 
 upgraded to *1.7.27*.

 Please upgrade your site to fix this by running:

 $ rb-site upgrade /path/to/site 

 I have executed this command several times and then restarted my web 
 server and memcached, still getting upper message to upgrade the site again 
 and again. Following are the error logs it is showing in 
 /var/log/httpd/error_log



 [Fri Jun 26 14:43:01.199233 2015] [:error] [pid 8962] Traceback (most recent 
 call last):
 [Fri Jun 26 14:43:01.199244 2015] [:error] [pid 8962]   File 
 /usr/lib/python2.7/site-packages/ReviewBoard-1.7.28-py2.7.egg/reviewboard/accounts/backends.py,
  line 697, in get_registered_auth_backends
 [Fri Jun 26 14:43:01.199285 2015] [:error] [pid 8962] yield entry.name, 
 entry.load()
 [Fri Jun 26 14:43:01.199294 2015] [:error] [pid 8962]   File 
 build/bdist.linux-i686/egg/pkg_resources.py, line 1953, in load
 [Fri Jun 26 14:43:01.199303 2015] [:error] [pid 8962] if require: 
 self.require(env, installer)
 [Fri Jun 26 14:43:01.199311 2015] [:error] [pid 8962]   File 
 build/bdist.linux-i686/egg/pkg_resources.py, line 1966, in require
 [Fri Jun 26 14:43:01.199320 2015] [:error] [pid 8962] 
 working_set.resolve(self.dist.requires(self.extras),env,installer))
 [Fri Jun 26 14:43:01.199328 2015] [:error] [pid 8962]   File 
 build/bdist.linux-i686/egg/pkg_resources.py, line 565, in resolve
 [Fri Jun 26 14:43:01.199336 2015] [:error] [pid 8962] raise 
 DistributionNotFound(req)  # XXX put more info here
 [Fri Jun 26 14:43:01.199345 2015] [:error] [pid 8962] DistributionNotFound: 
 mimeparse=0.1.3


 I have already installed mimeparse 0.1.4. And I am unable to understand other 
 errors.


 Please suggest what could be the problem? 




-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.