Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorDeveloperConfigOptions.php
| Show First 20 Lines • Show All 91 Lines • ▼ Show 20 Lines | return array( | ||||
| pht('Disable developer mode'), | pht('Disable developer mode'), | ||||
| )) | )) | ||||
| ->setSummary(pht("Enable verbose error reporting and disk reads.")) | ->setSummary(pht("Enable verbose error reporting and disk reads.")) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht( | pht( | ||||
| "This option enables verbose error reporting (stack traces, ". | "This option enables verbose error reporting (stack traces, ". | ||||
| "error callouts) and forces disk reads of static assets on ". | "error callouts) and forces disk reads of static assets on ". | ||||
| "every reload.")), | "every reload.")), | ||||
| $this->newOption('celerity.minify', 'bool', false) | $this->newOption('celerity.minify', 'bool', true) | ||||
| ->setBoolOptions( | ->setBoolOptions( | ||||
| array( | array( | ||||
| pht('Minify static resources.'), | pht('Minify static resources.'), | ||||
| pht("Don't minify static resources."), | pht("Don't minify static resources."), | ||||
| )) | )) | ||||
| ->setSummary(pht("Minify static Celerity resources.")) | ->setSummary(pht("Minify static Celerity resources.")) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht( | pht( | ||||
| Show All 19 Lines | |||||