mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
28 lines
855 B
PHP
Executable file
28 lines
855 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
if ($argc !== 2 || $argv[1] === '--help') {
|
|
echo pht('Usage: %s', 'aphrontpath.php <url>')."\n";
|
|
echo pht(
|
|
"Purpose: Print controller which will process passed %s.\n",
|
|
'<url>');
|
|
exit(1);
|
|
}
|
|
|
|
$url = parse_url($argv[1]);
|
|
$path = '/'.(isset($url['path']) ? ltrim($url['path'], '/') : '');
|
|
|
|
$config_key = 'aphront.default-application-configuration-class';
|
|
$application = PhabricatorEnv::newObjectFromConfig($config_key);
|
|
$application->setRequest(new AphrontRequest('', $path));
|
|
|
|
list($controller) = $application->buildControllerForPath($path);
|
|
if (!$controller && substr($path, -1) !== '/') {
|
|
list($controller) = $application->buildControllerForPath($path.'/');
|
|
}
|
|
if ($controller) {
|
|
echo get_class($controller)."\n";
|
|
}
|