1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

Remove some Mercurial and Google caveats

Summary: These seem to work relatively reasonably and don't have any known
deal-breaking failures.

Test Plan: shrug~

Reviewers: btrahan, jungejason

Reviewed By: btrahan

CC: aran, btrahan

Differential Revision: https://secure.phabricator.com/D1324
This commit is contained in:
epriestley 2012-01-05 13:57:49 -08:00
parent e478c0074c
commit 9c5a6601d6
2 changed files with 4 additions and 6 deletions

View file

@ -1,7 +1,7 @@
<?php
/*
* Copyright 2011 Facebook, Inc.
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ class PhabricatorOAuthProviderGoogle extends PhabricatorOAuthProvider {
}
public function getProviderName() {
return 'Google (BETA)';
return 'Google';
}
public function isProviderEnabled() {

View file

@ -1,7 +1,7 @@
<?php
/*
* Copyright 2011 Facebook, Inc.
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -26,9 +26,7 @@ final class PhabricatorRepositoryType {
static $map = array(
self::REPOSITORY_TYPE_GIT => 'Git',
self::REPOSITORY_TYPE_SVN => 'Subversion',
// TODO: Stabilize and remove caveat.
self::REPOSITORY_TYPE_MERCURIAL => 'Mercurial (LIMITED SUPPORT!)',
self::REPOSITORY_TYPE_MERCURIAL => 'Mercurial',
);
return $map;
}