Re: ReviewBoard extension hook

2015-12-15 Thread David Trowbridge
Jerome,

The hook that you're looking at is a pluggable way to choose how the
"approved" and "approval_failure" fields should behave (
https://www.reviewboard.org/docs/manual/2.5/webapi/2.0/resources/review-request/#fields).
These fields are used in things like git hook scripts to automatically
accept/reject a push based on whatever custom workflow a team may have.
That hook is therefore called when the API is accessed.

Probably what you want to do is have your extension listen to the
"review_published" signal from `reviewboard.reviews.signals` and then check
the ship_it state on the review object. There's an example of an extension
listening to signals at
https://github.com/reviewboard/rb-extension-pack/blob/master/rbwebhooks/rbwebhooks/handlers.py

-David

On Tue, Dec 15, 2015 at 8:05 AM  wrote:

> Hi,
> I'm looking to create a hook extension inside ReviewBoard. I manage to
> create and install it seem to be recognized and I can enable it. But I
> think I got the wrong hook and I cannot figure out when it is really called.
>
> I try the review-request-approval-hook, but it doesn't seem to be called
> after a ship it occure. When does this hook get called exactly?
>
>
> https://www.reviewboard.org/docs/manual/dev/extending/extensions/hooks/review-request-approval-hook/
>
> What I want to do is, when a review is getting a ship it, I want to change
> the related issue status inside Redmine. I installed python-redmine into my
> bitnami python stack fro review board. But I'm not sure which hook to use
> when a reviewer click on ship it, to perform script hook.
>
>
> Maybe there's some extension already existing for that? any good page for
> extension list?
> I found this, but aside from power pack, there ain't much:
> https://www.reviewboard.org/store/
>
> Thanks,
> Jerome
>
>
> --
> 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.
>
-- 
-David

-- 
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: ReviewBoard extension hook

2015-12-15 Thread Jérôme Godbout
Thanks David, that really helpful, I was indeed looking for the signals and
got confuse with the hook. I now get the differences between the two now.

Thanks again, regards,
Jerome

On Tue, Dec 15, 2015 at 12:26 PM, David Trowbridge 
wrote:

> Jerome,
>
> The hook that you're looking at is a pluggable way to choose how the
> "approved" and "approval_failure" fields should behave (
> https://www.reviewboard.org/docs/manual/2.5/webapi/2.0/resources/review-request/#fields).
> These fields are used in things like git hook scripts to automatically
> accept/reject a push based on whatever custom workflow a team may have.
> That hook is therefore called when the API is accessed.
>
> Probably what you want to do is have your extension listen to the
> "review_published" signal from `reviewboard.reviews.signals` and then check
> the ship_it state on the review object. There's an example of an extension
> listening to signals at
> https://github.com/reviewboard/rb-extension-pack/blob/master/rbwebhooks/rbwebhooks/handlers.py
>
> -David
>
> On Tue, Dec 15, 2015 at 8:05 AM  wrote:
>
>> Hi,
>> I'm looking to create a hook extension inside ReviewBoard. I manage to
>> create and install it seem to be recognized and I can enable it. But I
>> think I got the wrong hook and I cannot figure out when it is really called.
>>
>> I try the review-request-approval-hook, but it doesn't seem to be called
>> after a ship it occure. When does this hook get called exactly?
>>
>>
>> https://www.reviewboard.org/docs/manual/dev/extending/extensions/hooks/review-request-approval-hook/
>>
>> What I want to do is, when a review is getting a ship it, I want to
>> change the related issue status inside Redmine. I installed python-redmine
>> into my bitnami python stack fro review board. But I'm not sure which hook
>> to use when a reviewer click on ship it, to perform script hook.
>>
>>
>> Maybe there's some extension already existing for that? any good page for
>> extension list?
>> I found this, but aside from power pack, there ain't much:
>> https://www.reviewboard.org/store/
>>
>> Thanks,
>> Jerome
>>
>>
>> --
>> 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.
>>
> --
> -David
>
> --
> 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 a topic in the
> Google Groups "reviewboard" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/reviewboard/AEWqU7wrI0k/unsubscribe.
> To unsubscribe from this group and all its topics, 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.


ReviewBoard extension hook

2015-12-15 Thread jerome
Hi,
I'm looking to create a hook extension inside ReviewBoard. I manage to 
create and install it seem to be recognized and I can enable it. But I 
think I got the wrong hook and I cannot figure out when it is really called.

I try the review-request-approval-hook, but it doesn't seem to be called 
after a ship it occure. When does this hook get called exactly?

https://www.reviewboard.org/docs/manual/dev/extending/extensions/hooks/review-request-approval-hook/

What I want to do is, when a review is getting a ship it, I want to change 
the related issue status inside Redmine. I installed python-redmine into my 
bitnami python stack fro review board. But I'm not sure which hook to use 
when a reviewer click on ship it, to perform script hook.


Maybe there's some extension already existing for that? any good page for 
extension list?
I found this, but aside from power pack, there ain't much: 
https://www.reviewboard.org/store/

Thanks,
Jerome


-- 
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: [Testing Needed] Review Board 2.5.2 for RHEL/CentOS 7

2015-12-15 Thread Christian Hammond
Hi,

collectstatic isn't meant to be run by end users. It's intended only for
the packaging steps, and running it manually can cause problems. I want to
better understand the need to run this command, though. Can you go into
this a bit more?

Christian

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

On Tue, Dec 15, 2015 at 1:09 AM, Cian Mc Govern 
wrote:

> On 4 December 2015 at 16:18, Stephen Gallagher 
> wrote:
>
>> Hello, folks! It's time for a big update. As many of you are probably
>> aware, I maintain the RPMs of Review Board that live in Fedora's EPEL
>> project[1] (Extra Packages for Enterprise Linux).
>>
>
> Thanks for your work on this Stephen. No complaints from me, both a clean
> install and an upgrade worked without issue.
>
> One thing I noticed was that the ReviewBoard package doesn't require
> uglify-js which is required when running 'rb-site manage /path/to/site
> collectstatic'. It might be worth adding that in a future release, I
> believe it's only a build dependency at the moment.
>
> --
> 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: RB 2.5 and Comment Categorization extension

2015-12-15 Thread David Trowbridge
Ken,

There was an issue with multiple files registered on PyPI. Sorry for the
inconvenience. Please try again.

-David

On Mon, Dec 14, 2015 at 10:02 PM Ken Erickson  wrote:

> Downloading
> http://downloads.reviewboard.org/releases/rbcommenttype/1.0/rbcommenttype-1.0.1-py2.7.egg#md5=a4738481f293d379ed9dfe0609a2d4d0
> error: md5 validation failed for rbcommenttype-1.0.1-py2.7.egg; possible
> download problem?
>
>
> On Mon, Dec 14, 2015 at 4:17 PM David Trowbridge 
> wrote:
>
>> Hi,
>>
>> I just pushed an update to the comment categorization extension which
>> should fix the issue. Can you please try again?
>>
>> Thanks,
>> -David
>>
>> On Thu, Dec 10, 2015 at 2:33 PM Ken Erickson  wrote:
>>
>>> I have the same problem (and it also was the same under 2.0.x version as
>>> well before I upgraded to 2.5.2).
>>>
>>>
>>> On Tuesday, November 3, 2015 at 3:21:06 PM UTC-7, Paul Wolf wrote:

 I'm having problems getting this extension working on a new RB 2.5
 installation.  I'm able to install the extension, enable it, and configure
 some comment types.  However, when I go to add a review comment, the Type
 'select' has no values.  I've tried restarting my server but that didn't
 help. Has anyone else had problems using this extension with RB 2.5?
 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.
>>>
>> --
>> -David
>>
>> --
>> 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 a topic in the
>> Google Groups "reviewboard" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/reviewboard/uXxkNePzSTs/unsubscribe.
>> To unsubscribe from this group and all its topics, 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.
>
-- 
-David

-- 
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: [Testing Needed] Review Board 2.5.2 for RHEL/CentOS 7

2015-12-15 Thread Stephen Gallagher
Ken, Cian and Sean: since you have had positive experiences, would you mind
signing into Bodhi (instructions in the original message for this thread)
and providing positive karma? If all three of you did so, this can go to
the stable repo immediately. Otherwise, I have to wait until Friday to push
it without karma.
On Tue, Dec 15, 2015 at 6:17 AM Stephen Gallagher 
wrote:

> I left that out intentionally, though I may add it as a Suggests:
> dependency (which is not installed by default but may be offered as a
> suggestion by the package manager). It isn't required for normal operation
> and it pulls in a lot of dependencies itself. In order to keep the install
> size small, I skipped it.
> On Tue, Dec 15, 2015 at 4:09 AM Cian Mc Govern 
> wrote:
>
>> On 4 December 2015 at 16:18, Stephen Gallagher > > wrote:
>>
>>> Hello, folks! It's time for a big update. As many of you are probably
>>> aware, I maintain the RPMs of Review Board that live in Fedora's EPEL
>>> project[1] (Extra Packages for Enterprise Linux).
>>>
>>
>> Thanks for your work on this Stephen. No complaints from me, both a clean
>> install and an upgrade worked without issue.
>>
>> One thing I noticed was that the ReviewBoard package doesn't require
>> uglify-js which is required when running 'rb-site manage /path/to/site
>> collectstatic'. It might be worth adding that in a future release, I
>> believe it's only a build dependency at the moment.
>>
>> --
>> 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: RB 2.5 and Comment Categorization extension

2015-12-15 Thread Ken Erickson
Installed and working, thank you

On Tue, Dec 15, 2015 at 1:19 PM David Trowbridge  wrote:

> Ken,
>
> There was an issue with multiple files registered on PyPI. Sorry for the
> inconvenience. Please try again.
>
> -David
>
> On Mon, Dec 14, 2015 at 10:02 PM Ken Erickson 
> wrote:
>
>> Downloading
>> http://downloads.reviewboard.org/releases/rbcommenttype/1.0/rbcommenttype-1.0.1-py2.7.egg#md5=a4738481f293d379ed9dfe0609a2d4d0
>> error: md5 validation failed for rbcommenttype-1.0.1-py2.7.egg; possible
>> download problem?
>>
>>
>> On Mon, Dec 14, 2015 at 4:17 PM David Trowbridge 
>> wrote:
>>
>>> Hi,
>>>
>>> I just pushed an update to the comment categorization extension which
>>> should fix the issue. Can you please try again?
>>>
>>> Thanks,
>>> -David
>>>
>>> On Thu, Dec 10, 2015 at 2:33 PM Ken Erickson 
>>> wrote:
>>>
 I have the same problem (and it also was the same under 2.0.x version
 as well before I upgraded to 2.5.2).


 On Tuesday, November 3, 2015 at 3:21:06 PM UTC-7, Paul Wolf wrote:
>
> I'm having problems getting this extension working on a new RB 2.5
> installation.  I'm able to install the extension, enable it, and configure
> some comment types.  However, when I go to add a review comment, the Type
> 'select' has no values.  I've tried restarting my server but that didn't
> help. Has anyone else had problems using this extension with RB 2.5?
> 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.

>>> --
>>> -David
>>>
>>> --
>>> 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 a topic in the
>>> Google Groups "reviewboard" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/reviewboard/uXxkNePzSTs/unsubscribe.
>>> To unsubscribe from this group and all its topics, 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.
>>
> --
> -David
>
> --
> 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 a topic in the
> Google Groups "reviewboard" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/reviewboard/uXxkNePzSTs/unsubscribe.
> To unsubscribe from this group and all its topics, 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: GitLab hosting stopped working

2015-12-15 Thread Ian
Yeah I just double checked via GitLab's web UI.  The password for the 
shared account has changed since I originally set up the repositories.  I 
tried the "link new account" option and typed in the current username and 
password but it doesn't want to work for some reason.  Our GitLab 
installation has been upgraded a few times too, it's GitLab Enterprise 
Edition 7.14.3-ee 60aabef if that matters.

Ian

On Monday, December 7, 2015 at 1:53:02 AM UTC-8, Christian Hammond wrote:
>
> Hi Ian,
>
> Can you verify that the username associated with those repositories still 
> has the necessary access permissions on the GitLab server?
>
> I checked the code in question, involving repository verification and how 
> credentials are used, and it hasn't changed since 2.0.x, so at this point 
> I'd want to verify the GitLab setup.
>
> Christian
>
> -- 
> Christian Hammond - chri...@beanbaginc.com 
> Review Board - https://www.reviewboard.org
> Beanbag, Inc. - https://www.beanbaginc.com
>
> On Sun, Dec 6, 2015 at 3:11 PM, Ian  wrote:
>
>> Any idea on how I could fix this?
>>
>> Ian
>>
>>
>> On Tuesday, November 17, 2015 at 4:56:19 PM UTC-8, Ian wrote:
>>>
>>> Yes, existing review requests against the repository are loading, I just 
>>> can't change the repository configuration.
>>>
>>> Ian
>>>
>>> On Monday, November 16, 2015 at 11:30:51 PM UTC-8, Christian Hammond 
>>> wrote:

 Hi Ian,

 Do existing review requests against this repository still work? Is this 
 solely when changing the repository configuration?

 Christian

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

 On Mon, Nov 16, 2015 at 7:47 PM, Ian  wrote:

> I recently updated to ReviewBoard 2.5.1 and now I can't change any of 
> my GitLab repositories, when I do it says "A repository with this name 
> was 
> not found on this group, or your user may not have access to it."  I 
> verified that I can log into my GitLab installation and see the 
> repositories from a web browser running on the ReviewBoard server using 
> the 
> same account.  I don't suppose this is a known issue?  My config looks 
> like 
> this.
>
> Hosting Service: GitLab
> Service URL: https://gitlab.domain.com
> Account: username
> Repository Type: Git
> Repository Plan: Group
> GitLab Group Name: groupname
> Repository Name: repositoryname
>
> Ian
>
> -- 
> 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...@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: [Testing Needed] Review Board 2.5.2 for RHEL/CentOS 7

2015-12-15 Thread Ken Erickson
Done

On Tuesday, December 15, 2015 at 4:19:50 AM UTC-7, Stephen Gallagher wrote:
>
> Ken, Cian and Sean: since you have had positive experiences, would you 
> mind signing into Bodhi (instructions in the original message for this 
> thread) and providing positive karma? If all three of you did so, this can 
> go to the stable repo immediately. Otherwise, I have to wait until Friday 
> to push it without karma.
> On Tue, Dec 15, 2015 at 6:17 AM Stephen Gallagher <
> ste...@gallagherhome.com > wrote:
>
>> I left that out intentionally, though I may add it as a Suggests: 
>> dependency (which is not installed by default but may be offered as a 
>> suggestion by the package manager). It isn't required for normal operation 
>> and it pulls in a lot of dependencies itself. In order to keep the install 
>> size small, I skipped it.
>> On Tue, Dec 15, 2015 at 4:09 AM Cian Mc Govern > > wrote:
>>
>>> On 4 December 2015 at 16:18, Stephen Gallagher >> > wrote:
>>>
 Hello, folks! It's time for a big update. As many of you are probably 
 aware, I maintain the RPMs of Review Board that live in Fedora's EPEL 
 project[1] (Extra Packages for Enterprise Linux).

>>>  
>>> Thanks for your work on this Stephen. No complaints from me, both a 
>>> clean install and an upgrade worked without issue.
>>>
>>> One thing I noticed was that the ReviewBoard package doesn't require 
>>> uglify-js which is required when running 'rb-site manage /path/to/site 
>>> collectstatic'. It might be worth adding that in a future release, I 
>>> believe it's only a build dependency at the moment.
>>>
>>> -- 
>>> 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.