Re: migrate reviewboard on a new server

2018-01-12 Thread Christian Hammond
Hi Sharon,

Most likely, your old database contains some tables in MySQL's MyISAM
format. The default for tables these days is InnoDB. You'd probably
encounter this error even if you were just upgrading on the same server.

The solution is really easy. Take your database backup (which should just
be a .sql file) and edit it. Change all occurrences of ENGINE=MyISAM to
ENGINE=InnoDB. (Check for case sensitivity issues in here). Then restore
the backup and try the upgrade again. It should work this time.

You'll probably want to recreate the database on the new server first, just
to ensure you're restoring into an empty database.

Christian

On Fri, Jan 12, 2018 at 2:37 PM, sharon chen  wrote:

> I tried to migrate reviewboard from an old server to a VM.
>
> The older server:
> OS: SUSE 11.4
> reviewboard: 1.6.3
>
> The new server:
> centos 7 or ubuntu 16.04
> reviewboard: Review Board 2.5.16
>
>
> What is the best approach to achieve this?
>
>
> I have tested the following approach:
>
> 1. create the db backup on the old server (ok)
> 2. cp the db backup and restore the db on the new server (ok)
> 3. cp the rb site data /var/www/mysite on the new server (ok)
> 4. run "rb-site upgrade /var/www/mysite"
>
> I failed at this step with the following error on both centos and ubuntu
> 16.04:
>
> Applying database evolutions for auth...
> Applying database evolutions for contenttypes...
> Applying database evolutions for accounts...
> Applying database evolutions for attachments...
> Applying database evolutions for changedescs...
> Applying database evolutions for diffviewer...
> Applying database evolutions for reviews...
> Database evolutions for reviews failed!
> The SQL statement was: ALTER TABLE `reviews_reviewrequest_depends_on` ADD
> CONSTRAINT `from_reviewrequest_id_refs_id_623cfa96` FOREIGN KEY
> (`from_reviewrequest_id`) REFERENCES `reviews_reviewrequest` (`id`);
> The database error was: (1005, 'Can\'t create table
> `reviewboard`.`#sql-48c6_5e` (errno: 150 "Foreign key constraint is
> incorrectly formed")')
>
> CommandError: Error applying evolution for reviews: (1005, 'Can\'t create
> table `reviewboard`.`#sql-48c6_5e` (errno: 150 "Foreign key constraint is
> incorrectly formed")')
>
>
> Could you advice what I missed and how to resolve the issue? Will it be
> better when doing "rb-site upgrade" on the old server first, then migrate?
>
>
> Thanks,
> Sharon Chen
>
> --
> 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
> "Review Board Community" 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.
>



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

-- 
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 
"Review Board Community" 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: Comment Categorization Extension

2018-01-12 Thread Christian Hammond
Hi Lokesh,

Is the server disconnected fully from the Internet, then? How do you
maintain Review Board upgrades?

You can install the extension packages manually. If you downloaded the
*.egg file, you can do:

easy_install .egg

If you downloaded the *.whl, you can do:

pip install .whl

You may need to run those as root, depending on your setup. Note that while
these are simple extensions, more complex ones may require additional
packages as dependencies, which you'd also have to get by hand. Those could
in turn require others.

Christian

On Thu, Jan 11, 2018 at 9:22 PM, Lokesh Rajoria 
wrote:

> Hi Christian,
>
> we are not behind an HTTP(S) proxy server on the computer due to some
> constraint. is there any way do it offline. I mean we have download all the
> packages from https://pypi.python.org/simple/rbcommenttype/ manually. can
> we do it locally?
>
> Thanks & Regards,
> Lokesh
>
>
> On Friday, 12 January 2018 02:42:53 UTC+5:30, Christian Hammond wrote:
>
>> Hi Lokesh,
>>
>> Looks like you’re having trouble connecting to PyPI itself. Are you
>> behind an HTTP(S) proxy server on that computer? If so, you may need to set
>> the http_proxy and https_proxy environment variables.
>>
>> Christian
>>
>>
>> On Thu, Jan 11, 2018 at 02:44 Lokesh Rajoria 
>> wrote:
>>
>>> Hi Reviewboard,
>>>
>>> I am trying to install comment category extension on my fedora21 release.
>>>
>>> $> sudo easy_install -U rbcommenttype
>>> Searching for rbcommenttype
>>> Reading https://pypi.python.org/simple/rbcommenttype/
>>> Download error on https://pypi.python.org/simple/rbcommenttype/: [Errno
>>> -2] Name or service not known -- Some packages may not be found!
>>> Couldn't find index page for 'rbcommenttype' (maybe misspelled?)
>>> Scanning index of all packages (this may take a while)
>>> Reading https://pypi.python.org/simple/
>>> Download error on https://pypi.python.org/simple/: [Errno -2] Name or
>>> service not known -- Some packages may not be found!
>>> No local packages or download links found for rbcommenttype
>>> error: Could not find suitable distribution for
>>> Requirement.parse('rbcommenttype')
>>>
>>> could you please help me on this.
>>>
>>> Thanks & Regards,
>>> Lokesh
>>>
>>>
>>> --
>>> 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 "Review Board Community" 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.
>>>
>> --
>> --
>> Christian Hammond
>> President/CEO of Beanbag
>> Makers of Review Board
>>
> --
> 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
> "Review Board Community" 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.
>



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

-- 
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 
"Review Board Community" 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.


migrate reviewboard on a new server

2018-01-12 Thread sharon chen
I tried to migrate reviewboard from an old server to a VM.

The older server:
OS: SUSE 11.4 
reviewboard: 1.6.3

The new server:
centos 7 or ubuntu 16.04
reviewboard: Review Board 2.5.16 


What is the best approach to achieve this? 


I have tested the following approach:

1. create the db backup on the old server (ok)
2. cp the db backup and restore the db on the new server (ok)
3. cp the rb site data /var/www/mysite on the new server (ok)
4. run "rb-site upgrade /var/www/mysite" 

I failed at this step with the following error on both centos and ubuntu 
16.04:

Applying database evolutions for auth...
Applying database evolutions for contenttypes...
Applying database evolutions for accounts...
Applying database evolutions for attachments...
Applying database evolutions for changedescs...
Applying database evolutions for diffviewer...
Applying database evolutions for reviews...
Database evolutions for reviews failed!
The SQL statement was: ALTER TABLE `reviews_reviewrequest_depends_on` ADD 
CONSTRAINT `from_reviewrequest_id_refs_id_623cfa96` FOREIGN KEY 
(`from_reviewrequest_id`) REFERENCES `reviews_reviewrequest` (`id`);
The database error was: (1005, 'Can\'t create table 
`reviewboard`.`#sql-48c6_5e` (errno: 150 "Foreign key constraint is 
incorrectly formed")')

CommandError: Error applying evolution for reviews: (1005, 'Can\'t create 
table `reviewboard`.`#sql-48c6_5e` (errno: 150 "Foreign key constraint is 
incorrectly formed")')


Could you advice what I missed and how to resolve the issue? Will it be 
better when doing "rb-site upgrade" on the old server first, then migrate?


Thanks,
Sharon Chen

-- 
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 
"Review Board Community" 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 perforce repository

2018-01-12 Thread David Trowbridge
The error message is generic for all repository types, most of which have a
"path". Would it be possible for you to share a screenshot of what you're
putting into the field? (possibly anonymizing any domain names)? Can you
check the Review Board log file after attempting to save it to see if there
are any errors listed there?

The name field is an identifier which will be used within Review Board, and
can be whatever you like.

On Fri, Jan 12, 2018 at 10:00 AM Giuseppe Salvatore <
giuseppe.salvat...@gmail.com> wrote:

> Hi David,
>
> yes I do. And it's strange that the error message refers to a path! Also,
> is the Name field the name of the repository or a name that will identify
> the repository in review board (btw I tried putting the real repository
> name in perforce and doesn't work as well)
> It's strange that the error message refers to a path instead of an address
> or hostname...
>
> We are in the process of evaluating different tools to implement a code
> review process in our team (possibly the whole company) but unfortunately
> if I am not able to get it working I will have to drop RB. I would prefer
> not to since it was me to recommend it.
>
> Thanks for your help and support
>
> Giuseppe
>
> On 11 January 2018 at 00:34, David Trowbridge  wrote:
>
>> Giuseppe,
>>
>> There's no way of configuring it via the command-line. The repository has
>> to be set up in the Review Board admin UI first. Are you still getting the
>> same error with the correct P4PORT string?
>>
>>
>> "rbt setup-repo" is for configuring RBTools (creating a .reviewboardrc
>> file). This is for after you've set it up in the web UI. The command is
>> poorly named, and we're hoping to improve it (and rename it) in the future.
>>
>> -David
>>
>> On Tue, Jan 9, 2018 at 3:00 AM Giuseppe Salvatore <
>> giuseppe.salvat...@gmail.com> wrote:
>>
>>> Hi David,
>>>
>>> thanks for your reply. Yes I tried that as well but didn't work. I am
>>> wondering if there's anyway of doing it using command line. I tried also
>>> using rbt setup-repo command but I am not sure if that's equivalent of
>>> doing it from RB web dashboard.
>>>
>>> BTW also rbt setup-repo doesn't work. If I put perforce.server.com:1666
>>> (just an example) the error message is also quite confusing, it says
>>>
>>> ERROR: The current directory does not contain a checkout from a
>>> supported source code repository.
>>>
>>> Running that command in debug mode, it looks like checks with the known
>>> repository tools, but then when it finds one (p4 info in my case succeeds)
>>> then it wants probably the current directory to be on a perforce workspace
>>>
>>> Any ideas?
>>>
>>> Thanks
>>> Giuseppe
>>>
>>>
>>> On Monday, 8 January 2018 19:16:51 UTC, David Trowbridge wrote:
>>>
 Giuseppe,

 The path should be the P4PORT setting. So it should look something like
 "perforce.example.com:1666"

 -David

 On Mon, Jan 8, 2018 at 11:08 AM Giuseppe Salvatore <
 giuseppe@gmail.com> wrote:

>>> Hi,
> I am trying to add a perforce repository in the list of available
> repositories. Unfortunately it looks like from the admin dashbord this
> can't be done. In REPOSITORY INFORMATION -> Path  it is not really clear
> what is should go. From the description I am assuming p4server:p4port but
> that doesn't work and the error message is confusing. Says
>
> A repository was not found at the specified path.
>
> It is not clear if I have to put the path of the local p4
> workspace/client. It wouldn't make sense to me.
>
> Any comment will be appreciated
>
> Thanks,
> Giuseppe
>
> --
> 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 "Review Board Community" 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 "Review Board Community" 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 

Re: RBTools Ticket #4628: rbt patch --print cannot be run outside of a source tree

2018-01-12 Thread David Trowbridge
--
To reply, visit https://hellosplat.com/s/beanbag/tickets/4628/
--

New update by alexander
For Beanbag, Inc. > RBTools > Ticket #4628


Reply:

The issue here is that it doesn't know what server to connect to, so it's 
trying to autodetect it based on your working directory. If you specify 
--server or put a REVIEWBOARD_URL in ~/.reviewboardrc, you'll be able to use 
"rbt patch" without needing a local checkout.

We can try to improve the output in this case.


Tags:
+ BetterErrors
+ EasyFix

-- 
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 https://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.


Re: Review Board Ticket #4617: Diff fragments do not load correctly when the fragment contains non-ASCII characters

2018-01-12 Thread David Trowbridge
--
To reply, visit https://hellosplat.com/s/beanbag/tickets/4617/
--

New update by jhominal
For Beanbag, Inc. > Review Board > Ticket #4617


Status:
- Confirmed
+ Fixed

-- 
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 https://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.


Re: How to mark single reviewed file as approved

2018-01-12 Thread Michał Grochowina

The functionality is shown here - Eric Brown accepted some files here:

http://support.smartbear.com/support/media/images/support/kb/data/2012/6/26/ws-review-overview-materials.zoom85.png

-- 
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 
"Review Board Community" 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 mark single reviewed file as approved

2018-01-12 Thread Michał Grochowina
I used before CodeCollaborator. Apart from approving entire review, the 
reviewers could mark single files as approved. It was very helpful, because 
the owner (author) thanks for that know that the particular file is OK for 
the particular reviewer. Also reviewer after uploading a new rework by 
author could only focus on not approved files recently. That was great.
Is it possible to have that option in Review Board?

-- 
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 
"Review Board Community" 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 perforce repository

2018-01-12 Thread Giuseppe Salvatore
Hi David,

yes I do. And it's strange that the error message refers to a path! Also,
is the Name field the name of the repository or a name that will identify
the repository in review board (btw I tried putting the real repository
name in perforce and doesn't work as well)
It's strange that the error message refers to a path instead of an address
or hostname...

We are in the process of evaluating different tools to implement a code
review process in our team (possibly the whole company) but unfortunately
if I am not able to get it working I will have to drop RB. I would prefer
not to since it was me to recommend it.

Thanks for your help and support

Giuseppe

On 11 January 2018 at 00:34, David Trowbridge  wrote:

> Giuseppe,
>
> There's no way of configuring it via the command-line. The repository has
> to be set up in the Review Board admin UI first. Are you still getting the
> same error with the correct P4PORT string?
>
>
> "rbt setup-repo" is for configuring RBTools (creating a .reviewboardrc
> file). This is for after you've set it up in the web UI. The command is
> poorly named, and we're hoping to improve it (and rename it) in the future.
>
> -David
>
> On Tue, Jan 9, 2018 at 3:00 AM Giuseppe Salvatore <
> giuseppe.salvat...@gmail.com> wrote:
>
>> Hi David,
>>
>> thanks for your reply. Yes I tried that as well but didn't work. I am
>> wondering if there's anyway of doing it using command line. I tried also
>> using rbt setup-repo command but I am not sure if that's equivalent of
>> doing it from RB web dashboard.
>>
>> BTW also rbt setup-repo doesn't work. If I put perforce.server.com:1666
>> (just an example) the error message is also quite confusing, it says
>>
>> ERROR: The current directory does not contain a checkout from a supported
>> source code repository.
>>
>> Running that command in debug mode, it looks like checks with the known
>> repository tools, but then when it finds one (p4 info in my case succeeds)
>> then it wants probably the current directory to be on a perforce workspace
>>
>> Any ideas?
>>
>> Thanks
>> Giuseppe
>>
>>
>> On Monday, 8 January 2018 19:16:51 UTC, David Trowbridge wrote:
>>
>>> Giuseppe,
>>>
>>> The path should be the P4PORT setting. So it should look something like "
>>> perforce.example.com:1666"
>>>
>>> -David
>>>
>>> On Mon, Jan 8, 2018 at 11:08 AM Giuseppe Salvatore <
>>> giuseppe@gmail.com> wrote:
>>>
>> Hi,
 I am trying to add a perforce repository in the list of available
 repositories. Unfortunately it looks like from the admin dashbord this
 can't be done. In REPOSITORY INFORMATION -> Path  it is not really clear
 what is should go. From the description I am assuming p4server:p4port but
 that doesn't work and the error message is confusing. Says

 A repository was not found at the specified path.

 It is not clear if I have to put the path of the local p4
 workspace/client. It wouldn't make sense to me.

 Any comment will be appreciated

 Thanks,
 Giuseppe

 --
 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 "Review Board Community" 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
>> "Review Board Community" 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 a topic in the
> Google Groups "Review Board Community" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/reviewboard/PvsyfplzUIg/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 

RBTools Ticket #4628: rbt patch --print cannot be run outside of a source tree

2018-01-12 Thread Alexander Dorogov
--
To reply, visit https://hellosplat.com/s/beanbag/tickets/4628/
--

New ticket #4628 by alexander
For Beanbag, Inc. > RBTools

Status: New
Tags: Priority:Medium, Type:Defect


--
rbt patch --print cannot be run outside of a source tree
==

# What version are you running?
0.7.10

# What steps will reproduce the problem?
Run rbt patch --print outside of a source tree.


# What is the expected output? What do you see instead?
According to 0.7.8 patch notes:
"rbt patch --print can now be run outside of a source tree."
Expected to fetch latest diff. Instead I get:
"ERROR: The current directory does not contain a checkout from a supported 
source code repository."

# What operating system are you using?
Debian 8.3

# Attach the debug out from the command.

```
$ rbt patch -d --print 906
>>> RBTools 0.7.10
>>> Python 2.7.9 (default, Mar  1 2015, 12:57:24)
[GCC 4.9.2]
>>> Running on Linux-3.16.0-4-amd64-x86_64-with-debian-8.3
>>> Home = /home/admin
>>> Current directory = /home/admin
>>> Command line: rbt patch -d --print 906
>>> Running: tf vc help
>>> Checking for a Subversion repository...
>>> Running: svn --non-interactive info
>>> Command exited with rc 1: ['svn', '--non-interactive', u'info']
svn: E155007: '/home/admin' is not a working copy
---
>>> Checking for a Git repository...
>>> Running: git rev-parse --git-dir
>>> Command exited with rc 128: ['git', 'rev-parse', '--git-dir']
fatal: Not a git repository (or any of the parent directories): .git
---
>>> Checking for a Mercurial repository...
>>> Unable to execute "hg --help": skipping Mercurial
>>> Checking for a CVS repository...
>>> Unable to execute "cvs": skipping CVS
>>> Checking for a Perforce repository...
>>> Unable to execute "p4 help": skipping Perforce
>>> Checking for a Plastic repository...
>>> Unable to execute "cm version": skipping Plastic
>>> Checking for a ClearCase repository...
>>> Unable to execute "cleartool help": skipping ClearCase
>>> Checking for a Bazaar repository...
>>> Unable to execute "bzr help": skipping Bazaar
>>> Checking for a Team Foundation Server repository...
>>> Unable to execute "tf help": skipping TFS
ERROR: The current directory does not contain a checkout from a supported 
source code repository.

```


--

-- 
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 https://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.