Changeset View
Changeset View
Standalone View
Standalone View
src/configuration/ArcanistSettings.php
| Show First 20 Lines • Show All 136 Lines • ▼ Show 20 Lines | return array( | ||||
| 'help' => 'List of domains to blindly trust SSL certificates for. '. | 'help' => 'List of domains to blindly trust SSL certificates for. '. | ||||
| 'Disables peer verification.', | 'Disables peer verification.', | ||||
| 'example' => '["secure.mycompany.com"]', | 'example' => '["secure.mycompany.com"]', | ||||
| 'default' => array(), | 'default' => array(), | ||||
| ), | ), | ||||
| 'browser' => array( | 'browser' => array( | ||||
| 'type' => 'string', | 'type' => 'string', | ||||
| 'help' => | 'help' => | ||||
| "Command to use to invoke a web browser.", | 'Command to use to invoke a web browser.', | ||||
| 'example' => '"gnome-www-browser"', | 'example' => '"gnome-www-browser"', | ||||
| ), | ), | ||||
| 'events.listeners' => array( | 'events.listeners' => array( | ||||
| 'type' => 'list', | 'type' => 'list', | ||||
| 'help' => 'List of event listener classes to install at startup.', | 'help' => 'List of event listener classes to install at startup.', | ||||
| 'example' => '["ExampleEventListener"]', | 'example' => '["ExampleEventListener"]', | ||||
| 'default' => array(), | 'default' => array(), | ||||
| ), | ), | ||||
| 'http.basicauth.user' => array( | 'http.basicauth.user' => array( | ||||
| 'type' => 'string', | 'type' => 'string', | ||||
| 'help' => | 'help' => | ||||
| "Username to use for basic auth over http transports", | 'Username to use for basic auth over http transports', | ||||
| 'example' => '"bob"', | 'example' => '"bob"', | ||||
| ), | ), | ||||
| 'http.basicauth.pass' => array( | 'http.basicauth.pass' => array( | ||||
| 'type' => 'string', | 'type' => 'string', | ||||
| 'help' => | 'help' => | ||||
| "Password to use for basic auth over http transports", | 'Password to use for basic auth over http transports', | ||||
| 'example' => '"bobhasasecret"', | 'example' => '"bobhasasecret"', | ||||
| ), | ), | ||||
| 'arc.autostash' => array( | 'arc.autostash' => array( | ||||
| 'type' => 'bool', | 'type' => 'bool', | ||||
| 'help' => | 'help' => | ||||
| 'Whether arc should permit the automatic stashing of changes in '. | 'Whether arc should permit the automatic stashing of changes in '. | ||||
| 'the working directory when requiring a clean working copy. '. | 'the working directory when requiring a clean working copy. '. | ||||
| 'This option should only be used when users understand how '. | 'This option should only be used when users understand how '. | ||||
| ▲ Show 20 Lines • Show All 162 Lines • Show Last 20 Lines | |||||