2011-01-10 00:22:25 +01:00
|
|
|
<?php
|
|
|
|
|
2012-08-10 23:58:19 +02:00
|
|
|
/**
|
|
|
|
* Adjust 'include_path' to add locations where we'll search for libphutil.
|
|
|
|
* We look in these places:
|
|
|
|
*
|
|
|
|
* - Next to 'arcanist/'.
|
|
|
|
* - Anywhere in the normal PHP 'include_path'.
|
|
|
|
* - Inside 'arcanist/externals/includes/'.
|
|
|
|
*
|
|
|
|
* When looking in these places, we expect to find a 'libphutil/' directory.
|
|
|
|
*/
|
|
|
|
function arcanist_adjust_php_include_path() {
|
|
|
|
|
|
|
|
// The 'arcanist/' directory.
|
|
|
|
$arcanist_dir = dirname(dirname(__FILE__));
|
2012-03-05 19:02:37 +01:00
|
|
|
|
2012-08-10 23:58:19 +02:00
|
|
|
// The parent directory of 'arcanist/'.
|
|
|
|
$parent_dir = dirname($arcanist_dir);
|
|
|
|
|
|
|
|
// The 'arcanist/externals/includes/' directory.
|
|
|
|
$include_dir = implode(
|
|
|
|
DIRECTORY_SEPARATOR,
|
|
|
|
array(
|
|
|
|
$arcanist_dir,
|
|
|
|
'externals',
|
|
|
|
'includes',
|
|
|
|
));
|
|
|
|
|
|
|
|
$php_include_path = ini_get('include_path');
|
|
|
|
$php_include_path = implode(
|
|
|
|
PATH_SEPARATOR,
|
|
|
|
array(
|
|
|
|
$parent_dir,
|
|
|
|
$php_include_path,
|
|
|
|
$include_dir,
|
|
|
|
));
|
|
|
|
|
|
|
|
ini_set('include_path', $php_include_path);
|
|
|
|
}
|
|
|
|
arcanist_adjust_php_include_path();
|
2012-03-05 19:02:37 +01:00
|
|
|
|
2012-12-18 01:35:03 +01:00
|
|
|
if (getenv('ARC_PHUTIL_PATH')) {
|
|
|
|
@include_once getenv('ARC_PHUTIL_PATH').'/scripts/__init_script__.php';
|
|
|
|
} else {
|
|
|
|
@include_once 'libphutil/scripts/__init_script__.php';
|
|
|
|
}
|
2011-01-10 00:22:25 +01:00
|
|
|
if (!@constant('__LIBPHUTIL__')) {
|
2012-08-10 23:58:19 +02:00
|
|
|
echo "ERROR: Unable to load libphutil. Put libphutil/ next to arcanist/, or ".
|
|
|
|
"update your PHP 'include_path' to include the parent directory of ".
|
|
|
|
"libphutil/, or symlink libphutil/ into arcanist/externals/includes/.\n";
|
2011-01-10 00:22:25 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-06-12 03:33:19 +02:00
|
|
|
PhutilTranslator::getInstance()
|
|
|
|
->addTranslations(array(
|
|
|
|
'Locally modified path(s) are not included in this revision:' => array(
|
|
|
|
'A locally modified path is not included in this revision:',
|
|
|
|
'Locally modified paths are not included in this revision:',
|
|
|
|
),
|
|
|
|
'They will NOT be committed. Commit this revision anyway?' => array(
|
|
|
|
'It will NOT be committed. Commit this revision anyway?',
|
|
|
|
'They will NOT be committed. Commit this revision anyway?',
|
|
|
|
),
|
|
|
|
'Revision includes changes to path(s) that do not exist:' => array(
|
|
|
|
'Revision includes changes to a path that does not exist:',
|
|
|
|
'Revision includes changes to paths that do not exist:',
|
|
|
|
),
|
|
|
|
|
|
|
|
'This diff includes file(s) which are not valid UTF-8 (they contain '.
|
|
|
|
'invalid byte sequences). You can either stop this workflow and fix '.
|
|
|
|
'these files, or continue. If you continue, these files will be '.
|
|
|
|
'marked as binary.' => array(
|
|
|
|
'This diff includes a file which is not valid UTF-8 (it has invalid '.
|
|
|
|
'byte sequences). You can either stop this workflow and fix it, or '.
|
|
|
|
'continue. If you continue, this file will be marked as binary.',
|
|
|
|
'This diff includes files which are not valid UTF-8 (they contain '.
|
|
|
|
'invalid byte sequences). You can either stop this workflow and fix '.
|
|
|
|
'these files, or continue. If you continue, these files will be '.
|
|
|
|
'marked as binary.',
|
|
|
|
),
|
|
|
|
'AFFECTED FILE(S)' => array('AFFECTED FILE', 'AFFECTED FILES'),
|
|
|
|
'Do you want to mark these files as binary and continue?' => array(
|
|
|
|
'Do you want to mark this file as binary and continue?',
|
|
|
|
'Do you want to mark these files as binary and continue?',
|
|
|
|
),
|
|
|
|
|
2013-09-14 17:06:50 +02:00
|
|
|
'Do you want to amend these files to the commit?' => array(
|
|
|
|
'Do you want to amend this file to the commit?',
|
|
|
|
'Do you want to amend these files to the commit?',
|
|
|
|
),
|
|
|
|
|
|
|
|
'Do you want to add these files to the commit?' => array(
|
|
|
|
'Do you want to add this file to the commit?',
|
|
|
|
'Do you want to add these files to the commit?',
|
|
|
|
),
|
|
|
|
|
2012-06-12 03:33:19 +02:00
|
|
|
'line(s)' => array('line', 'lines'),
|
2012-06-17 17:13:40 +02:00
|
|
|
|
2012-06-20 00:16:52 +02:00
|
|
|
'%d test(s)' => array('%d test', '%d tests'),
|
|
|
|
|
2012-06-17 17:13:40 +02:00
|
|
|
'%d assertion(s) passed.' => array(
|
|
|
|
'%d assertion passed.',
|
|
|
|
'%d assertions passed.',
|
|
|
|
),
|
2012-06-12 03:33:19 +02:00
|
|
|
));
|
|
|
|
|
2012-03-05 19:02:37 +01:00
|
|
|
phutil_load_library(dirname(dirname(__FILE__)).'/src/');
|