Changeset View
Changeset View
Standalone View
Standalone View
src/config/arc/ArcanistArcConfigurationEngineExtension.php
| Show First 20 Lines • Show All 86 Lines • ▼ Show 20 Lines | /* | ||||
| 'default' => array(), | 'default' => array(), | ||||
| 'example' => '["secure.mycompany.com"]', | 'example' => '["secure.mycompany.com"]', | ||||
| ), | ), | ||||
| 'browser' => array( | 'browser' => array( | ||||
| 'type' => 'string', | 'type' => 'string', | ||||
| 'help' => pht('Command to use to invoke a web browser.'), | 'help' => pht('Command to use to invoke a web browser.'), | ||||
| 'example' => '"gnome-www-browser"', | 'example' => '"gnome-www-browser"', | ||||
| ), | ), | ||||
| 'http.basicauth.user' => array( | |||||
| 'type' => 'string', | |||||
| 'help' => pht('Username to use for basic auth over HTTP transports.'), | |||||
| 'example' => '"bob"', | |||||
| ), | |||||
| 'http.basicauth.pass' => array( | |||||
| 'type' => 'string', | |||||
| 'help' => pht('Password to use for basic auth over HTTP transports.'), | |||||
| 'example' => '"bobhasasecret"', | |||||
| ), | |||||
| */ | */ | ||||
| return array( | return array( | ||||
| id(new ArcanistStringConfigOption()) | id(new ArcanistStringConfigOption()) | ||||
| ->setKey('base') | ->setKey('base') | ||||
| ->setSummary(pht('Ruleset for selecting commit ranges.')) | ->setSummary(pht('Ruleset for selecting commit ranges.')) | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||