Re: Connecting Reviewboard DB

2016-03-21 Thread David Trowbridge
John,

There's no pre-written script (that I know of) for SVN, but it probably
wouldn't be too hard to create.

-David

On Mon, Mar 21, 2016 at 2:30 AM john levin  wrote:

> Hi David,
>
> Thanks, Can this be utilized for SVN ?
>
> /BR
> John
>
>
> On Saturday, February 20, 2016 at 3:58:19 AM UTC+5:30, David Trowbridge
> wrote:
>
>> John,
>>
>> I'd suggest making use of the "approval" state. This is available through
>> the API, and can be checked by a pre-commit hook. An example hook for git
>> can be found at
>> https://github.com/reviewboard/rbtools/blob/master/contrib/tools/git-hook-check-approval
>>
>> By default, a review request is "approved" if there's at least one "Ship
>> It" and no open issues. That logic can be changed by creating an extension
>> that uses the ReviewRequestApprovalHook:
>> https://www.reviewboard.org/docs/manual/2.5/extending/extensions/hooks/review-request-approval-hook/
>>
>> If you choose to do it through some other mechanism, I'd highly recommend
>> making use of the API rather than trying to query the database directly.
>>
>> -David
>>
>>
>>
>> On Thu, Feb 18, 2016 at 2:23 AM john levin  wrote:
>>
> Hello,
>>>
>>> I'm pretty new to ReviewBoard. The Motive of us to Create a Pre-commit
>>> hook and block users whose review havent approved.
>>> So is this possible to connect ReviewBoard DB in backend ? So that we
>>> can give query and make a check in pre-commit hooks.
>>> Or any other way to achieve this ?
>>>
>>> /BR
>>> John
>>>
>>> --
>>> 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.
>>>
>> --
>> -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.
>
-- 
-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: Connecting Reviewboard DB

2016-03-21 Thread john levin
Hi David,

Thanks, Can this be utilized for SVN ?

/BR
John

On Saturday, February 20, 2016 at 3:58:19 AM UTC+5:30, David Trowbridge 
wrote:
>
> John,
>
> I'd suggest making use of the "approval" state. This is available through 
> the API, and can be checked by a pre-commit hook. An example hook for git 
> can be found at 
> https://github.com/reviewboard/rbtools/blob/master/contrib/tools/git-hook-check-approval
>
> By default, a review request is "approved" if there's at least one "Ship 
> It" and no open issues. That logic can be changed by creating an extension 
> that uses the ReviewRequestApprovalHook: 
> https://www.reviewboard.org/docs/manual/2.5/extending/extensions/hooks/review-request-approval-hook/
>
> If you choose to do it through some other mechanism, I'd highly recommend 
> making use of the API rather than trying to query the database directly.
>
> -David
>
>
>
> On Thu, Feb 18, 2016 at 2:23 AM john levin  > wrote:
>
>> Hello,
>>
>> I'm pretty new to ReviewBoard. The Motive of us to Create a Pre-commit 
>> hook and block users whose review havent approved. 
>> So is this possible to connect ReviewBoard DB in backend ? So that we can 
>> give query and make a check in pre-commit hooks.
>> Or any other way to achieve this ?
>>
>> /BR
>> John
>>
>> -- 
>> 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.
>>
> -- 
> -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: Connecting Reviewboard DB

2016-02-19 Thread David Trowbridge
John,

I'd suggest making use of the "approval" state. This is available through
the API, and can be checked by a pre-commit hook. An example hook for git
can be found at
https://github.com/reviewboard/rbtools/blob/master/contrib/tools/git-hook-check-approval

By default, a review request is "approved" if there's at least one "Ship
It" and no open issues. That logic can be changed by creating an extension
that uses the ReviewRequestApprovalHook:
https://www.reviewboard.org/docs/manual/2.5/extending/extensions/hooks/review-request-approval-hook/

If you choose to do it through some other mechanism, I'd highly recommend
making use of the API rather than trying to query the database directly.

-David



On Thu, Feb 18, 2016 at 2:23 AM john levin  wrote:

> Hello,
>
> I'm pretty new to ReviewBoard. The Motive of us to Create a Pre-commit
> hook and block users whose review havent approved.
> So is this possible to connect ReviewBoard DB in backend ? So that we can
> give query and make a check in pre-commit hooks.
> Or any other way to achieve this ?
>
> /BR
> John
>
> --
> 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.


Connecting Reviewboard DB

2016-02-18 Thread john levin
Hello,

I'm pretty new to ReviewBoard. The Motive of us to Create a Pre-commit hook 
and block users whose review havent approved. 
So is this possible to connect ReviewBoard DB in backend ? So that we can 
give query and make a check in pre-commit hooks.
Or any other way to achieve this ?

/BR
John

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