Re: Unable to import settings_local.py: No module named settings_local

2017-01-04 Thread pradeep kumar
Hi Christian,

After restart web server, my extension is showing in adamin/extensions 
page. But, when I enable my extension its failing with 500 error :

[Wed Jan 04 06:12:19.002675 2017] [:error] [pid 14184] Misconfiguration of 
certificate's CN and virtual name. The certificate CN has 
localhost4.localdomain4. We expected vmax-dev-reviewboard as virtual name.

Could you please provide solution for above error? 


Thanks for your timely help
Regards
Pradeep Kumar

On Monday, January 2, 2017 at 4:13:44 PM UTC+5:30, pradeep kumar wrote:
>
> Hi Christian,
>
> Thanks for the immediate response. I was on vacation last week, sorry for 
> the delay response.  
>
> I have written one extension as a package for customized widget on admin 
> page with the following files and directory structure :
>
> cd reviewboard
> mkdir -p mywidget
> cd mywidget
>
> mywidget
>   - setup.py
>   - mywidget (directory)
> - __init__.py
> - extension.py
> - admin_urls.py
> widgets (directory)
>  - my-widget.html
>
>
> setup.py :
> --
>
> from setuptools import setup
>
> PACKAGE = "mywidget"
> VERSION = "0.1"
>
> setup(
> name=PACKAGE,
> version=VERSION,
> description="Test of customized admin widget",
> author="pradeep",
> packages=["mywidget"],
> entry_points={
> 'reviewboard.extensions':
> '%s = mywidget.extension:MyWidget' % PACKAGE,
> },
> package_data={
> 'mywidget': [
> 'mywidget/widgets/my-widget.html',
> ],
> }
> )
>
>
> extension.py :
> 
>
> from django.utils.translation import ugettext_lazy as _
> from reviewboard.admin.widgets import Widget
> from reviewboard.extensions.base import Extension
> from reviewboard.extensions.hooks import AdminWidgetHook
>
>
> class SampleWidget(Widget):
> widget_id = 'my_sample_widget'
> title = _('My Widget')
> template = 'mywidget/widgets/my-widget.html'
>
> class MyWidget(Extension):
> def initialize(self):
> AdminWidgetHook(self, SampleWidget)
>
>
> my-widget.html :
> 
>
> 
> 
> 
> 
> 
> 
> 
> ADAM WIDGET
> 
> 
> 
> 
> None Available
> 
> 
> 
> 
> 
> 
>
>
> Reviewboard version : 2.5.7
>
>
> After that I ran 'python setup.py develop', it successfully generated 
> mywidget.egg-info. 
> Then I went to my reviewboard admin page, clicked on 'Extensions' and then 
> 'Scan for installed extensions'. my extension doesn't exist. 
>
>
> Could you please help me out here. Please correct me if I missed anything 
> or made wrong. I am new to Django.
>
> Note : I didn't find ./contrib/tools/generate_extension.py in my 
> reviewboard package.
>
> Please help me to add a customized widget on my admin page. 
>
>
> Thanks for your timely help. 
> Regards
> Pradeep Kumar
>
>
> On Thursday, December 22, 2016 at 5:53:46 AM UTC+5:30, Christian Hammond 
> wrote:
>>
>> Hi Pradeep,
>>
>> You'll need to follow the guide on writing, packaging, and loading 
>> extensions. This will have to be written as a packaged, loadable extension, 
>> which will be enabled through Review Board. It won't work as a standalone 
>> script, since it won't be running within the context of Review Board.
>>
>> Christian
>>
>>
>> On Tue, Dec 20, 2016 at 07:17 pradeep kumar  wrote:
>>
>>> Hello There,
>>>
>>> As 
>>> https://www.reviewboard.org/docs/manual/2.5/extending/extensions/hooks/admin-widget-hook/,
>>>  
>>> I was trying to add a widget to my reviewboard admin dashboard.
>>>
>>> Review Board 2.5.7
>>> Python Version 2.7.5
>>> django Version (1, 6, 12, 'alpha', 0)
>>> OS Version :
>>> Linux centos72_base 3.10.0-327.10.1.el7.x86_64 #1 SMP Tue Feb 16 
>>> 17:03:50 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
>>>
>>>
>>> When I try to run above example code, I got the following output :
>>>
>>> >>> import os
>>> >>> os.environ.setdefault('DJANGO_SETTINGS_MODULE', 
>>> 'reviewboard.settings')
>>> 'reviewboard.settings'
>>> >>> from django.utils.translation import ugettext_lazy as _
>>> >>> from reviewboard.admin.widgets import Widget
>>> 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.
>>>
>>>
>>> Could anyone please help me here and please provide detailed 
>>> step-by-step process (1. Where I need to keep my python script, 2. Where I 
>>> need to run my python script, 3. How to verify my widget is working or not, 
>>> 4. Do I need to restart reviewboard server etc.,) to create a new custom 
>>> widget on my reviewboard admin dashboard page? Sorry I am new to django 
>>> framework. Appreciate your timely response.
>>>
>>>
>>> Thanks & Regards
>>> Pradeep Kumar
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> -- 
>>>
>>>
>>> Supercharge your Review Board with Power Pack: 
>>> https://www.reviewboard.

Re: How to set proxy for SVN repo

2017-01-04 Thread Mathews Thomas
I had the same issue. I was able to solve by setting proxy options 
in /var/www/reviews.example.com/data/.subversion/servers file

Mathews

On Thursday, July 9, 2015 at 1:05:16 PM UTC+5:30, Qi Luo wrote:
>
> What environment variable should I set? For Subversion or for Apache?
>
> I tried this
>
> os.environ['http-proxy-host'] = "111.192.151.125"
> os.environ['http-proxy-port'] = "8080"
> os.environ['http-proxy-username'] = "username"
> os.environ['http-proxy-password'] = "password"
>
> it didn't work.
>
> On Wednesday, July 8, 2015 at 12:42:31 PM UTC+8, Christian Hammond wrote:
>>
>> Hi, 
>>
>> Depending on your setup, you'll either need a SetEnv in your Apache 
>> config file, or you'll need to set the environment in your reviewboard.wsgi 
>> file (in $sitedir/htdocs/). You'll then need to restart the web server. 
>>
>> See if that solves the problem. If not, we can look deeper into the 
>> setup. 
>>
>> Christian 
>>
>> --   
>> Christian Hammond - chri...@beanbaginc.com   
>> Review Board - https://www.reviewboard.org   
>> Beanbag, Inc. - https://www.beanbaginc.com 
>>
>> -Original Message- 
>> From: Qi Luo  
>> Reply: revie...@googlegroups.com > 
>> Date: July 7, 2015 at 9:31:17 PM 
>> To: revie...@googlegroups.com > 
>> Subject:  How to set proxy for SVN repo 
>>
>> > I'm on RB 2.0.15, Ubuntu 14.04 
>> >   
>> > I'm trying to add a SVN repo, unfortunately I need to set up a http 
>> proxy 
>> > for accessing that svn repo. I've found nowhere to configure the proxy 
>> for 
>> > review board. 
>> > I've tried to add a global http proxy at /etc/environment, and also 
>> added 
>> > proxy at /etc/subversion/servers, both not worked. 
>> >   
>> > Any idea? Thanks! 
>> >   
>> > -- 
>> > 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...@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: Can't add GitHub Enterprise repo

2017-01-04 Thread Christian Hammond
Hi Denys,

Hmm, there should have been something in that list..

Do you have Power Pack (https://www.reviewboard.org/powerpack/) installed,
and if so, what version? GitHub Enterprise is a Power Pack feature, and the
entry in standalone Review Board is just a placeholder describing how to
install Power Pack.

Christian

-- 
Christian Hammond
President/CEO of Beanbag 
Makers of Review Board 

On Wed, Jan 4, 2017 at 6:30 PM, Denys Pashutynskyi 
wrote:

> Hi All,
>
> I am having problems with adding GitHub Enterprise repo to my reviewboard
> setup (Review Board 2.5.7).
>
> "Account" under "REPOSITORY HOSTING" is always empty and "Repository type"
> is not selectable.
>
> Do you have an idea what might be wrong?
>
> Thanks!
>
>
> 
>
>
> 
>
>
>
> --
> 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.


Can't add GitHub Enterprise repo

2017-01-04 Thread Denys Pashutynskyi
Hi All,

I am having problems with adding GitHub Enterprise repo to my reviewboard 
setup (Review Board 2.5.7).

"Account" under "REPOSITORY HOSTING" is always empty and "Repository type" 
is not selectable. 

Do you have an idea what might be wrong? 

Thanks!







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


How can a script determine if 'rbt post' needs a '-u' in a git post-commit workflow?

2017-01-04 Thread Terry Bringazi
Hello, 

I'm having a specific problem in trying to automate our use of 'rbt post' 
in a git post-commit environment.  Any advice or solution would be 
appreciated.

In our current workflow, developers commit and push to their own branches 
prior to peer review, and then we review changes in those branches before 
merging from their branches.

I'm trying to automate calls to the rbt command for changes that have 
already been made to developer branches prior to merging from those 
branches.  Basically, on the first 'rbt post', I want to call it without a 
'-u', and for all subsequent calls for the same branch to include a '-u'.

MY PROBLEM is, I have not yet been able to create a script that can 
determine if 'rbt post' should be called with an update option '-u' or not.

My script currently calls rbt post as follows,  (Note that $RB_UPDATE is 
equal to either '-u' or ''):
rbt post --api-token $RB_API_TOKEN $RB_UPDATE --guess-summary 
--guess-description --branch $BRANCH --tracking-branch $PARENT_BRANCH -d -p 
$commit_id

I've found no efficient automated way to use 'rbt api-get' on 
/review-requests/ to determine if rbt has any commit records for a 
developer owned branch.  My thinking was that if reviewboard knows about a 
prior commit for the branch, then for any subsequent 'rbt post', $RB_UPDATE 
should be set to '-u'.I also tried using curl over http with a GET, but 
did not find the right incantation.

Is there an efficient way to automatically determine if 'rbt post' should 
be called with an update option '-u' or not?

Does my approach for automating use of reviewboard seem reasonable, or is 
there a better strategy that I should consider?

Thank you,

Terry L. Bringazi


-- 
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: Problem with 'python setup.py develop' - [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE]

2017-01-04 Thread Christian Hammond
This *should* be working again. Can you give it a try?

The problem was that, in the process of renewing a certificate, I also
enabled HTTP -> HTTPS redirect, but this broke older versions of Python
that couldn't work with SNI-based SSL setups (an unfortunate requirement in
our case). I've turned off the redirect, so it should be possible to
download over HTTP again.

Christian

-- 
Christian Hammond
President/CEO of Beanbag 
Makers of Review Board 

On Wed, Jan 4, 2017 at 1:07 PM, Christian Hammond 
wrote:

> Hi,
>
> There was a change made to the servers that broke this. I'm working on a
> fix now. Sorry for the trouble! Keep trying periodically (some things will
> need to sync across our CDN), and let me know if it begins to work for you.
>
> Christian
>
>
> On Wed, Jan 4, 2017 at 07:16  wrote:
>
>> Hi,
>>
>> I tried to run 'python setup.py develop' but I have error as below:
>>
>> Download error on http://downloads.reviewboard.org/mirror/: [SSL:
>> SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:590)
>> -- Some packages may not be found!
>> Download error on http://downloads.reviewboard.
>> org/releases/ReviewBoard/1.7/: [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE]
>> sslv3 alert handshake failure (_ssl.c:590) -- Some packages may not be
>> found!
>>
>> I suppose it is related to certificate upgrade on
>> downloads.reviewboard.org (protocol TLS 1.2 now)
>>
>> I use ReviewBoard 1.7.26 on Ubuntu 16.04. Virtualenv as below:
>>
>> chardet==2.3.0
>> cryptography==1.2.3
>> Django==1.4.22
>> django-evolution==0.6.10
>> django-loginas==0.1.4
>> django-pipeline==1.2.24
>> Djblets==0.7.33
>> docutils==0.13.1
>> enum34==1.1.2
>> futures==3.0.5
>> gitdb==0.6.4
>> GitPython==1.0.1
>> idna==2.0
>> ipaddress==1.0.16
>> itsdangerous==0.24
>> Jinja2==2.8
>> jsmin==2.2.1
>> Mako==1.0.3
>> Markdown==2.6.7
>> MarkupSafe==0.23
>> mimeparse==0.1.3
>> msgpack-python==0.4.6
>> mysqlclient==1.3.7
>> ndg-httpsclient==0.4.0
>> ordereddict==1.1
>> paramiko==2.1.1
>> pbr==1.10.0
>> pyasn1==0.1.9
>> pycrypto==2.6.1
>> pycurl==7.43.0
>> Pygments==2.1.3
>> PyMySQL==0.7.2
>> pyOpenSSL==0.15.1
>> python-apt==1.1.0b1
>> python-dateutil==1.5
>> python-ldap==2.4.22
>> python-memcached==1.58
>> python-systemd==231
>> pytz==2016.10
>> PyYAML==3.11
>> pyzmq==15.2.0
>> recaptcha-client==1.0.6
>> requests==2.9.1
>> salt==2016.11.1
>> simplejson==3.10.0
>> six==1.10.0
>> smmap==0.9.0
>> stevedore==1.19.1
>> suds==0.4
>> tornado==4.2.1
>> urllib3==1.13.1
>> virtualenv==15.1.0
>> virtualenv-clone==0.2.6
>> virtualenvwrapper==4.7.2
>>
>>
>> Any thoughts?
>>
>>
>>
>>
>>
>>
>>
>>
>> --
>>
>>
>> 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: Problem with 'python setup.py develop' - [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE]

2017-01-04 Thread Christian Hammond
Hi,

There was a change made to the servers that broke this. I'm working on a
fix now. Sorry for the trouble! Keep trying periodically (some things will
need to sync across our CDN), and let me know if it begins to work for you.

Christian


On Wed, Jan 4, 2017 at 07:16  wrote:

> Hi,
>
> I tried to run 'python setup.py develop' but I have error as below:
>
> Download error on http://downloads.reviewboard.org/mirror/: [SSL:
> SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:590)
> -- Some packages may not be found!
> Download error on
> http://downloads.reviewboard.org/releases/ReviewBoard/1.7/: [SSL:
> SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:590)
> -- Some packages may not be found!
>
> I suppose it is related to certificate upgrade on
> downloads.reviewboard.org (protocol TLS 1.2 now)
>
> I use ReviewBoard 1.7.26 on Ubuntu 16.04. Virtualenv as below:
>
> chardet==2.3.0
> cryptography==1.2.3
> Django==1.4.22
> django-evolution==0.6.10
> django-loginas==0.1.4
> django-pipeline==1.2.24
> Djblets==0.7.33
> docutils==0.13.1
> enum34==1.1.2
> futures==3.0.5
> gitdb==0.6.4
> GitPython==1.0.1
> idna==2.0
> ipaddress==1.0.16
> itsdangerous==0.24
> Jinja2==2.8
> jsmin==2.2.1
> Mako==1.0.3
> Markdown==2.6.7
> MarkupSafe==0.23
> mimeparse==0.1.3
> msgpack-python==0.4.6
> mysqlclient==1.3.7
> ndg-httpsclient==0.4.0
> ordereddict==1.1
> paramiko==2.1.1
> pbr==1.10.0
> pyasn1==0.1.9
> pycrypto==2.6.1
> pycurl==7.43.0
> Pygments==2.1.3
> PyMySQL==0.7.2
> pyOpenSSL==0.15.1
> python-apt==1.1.0b1
> python-dateutil==1.5
> python-ldap==2.4.22
> python-memcached==1.58
> python-systemd==231
> pytz==2016.10
> PyYAML==3.11
> pyzmq==15.2.0
> recaptcha-client==1.0.6
> requests==2.9.1
> salt==2016.11.1
> simplejson==3.10.0
> six==1.10.0
> smmap==0.9.0
> stevedore==1.19.1
> suds==0.4
> tornado==4.2.1
> urllib3==1.13.1
> virtualenv==15.1.0
> virtualenv-clone==0.2.6
> virtualenvwrapper==4.7.2
>
>
> Any thoughts?
>
>
>
>
>
>
>
>
> --
>
>
> 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: how to enable single sign on with google

2017-01-04 Thread David Trowbridge
Sushant,

Review Board currently does not support using third-party OAuth services
for authentication.

-David

On Wed, Jan 4, 2017 at 12:27 AM Sushant Gupta 
wrote:

> Is there is any way/workaround to integrate review board with gmail. So I
> can login to reviewboard with my google credentials.
>
> --
> 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.


Problem with 'python setup.py develop' - [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE]

2017-01-04 Thread bgrabows1
Hi,

I tried to run 'python setup.py develop' but I have error as below:

Download error on http://downloads.reviewboard.org/mirror/: [SSL: 
SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:590) 
-- Some packages may not be found!
Download error on 
http://downloads.reviewboard.org/releases/ReviewBoard/1.7/: [SSL: 
SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:590) 
-- Some packages may not be found!

I suppose it is related to certificate upgrade on 
downloads.reviewboard.org (protocol TLS 1.2 now)

I use ReviewBoard 1.7.26 on Ubuntu 16.04. Virtualenv as below:

chardet==2.3.0
cryptography==1.2.3
Django==1.4.22
django-evolution==0.6.10
django-loginas==0.1.4
django-pipeline==1.2.24
Djblets==0.7.33
docutils==0.13.1
enum34==1.1.2
futures==3.0.5
gitdb==0.6.4
GitPython==1.0.1
idna==2.0
ipaddress==1.0.16
itsdangerous==0.24
Jinja2==2.8
jsmin==2.2.1
Mako==1.0.3
Markdown==2.6.7
MarkupSafe==0.23
mimeparse==0.1.3
msgpack-python==0.4.6
mysqlclient==1.3.7
ndg-httpsclient==0.4.0
ordereddict==1.1
paramiko==2.1.1
pbr==1.10.0
pyasn1==0.1.9
pycrypto==2.6.1
pycurl==7.43.0
Pygments==2.1.3
PyMySQL==0.7.2
pyOpenSSL==0.15.1
python-apt==1.1.0b1
python-dateutil==1.5
python-ldap==2.4.22
python-memcached==1.58
python-systemd==231
pytz==2016.10
PyYAML==3.11
pyzmq==15.2.0
recaptcha-client==1.0.6
requests==2.9.1
salt==2016.11.1
simplejson==3.10.0
six==1.10.0
smmap==0.9.0
stevedore==1.19.1
suds==0.4
tornado==4.2.1
urllib3==1.13.1
virtualenv==15.1.0
virtualenv-clone==0.2.6
virtualenvwrapper==4.7.2


Any thoughts? 

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


how to enable single sign on with google

2017-01-04 Thread Sushant Gupta
Is there is any way/workaround to integrate review board with gmail. So I 
can login to reviewboard with my google credentials. 

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